Merge "Set threads' contextClassLoader during LoadedApk.makeApplication." into lmp-dev
diff --git a/Android.mk b/Android.mk
index 7362803..22cc27b 100644
--- a/Android.mk
+++ b/Android.mk
@@ -510,6 +510,7 @@
 	frameworks/base/core/java/android/view/inputmethod/ExtractedTextRequest.aidl \
 	frameworks/base/core/java/android/view/DragEvent.aidl \
 	frameworks/base/core/java/android/view/KeyEvent.aidl \
+	frameworks/base/core/java/android/view/WindowManager.aidl \
 	frameworks/base/core/java/android/view/WindowAnimationFrameStats.aidl \
 	frameworks/base/core/java/android/view/MotionEvent.aidl \
 	frameworks/base/core/java/android/view/accessibility/AccessibilityNodeInfo.aidl \
diff --git a/core/java/android/app/admin/DevicePolicyManager.java b/core/java/android/app/admin/DevicePolicyManager.java
index 8917928..a30ae57 100644
--- a/core/java/android/app/admin/DevicePolicyManager.java
+++ b/core/java/android/app/admin/DevicePolicyManager.java
@@ -1341,7 +1341,7 @@
      * {@link DeviceAdminInfo#USES_POLICY_RESET_PASSWORD} to be able to call
      * this method; if it has not, a security exception will be thrown.
      *
-     * Can not be called from a managed profile.
+     * <p>Calling this from a managed profile will throw a security exception.
      *
      * @param password The new password for the user.
      * @param flags May be 0 or {@link #RESET_PASSWORD_REQUIRE_ENTRY}.
@@ -1887,8 +1887,8 @@
 
     /**
      * Called by an application that is administering the device to disable all cameras
-     * on the device.  After setting this, no applications will be able to access any cameras
-     * on the device.
+     * on the device, for this user. After setting this, no applications running as this user
+     * will be able to access any cameras on the device.
      *
      * <p>The calling device admin must have requested
      * {@link DeviceAdminInfo#USES_POLICY_DISABLE_CAMERA} to be able to call
@@ -1908,8 +1908,8 @@
     }
 
     /**
-     * Determine whether or not the device's cameras have been disabled either by the current
-     * admin, if specified, or all admins.
+     * Determine whether or not the device's cameras have been disabled for this user,
+     * either by the current admin, if specified, or all admins.
      * @param admin The name of the admin component to check, or null to check if any admins
      * have disabled the camera
      */
@@ -2018,6 +2018,8 @@
      * {@link DeviceAdminInfo#USES_POLICY_DISABLE_KEYGUARD_FEATURES} to be able to call
      * this method; if it has not, a security exception will be thrown.
      *
+     * <p>Calling this from a managed profile will throw a security exception.
+     *
      * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
      * @param which {@link #KEYGUARD_DISABLE_FEATURES_NONE} (default),
      * {@link #KEYGUARD_DISABLE_WIDGETS_ALL}, {@link #KEYGUARD_DISABLE_SECURE_CAMERA},
diff --git a/core/java/android/content/pm/IPackageInstaller.aidl b/core/java/android/content/pm/IPackageInstaller.aidl
index 6daefc8..ba62cd6 100644
--- a/core/java/android/content/pm/IPackageInstaller.aidl
+++ b/core/java/android/content/pm/IPackageInstaller.aidl
@@ -20,6 +20,7 @@
 import android.content.pm.IPackageInstallerCallback;
 import android.content.pm.IPackageInstallerSession;
 import android.content.pm.PackageInstaller;
+import android.content.pm.ParceledListSlice;
 import android.content.IntentSender;
 
 import android.graphics.Bitmap;
@@ -37,8 +38,8 @@
 
     PackageInstaller.SessionInfo getSessionInfo(int sessionId);
 
-    List<PackageInstaller.SessionInfo> getAllSessions(int userId);
-    List<PackageInstaller.SessionInfo> getMySessions(String installerPackageName, int userId);
+    ParceledListSlice getAllSessions(int userId);
+    ParceledListSlice getMySessions(String installerPackageName, int userId);
 
     void registerCallback(IPackageInstallerCallback callback, int userId);
     void unregisterCallback(IPackageInstallerCallback callback);
diff --git a/core/java/android/content/pm/PackageInstaller.java b/core/java/android/content/pm/PackageInstaller.java
index f249c5f..80efd0b 100644
--- a/core/java/android/content/pm/PackageInstaller.java
+++ b/core/java/android/content/pm/PackageInstaller.java
@@ -399,7 +399,7 @@
         }
 
         try {
-            return mInstaller.getAllSessions(mUserId);
+            return mInstaller.getAllSessions(mUserId).getList();
         } catch (RemoteException e) {
             throw e.rethrowAsRuntimeException();
         }
@@ -410,7 +410,7 @@
      */
     public @NonNull List<SessionInfo> getMySessions() {
         try {
-            return mInstaller.getMySessions(mInstallerPackageName, mUserId);
+            return mInstaller.getMySessions(mInstallerPackageName, mUserId).getList();
         } catch (RemoteException e) {
             throw e.rethrowAsRuntimeException();
         }
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java
index e40c88f..79e84d9 100644
--- a/core/java/android/provider/Settings.java
+++ b/core/java/android/provider/Settings.java
@@ -6570,6 +6570,15 @@
         public static final String NETWORK_SCORING_PROVISIONED = "network_scoring_provisioned";
 
         /**
+         * Whether the user wants to be prompted for password to decrypt the device on boot.
+         * This only matters if the storage is encrypted.
+         * <p>
+         * Type: int (0 for false, 1 for true)
+         * @hide
+         */
+        public static final String REQUIRE_PASSWORD_TO_DECRYPT = "require_password_to_decrypt";
+
+        /**
          * Settings to backup. This is here so that it's in the same place as the settings
          * keys and easy to update.
          *
diff --git a/core/java/com/android/internal/widget/LockPatternUtils.java b/core/java/com/android/internal/widget/LockPatternUtils.java
index 2b7af4b..9a1c9fc 100644
--- a/core/java/com/android/internal/widget/LockPatternUtils.java
+++ b/core/java/com/android/internal/widget/LockPatternUtils.java
@@ -33,6 +33,7 @@
 import android.os.RemoteException;
 import android.os.ServiceManager;
 import android.os.SystemClock;
+import android.os.SystemProperties;
 import android.os.UserHandle;
 import android.os.UserManager;
 import android.os.storage.IMountService;
@@ -556,11 +557,18 @@
             getLockSettings().setLockPattern(patternToString(pattern), userId);
             DevicePolicyManager dpm = getDevicePolicyManager();
             if (pattern != null) {
-
-                int userHandle = userId;
-                if (userHandle == UserHandle.USER_OWNER) {
-                    String stringPattern = patternToString(pattern);
-                    updateEncryptionPassword(StorageManager.CRYPT_TYPE_PATTERN, stringPattern);
+                // Update the device encryption password.
+                if (userId == UserHandle.USER_OWNER
+                        && LockPatternUtils.isDeviceEncryptionEnabled()) {
+                    final ContentResolver cr = mContext.getContentResolver();
+                    final boolean required = Settings.Global.getInt(cr,
+                            Settings.Global.REQUIRE_PASSWORD_TO_DECRYPT, 1) == 1 ? true : false;
+                    if (!required) {
+                        clearEncryptionPassword();
+                    } else {
+                        String stringPattern = patternToString(pattern);
+                        updateEncryptionPassword(StorageManager.CRYPT_TYPE_PATTERN, stringPattern);
+                    }
                 }
 
                 setBoolean(PATTERN_EVER_CHOSEN_KEY, true);
@@ -785,13 +793,23 @@
                 getLockSettings().setLockPassword(password, userHandle);
                 int computedQuality = computePasswordQuality(password);
 
-                if (userHandle == UserHandle.USER_OWNER) {
-                    // Update the encryption password.
-                    int type = computedQuality == DevicePolicyManager.PASSWORD_QUALITY_NUMERIC
-                        || computedQuality == DevicePolicyManager.PASSWORD_QUALITY_NUMERIC_COMPLEX
-                        ? StorageManager.CRYPT_TYPE_PIN
-                        : StorageManager.CRYPT_TYPE_PASSWORD;
-                    updateEncryptionPassword(type, password);
+                // Update the device encryption password.
+                if (userHandle == UserHandle.USER_OWNER
+                        && LockPatternUtils.isDeviceEncryptionEnabled()) {
+                    final ContentResolver cr = mContext.getContentResolver();
+                    final boolean required = Settings.Global.getInt(cr,
+                            Settings.Global.REQUIRE_PASSWORD_TO_DECRYPT, 1) == 1 ? true : false;
+                    if (!required) {
+                        clearEncryptionPassword();
+                    } else {
+                        boolean numeric = computedQuality
+                                == DevicePolicyManager.PASSWORD_QUALITY_NUMERIC;
+                        boolean numericComplex = computedQuality
+                                == DevicePolicyManager.PASSWORD_QUALITY_NUMERIC_COMPLEX;
+                        int type = numeric || numericComplex ? StorageManager.CRYPT_TYPE_PIN
+                                : StorageManager.CRYPT_TYPE_PASSWORD;
+                        updateEncryptionPassword(type, password);
+                    }
                 }
 
                 if (!isFallback) {
@@ -895,6 +913,17 @@
     }
 
     /**
+     * Determine if the device supports encryption, even if it's set to default. This
+     * differs from isDeviceEncrypted() in that it returns true even if the device is
+     * encrypted with the default password.
+     * @return true if device encryption is enabled
+     */
+    public static boolean isDeviceEncryptionEnabled() {
+        final String status = SystemProperties.get("ro.crypto.state", "unsupported");
+        return "encrypted".equalsIgnoreCase(status);
+    }
+
+    /**
      * Clears the encryption password.
      */
     public void clearEncryptionPassword() {
diff --git a/core/res/res/values-af/strings.xml b/core/res/res/values-af/strings.xml
index a20b2d5..19e9f1c 100644
--- a/core/res/res/values-af/strings.xml
+++ b/core/res/res/values-af/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> gekies"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> uitgevee"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Werk-<xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Om hierdie skerm te ontspeld, raak en hou Terug en Onlangse programme tegelyk."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Om hierdie skerm te ontspeld, raak en hou Onlangse programme."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Om hierdie skerm te ontspeld, raak en hou tegelyk Terug en Oorsig."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Om hierdie skerm te ontspeld, raak en hou Oorsig."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Skerm is vasgespeld. Jou organisasie laat nie toe dat dit ontspeld word nie."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Gebruik skermvasspeld?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Skermvasspeld sluit die skerm in \'n enkele aansig vas.\n\nOm uit te gaan, raak en hou Terug en Onlangse programme tegelyk."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Skermvasspeld sluit die skerm in \'n enkele aansig vas.\n\nOm uit te gaan, raak en hou Onlangse programme."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Skermvasspeld sluit die skerm in \'n enkele aansig vas.\n\nOm dit te ontspeld, raak en hou tegelyk Terug en Oorsig."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Skermvasspeld sluit die skerm in \'n enkele aansig vas.\n\nOm dit te ontspeld, raak en hou Oorsig."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NEE, DANKIE"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"BEGIN"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Skerm vasgespeld"</string>
diff --git a/core/res/res/values-am/strings.xml b/core/res/res/values-am/strings.xml
index 2fe1c75..0ed4004 100644
--- a/core/res/res/values-am/strings.xml
+++ b/core/res/res/values-am/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> ተመርጧል"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> ተሰርዟል"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"ስራ <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"ይህን ማያ ገጽ ለመንቀል ለመውጣት ተመለስን እና የቅርብ ጊዜዎችን አንድ ላይ ነክተው ይያዟቸው።"</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"ይህን ማያ ገጽ ለመንቀል ለመውጣት የቅርብ ጊዜዎችን አንድ ላይ ነክተው ይያዙት።"</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"ይህን ማያ ገጽ ለመንቀል ተመለስን እና አጠቃላይ እይታን በተመሳሳይ ይንኳቸውና ይያዟቸው።"</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"ይህን ማያ ገጽ ለመንቀል አጠቃላይ እይታን ይንኩትና ይያዙት።"</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"ማያ ገጽ ተሰክቷል። መንቀል በድርጅትዎ አይፈቀድም።"</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"ማያ ገጽ መሰካትን ይጠቀሙ?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"ማያ ገጽ መሰካት ማሳያውን በአንዲት ነጠላ እይታ ውስጥ ይቆልፈዋል።\n\nለመውጣት ተመለስን እና የቅርብ ጊዜዎችን አንድ ላይ ነክተው ይያዟቸው።"</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"ማያ ገጽ መሰካት ማሳያውን በአንዲት ነጠላ እይታ ውስጥ ይቆልፈዋል።\n\nለመውጣት የቅርብ ጊዜዎችን አንድ ላይ ነክተው ይያዙት።"</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"ማያ ገጽ መሰካን ማሳያውን በአንዲ እይታ ውስጥ ይቆልፈዋል።\n\nለመንቀል ተመለስን እና አጠቃላይ እይታን በተመሳሳይ ይንኳቸውና ይያዟቸው።"</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"ማያ ገጽ መሰካት ማሳያውን በአንዲት እይታ ውስጥ ይቆልፈዋል።\n\nለመንቀል አጠቃላይ እይታን ይንኩትና ይያዙት።"</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"አይ፣ አመሰግናለሁ"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"ጀምር"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"ማያ ገጽ ተሰክቷል"</string>
diff --git a/core/res/res/values-ar/strings.xml b/core/res/res/values-ar/strings.xml
index fbb4f52..1f3b62f 100644
--- a/core/res/res/values-ar/strings.xml
+++ b/core/res/res/values-ar/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"تم تحديد <xliff:g id="ITEM">%1$s</xliff:g>"</string>
     <string name="deleted_key" msgid="7659477886625566590">"تم حذف <xliff:g id="KEY">%1$s</xliff:g>"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g> المخصص للعمل"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"لإلغاء تثبيت هذه الشاشة، المس مع الاستمرار زر الرجوع وزر التطبيقات الأخيرة في الوقت نفسه."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"لإلغاء تثبيت هذه الشاشة، المس مع الاستمرار زر التطبيقات الأخيرة."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"لإلغاء تثبيت هذه الشاشة، يمكنك لمس \"رجوع\" و\"عرض عام\" في آن واحد مع الاستمرار."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"لإلغاء تثبيت هذه الشاشة، يمكنك لمس \"عرض عام\" مع الاستمرار."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"الشاشة مثبتة. لا تسمح منظمتك بإلغاء التثبيت."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"هل تريد استخدام تثبيت الشاشة؟"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"يؤدي تثبيت الشاشة إلى تقييد شاشة العرض بمشهد واحد.\n\nلإنهاء تثبيت الشاشة، المس مع الاستمرار زر الرجوع وزر التطبيقات الأخيرة في الوقت نفسه."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"يؤدي تثبيت الشاشة إلى تقييد شاشة العرض بمشهد واحد.\n\nلإنهاء تثبيت الشاشة، المس مع الاستمرار زر \"التطبيقات الأخيرة\"."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"يؤدي تثبيت الشاشة إلى تأمين الشاشة في العرض المفرد.\n\nلإلغاء التثبيت، المس \"رجوع\" و\"عرض عام\" في آن واحد مع الاستمرار."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"يؤدي تثبيت الشاشة إلى قفل الشاشة في العرض المفرد.\n\nلإلغاء التثبيت، يمكنك لمس \"عرض عام\" مع الاستمرار."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"لا، شكرًا"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"بدء"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"تم تثبيت الشاشة"</string>
diff --git a/core/res/res/values-bg/strings.xml b/core/res/res/values-bg/strings.xml
index 3ac8f46..38ad3a9 100644
--- a/core/res/res/values-bg/strings.xml
+++ b/core/res/res/values-bg/strings.xml
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"Избрахте <xliff:g id="ITEM">%1$s</xliff:g>"</string>
     <string name="deleted_key" msgid="7659477886625566590">"Изтрихте <xliff:g id="KEY">%1$s</xliff:g>"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g> за работа"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"За да освободите този екран, докоснете и задръжте бутона за назад и същевременно натиснете и задръжте този за скорошни приложения."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"За да освободите този екран, докоснете и задръжте бутона за скорошни приложения."</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Екранът е фиксиран. Освобождаването не е разрешено от организацията ви."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Да се използва ли функцията за фиксиране на екрана?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Фиксирането на екрана заключва дисплея в един изглед.\n\nЗа изход натиснете и задръжте бутона за назад и същевременно натиснете и задръжте този за скорошни приложения."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Фиксирането на екрана заключва дисплея в един изглед.\n\nЗа изход докоснете и задръжте бутона за скорошни приложения."</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"НЕ, БЛАГОДАРЯ"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"СТАРТИРАНЕ"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Екранът е фиксиран"</string>
diff --git a/core/res/res/values-bn-rBD/strings.xml b/core/res/res/values-bn-rBD/strings.xml
index d9524fa..0b876a0 100644
--- a/core/res/res/values-bn-rBD/strings.xml
+++ b/core/res/res/values-bn-rBD/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> নির্বাচন করা হয়েছে"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> মুছে ফেলা হয়েছে"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"কর্মক্ষেত্র <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"এই স্ক্রীন পিনমুক্ত করার জন্য একই সময়ে ‘ফিরুন’ ও ‘সাম্প্রতিকগুলি’ স্পর্শ করে ধরে থাকুন।"</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"এই স্ক্রীন পিনমুক্ত করার জন্য ‘সাম্প্রতিকগুলি’ স্পর্শ করে ধরে থাকুন।"</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"এই স্ক্রীনটিকে আনপিন করতে, \'ফিরুন\' এবং \'ওভারভিউ\' একসাথে স্পর্শ করুন এবং ধরে রাখুন৷"</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"এই স্ক্রীনটিকে আনপিন করতে, \'ওভারভিউ\' স্পর্শ করুন এবং ধরে রাখুন৷"</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"স্ক্রীন পিন করা আছে। আপনার প্রতিষ্ঠান এটিকে পিনমুক্ত করার অনুমতি দেয়নি।"</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"স্ক্রীন পিন করা ব্যবহার করবেন?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"স্ক্রীনে পিন করা হলে প্রদর্শনকে একটি দৃশ্যে লক করে দেয়।\n\nসেখান থেকে বেরিয়ে যাওয়ার জন্য, একই সময়ে ‘ফিরুন’ ও ‘সাম্প্রতিকগুলি’ স্পর্শ করে ধরে থাকুন।"</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"স্ক্রীনে পিন করা হলে প্রদর্শনকে একটি দৃশ্যে লক করে দেয়।\n\nসেখান থেকে বেরিয়ে যাওয়ার জন্য, ‘সাম্প্রতিকগুলি’ স্পর্শ করে ধরে থাকুন।"</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"পিন করে রাখলে তা স্ক্রীনের প্রদর্শনকে একটি নির্দিষ্ট অবস্থায় লক করবে৷\n\nআনপিন করার জন্য, \'ফিরুন\' এবং \'ওভারভিউ\' একসাথে স্পর্শ করুন এবং ধরে রাখুন৷"</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"পিন করে রাখলে তা স্ক্রীনের প্রদর্শনকে একটি নির্দিষ্ট অবস্থায় লক করবে৷\n\n আনপিন করার জন্য, \'ওভারভিউ\' স্পর্শ করুন এবং ধরে রাখুন৷"</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"না, থাক"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"চালু করুন"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"স্ক্রীন পিন করা হয়েছে"</string>
diff --git a/core/res/res/values-ca/strings.xml b/core/res/res/values-ca/strings.xml
index c45fcd8..1b6e677 100644
--- a/core/res/res/values-ca/strings.xml
+++ b/core/res/res/values-ca/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> seleccionat"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> suprimit"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g> de la feina"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Per desfixar aquesta pantalla, mantén premuts Enrere i Recents alhora."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Per desfixar aquesta pantalla, mantén premut Recents."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Per anul·lar la fixació d\'aquesta pantalla, mantén premudes les opcions Enrere i Vista general alhora."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Per anul·lar la fixació d\'aquesta pantalla, mantén premuda l\'opció Vista general."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"S\'ha fixat la pantalla. La teva organització no permet anul·lar-ne la fixació."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Vols fixar aquesta pantalla?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"La fixació de pantalla bloqueja la pantalla en una visualització única.\n\nPer sortir-ne, mantén premuts els botons de tornar enrere i d\'aplicacions recents."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"La fixació de pantalla bloqueja la pantalla en una visualització única.\n\nPer sortir-ne, mantén premut el botó d\'aplicacions recents."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Si fixes la pantalla, es bloquejarà en una sola vista.\n\nPer anul·lar la fixació, mantén premudes les opcions Enrere i Vista general alhora."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Si fixes la pantalla, es bloquejarà en una sola vista.\n\nPer anul·lar la fixació, mantén premuda l\'opció Vista general."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NO, GRÀCIES"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"INICIA"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Pantalla fixada"</string>
diff --git a/core/res/res/values-cs/strings.xml b/core/res/res/values-cs/strings.xml
index 31fbb3b..dc0fa8e 100644
--- a/core/res/res/values-cs/strings.xml
+++ b/core/res/res/values-cs/strings.xml
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"Vybrána položka <xliff:g id="ITEM">%1$s</xliff:g>"</string>
     <string name="deleted_key" msgid="7659477886625566590">"Číslice <xliff:g id="KEY">%1$s</xliff:g> byla smazána"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Pracovní <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Chcete-li obrazovku uvolnit, současně stiskněte a podržte tlačítka Zpět a Poslední."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Chcete-li obrazovku uvolnit, stiskněte a podržte tlačítko Poslední."</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Obrazovka je připnuta. Vaše organizace uvolnění zakázala."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Použít připnutí obrazovky?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Připnutím obrazovky uzamknete displej v jednom zobrazení.\n\nRežim ukončíte současným klepnutím na tlačítka Zpět a Poslední."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Připnutím obrazovky uzamknete displej v jednom zobrazení.\n\nRežim ukončíte stisknutím a podržením tlačítka Poslední."</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NE, DĚKUJI"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"SPUSTIT"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Obrazovka připnuta"</string>
diff --git a/core/res/res/values-da/strings.xml b/core/res/res/values-da/strings.xml
index f540e0d..111621f 100644
--- a/core/res/res/values-da/strings.xml
+++ b/core/res/res/values-da/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> er valgt"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> er slettet"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g> – arbejde"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Hvis du vil frigøre dette skærmbillede, skal du trykke på og holde Tilbage og Seneste nede på samme tid."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Hvis du vil frigøre dette skærmbillede, skal du trykke på og holde Seneste nede."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Hvis du vil frigøre dette skærmbillede, skal du trykke på Tilbage og Oversigt på samme tid og holde fingeren nede."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Hvis du vil frigøre dette skærmbillede, skal du trykke på Oversigt og holde fingeren nede."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Skærmen er fastgjort. Frigørelse er ikke tilladt af din organisation."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Vil du bruge Bliv i app?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Bliv i app låser skærmen i en enkelt visning.\n\nAfslut ved at trykke på Tilbage og Seneste samtidig og holde dem nede."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Bliv i app låser skærmen i en enkelt visning.\n\nHvis du vil afslutte, skal du trykke på knappen Seneste og holde den nede."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Skærmfastholdelse låser skærmbilledet i en enkelt visning.\n\nDu frigør det ved at trykke på Tilbage og Oversigt på samme tid og holde fingeren nede."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Skærmfastholdelse låser skærmbilledet i en enkelt visning.\n\nDu frigør det ved at trykke på Oversigt og holde fingeren nede."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NEJ TAK"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"START"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Skærmen blev fastgjort"</string>
diff --git a/core/res/res/values-de/strings.xml b/core/res/res/values-de/strings.xml
index febd90e..1d79e255 100644
--- a/core/res/res/values-de/strings.xml
+++ b/core/res/res/values-de/strings.xml
@@ -476,7 +476,7 @@
     <string name="permdesc_receiveBootCompleted" product="default" msgid="513950589102617504">"Ermöglicht der App, sich selbst zu starten, sobald das System gebootet wurde. Dadurch kann es länger dauern, bis das Telefon gestartet wird, und durch die ständige Aktivität der App wird die gesamte Leistung des Telefons beeinträchtigt."</string>
     <string name="permlab_broadcastSticky" msgid="7919126372606881614">"Dauerhaften Broadcast senden"</string>
     <string name="permdesc_broadcastSticky" product="tablet" msgid="7749760494399915651">"Ermöglicht der App, weiluerhafte Broadcasts zu senden, die auch nach Ende des Broadcasts bestehen bleiben. Ein zu intensiver Einsatz kann das Tablet langsam oder instabil machen, weil zu viel Arbeitsspeicher belegt wird."</string>
-    <string name="permdesc_broadcastSticky" product="default" msgid="2825803764232445091">"Ermöglicht der App, weiluerhafte Broadcasts zu senden, die auch nach Ende des Broadcasts bestehen bleiben. Ein zu intensiver Einsatz kann das Telefon langsam oder instabil machen, weil zu viel Arbeitsspeicher belegt wird."</string>
+    <string name="permdesc_broadcastSticky" product="default" msgid="2825803764232445091">"Ermöglicht der App, dauerhafte Broadcasts zu senden, die auch nach Ende des Broadcasts bestehen bleiben. Ein zu intensiver Einsatz kann das Telefon langsam oder instabil machen, weil zu viel Arbeitsspeicher belegt wird."</string>
     <string name="permlab_readContacts" msgid="8348481131899886131">"Kontakte lesen"</string>
     <string name="permdesc_readContacts" product="tablet" msgid="5294866856941149639">"Ermöglicht der App, Daten zu den auf Ihrem Tablet gespeicherten Kontakten zu lesen, einschließlich der Häufigkeit, mit der Sie bestimmte Personen angerufen, diesen E-Mails gesendet oder anderweitig mit ihnen kommuniziert haben. Die Berechtigung erlaubt Apps, Ihre Kontaktdaten zu speichern, und schädliche Apps können Kontaktdaten ohne Ihr Wissen weiterleiten."</string>
     <string name="permdesc_readContacts" product="default" msgid="8440654152457300662">"Ermöglicht der App, Daten zu den auf Ihrem Telefon gespeicherten Kontakten zu lesen, einschließlich der Häufigkeit, mit der Sie bestimmte Personen angerufen, diesen E-Mails gesendet oder anderweitig mit ihnen kommuniziert haben. Die Berechtigung erlaubt Apps, Ihre Kontaktdaten zu speichern, und schädliche Apps können Kontaktdaten ohne Ihr Wissen weiterleiten."</string>
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> ausgewählt"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> gelöscht"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g> (geschäftlich)"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Berühren und halten Sie zum Beenden der Bildschirmfixierung gleichzeitig die Schaltfläche \"Zurück\" und \"Neueste\"."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Berühren und halten Sie zum Beenden der Bildschirmfixierung die Schaltfläche \"Neueste\"."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Um die Fixierung dieses Bildschirms aufzuheben, berühren und halten Sie gleichzeitig \"Zurück\" und \"Übersicht\"."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Um die Fixierung dieses Bildschirms aufzuheben, berühren und halten Sie \"Übersicht\"."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Der Bildschirm ist fixiert. Sie sind nicht berechtigt, diese Einstellung zu beenden."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Bildschirmfixierung verwenden?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Durch die Bildschirmfixierung wird das Display in einer bestimmten Ansicht gesperrt.\n\nBerühren und halten Sie zum Beenden gleichzeitig die Schaltfläche \"Zurück\" und \"Neueste\"."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Durch die Bildschirmfixierung wird das Display in einer bestimmten Ansicht gesperrt.\n\nBerühren und halten Sie zum Beenden die Schaltfläche \"Neueste\"."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Mit der Bildschirmfixierung wird die Anzeige in einer einzelnen Ansicht gesperrt.\n\nUm die Fixierung aufzuheben, berühren und halten Sie gleichzeitig \"Zurück\" und \"Übersicht\"."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Mit der Bildschirmfixierung wird die Anzeige in einer einzelnen Ansicht gesperrt.\n\nUm die Fixierung aufzuheben, berühren und halten Sie \"Übersicht\"."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"Nein danke"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"Starten"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Bildschirm fixiert"</string>
diff --git a/core/res/res/values-el/strings.xml b/core/res/res/values-el/strings.xml
index 7ea1d26..b24e78e 100644
--- a/core/res/res/values-el/strings.xml
+++ b/core/res/res/values-el/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"Επιλέχτηκε το στοιχείο <xliff:g id="ITEM">%1$s</xliff:g>"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> διαγράφηκε"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Εργασία <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Για να ξεκαρφιτσώσετε αυτήν την οθόνη, αγγίξτε παρατεταμένα τα κουμπιά \"Επιστροφή\" και \"Πρόσφατα\" ταυτόχρονα."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Για να ξεκαρφιτσώσετε αυτήν την οθόνη, αγγίξτε παρατεταμένα το κουμπί \"Πρόσφατα\"."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Για να ξεκαρφιτσώσετε αυτήν την οθόνη, πατήστε παρατεταμένα \"Επιστροφή\" και \"Επισκόπηση\" ταυτόχρονα."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Για να ξεκαρφιτσώσετε αυτήν την οθόνη, αγγίξτε παρατεταμένα \"Επισκόπηση\"."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Η οθόνη καρφιστώθηκε. Το ξεκαρφίτσωμα δεν επιτρέπεται από τον οργανισμό σας."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Χρήση καρφιτσώματος οθόνης;"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Το καρφίτσωμα της οθόνης κλειδώνει την οθόνη σε μία μόνο προβολή.\n\nΓια έξοδο, αγγίξτε παρατεταμένα τα κουμπιά \"Επιστροφή\" και \"Πρόσφατα\" ταυτόχρονα."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Το καρφίτσωμα της οθόνης κλειδώνει την οθόνη σε μία μόνο προβολή.\n\nΓια έξοδο, αγγίξτε παρατεταμένα το κουμπί \"Πρόσφατα\"."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Το καρφίτσωμα οθόνης κλειδώνει την οθόνη σε μία προβολή.\n\nΓια να την ξεκαρφιτσώσετε, αγγίξτε παρατεταμένα \"Επιστροφή\" και \"Επισκόπηση\" ταυτόχρονα."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Το καρφίτσωμα οθόνης κλειδώνει την οθόνη σε μία προβολή.\n\nΓια να την ξεκαρφιτσώσετε, αγγίξτε παρατεταμένα \"Επισκόπηση\"."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"ΟΧΙ, ΕΥΧΑΡΙΣΤΩ"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"ΕΝΑΡΞΗ"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Η οθόνη καρφιτσώθηκε"</string>
diff --git a/core/res/res/values-en-rGB/strings.xml b/core/res/res/values-en-rGB/strings.xml
index 8784d21..0a3a401 100644
--- a/core/res/res/values-en-rGB/strings.xml
+++ b/core/res/res/values-en-rGB/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> selected"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> deleted"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Work <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"To unpin this screen, touch and hold Back and Recents at the same time."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"To unpin this screen, touch and hold Recents."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"To unpin this screen, touch and hold Back and Overview at the same time."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"To unpin this screen, touch and hold Overview."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Screen is pinned. Unpinning isn\'t allowed by your organisation."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Use screen pinning?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Screen pinning locks the display in a single view.\n\nTo exit, touch and hold Back and Recents at the same time."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Screen pinning locks the display in a single view.\n\nTo exit, touch and hold Recents."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Screen pinning locks the display in a single view.\n\nTo unpin, touch and hold Back and Overview at the same time."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Screen pinning locks the display in a single view.\n\nTo unpin, touch and hold Overview."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NO, THANKS"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"START"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Screen pinned"</string>
diff --git a/core/res/res/values-en-rIN/strings.xml b/core/res/res/values-en-rIN/strings.xml
index 8784d21..0a3a401 100644
--- a/core/res/res/values-en-rIN/strings.xml
+++ b/core/res/res/values-en-rIN/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> selected"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> deleted"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Work <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"To unpin this screen, touch and hold Back and Recents at the same time."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"To unpin this screen, touch and hold Recents."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"To unpin this screen, touch and hold Back and Overview at the same time."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"To unpin this screen, touch and hold Overview."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Screen is pinned. Unpinning isn\'t allowed by your organisation."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Use screen pinning?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Screen pinning locks the display in a single view.\n\nTo exit, touch and hold Back and Recents at the same time."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Screen pinning locks the display in a single view.\n\nTo exit, touch and hold Recents."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Screen pinning locks the display in a single view.\n\nTo unpin, touch and hold Back and Overview at the same time."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Screen pinning locks the display in a single view.\n\nTo unpin, touch and hold Overview."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NO, THANKS"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"START"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Screen pinned"</string>
diff --git a/core/res/res/values-es-rUS/strings.xml b/core/res/res/values-es-rUS/strings.xml
index e3ed51f..6fd94cf 100644
--- a/core/res/res/values-es-rUS/strings.xml
+++ b/core/res/res/values-es-rUS/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> seleccionado"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> borrado"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g> de trabajo"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Para dejar de fijar esta pantalla, mantén presionados los botones para volver y de aplicaciones recientes al mismo tiempo."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Para dejar de fijar esta pantalla, mantén presionado el botón de aplicaciones recientes."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Para dejar de fijar esta pantalla, mantén presionados los botones para volver y Descripción general al mismo tiempo."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Para dejar de fijar esta pantalla, mantén presionado el botón Descripción general."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"La pantalla está fija. La organización no permite dejar de fijar la pantalla."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"¿Utilizar función para fijar la pantalla?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Si fijas la pantalla, esta se bloqueará en una vista única.\n\nPara salir, mantén presionados los botones para volver y de aplicaciones recientes al mismo tiempo."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Si fijas la pantalla, esta se bloqueará en una vista única.\n\nPara salir, mantén presionado el botón de aplicaciones recientes."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"La función para fijar la pantalla bloquea la pantalla en una vista única.\n\nPara dejar de fijar la pantalla, mantén presionados los botones para volver y Descripción general al mismo tiempo."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"La función para fijar la pantalla bloquea la pantalla en una vista única.\n\nPara dejar de fijar la pantalla, mantén presionado el botón Descripción general."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NO, GRACIAS"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"INICIAR"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Pantalla fija"</string>
diff --git a/core/res/res/values-es/strings.xml b/core/res/res/values-es/strings.xml
index 61bf649..11ea4a1 100644
--- a/core/res/res/values-es/strings.xml
+++ b/core/res/res/values-es/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> seleccionado"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> eliminado"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g> de trabajo"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Para anular la fijación de esta pantalla, mantén pulsados los botones de volver y de aplicaciones recientes a la vez."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Para anular la fijación de esta pantalla, mantén pulsado el botón de aplicaciones recientes."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Para desactivar esta pantalla, mantén pulsados los botones de retroceso e información general al mismo tiempo."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Para desactivar esta pantalla, mantén pulsado el botón de información general."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Se ha activado la pantalla. Tu organización no puede desactivarla."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"¿Quieres fijar esta pantalla?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Si fijas la pantalla se bloqueará en una vista única.\n\nPara salir, mantén pulsados los botones de volver y de aplicaciones recientes a la vez."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Si fijas la pantalla, se bloqueará en una vista única.\n\nPara salir, mantén pulsado el botón de aplicaciones recientes."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Si activas la pantalla, esta se bloqueará en una vista única.\n\nPara desactivarla, mantén pulsados los botones de retroceso e información general al mismo tiempo."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Si activas la pantalla, esta se bloqueará en una vista única.\n\nPara desactivarla, mantén pulsado el botón de información general."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NO, GRACIAS"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"INICIAR"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Pantalla fijada"</string>
diff --git a/core/res/res/values-et-rEE/strings.xml b/core/res/res/values-et-rEE/strings.xml
index ea39a10..c8ecec4 100644
--- a/core/res/res/values-et-rEE/strings.xml
+++ b/core/res/res/values-et-rEE/strings.xml
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> on valitud"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> on kustutatud"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Töö <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Ekraani vabastamiseks puudutage ja hoidke korraga all nuppe Tagasi ning Hiljutised."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Ekraani vabastamiseks puudutage ja hoidke all nuppu Hiljutised."</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Ekraan on kinnitatud. Teie organisatsioon ei luba vabastamist."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Kas kasutada ekraani kinnitamist?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Ekraani kinnitamine lukustab kuva ühele vaatele.\n\nVäljumiseks puudutage ja hoidke korraga all nuppe Tagasi ja Hiljutised."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Ekraani kinnitamine lukustab kuva ühele vaatele.\n\nVäljumiseks puudutage ja hoidke all nuppu Hiljutised."</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"TÄNAN, EI"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"KÄIVITA"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Ekraan on kinnitatud"</string>
diff --git a/core/res/res/values-eu-rES/strings.xml b/core/res/res/values-eu-rES/strings.xml
index 9c39458..7f2ea42 100644
--- a/core/res/res/values-eu-rES/strings.xml
+++ b/core/res/res/values-eu-rES/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> hautatu da"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> ezabatu da"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Laneko <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Pantailari aingura kentzeko, eduki ukituta Atzera eta Azkenak botoiak aldi berean."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Pantailari aingura kentzeko, eduki ukituta Azkenak botoia."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Aingura kentzeko, eduki ukituta Atzera eta Ikuspegi orokorra botoiak aldi berean."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Aingura kentzeko, eduki ukituta Ikuspegi orokorra botoia."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Pantaila ainguratu da. Erakundeak ez du aingura kentzea onartzen."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Pantaila ainguratzeko aukera erabili nahi duzu?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Pantaila-ainguratzeak ikuspegi bakarrean blokeatzen du pantaila.\n\nIrteteko, eduki ukituta Atzera eta Azkenak botoiak aldi berean."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Pantaila ainguratzeko aukerak ikuspegi bakarrean blokeatzen du pantaila.\n\nIrteteko, eduki ukituta Azkenak botoia."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Pantaila ainguratzen denean, bistaratutakoa ikuspegi bakarrean blokeatzen da.\n\nAingura kentzeko, eduki ukituta Atzera eta Ikuspegi orokorra botoiak aldi berean."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Pantaila ainguratzen denean, bistaratutakoa ikuspegi bakarrean blokeatzen da.\n\nAingura kentzeko, eduki ukituta Ikuspegi orokorra botoia."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"EZ, ESKERRIK ASKO"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"HASI"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Pantaila ainguratu da"</string>
diff --git a/core/res/res/values-fa/strings.xml b/core/res/res/values-fa/strings.xml
index e120285..59b2acb 100644
--- a/core/res/res/values-fa/strings.xml
+++ b/core/res/res/values-fa/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> انتخاب شد"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> حذف شد"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g> محل کار"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"برای برداشتن پین این صفحه، کلید بازگشت و برنامه‌های اخیر را همزمان لمس کنید و نگه دارید."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"برای برداشتن پین این صفحه، کلید برنامه‌های اخیر را لمس کنید و نگه دارید."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"برای برداشتن پین این صفحه، هم‌زمان «بازگشت» و «نمای کلی» را لمس کنید و نگه دارید."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"برای برداشتن پین این صفحه، «نمای کلی» را لمس کنید و نگه دارید."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"صفحه پین شده است. سازمان شما برداشتن پین را غیرمجاز کرده است."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"از پین کردن صفحه استفاده شود؟"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"پین کردن صفحه، نمایشگر را در یک نمای واحد قفل می‌کند.\n\nبرای خروج، کلیدهای بازگشت و برنامه‌های اخیر را همزمان لمس کنید و نگه دارید."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"پین کردن صفحه، نمایشگر را در یک نمای واحد قفل می‌کند.\n\nبرای خروج، کلید برنامه‌های اخیر را لمس کنید و نگه دارید."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"پین کردن صفحه، نمایشگر را در یک نمای واحد قفل می‌کند.\n\nبرای برداشتن پین، هم‌زمان «بازگشت» و «نمای کلی» را لمس کنید و نگه دارید."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"پین کردن صفحه، نمایشگر را در یک نمای واحد قفل می‌کند.\n\nبرای برداشتن پین، «نمای کلی» را لمس کنید و نگه دارید."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"خیر، سپاسگزارم"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"شروع"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"صفحه پین شد"</string>
diff --git a/core/res/res/values-fi/strings.xml b/core/res/res/values-fi/strings.xml
index 35590d7..2277f11 100644
--- a/core/res/res/values-fi/strings.xml
+++ b/core/res/res/values-fi/strings.xml
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> on valittu"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> poistettiin"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g> (työ)"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Irrota näyttö koskettamalla ja painamalla samanaikaisesti Takaisin ja Äskettäiset."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Irrota näyttö koskettamalla ja painamalla Äskettäiset."</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Näyttö on kiinnitetty. Irrottaminen ei ole sallittu organisaatiossasi."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Käytetäänkö näytön kiinnitystä?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Näytön kiinnitys lukitsee ruudun yhteen näkymään.\n\nPoistu koskettamalla ja painamalla samalla Takaisin ja Äskettäiset."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Näytön kiinnitys lukitsee ruudun yhteen näkymään.\n\nPoistu koskettamalla ja painamalla Äskettäiset."</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"EI KIITOS"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"ALOITA"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Näyttö kiinnitetty"</string>
diff --git a/core/res/res/values-fr-rCA/strings.xml b/core/res/res/values-fr-rCA/strings.xml
index 2771fd9..f3839b1 100644
--- a/core/res/res/values-fr-rCA/strings.xml
+++ b/core/res/res/values-fr-rCA/strings.xml
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"« <xliff:g id="ITEM">%1$s</xliff:g> » a été sélectionné"</string>
     <string name="deleted_key" msgid="7659477886625566590">"« <xliff:g id="KEY">%1$s</xliff:g> » a été supprimé"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g> (travail)"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Pour annuler l\'épinglage de cet écran, maintenez le doigt sur Retour et Récents simultanément."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Pour annuler l\'épinglage de cet écran, maintenez le doigt sur Récents."</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"L\'écran est épinglé. Votre organisation n\'autorise pas l\'annulation d\'épinglage."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Utiliser l\'épinglage d\'écran?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"L\'épinglage de l\'écran permet de verrouiller l\'écran dans un affichage unique.\n\nPour quitter cet affichage, maintenez le doigt sur Retour et Récents simultanément."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Le verrouillage d\'écran verrouille l\'écran dans un mode d\'affichage unique.\n\nPour quitter ce mode, maintenez le doigt sur Récents."</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NON, MERCI"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"COMMENCER"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Écran épinglé"</string>
diff --git a/core/res/res/values-fr/strings.xml b/core/res/res/values-fr/strings.xml
index fdaf86b..669a4bf 100644
--- a/core/res/res/values-fr/strings.xml
+++ b/core/res/res/values-fr/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"\"<xliff:g id="ITEM">%1$s</xliff:g>\" sélectionné"</string>
     <string name="deleted_key" msgid="7659477886625566590">"\"<xliff:g id="KEY">%1$s</xliff:g>\" supprimé"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g> (travail)"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Pour annuler l\'épinglage de cet écran, appuyez simultanément et de façon prolongée sur \"Retour\" et \"Écrans récents\"."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Pour annuler l\'épinglage de cet écran, appuyez de façon prolongée sur \"Écrans récents\"."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Pour annuler l\'épinglage, appuyez de manière prolongée et simultanée sur \"Retour\" et \"Vue d\'ensemble\"."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Pour annuler l\'épinglage, appuyez de manière prolongée sur \"Vue d\'ensemble\"."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"L\'écran est épinglé. L\'annulation de l\'épinglage n\'est pas autorisée par votre organisation."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Utiliser l\'épinglage d\'écran ?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"L\'épinglage d\'écran permet de verrouiller l\'écran dans une vue unique.\n\nPour quitter cette vue, appuyez simultanément et de façon prolongée sur \"Retour\" et \"Écrans récents\"."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"L\'épinglage d\'écran permet de verrouiller l\'écran dans une vue unique.\n\nPour quitter cette vue, appuyez de façon prolongée sur \"Écrans récents\"."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Lorsque vous épinglez l\'écran, celui-ci n\'affiche plus qu\'une seule vue.\n\nPour annuler l\'épinglage, appuyez de manière prolongée et simultanée sur \"Retour\" et \"Vue d\'ensemble\"."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Lorsque vous épinglez l\'écran, celui-ci n\'affiche plus qu\'une seule vue.\n\nPour annuler l\'épinglage, appuyez de manière prolongée sur \"Vue d\'ensemble\"."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NON, MERCI"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"ACTIVER"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Écran épinglé."</string>
diff --git a/core/res/res/values-gl-rES/strings.xml b/core/res/res/values-gl-rES/strings.xml
index 36086cd..ad54bfb 100644
--- a/core/res/res/values-gl-rES/strings.xml
+++ b/core/res/res/values-gl-rES/strings.xml
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> seleccionado"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> eliminado"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g> do traballo"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Para desactivar esta pantalla, mantén pulsado Atrás e Recentes ao mesmo tempo."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Para desactivar esta pantalla, mantén pulsado Recentes."</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"A pantalla está fixada. A túa organización non permite desactivar a pantalla."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Queres usar a fixación de pantalla?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"A fixación de pantalla bloquea a pantalla nunha vista única.\n\nPara saír, mantén pulsado Atrás e Recentes ao mesmo tempo."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"A fixación de pantalla bloquea a pantalla nunha vista única.\n\nPara saír, mantén pulsado Recentes."</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NON, GRAZAS"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"SI"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Pantalla fixada"</string>
diff --git a/core/res/res/values-hi/strings.xml b/core/res/res/values-hi/strings.xml
index a2e517a..d4d9a97 100644
--- a/core/res/res/values-hi/strings.xml
+++ b/core/res/res/values-hi/strings.xml
@@ -641,7 +641,7 @@
     <string name="permdesc_useCredentials" msgid="7984227147403346422">"ऐप्स  को प्रमाणीकरण टोकन का अनुरोध करने देता है."</string>
     <string name="permlab_accessNetworkState" msgid="4951027964348974773">"नेटवर्क कनेक्‍शन देखें"</string>
     <string name="permdesc_accessNetworkState" msgid="8318964424675960975">"ऐप्स  को नेटवर्क कनेक्‍शन के बारे में जानकारी देखने देता है जैसे कौन से नेटवर्क मौजूद हैं और कनेक्‍ट हैं."</string>
-    <string name="permlab_createNetworkSockets" msgid="8018758136404323658">"पूर्ण नेटवर्क पहुंच"</string>
+    <string name="permlab_createNetworkSockets" msgid="8018758136404323658">"पूर्ण नेटवर्क एक्सेस"</string>
     <string name="permdesc_createNetworkSockets" msgid="3403062187779724185">"ऐप्स  को नेटवर्क सॉकेट बनाने और कस्‍टम नेटवर्क प्रोटोकॉल का उपयोग करने देता है. ब्राउज़र और अन्‍य ऐप्स  इंटरनेट को डेटा भेजने के साधन उपलब्‍ध कराते हैं, ताकि इंटरनेट को डेटा भेजने के लिए इस अनुमति की आवश्‍यकता नहीं हो."</string>
     <string name="permlab_writeApnSettings" msgid="505660159675751896">"नेटवर्क सेटिंग और ट्रैफ़िक बदलें/रोकें"</string>
     <string name="permdesc_writeApnSettings" msgid="5333798886412714193">"ऐप्स  को नेटवर्क सेटिंग बदलने और सभी ट्रैफ़िक नेटवर्क को बाधित और निरीक्षण करने देता है, उदाहरण के लिए किसी APN का प्रॉक्सी और पोर्ट बदलना. दुर्भावनापूर्ण ऐप्स  आपकी जानकारी के बिना नेटवर्क पैकेट की निगरानी कर सकते हैं, उन्हें रीडायरेक्ट, या संशोधित कर सकते हैं."</string>
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> चयनित"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> को हटा दिया गया"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"कार्यस्थल का <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"इस स्‍क्रीन को अनपिन करने के लिए, वापस और हाल ही के एक साथ दबाकर रखें."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"इस स्‍क्रीन को अनपिन करने के लिए, हाल ही के दबाकर रखें."</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"स्‍क्रीन पिन की गई है. आपके संगठन के द्वारा अनपिन करने की अनुमति नहीं है."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"स्‍क्रीन पिन करने का उपयोग करें?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"स्‍क्रीन को पिन करने से प्रदर्शन एकल दृश्‍य में लॉक हो जाता है.\n\nबाहर निकलने के लिए, वापस और हाल ही के एक साथ दबाकर रखें."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"स्‍क्रीन को पिन करने से प्रदर्शन एकल दृश्‍य में लॉक हो जाता है.\n\nबाहर निकलने के लिए, हाल ही के दबाकर रखें."</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"रहने दें"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"प्रारंभ करें"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"स्‍क्रीन पिन की गई"</string>
diff --git a/core/res/res/values-hr/strings.xml b/core/res/res/values-hr/strings.xml
index 5874a8e..0b59c69 100644
--- a/core/res/res/values-hr/strings.xml
+++ b/core/res/res/values-hr/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"Odabrana je stavka <xliff:g id="ITEM">%1$s</xliff:g>"</string>
     <string name="deleted_key" msgid="7659477886625566590">"Izbrisan je broj <xliff:g id="KEY">%1$s</xliff:g>"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g> za posao"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Da biste otkvačili ovaj zaslon, istovremeno dodirnite i zadržite prste na gumbima Natrag i Nedavno."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Da biste otkvačili ovaj zaslon, dodirnite i zadržite prst na gumbu Nedavno."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Da biste otkvačili ovaj zaslon, istovremeno dodirnite i zadržite Natrag i Pregled."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Da biste otkvačili ovaj zaslon, dodirnite i zadržite Pregled."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Zaslon je pričvršćen. Vaša organizacija ne dopušta otkvačivanje."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Želite li upotrijebiti prikvačivanje?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Prikvačivanje zaslona zaključava zaslon u jednom prikazu. \n\n Za izlaz istovremeno dodirnite i zadržite prste na gumbima Natrag i Nedavno."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Prikvačivanje zaslona zaključava zaslon u jednom prikazu.\n\nZa izlazak dodirnite i zadržite prst na gumbu Nedavno."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Prikvačivanje zaslona blokira zaslon na jednom prikazu.\n\nDa biste otkvačili zaslon, istovremeno dodirnite i zadržite Natrag i Pregled."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Prikvačivanje zaslona blokira zaslon na jednom prikazu.\n\nDa biste otkvačili zaslon, dodirnite i zadržite Pregled."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NE, HVALA"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"POKRENI"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Zaslon je pričvršćen"</string>
diff --git a/core/res/res/values-hu/strings.xml b/core/res/res/values-hu/strings.xml
index ae0daf1..1469718 100644
--- a/core/res/res/values-hu/strings.xml
+++ b/core/res/res/values-hu/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> kiválasztva"</string>
     <string name="deleted_key" msgid="7659477886625566590">"A(z) <xliff:g id="KEY">%1$s</xliff:g> érték törölve"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Munkahelyi <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"A képernyő rögzítésének feloldásához érintse meg és tartsa megérintve egyszerre a Vissza és a Legutóbbi feliratot."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"A képernyő rögzítésének feloldásához érintse meg és tartsa megérintve a Legutóbbi feliratot."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"A képernyő rögzítésének feloldásához tartsa lenyomva a Vissza és az Áttekintés lehetőséget egyszerre."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"A képernyő rögzítésének feloldásához tartsa lenyomva az Áttekintés lehetőséget."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"A képernyő rögzítve van. Szervezete nem engedélyezi a rögzítés feloldását."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Rögzíti a képernyőt?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"A képernyő rögzítése a kijelzőt egyetlen nézetben zárolja.\n\nA kilépéshez érintse meg és tartsa megérintve egyidejűleg a Vissza és Legutóbbi feliratokat."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"A képernyő rögzítése a kijelzőt egyetlen nézetben zárolja.\n\nA kilépéshez érintse meg és tartsa megérintve a Legutóbbi feliratot."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"A képernyőrögzítés lezárja a kijelzőt egyetlen nézetben.\n\nA feloldáshoz tartsa lenyomva a Vissza és az Áttekintés lehetőséget egyszerre."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"A képernyőrögzítés lezárja a kijelzőt egyetlen nézetben.\n\nA feloldáshoz tartsa lenyomva az Áttekintés lehetőséget."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"KÖSZÖNÖM, NEM"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"INDÍT"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Képernyő rögzítve"</string>
diff --git a/core/res/res/values-hy-rAM/strings.xml b/core/res/res/values-hy-rAM/strings.xml
index 312d1c8..b6b200b 100644
--- a/core/res/res/values-hy-rAM/strings.xml
+++ b/core/res/res/values-hy-rAM/strings.xml
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"Ընտրված է <xliff:g id="ITEM">%1$s</xliff:g> տարրը"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> թիվը ջնջված է"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Աշխատանքային <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Այս էկրանը ապամրացնելու համար՝ հպեք և պահեք «Հետ» և «Վերջինները» կոճակները միաժամանակ:"</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Այս էկրանն ապամրացնելու համար՝ հպեք և պահեք «Վերջինները» կոճակը:"</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Էկրանն ամրացված է: Ապամրացումը չի թույլատրվում ձեր կազմակերպության կողմից:"</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Օգտագործե՞լ էկրանի ամրացումը:"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Էկրանի ամրացումը կողպում է էկրանը մեկ պատուհանով:\n\nԴուրս գալու համար՝ հպեք և պահեք «Հետ» և «Վերջինները» կոճակները միաժամանակ:"</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Էկրանի ամրացումը կողպում է էկրանը մեկ պատուհանի համար:\n\nԴուրս գալու համար՝ հպեք և պահեք «Վերջինները»:"</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"ՈՉ, ՇՆՈՐՀԱԿԱԼՈՒԹՅՈՒՆ"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"Այո"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Էկրանն ամրացված է"</string>
diff --git a/core/res/res/values-in/strings.xml b/core/res/res/values-in/strings.xml
index 049e958..8a3f533 100644
--- a/core/res/res/values-in/strings.xml
+++ b/core/res/res/values-in/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> dipilih"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> dihapus"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Kantor <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Untuk melepas sematan layar ini, sentuh lama Kembali dan Terkini secara bersamaan."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Untuk melepas sematan layar ini, sentuh lama Terkini."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Untuk melepas pin layar ini, sentuh dan tahan tombol Kembali dan Ikhtisar secara bersamaan."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Untuk melepas pin layar ini, sentuh dan tahan tombol Ikhtisar."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Layar disematkan. Pelepasan sematan tidak diizinkan oleh organisasi Anda."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Gunakan penyematan layar?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Penyematan layar mengunci layar dalam tampilan tunggal.\n\nUntuk keluar, sentuh lama Kembali dan Terkini secara bersamaan."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Penyematan layar mengunci layar dalam tampilan tunggal.\n\nUntuk keluar, sentuh lama Terkini."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Pemasangan pin pada layar mengunci layar dalam satu tampilan.\n\nUntuk melepas pin, sentuh dan tahan tombol Kembali dan Ikhtisar secara bersamaan."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Pemasangan pin pada layar mengunci layar dalam satu tampilan.\n\nUntuk melepas pin, sentuh dan tahan tombol Ikhtisar."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"TIDAK, TERIMA KASIH"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"MULAI"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Layar disematkan"</string>
diff --git a/core/res/res/values-is-rIS/strings.xml b/core/res/res/values-is-rIS/strings.xml
index f0643ae..7985cae 100644
--- a/core/res/res/values-is-rIS/strings.xml
+++ b/core/res/res/values-is-rIS/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> valið"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> eytt"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g> í vinnu"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Til að losa þennan skjá skaltu halda inni Til baka og Nýlegt samtímis."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Til að losa þennan skjá skaltu halda inni Nýlegt."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Til að taka lásinn af þessari skjámynd skaltu halda inni Til baka og Yfirliti samtímis."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Til að taka lásinn af þessari skjámynd skaltu halda inni Yfirliti."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Skjárinn er festur. Póstskipanin þín leyfir ekki að hann sé losaður."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Nota skjáfestingu?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Skjáfesting læsir skjánum á eina skjámynd.\n\nTil að hætta skaltu halda inni Til baka og Nýlegt samtímis."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Skjáfesting læsir skjánum á eina skjámynd.\n\nTil að hætta skaltu halda inni Nýlegt."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Skjáfesting læsir skjánum á valinni skjámynd.\n\nTil að losa skaltu halda inni Til baka og Yfirliti samtímis."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Skjáfesting læsir skjánum á valinni skjámynd.\n\nTil að losa skaltu halda inni Yfirliti."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NEI, TAKK"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"BYRJA"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Skjár festur"</string>
diff --git a/core/res/res/values-it/strings.xml b/core/res/res/values-it/strings.xml
index 965d9b6..47f9c46c 100644
--- a/core/res/res/values-it/strings.xml
+++ b/core/res/res/values-it/strings.xml
@@ -642,7 +642,7 @@
     <string name="permlab_accessNetworkState" msgid="4951027964348974773">"visualizzazione connessioni di rete"</string>
     <string name="permdesc_accessNetworkState" msgid="8318964424675960975">"Consente all\'applicazione di visualizzare informazioni sulle connessioni di rete, ad esempio le reti esistenti e connesse."</string>
     <string name="permlab_createNetworkSockets" msgid="8018758136404323658">"accesso di rete completo"</string>
-    <string name="permdesc_createNetworkSockets" msgid="3403062187779724185">"Consente all\'applicazione di creare socket di rete e di utilizzare protocolli di rete personalizzati. Il browser e altre applicazioni forniscono mezzi per inviare i dati a Internet, quindi non è richiesta questa autorizzazione per inviare dati a Internet."</string>
+    <string name="permdesc_createNetworkSockets" msgid="3403062187779724185">"Consente all\'app di creare socket di rete e di utilizzare protocolli di rete personalizzati. Il browser e altre applicazioni forniscono mezzi per inviare i dati a Internet, quindi non è richiesta questa autorizzazione per inviare dati a Internet."</string>
     <string name="permlab_writeApnSettings" msgid="505660159675751896">"modifica/intercettazione delle impostazioni di rete e del traffico"</string>
     <string name="permdesc_writeApnSettings" msgid="5333798886412714193">"Consente all\'applicazione di modificare le impostazioni di rete e di intercettare e analizzare tutto il traffico di rete, ad esempio di cambiare il proxy e la porta di qualsiasi APN. Le applicazioni dannose potrebbero monitorare, reindirizzare o modificare i pacchetti di rete a tua insaputa."</string>
     <string name="permlab_changeNetworkState" msgid="958884291454327309">"modifica connettività di rete"</string>
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"Elemento selezionato: <xliff:g id="ITEM">%1$s</xliff:g>"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> eliminato"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g> lavoro"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Per sbloccare questa schermata, tocca e tieni premuto contemporaneamente Indietro e Recenti."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Per sbloccare questa schermata, tocca e tieni premuto Recenti."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Per sbloccare questa schermata, tocca e tieni premute contemporaneamente le opzioni Indietro e Panoramica."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Per sbloccare questa schermata, tocca e tieni premuta l\'opzione Panoramica."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"La schermata è bloccata. La tua organizzazione non ne consente lo sblocco."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Utilizzare il blocco su schermo?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Il blocco su schermo fissa la visualizzazione attuale sullo schermo.\n\nPer uscire, tocca e tieni premuto contemporaneamente Indietro e Recenti."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Il blocco su schermo fissa la visualizzazione attuale sullo schermo.\n\nPer uscire, tocca e tieni premuto Recenti."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Il blocco su schermo blocca il display in un\'unica visualizzazione.\n\nPer sbloccare, tocca e tieni premute contemporaneamente le opzioni Indietro e Panoramica."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Il blocco su schermo blocca il display in un\'unica visualizzazione.\n\nPer sbloccare, tocca e tieni premuta l\'opzione Panoramica."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NO, GRAZIE"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"AVVIA"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Schermata bloccata"</string>
diff --git a/core/res/res/values-iw/strings.xml b/core/res/res/values-iw/strings.xml
index 81936d8..9b77279 100644
--- a/core/res/res/values-iw/strings.xml
+++ b/core/res/res/values-iw/strings.xml
@@ -144,8 +144,8 @@
     <string name="httpErrorFileNotFound" msgid="6203856612042655084">"הקובץ המבוקש לא נמצא."</string>
     <string name="httpErrorTooManyRequests" msgid="1235396927087188253">"בקשות רבות מדי מעובדות. נסה שוב מאוחר יותר."</string>
     <string name="notification_title" msgid="8967710025036163822">"שגיאת כניסה עבור <xliff:g id="ACCOUNT">%1$s</xliff:g>"</string>
-    <string name="contentServiceSync" msgid="8353523060269335667">"סינכרון"</string>
-    <string name="contentServiceSyncNotificationTitle" msgid="397743349191901458">"סינכרון"</string>
+    <string name="contentServiceSync" msgid="8353523060269335667">"סנכרון"</string>
+    <string name="contentServiceSyncNotificationTitle" msgid="397743349191901458">"סנכרון"</string>
     <string name="contentServiceTooManyDeletesNotificationDesc" msgid="8100981435080696431">"יש מחיקות רבות מדי של <xliff:g id="CONTENT_TYPE">%s</xliff:g>."</string>
     <string name="low_memory" product="tablet" msgid="6494019234102154896">"שטח האחסון של הטאבלט מלא. מחק קבצים כדי לפנות מקום."</string>
     <string name="low_memory" product="watch" msgid="4415914910770005166">"שטח האחסון של השעון מלא. מחק כמה קבצים כדי לפנות שטח."</string>
@@ -1429,7 +1429,7 @@
     <string name="forward_intent_to_owner" msgid="1207197447013960896">"אתה משתמש באפליקציה זו מחוץ לפרופיל העבודה שלך"</string>
     <string name="forward_intent_to_work" msgid="621480743856004612">"אתה משתמש באפליקציה זו בפרופיל העבודה שלך"</string>
     <string name="input_method_binding_label" msgid="1283557179944992649">"שיטת קלט"</string>
-    <string name="sync_binding_label" msgid="3687969138375092423">"סינכרון"</string>
+    <string name="sync_binding_label" msgid="3687969138375092423">"סנכרון"</string>
     <string name="accessibility_binding_label" msgid="4148120742096474641">"נגישות"</string>
     <string name="wallpaper_binding_label" msgid="1240087844304687662">"טפט"</string>
     <string name="chooser_wallpaper" msgid="7873476199295190279">"שנה טפט"</string>
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> נבחר"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> נמחק"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"עבודה <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"כדי לבטל הצמדה של מסך זה, גע נגיעה ארוכה בלחצנים \'הקודם\' ו\'אחרונים\' בו-זמנית."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"כדי לבטל הצמדה של מסך זה, גע נגיעה ארוכה בלחצן \'אחרונים\'."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"כדי לבטל את הקפאת המסך הזה, גע בו-זמנית נגיעה ממושכת ב\'הקודם\' ו\'סקירה\'."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"כדי לבטל את הקפאת המסך הזה, גע נגיעה ממושכת ב\'סקירה\'."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"המסך מוצמד. הארגון אוסר לבטל את הצמדתו."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"להשתמש בהצמדת מסך?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"הצמדת מסך נועלת את התצוגה בתצוגה אחת.\n\nכדי לצאת, גע נגיעה ארוכה בלחצנים \'הקודם\' ו\'אחרונים\' בו-זמנית."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"הצמדת מסך נועלת את התצוגה בתצוגה אחת.\n\nכדי לצאת, גע נגיעה ארוכה בלחצן \'אחרונים\'."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"הקפאת המסך נועלת את התצוגה.\n\nכדי לבטל את ההקפאה, גע בו-זמנית נגיעה ממושכת ב\'הקודם\' ו\'סקירה\'."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"הקפאת המסך נועלת את התצוגה.\n\nכדי לבטל את ההקפאה, גע נגיעה ממושכת ב\'סקירה\'."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"לא, תודה"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"הפעל"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"המסך מוצמד"</string>
diff --git a/core/res/res/values-ja/strings.xml b/core/res/res/values-ja/strings.xml
index 1e9d7ba..6df8285 100644
--- a/core/res/res/values-ja/strings.xml
+++ b/core/res/res/values-ja/strings.xml
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g>を選択しました"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g>を削除しました"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"仕事の<xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"この画面の固定を解除するには[戻る]と[最近]を同時に押し続けます。"</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"この画面の固定を解除するには[最近]を押し続けます。"</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"画面が固定されています。会社/組織により解除は許可されていません。"</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"画面固定を使用しますか?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"画面固定では、1つの画面が表示されたままになります。\n\n解除するには[戻る]と[最近]を同時に押し続けます。"</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"画面固定では、1つの画面が表示されたままになります。\n\n解除するには[最近]を押し続けます。"</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"いいえ"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"開始する"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"画面を固定しました"</string>
diff --git a/core/res/res/values-ka-rGE/strings.xml b/core/res/res/values-ka-rGE/strings.xml
index 1621874..d201769 100644
--- a/core/res/res/values-ka-rGE/strings.xml
+++ b/core/res/res/values-ka-rGE/strings.xml
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"არჩეულია <xliff:g id="ITEM">%1$s</xliff:g>"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> წაიშალა"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"სამსახური <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"ამ ეკრანის ფიქსაციის მოსახსნელად, შეეხეთ და არ დააყოვნეთ Back და Recents ერთდროულად."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"ამ ეკრანის ფიქსაციის მოსახსნელად, შეეხეთ და არ დააყოვნეთ Recents-ზე."</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"ეკრანი დაფიქსირებული. ფიქსაციის მოხსნა თქვენო ორგანიზაციის მიერ ნებადართული არ არის."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"გსურთ ეკრანის ფიქსაციის გამოყენება?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"ეკრანის ფიქსაციით ეკრანის ერთი ხედი დაფიქსირდება.\n\nგამოსასვლელად, შეეხეთ და დააყოვნეთ Back და Recents ერთდროულად."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"ეკრანის ფიქსაცია კეტავს ეკრანს ერთ აპზე.\n\nგასასვლელად დააჭირეთ და არ აუშვათ Recents-ს."</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"არა, გმადლობთ"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"დაწყება"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"ეკრანი დაფიქსირდა"</string>
diff --git a/core/res/res/values-kk-rKZ/strings.xml b/core/res/res/values-kk-rKZ/strings.xml
index b53cf66..f2868b2 100644
--- a/core/res/res/values-kk-rKZ/strings.xml
+++ b/core/res/res/values-kk-rKZ/strings.xml
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> таңдалды"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> жойылды"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Жұмыс <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Осы экранды босату үшін бір уақытта «Артқа» және «Жақындағылар» түймелерін түртіп, ұстап тұрыңыз."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Осы экранды босату үшін «Жақындағылар» түймесін түртіп, ұстап тұрыңыз."</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Экран түйрелген. Босатуға ұйымыңыз рұқсат етпейді."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Экранды түйреуді пайдалану керек пе?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Экранды түйреу дисплейді бір көріністе бекітеді.\n\nШығу үшін бір уақытта «Артқа» және «Жақындағылар» түймелерін түртіп, ұстап тұрыңыз."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Экранды түйреу дисплейді бір көріністе бекітеді.\n\nШығу үшін бір уақытта «Жақындағылар» түймесін түртіп, ұстап тұрыңыз."</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"ЖОҚ, РАҚМЕТ"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"БАСТАУ"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Экран түйрелді"</string>
diff --git a/core/res/res/values-km-rKH/strings.xml b/core/res/res/values-km-rKH/strings.xml
index dd29686..ce87d57 100644
--- a/core/res/res/values-km-rKH/strings.xml
+++ b/core/res/res/values-km-rKH/strings.xml
@@ -1761,12 +1761,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"បាន​ជ្រើស <xliff:g id="ITEM">%1$s</xliff:g>"</string>
     <string name="deleted_key" msgid="7659477886625566590">"បាន​លុប <xliff:g id="KEY">%1$s</xliff:g>"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"កន្លែង​ធ្វើការ <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"ដើម្បី​​ផ្ដាច់​​អេក្រង់ ប៉ះ និង​សង្កត់​ថយក្រោយ និង​​បច្ចុប្បន្ន​នៅ​ពេល​តែ​មួយ។"</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"ដើម្បី​ផ្ដាច់​អេក្រង់​នេះ ប៉ះ និង​សង្កត់​បច្ចុប្បន្ន។"</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"អេក្រង់​ត្រូវ​បាន​ភ្ជាប់។ ការ​ផ្ដាច់​មិន​​ត្រូវ​បាន​អនុញ្ញាត​ដោយ​ស្ថាប័ន​របស់​អ្នក។"</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"ប្រើ​ការ​ភ្ជាប់​អេក្រង់?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"ការ​ភ្ជាប់​អេក្រង់​ចាក់សោ​​ការ​បង្ហាញ​ក្នុង​ទិដ្ឋភាព​​តែ​មួយ។\n\nដើម្បី​ចាកចេញ ប៉ះ​ និង​សង្កត់​ថយក្រោយ និង​​​បច្ចុប្បន្ន​​​ក្នុង​ពេល​តែ​មួយ។"</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"ការ​ភ្ជាប់​អេក្រង់​ចាក់សោ​​ការ​បង្ហាញ​ក្នុង​ទិដ្ឋភាព​​តែ​មួយ។\n\nដើម្បី​ចាកចេញ ប៉ះ​ និង​​​សង្កត់​បច្ចុប្បន្ន​។"</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"ទេ, ​​អរគុណ!"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"ចាប់ផ្ដើម"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"បាន​ភ្ជាប់​អេក្រង់"</string>
diff --git a/core/res/res/values-kn-rIN/strings.xml b/core/res/res/values-kn-rIN/strings.xml
index 3e171ff..76a3d95 100644
--- a/core/res/res/values-kn-rIN/strings.xml
+++ b/core/res/res/values-kn-rIN/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> ಆಯ್ಕೆ ಮಾಡಲಾಗಿದೆ"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> ಅಳಿಸಲಾಗಿದೆ"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"ಕೆಲಸ <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"ಈ ಪರದೆ ಅನ್‌ಪಿನ್‌ ಮಾಡಲು, ಹಿಂದೆ ಹಾಗೂ ಇತ್ತೀಚಿನವು ಬಟನ್‌ಗಳನ್ನು ಏಕಕಾಲದಲ್ಲಿ ಸ್ಪರ್ಶಿಸಿ ಹಾಗೂ ಒತ್ತಿ ಹಿಡಿಯಿರಿ."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"ಈ ಪರದೆ ಅನ್‌ಪಿನ್‌ ಮಾಡಲು, ಇತ್ತೀಚಿನವು ಬಟನ್‌ ಸ್ಪರ್ಶಿಸಿ ಹಾಗೂ ಒತ್ತಿ ಹಿಡಿಯಿರಿ."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"ಈ ಪರದೆಯನ್ನು ಅನ್‌ಪಿನ್ ಮಾಡಲು, ಹಿಂದೆ ಮತ್ತು ಅವಲೋಕನವನ್ನು ಏಕ ಸಮಯದಲ್ಲಿ ಸ್ಪರ್ಶಿಸಿ ಮತ್ತು ಒತ್ತಿ ಹಿಡಿದುಕೊಳ್ಳಿ."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"ಈ ಪರದೆಯನ್ನು ಅನ್‌ಪಿನ್ ಮಾಡಲು, ಅವಲೋಕನವನ್ನು ಸ್ಪರ್ಶಿಸಿ ಮತ್ತು ಒತ್ತಿ ಹಿಡಿಯಿರಿ."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"ಪರದೆ ಪಿನ್‌ ಮಾಡಲಾಗಿದೆ. ಅನ್‌ಪಿನ್‌ ಮಾಡಲು ನಿಮ್ಮ ಸಂಸ್ಥೆ ಅವಕಾಶ ಮಾಡಿಕೊಟ್ಟಿಲ್ಲ."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"ಸ್ಕ್ರೀನ್‌ ಪಿನ್ನಿಂಗ್‌ ಬಳಸುವುದೇ?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"ಸ್ಕ್ರೀನ್‌ ಪಿನ್ನಿಂಗ್‌ ಏಕವೀಕ್ಷಣೆಯಲ್ಲಿಯೇ ಡಿಸ್‌ಪ್ಲೇ ಅನ್ನು ಲಾಕ್‌ ಮಾಡುತ್ತದೆ.\n\n ಹೊರಹೋಗಲು, ‘ಹಿಂದೆ’ ಹಾಗೂ ‘ಇತ್ತೀಚಿನವು’ ಬಟನ್‌ಗಳನ್ನು ಏಕಕಾಲದಲ್ಲಿ ಸ್ಪರ್ಶಿಸಿ, ಒತ್ತಿ ಹಿಡಿಯಿರಿ."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"ಸ್ಕ್ರೀನ್‌‌ ಪಿನ್ನಿಂಗ್‌ ಏಕವೀಕ್ಷಣೆಯಲ್ಲಿಯೇ ಡಿಸ್‌ಪ್ಲೇ ಅನ್ನು ಲಾಕ್‌ ಮಾಡುತ್ತದೆ.\n\nಹೊರಹೋಗಲು  ‘ಇತ್ತೀಚಿನವು’ ಅನ್ನು ಸ್ಪರ್ಶಿಸಿ ಹಾಗೂ ಒತ್ತಿ ಹಿಡಿಯಿರಿ."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"ಪರದೆ ಪಿನ್ ಮಾಡುವಿಕೆಯು ಪ್ರದರ್ಶನವನ್ನು ಏಕ ವೀಕ್ಷಣೆಯಲ್ಲಿ ಲಾಕ್ ಮಾಡುತ್ತದೆ.\n\nಅನ್‌ಪಿನ್ ಮಾಡಲು, ಹಿಂದೆ ಮತ್ತು ಅವಲೋಕನವನ್ನು ಏಕ ಸಮಯದಲ್ಲಿ ಸ್ಪರ್ಶಿಸಿ ಮತ್ತು ಒತ್ತಿ ಹಿಡಿದುಕೊಳ್ಳಿ."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"ಪರದೆ ಪಿನ್ ಮಾಡುವಿಕೆಯು ಪ್ರದರ್ಶನವನ್ನು ಏಕ ವೀಕ್ಷಣೆಯಲ್ಲಿ ಲಾಕ್ ಮಾಡುತ್ತದೆ.\n\nಅನ್‌ಪಿನ್ ಮಾಡಲು, ಅವಲೋಕನವನ್ನು ಸ್ಪರ್ಶಿಸಿ ಮತ್ತು ಒತ್ತಿ ಹಿಡಿದುಕೊಳ್ಳಿ."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"ಬೇಡ, ಧನ್ಯವಾದಗಳು"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"ಪ್ರಾರಂಭಿಸು"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"ಸ್ಕ್ರೀನ್‌ ಪಿನ್‌ ಮಾಡಲಾಗಿದೆ"</string>
diff --git a/core/res/res/values-ko/strings.xml b/core/res/res/values-ko/strings.xml
index 2e00b97..7add041 100644
--- a/core/res/res/values-ko/strings.xml
+++ b/core/res/res/values-ko/strings.xml
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g>이(가) 선택됨"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> 삭제됨"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"업무용 <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"이 화면을 고정 해제하려면 뒤로, 최근 버튼을 동시에 길게 누르세요."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"이 화면을 고정 해제하려면 최근을 길게 누르세요."</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"화면이 고정되었습니다. 소속된 조직에서 고정 해제를 허용하지 않습니다."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"화면을 고정하시겠습니까?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"화면 고정을 사용하면 화면을 단일 보기로 잠급니다.\n\n종료하려면 뒤로, 최근 버튼을 동시에 길게 누릅니다."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"화면 고정을 사용하면 화면을 단일 보기로 잠급니다.\n\n종료하려면 최근을 길게 누릅니다."</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"아니요"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"시작"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"화면 고정됨"</string>
diff --git a/core/res/res/values-ky-rKG/strings.xml b/core/res/res/values-ky-rKG/strings.xml
index c03e11f..466c8eb 100644
--- a/core/res/res/values-ky-rKG/strings.xml
+++ b/core/res/res/values-ky-rKG/strings.xml
@@ -2240,12 +2240,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> тандалды"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> өчүрүлдү"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Жумуш <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Бул экранды бошотуу үчүн, бир эле маалда Артка жана Акыркылар баскычтарына тийип, кармап туруңуз."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Бул экранды бошотуу үчүн, Акыркылар баскычына тийип, кармап туруңуз."</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Экран кадалды. Уюмуңуздун уруксатысыз бошото албайсыз."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Экран кадалсынбы?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Экран кадалганда дисплей жалгыз көрүнүштө чагылдырылат.\n\nЧыгуу үчүн, бир эле маалда Артка жана Акыркылар деген баскычтарды коё бербей басып туруңуз."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Экран кадалганда дисплей жалгыз көрүнүштө кулпулайт.\n\nЧыгуу үчүн Акыркылар көрүнүшүн коё бербей басып туруңуз."</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"ЖОК, РАХМАТ"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"БАШТОО"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Экран кадалды"</string>
diff --git a/core/res/res/values-lo-rLA/strings.xml b/core/res/res/values-lo-rLA/strings.xml
index 8c7b629..59ee7ea 100644
--- a/core/res/res/values-lo-rLA/strings.xml
+++ b/core/res/res/values-lo-rLA/strings.xml
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> ຖືກເລືອກແລ້ວ"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> ຖືກລຶບແລ້ວ"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"​ບ່ອນ​ເຮັດ​ວຽກ <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"ເພື່ອ​ຍົກ​ເລີກ​ການ​ປັກ​ໝຸດ​ໜ້າ​ຈໍ​ນີ້, ໃຫ້​ແຕະ​ປຸ່ມ​ກັບ​ຄືນ​​ແລະ​ປຸ່ມ​ແອັບຯ​​ທີ່​ຫາ​ກໍ​ໃຊ້​ຄ້າງໄວ້​ພ້ອມ​ກັນ."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"ເພື່ອ​ຍົກ​ເລີກ​ການ​ປັກ​ໝຸດ​ໜ້າ​ຈໍ​ນີ້, ໃຫ້​ແຕະ​ປຸ່ມ​ແອັບຯ​ທີ່​ຫາ​ກໍ​ໃຊ້​ຄ້າງ​ໄວ້."</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"ໜ້າ​ຈໍ​ຖືກ​ປັກ​ໝຸດ​ໄວ້. ​ອົງ​ກອນ​ຂອງ​ທ່ານບໍ່​​ອະ​ນຸ​ຍາດ​ໃຫ້​ຍົກ​ເລີກ​ການ​ປັກ​ໝຸດ​ໄດ້."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"ໃຊ້​ການ​ປັກ​ໝຸດ​ໜ້າ​ຈໍ​ບໍ່?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"ການ​ປັກ​ໝຸດ​ໜ້າ​ຈໍ​ຈະ​ລັອກ​ໜ້າ​ຈໍ​ໄວ້​ທີ່​ມຸມມອງ​ໃດ​ນຶ່ງ.\n\nເພື່ອ​ອອກ, ໃຫ້​ແຕະ​ປຸ່ມ​ກັບ​ຄືນ​​ແລະ​ປຸ່ມ​ແອັບຯ​​ທີ່​ຫາ​ກໍ​ໃຊ້​ຄ້າງໄວ້​ພ້ອມ​ກັນ."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"ການ​ປັກ​ໝຸດ​ໜ້າ​ຈໍ​ຈະ​ລັອກ​ໜ້າ​ຈໍ​ໄວ້​ທີ່​ມຸມມອງ​ໃດ​ນຶ່ງ.\n\nເພື່​ອ​ອອກ, ໃຫ້​ແຕະ​ປຸ່ມ​ແອັບຯ​ທີ່​ຫາ​ກໍ​ໃຊ້​ຄ້າງ​ໄວ້."</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"ບໍ່, ຂອບ​ໃຈ"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"​ເລີ່ມ"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"​ປັກ​ໝຸດ​ໜ້າ​ຈໍ​ແລ້ວ"</string>
diff --git a/core/res/res/values-lt/strings.xml b/core/res/res/values-lt/strings.xml
index ecc747d..26889e1 100644
--- a/core/res/res/values-lt/strings.xml
+++ b/core/res/res/values-lt/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"Pasirinkta: <xliff:g id="ITEM">%1$s</xliff:g>"</string>
     <string name="deleted_key" msgid="7659477886625566590">"Ištrinta: <xliff:g id="KEY">%1$s</xliff:g>"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Darbo <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Jei norite atsegti šį ekraną, palieskite ir vienu metu laikykite palietę Atgal ir Naujausi."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Jei norite atsegti šį ekraną, palieskite ir laikykite palietę Naujausi."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Jei norite atsegti šį ekraną, vienu metu palieskite ir palaikykite „Atgal“ ir „Apžvalga“."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Jei norite atsegti šį ekraną, palieskite ir palaikykite „Apžvalga“."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Ekranas yra prisegtas. Jūsų organizacija neleidžia jo atsegti."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Naudoti ekrano prisegimo funkciją?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Prisegus ekraną jis bus užrakintas viename rodinyje.\n\nKad išeitumėte, palieskite ir vienu metu laikykite palietę Atgal ir Naujausi."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Prisegus ekraną jis bus užrakintas viename rodinyje.\n\nKad išeitumėte, palieskite ir laikykite palietę Naujausi."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Prisegus ekraną jis bus užrakintas viename rodinyje.\n\nJei norite atsegti, vienu metu palieskite ir palaikykite „Atgal“ ir „Apžvalga“."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Prisegus ekraną jis bus užrakintas viename rodinyje.\n\nJei norite atsegti, palieskite ir palaikykite „Apžvalga“."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NE, AČIŪ"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"ĮJUNGTI"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Ekrano prisegtas"</string>
diff --git a/core/res/res/values-lv/strings.xml b/core/res/res/values-lv/strings.xml
index f5c4c19..cc20a18 100644
--- a/core/res/res/values-lv/strings.xml
+++ b/core/res/res/values-lv/strings.xml
@@ -700,7 +700,7 @@
     <string name="permlab_sdcardRead" product="default" msgid="2188156462934977940">"lasīt SD kartes saturu"</string>
     <string name="permdesc_sdcardRead" product="nosdcard" msgid="3446988712598386079">"Ļauj liet. lasīt USB atm. sat."</string>
     <string name="permdesc_sdcardRead" product="default" msgid="2607362473654975411">"Ļauj lietotnei lasīt SD kartes saturu."</string>
-    <string name="permlab_sdcardWrite" product="nosdcard" msgid="8485979062254666748">"mainīt vai dzēst USB atm. sat."</string>
+    <string name="permlab_sdcardWrite" product="nosdcard" msgid="8485979062254666748">"USB krātuves satura mainīšana/dzēšana"</string>
     <string name="permlab_sdcardWrite" product="default" msgid="8805693630050458763">"SD kartes satura pārveidošana vai dzēšana"</string>
     <string name="permdesc_sdcardWrite" product="nosdcard" msgid="6175406299445710888">"Ļauj lietotnei rakstīt USB atmiņā."</string>
     <string name="permdesc_sdcardWrite" product="default" msgid="4337417790936632090">"Ļauj lietotnei rakstīt SD kartē."</string>
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"Atlasīts: <xliff:g id="ITEM">%1$s</xliff:g>"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> tika dzēsts."</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Darbā: <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Lai atspraustu šo ekrānu, vienlaikus pieskarieties pogām “Atpakaļ” un “Pēdējās” un turiet tās nospiestas."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Lai atspraustu šo ekrānu, pieskarieties pogai “Pēdējās” un turiet to nospiestu."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Lai atspraustu šo ekrānu, vienlaicīgi pieskarieties pogām “Atpakaļ” un “Kopsavilkums” un turiet tās."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Lai atspraustu šo ekrānu, pieskarieties pogai “Kopsavilkums” un turiet to."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Ekrāns ir piesprausts. Jūsu organizācija nav atļāvusi atspraušanu."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Vai izmantot ekrāna piespraušanu?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Ekrāna piespraušana bloķē ekrānu vienā skatā.\n\nLai izietu, vienlaikus pieskarieties pogām “Atpakaļ” un “Pēdējās” un turiet tās nospiestas."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Ekrāna piespraušana bloķē ekrānu vienā skatā.\n\nLai izietu, pieskarieties un pogai “Pēdējās” un turiet to nospiestu."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Izmantojot ekrāna piespraušanu, ekrāns tiek bloķēts, lai tiktu rādīts viens skats.\n\nLai atspraustu ekrānu, vienlaicīgi pieskarieties pogām “Atpakaļ” un “Kopsavilkums” un turiet tās."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Izmantojot ekrāna piespraušanu, ekrāns tiek bloķēts, lai tiktu rādīts viens skats.\n\nLai atspraustu ekrānu, pieskarieties pogai “Kopsavilkums” un turiet to."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NĒ, PALDIES"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"SĀKT"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Ekrāns ir piesprausts"</string>
diff --git a/core/res/res/values-mcc234-mnc08/config.xml b/core/res/res/values-mcc234-mnc08/config.xml
new file mode 100644
index 0000000..13d4d8f
--- /dev/null
+++ b/core/res/res/values-mcc234-mnc08/config.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/*
+** Copyright 2014, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+-->
+
+<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <!-- Don't use roaming icon for considered operators -->
+    <string-array translatable="false" name="config_operatorConsideredNonRoaming">
+        <item>23430</item>
+        <item>23433</item>
+    </string-array>
+</resources>
diff --git a/core/res/res/values-mk-rMK/strings.xml b/core/res/res/values-mk-rMK/strings.xml
index b0b73d6..9d25831 100644
--- a/core/res/res/values-mk-rMK/strings.xml
+++ b/core/res/res/values-mk-rMK/strings.xml
@@ -1761,12 +1761,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"Избрано <xliff:g id="ITEM">%1$s</xliff:g>"</string>
     <string name="deleted_key" msgid="7659477886625566590">"Избришано <xliff:g id="KEY">%1$s</xliff:g>"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Работа <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"За да го откачите екранот, допрете и задржете Назад и Неодамнешни истовремено."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"За да го откачите екранот, допрете и задржете Неодамнешни."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"За да го откачите екранот, допрете и задржете Назад и Краток преглед во исто време."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"За да го откачите екранот, допрете и задржете Краток преглед."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Екранот е закачен. Откачување не е дозволено од вашата организација."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Да се употреби закачување на екранот?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Закачувањето на екранот го заклучува екранот во еден приказ.\n\nЗа да излезете, допрете и задржете Назад и Неодамнешни истовремено."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Закачувањето на екранот го заклучува екранот во еден приказ.\n\nЗа да излезете, допрете и задржете Неодамнешни."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Закачувањето на екранот го заклучува екранот во еден приказ.\n\nЗа откачување, допрете и задржете Назад и Краток преглед во исто време."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Закачувањето на екранот го заклучува екранот во еден приказ.\n\nЗа откачување, допрете и задржете Краток преглед."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"НЕ, БЛАГОДАРАМ"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"СТАРТ"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Екранот е закачен"</string>
diff --git a/core/res/res/values-ml-rIN/strings.xml b/core/res/res/values-ml-rIN/strings.xml
index 55ff40a..91f4603 100644
--- a/core/res/res/values-ml-rIN/strings.xml
+++ b/core/res/res/values-ml-rIN/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> തിരഞ്ഞെടുത്തു"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> ഇല്ലാതാക്കി"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"ഔദ്യോഗികം <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"ഈ സ്ക്രീൻ അൺപിൻ ചെയ്യാൻ, ഒരേസമയം \'മടങ്ങുക\', \'അടുത്തിടെയുള്ളവ\' എന്നിവ സ്‌പർശിച്ച് പിടിക്കുക."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"ഈ സ്ക്രീൻ അൺപിൻ ചെയ്യാൻ, \'അടുത്തിടെയുള്ളവ\' സ്‌പർശിച്ച് പിടിക്കുക."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"ഈ സ്‌ക്രീൻ അൺപിൻ ചെയ്യാൻ \'മടങ്ങുക\', \'ചുരുക്കവിവരണം\' എന്നിവ ഒരേ സമയം സ്‌പർശിച്ച് പിടിക്കുക."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"ഈ സ്‌ക്രീൻ അൺപിൻ ചെയ്യാൻ, ചുരുക്കവിവരണം സ്‌പർശിച്ച് പിടിക്കുക."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"സ്ക്രീൻ പിൻ ചെയ്തിരിക്കുന്നു. നിങ്ങളുടെ ഓർഗനൈസേഷൻ അൺപിൻ ചെയ്യൽ അനുവദിക്കുന്നില്ല."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"സ്ക്രീൻ പിൻ ചെയ്യൽ ഉപയോഗിക്കണോ?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"സ്ക്രീൻ പിന്നുചെയ്യുന്നത്, ഒരൊറ്റ കാഴ്ചയിൽ ഡിസ്പ്ലേ ലോക്കുചെയ്യുന്നതിനിടയാക്കും.\n\nപുറത്തുകടക്കുന്നതിന്, ഒരേസമയം \'മടങ്ങുക\', \'അടുത്തിടെയുള്ളവ\' എന്നിവ സ്‌പർശിച്ച് പിടിക്കുക."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"സ്ക്രീൻ പിന്നുചെയ്യുന്നത്, ഒരൊറ്റ കാഴ്ചയിൽ ഡിസ്പ്ലേ ലോക്കുചെയ്യുന്നതിനിടയാക്കും.\n\nപുറത്തുകടക്കുന്നതിന്, \'അടുത്തിടെയുള്ളവ\' സ്‌പർശിച്ച് പിടിക്കുക."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"സ്‌ക്രീൻ പിൻ ചെയ്യൽ, ഒരൊറ്റ കാഴ്‌ചയിൽ ഡി‌സ്‌പ്ലേയെ ലോക്കുചെയ്യുന്നു.\n\nഅൺപിൻ ചെയ്യാൻ \'മടങ്ങുക\', \'ചുരുക്കവിവരണം\' എന്നിവ ഒരേ സമയം സ്‌പർശിച്ച് പിടിക്കുക."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"സ്‌ക്രീൻ പിൻ ചെയ്യൽ, ഒരൊറ്റ കാഴ്‌ചയിൽ ഡി‌സ്‌പ്ലേയെ ലോക്കുചെയ്യുന്നു.\n\nഅൺപിൻ ചെയ്യാൻ, ചുരുക്കവിവരണം സ്‌പർശിച്ച് പിടിക്കുക."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"വേണ്ട, നന്ദി"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"ആരംഭിക്കുക"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"സ്ക്രീൻ പിൻ ചെയ്തു"</string>
diff --git a/core/res/res/values-mn-rMN/strings.xml b/core/res/res/values-mn-rMN/strings.xml
index 001e1d0..19b0245 100644
--- a/core/res/res/values-mn-rMN/strings.xml
+++ b/core/res/res/values-mn-rMN/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> сонгогдсон"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> устсан"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Ажлын <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Дэлгэцийг суллахын тулд Буцах болон Саяхных-г зэрэг дараад барина уу."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Дэлгэцийг суллахын тулд Саяхных-д хүрээд барина уу."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Энэ дэлгэцийг цуцлахын тулд Буцах болон Тойм харагдацыг зэрэг хүрч барина."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Энэ дэлгэцийг цуцлахын тулд Тойм харагдацанд хүрч барина."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Дэлгэцийг тогтоосон. Дэлгэц суллахыг таны байгууллага зөвшөөрөөгүй."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Дэлгэц тогтоогчийг ашиглах уу?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Дэлгэц тогтоогч нь дэлгэцийг нэг янзаар түгжинэ.\n\nГарахын тулд Буцах болон Саяхных-д зэрэг хүрээд барина уу."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Дэлгэц тогтоогч нь дэлгэцийг нэг янзаар түгжинэ.\n\nГарахын тулд Буцах болон Саяхных-д зэрэг хүрээд барина уу."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Дэлгэц тогтоогч нь дэлгэцийг нэг янзын харагдацаар түгжинэ.\n\nЦуцлахын тулд Буцах болон Тойм харагдацанд зэрэг хүрч барина."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Дэлгэц тогтоогч нь дэлгэцийг нэгэн янзын харагдацаар түгжинэ.\n\nЦуцлахын тулд Тойм харагдацанд хүрч барина."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"ҮГҮЙ"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"ЭХЛҮҮЛЭХ"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Дэлгэцийг тогтоосон"</string>
diff --git a/core/res/res/values-mr-rIN/strings.xml b/core/res/res/values-mr-rIN/strings.xml
index 517f0a3..d04a28a 100644
--- a/core/res/res/values-mr-rIN/strings.xml
+++ b/core/res/res/values-mr-rIN/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> निवडले"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> हटविली"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"कार्य <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"ही स्क्रीन अनपिन करण्यासाठी, एकाच वेळी परत आणि अलीकडील ला स्पर्श करा आणि धरून ठेवा."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"ही स्क्रीन अनपिन करण्यासाठी, अलीकडील ला स्पर्श करा आणि धरून ठेवा."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"ही स्क्रीन अनपिन करण्यासाठी, एकाच वेळी परत आणि विहंगावलोकनास स्पर्श करा आणि धरून ठेवा."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"ही स्क्रीन अनपिन करण्यासाठी, विहंगावलोकनास स्पर्श करा आणि धरून ठेवा."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"स्क्रीन पिन केली आहे. आपल्या संस्थेद्वारे अनपिन करण्यास अनुमती नाही."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"स्क्रीन पिन करणे वापरायचे?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"स्क्रीन पिन करणे एका एकल दृश्यामध्ये प्रदर्शन लॉक करते.\n\nबाहेर पडण्यासाठी, एकाच वेळी परत आणि अलीकडील ला स्पर्श करा आणि धरून ठेवा."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"स्क्रीन पिन करणे एका एकल दृश्यामध्ये प्रदर्शन लॉक करते.\n\nबाहेर पडण्यासाठी, अलीकडील ला स्पर्श करा आणि धरून ठेवा."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"स्क्रीन पिन करणे एका एकल दृश्यामधील प्रदर्शन लॉक करते.\n\nअनपिन करण्यासाठी, एकाच वेळी परत आणि विहंगावलोकनास स्पर्श करा आणि धरून ठेवा."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"स्क्रीन पिन करणे एका एकल दृश्यामधील प्रदर्शन लॉक करते.\n\nअनपिन करण्यासाठी, विहंगावलोकनास स्पर्श करा आणि धरून ठेवा."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"नाही, धन्यवाद"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"प्रारंभ"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"स्क्रीन पिन केली"</string>
diff --git a/core/res/res/values-ms-rMY/strings.xml b/core/res/res/values-ms-rMY/strings.xml
index d2c0f24..d4e34e3 100644
--- a/core/res/res/values-ms-rMY/strings.xml
+++ b/core/res/res/values-ms-rMY/strings.xml
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> dipilih"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> dipadamkan"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Kerja <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Untuk menyahsemat skrin ini, sentuh dan tahan Kembali serta Terbaru serentak."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Untuk menyahsemat skrin ini, sentuh dan tahan Terbaru."</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Skrin disemat. Menyahsemat tidak dibenarkan oleh organisasi anda."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Gunakan penyematan skrin?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Penyematan skrin mengunci paparan dalam paparan tunggal.\n\nUntuk keluar, sentuh dan tahan Tekan serta Terbaru serentak."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Penyematan skrin mengunci paparan dalam paparan tunggal.\n\nUntuk keluar, sentuh dan tahan Terbaru."</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"TIDAK, TERIMA KASIH"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"MULA"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Skrin disemat"</string>
diff --git a/core/res/res/values-my-rMM/strings.xml b/core/res/res/values-my-rMM/strings.xml
index 2dbd261..0222968 100644
--- a/core/res/res/values-my-rMM/strings.xml
+++ b/core/res/res/values-my-rMM/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> ခုရွေးချယ်ထားပြီး"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> ကို ဖျက်ပြီးပါပြီ"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"အလုပ် <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"ဒီမျက်နှာပြင် ပင်ထိုးထားမှုကို ဖြုတ်ရန် နောက် နှင့် မကြာမီတုန်းက ခလုတ်များကို တစ်ချိန်တည်း ထိလျက် ကိုင်ထားပါ။"</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"ဒီမျက်နှာပြင် ပင်ထိုးထားမှုကို ဖြုတ်ရန် နောက် နှင့် မကြာမီတုန်းက ခလုတ်များကို ထိလျက် ကိုင်ထားပါ။."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"ဒီမျက်နှာပြင် ပင်ထိုးမှုကို ဖြုတ်ရန်၊ နောက်သို့ နှင့် ခြုံကြည့်မှု ခလုတ်များကို တစ်ချိန်တည်း ထိကိုင်ထားပါ။"</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"ဒီမျက်နှာပြင် ပင်ထိုးမှုကို ဖြုတ်ရန် ခြုံကြည့်မှု ခလုတ်ကို ထိကိုင်ထားပါ။"</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"မျက်နှာပြင်ကို ပင်ထိုးထားသည်။ ပင်ထိုးထားမှု ဖြုတ်ခြင်းကို သင့် အဖွဲ့အစည်းက ခွင့် မပြုပါ။"</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"မျက်နှာပြင် ပင်ထိုးမှုကို သုံးမလား?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"မျက်နှာပြင်ကို ပင်ထိုးလိုက်ခြင်းက ပြကွက်ကို တစ်ခုတည်းသော မြင်းကွင်းသို့ သော့ပိတ်ထားမည်။ \n\nထွက်လိုက်ရန်၊ နောက် နှင့် မကြာမီတုန်းက ခလုတ်များကို တစ်ချိန်တည်း ထိလျက် ကိုင်ထားပါ။"</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"မျက်နှာပြင်ကို ပင်ထိုးလိုက်ခြင်းက ပြကွက်ကို တစ်ခုတည်းသော မြင်းကွင်းသို့ သော့ပိတ်ထားမည်။ \n\nထွက်လိုက်ရန်၊ နောက် နှင့် မကြာမီတုန်းက ခလုတ်များကို ထိလျက် ကိုင်ထားပါ။"</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"မျက်နှာပြင် ပင်ထိုးမှုက ပြကွက်ကို တစ်ခုတည်းသော မြင်ကွင်းအဖြစ် သော့ပိတ်ထားမည်။ \n\n ပင်ထိုးမှုကို ဖြုတ်ရန်၊ နောက်သို့ နှင့် ခြုံကြည့်မှု ခလုတ်များကို တစ်ချိန်တည်း ထိကိုင်ထားပါ။"</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"မျက်နှာပြင် ပင်ထိုးမှုက ပြကွက်ကို တစ်ခုတည်းသော မြင်ကွင်းအဖြစ် သော့ပိတ်ထားမည်။ \n\n ပင်ထိုးမှုကို ဖြုတ်ရန်၊ ခြုံကြည့်မှု ခလုတ်ကို ထိကိုင်ထားပါ။"</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"မလို၊ ကျေးဇူးပါပဲ"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"စတင်ရန်"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"မျက်နှာပြင်ကို ပင်ထိုးထား"</string>
diff --git a/core/res/res/values-nb/strings.xml b/core/res/res/values-nb/strings.xml
index f25b717..20ad8fd 100644
--- a/core/res/res/values-nb/strings.xml
+++ b/core/res/res/values-nb/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> er valgt"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> er slettet"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Jobb-<xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Hvis du vil løsne denne skjermen, trykker og holder du på Tilbake og Sist brukte samtidig."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Hvis du vil løsne denne skjermen, trykker og holder du på Sist brukte."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Hvis du vil avslutte modusen for denne skjermen, trykker og holder du på Tilbake og Oversikt samtidig."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Hvis du vil avslutte modusen for denne skjermen, trykker og holder du på Oversikt."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Skjermen er festet. Løsning er ikke tillatt av organisasjonen din."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Vil du bruke skjermfesting?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Skjermfesting låser skjermen til én bestemt side.\n\nHvis du vil avslutte, trykker og holder du på Tilbake og Sist brukte samtidig."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Skjermfesting låser skjermen til én bestemt side.\n\nHvis du vil avslutte, trykker og holder du på Sist brukte."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Én-appsmodus låser skjermen til én bestemt side.\n\nHvis du vil avslutte modusen, trykker og holder du på Tilbake og Oversikt samtidig."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Én-appsmodus låser skjermen til én bestemt side.\n\nHvis du vil avslutte modusen, trykker og holder du på Oversikt."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NEI TAKK"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"START"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Skjermen er festet"</string>
diff --git a/core/res/res/values-ne-rNP/strings.xml b/core/res/res/values-ne-rNP/strings.xml
index bb6565e..35a7d37 100644
--- a/core/res/res/values-ne-rNP/strings.xml
+++ b/core/res/res/values-ne-rNP/strings.xml
@@ -1767,12 +1767,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> चयन गरियो"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> हटाइयो"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"कार्य <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"स्क्रिन अनपिन गर्न, उही समयमा भर्खरहरू टच गरेर फेरि होल्ड गर्नुहोस्।"</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"यो स्क्रिन अनपिन गर्न, भर्खरहरू टच गर्नुहोस् र होल्ड गर्नुहोस्।"</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"स्क्रिन अनपिन हुँदैछ। अनपिन गर्ने तपाईँको संगठन द्वारा समर्थित छैन।"</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"स्क्रिन पिन गर्ने प्रयोग गर्नुहुन्छ?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"स्क्रिन पिनिङले एकल दृश्यमा डिस्प्ले लक गर्छ।\n\n बाहिर निस्कन, भर्खरहरू छुनुहोस् होल्ड गर्नुहोस् उही समयमा।"</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"स्क्रिन पिनिङले एकल दृश्यमा डिस्प्ले लक गर्छ।\n\n बाहिर निस्कन, भर्खरहरू छुनुहोस् होल्ड गर्नुहोस्"</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"होइन, धन्यवाद"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"START"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"स्क्रिन पिन गरियो"</string>
diff --git a/core/res/res/values-nl/strings.xml b/core/res/res/values-nl/strings.xml
index 137137c..31deedd 100644
--- a/core/res/res/values-nl/strings.xml
+++ b/core/res/res/values-nl/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> geselecteerd"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> verwijderd"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Werk <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Als u dit scherm wilt losmaken, blijft u \'Terug\' en \'Recente schermen\' tegelijkertijd aanraken."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Als u dit scherm wilt losmaken, blijft u \'Recente schermen\' aanraken."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Blijf \'Terug\' en \'Overzicht\' tegelijk aanraken om dit scherm los te maken."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Blijf \'Overzicht\' aanraken om dit scherm los te maken."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Scherm is vastgezet. Losmaken is niet toegestaan door uw organisatie."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Scherm vastzetten?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Door het scherm vast te zetten, wordt het display vergrendeld in één weergave.\n\nAls u deze modus wilt verlaten, blijft u \'Terug\' en \'Recente schermen\' tegelijkertijd aanraken."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Door het scherm vast te zetten, wordt het display in één weergave vergrendeld.\n\nAls u deze modus wilt verlaten, bljift u \'Recente schermen\' aanraken."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Met scherm vastzetten wordt het beeldscherm vergrendeld op één weergave.\n\nBlijf \'Terug\' en \'Overzicht\' tegelijk aanraken om het scherm los te maken."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Met scherm vastzetten wordt het beeldscherm vergrendeld op één weergave.\n\nBlijf \'Overzicht\' aanraken om het scherm los te maken."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NEE, BEDANKT"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"START"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Scherm vastgezet"</string>
diff --git a/core/res/res/values-pl/strings.xml b/core/res/res/values-pl/strings.xml
index c195906..c734604 100644
--- a/core/res/res/values-pl/strings.xml
+++ b/core/res/res/values-pl/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"Wybrałeś <xliff:g id="ITEM">%1$s</xliff:g>"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> usunięte"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g> (praca)"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Aby odpiąć ekran, kliknij i przytrzymaj jednocześnie Wróć i Ostatnie."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Aby odpiąć ekran, kliknij i przytrzymaj Ostatnie."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Aby odpiąć ten ekran, naciśnij i przytrzymaj jednocześnie Wstecz i Przegląd."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Aby odpiąć ten ekran, naciśnij i przytrzymaj Przegląd."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Ekran jest przypięty. Ustawienia organizacji nie pozwalają go odpiąć."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Przypiąć ekran?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Przypięcie ekranu blokuje na nim jeden widok.\n\nAby zakończyć ten tryb, kliknij i przytrzymaj jednocześnie Wróć i Ostatnie."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Przypięcie ekranu blokuje na nim jeden widok.\n\nAby zakończyć ten tryb, kliknij i przytrzymaj Ostatnie."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Przypięcie ekranu powoduje zablokowanie wyświetlacza w jednym widoku.\n\nAby odpiąć ekran, naciśnij i przytrzymaj jednocześnie Wstecz i Przegląd."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Przypięcie ekranu powoduje zablokowanie wyświetlacza w jednym widoku.\n\nAby odpiąć ekran, naciśnij i przytrzymaj Przegląd."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NIE, DZIĘKUJĘ"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"TAK"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Ekran przypięty"</string>
diff --git a/core/res/res/values-pt-rPT/strings.xml b/core/res/res/values-pt-rPT/strings.xml
index a7f10ad..f2f62a8 100644
--- a/core/res/res/values-pt-rPT/strings.xml
+++ b/core/res/res/values-pt-rPT/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> selecionado"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> eliminado"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g> de trabalho"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Para soltar este ecrã, toque sem soltar em Anterior e Recentes ao mesmo tempo."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Para soltar este ecrã, toque sem soltar em Recentes."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Para soltar este ecrã, toque sem soltar em Retroceder e Visão geral em simultâneo."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Para soltar este ecrã, toque sem soltar em Visão geral."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"O ecrã está fixo. A sua entidade não o(a) autoriza a soltá-lo."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Pretende utilizar a fixação do ecrã?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"A fixação do ecrã bloqueia o visor numa única vista.\n\nPara sair, toque sem soltar em Anterior e Recentes ao mesmo tempo."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"A fixação do ecrã bloqueia o visor numa única vista.\n\nPara sair, toque sem soltar em Recentes."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"A fixação do ecrã bloqueia o ecrã numa vista única.\n\nPara soltar, toque sem soltar em Retroceder e Visão geral em simultâneo."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"A fixação do ecrã bloqueia o ecrã numa vista única.\n\nPara soltar, toque sem soltar em Visão geral."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NÃO, OBRIGADO"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"INICIAR"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Ecrã fixo"</string>
diff --git a/core/res/res/values-pt/strings.xml b/core/res/res/values-pt/strings.xml
index 77bba26..f18eb46 100644
--- a/core/res/res/values-pt/strings.xml
+++ b/core/res/res/values-pt/strings.xml
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> selecionado"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> excluído"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Trabalho: <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Para liberar esta tela, mantenha pressionados \"Voltar\" e \"Recentes\"."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Para liberar esta tela, mantenha pressionado \"Recentes\"."</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"A tela está fixada. A liberação não é permitida por sua organização."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Usar fixação de tela?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"A fixação de tela bloqueia o visor em uma visualização única.\n\nPara sair, mantenha pressionados \"Voltar\" e \"Recentes\"."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"A fixação de tela bloqueia o visor em uma visualização única.\n\nPara sair, mantenha pressionado \"Recentes\"."</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NÃO, OBRIGADO"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"INICIAR"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Tela fixada"</string>
diff --git a/core/res/res/values-ro/strings.xml b/core/res/res/values-ro/strings.xml
index 9b90e9a..55af6e3 100644
--- a/core/res/res/values-ro/strings.xml
+++ b/core/res/res/values-ro/strings.xml
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> selectat"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> a fost șters"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g> de serviciu"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Pentru a anula fixarea acestui ecran, atingeți și țineți apăsat pe Înapoi și Recente în același timp."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Pentru a anula fixarea acestui ecran, atingeți și țineți apăsat pe Recente."</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Ecranul este fixat. Anularea fixării nu este permisă de organizația dvs."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Utilizați fixarea ecranului?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Dacă fixați ecranul, rămâne o singură vizualizare.\n\nPentru a ieși, atingeți și țineți apăsat pe Înapoi și Recente în același timp."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Dacă fixați ecranul, rămâne o singură vizualizare.\n\nPentru a ieși, atingeți și țineți apăsat pe Recente."</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NU, MULȚUMESC"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"PORNIȚI"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Ecran fixat"</string>
diff --git a/core/res/res/values-ru/strings.xml b/core/res/res/values-ru/strings.xml
index 1ab0757..d045806 100644
--- a/core/res/res/values-ru/strings.xml
+++ b/core/res/res/values-ru/strings.xml
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"Выбран элемент <xliff:g id="ITEM">%1$s</xliff:g>"</string>
     <string name="deleted_key" msgid="7659477886625566590">"Цифра <xliff:g id="KEY">%1$s</xliff:g> удалена"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Рабочий <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Чтобы отключить блокировку, одновременно нажмите и удерживайте кнопки \"Назад\" и \"Недавние приложения\"."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Чтобы отключить блокировку, нажмите и удерживайте кнопку недавних приложений."</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Блокировка включена. Ее отключение запрещено правилами организации."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Использовать блокировку в приложении?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Режим блокировки не позволяет переходить в другие приложения.\n\nДля выхода из него одновременно нажмите и удерживайте кнопки \"Назад\" и \"Недавние приложения\"."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Эта функция блокирует переход в другие приложения.\n\nЧтобы отключить блокировку, нажмите и удерживайте кнопку недавних приложений."</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"НЕТ"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"ДА"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Блокировка включена"</string>
diff --git a/core/res/res/values-si-rLK/strings.xml b/core/res/res/values-si-rLK/strings.xml
index 30a7f99..fbc2b27 100644
--- a/core/res/res/values-si-rLK/strings.xml
+++ b/core/res/res/values-si-rLK/strings.xml
@@ -1761,12 +1761,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> තෝරාගෙන ඇත"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> මකා දමන ලදි"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"වැඩ <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"මෙම තිරය අගුළු ඇරීමට, ආපසු සහ මෑත බොත්තම් එකම විටෙක ස්පර්ශ කර අල්ලාගෙන සිටින්න."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"මෙම තිරය අගුළු ඇරීමට, මෑත බොත්තම ස්පර්ශ කර අල්ලාගෙන සිටින්න."</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"තිරය අගුළු දමා ඇත. ඔබගේ සංවිධානය විසින් අගුළු ඇරීමට ඉඩ නොදෙයි."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"තිරය අගුළු දැමීම භාවිත කරනවාද?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"තිර ඇමිණුම තනි පෙනුමක් තුළ දර්ශනයට අගුළු දමයි.\n\nඉවත් වීමට, ආපසු සහ බොත්තම් ස්පර්ශකොට අල්ලා ගෙන සිටින්න."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"තනි පෙනුමක් තුළ තිරයේ අගුළු ඇරීමට, දර්ශනයට අගුළු දමයි.\n\nඉවත් වීමට, ස්පර්ශකොට මෑත දේවල් අල්ලා ගන්න."</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"නැත, ස්තූතියි"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"ආරම්භය"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"තිරය අගුළු දමා ඇත"</string>
diff --git a/core/res/res/values-sk/strings.xml b/core/res/res/values-sk/strings.xml
index 9233d55..7a889c52 100644
--- a/core/res/res/values-sk/strings.xml
+++ b/core/res/res/values-sk/strings.xml
@@ -700,9 +700,9 @@
     <string name="permlab_sdcardRead" product="default" msgid="2188156462934977940">"čítať obsah karty SD"</string>
     <string name="permdesc_sdcardRead" product="nosdcard" msgid="3446988712598386079">"Povoľuje ap. čítať obsah USB."</string>
     <string name="permdesc_sdcardRead" product="default" msgid="2607362473654975411">"Povoľuje aplikácii čítať obsah karty SD."</string>
-    <string name="permlab_sdcardWrite" product="nosdcard" msgid="8485979062254666748">"upraviť alebo odstrániť obsah úložiska USB"</string>
+    <string name="permlab_sdcardWrite" product="nosdcard" msgid="8485979062254666748">"upraviť alebo odstrániť obsah v úložisku USB"</string>
     <string name="permlab_sdcardWrite" product="default" msgid="8805693630050458763">"úprava alebo odstránenie obsahu na karte SD"</string>
-    <string name="permdesc_sdcardWrite" product="nosdcard" msgid="6175406299445710888">"Umožňuje aplikácii zápis do ukladacieho priestoru USB."</string>
+    <string name="permdesc_sdcardWrite" product="nosdcard" msgid="6175406299445710888">"Umožňuje aplikácii zapisovať do úložiska USB."</string>
     <string name="permdesc_sdcardWrite" product="default" msgid="4337417790936632090">"Umožňuje aplikácii zápis na kartu SD."</string>
     <string name="permlab_mediaStorageWrite" product="default" msgid="6859839199706879015">"úprava alebo odstránenie obsahu interného ukladacieho priestoru média"</string>
     <string name="permdesc_mediaStorageWrite" product="default" msgid="8189160597698529185">"Umožňuje aplikácii zmeniť obsah interného ukladacieho priestoru média."</string>
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"Bola vybratá položka <xliff:g id="ITEM">%1$s</xliff:g>"</string>
     <string name="deleted_key" msgid="7659477886625566590">"Číslo <xliff:g id="KEY">%1$s</xliff:g> bolo odstránené"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Práca – <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Ak chcete obrazovku uvoľniť, súčasne stlačte a podržte tlačidlá Späť a Nedávne."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Ak chcete obrazovku uvoľniť, stlačte a podržte tlačidlo Nedávne."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Ak chcete uvoľniť túto obrazovku, súčasne klepnite na tlačidlá Späť a Prehľad a podržte ich."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Ak chcete uvoľniť túto obrazovku, klepnite na tlačidlo Prehľad a podržte ho."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Obrazovka je pripnutá. Uvoľnenie vaša organizácia nepovoľuje."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Použiť pripnutie k obrazovke?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Pripnutím k obrazovke uzamknete displej v jednom zobrazení.\n\nRežim ukončíte súčasným klepnutím na tlačidlá Späť a Nedávne."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Pripnutím k obrazovke uzamknete displej v jednom zobrazení.\n\nRežim ukončíte stlačením a podržaním tlačidla Nedávne."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Pripnutie k obrazovke uzamkne obrazovku v jednom zobrazení.\n\nAk ju chcete uvoľniť, súčasne klepnite na tlačidlá Späť a Prehľad a podržte ich."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Pripnutie k obrazovke uzamkne obrazovku v jednom zobrazení.\n\nAk ju chcete uvoľniť, klepnite na tlačidlo Prehľad a podržte ho."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NIE, ĎAKUJEM"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"SPUSTIŤ"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Obrazovka bola pripnutá"</string>
diff --git a/core/res/res/values-sl/strings.xml b/core/res/res/values-sl/strings.xml
index 4ed1221..034db0e5 100644
--- a/core/res/res/values-sl/strings.xml
+++ b/core/res/res/values-sl/strings.xml
@@ -292,8 +292,8 @@
     <string name="permdesc_readSms" product="tablet" msgid="2467981548684735522">"Aplikaciji omogoča branje SMS-ov, shranjenih v tabličnem računalniku ali na kartici SIM. S tem lahko aplikacija bere vse SMS-e, ne glede na njihovo vsebino ali zaupnost."</string>
     <string name="permdesc_readSms" product="default" msgid="3695967533457240550">"Aplikaciji omogoča branje SMS-ov, shranjenih v telefonu ali na kartici SIM. S tem lahko aplikacija bere vse SMS-e, ne glede na njihovo vsebino ali zaupnost."</string>
     <string name="permlab_writeSms" msgid="3216950472636214774">"urejanje sporočil (SMS ali MMS)"</string>
-    <string name="permdesc_writeSms" product="tablet" msgid="5160413947794501538">"Programu omogoča zapisovanje v sporočila SMS, shranjena v tabličnem računalniku ali na kartici SIM. Zlonamerni programi lahko izbrišejo vaša sporočila."</string>
-    <string name="permdesc_writeSms" product="default" msgid="7268668709052328567">"Programu omogoča zapisovanje v sporočila SMS, shranjena v telefonu ali na kartici SIM. Zlonamerni programi lahko izbrišejo vaša sporočila."</string>
+    <string name="permdesc_writeSms" product="tablet" msgid="5160413947794501538">"Aplikaciji omogoča pisanje v sporočila SMS, shranjena v tabličnem računalniku ali na kartici SIM. Zlonamerne aplikacije lahko izbrišejo vaša sporočila."</string>
+    <string name="permdesc_writeSms" product="default" msgid="7268668709052328567">"Aplikaciji omogoča pisanje v sporočila SMS, shranjena v telefonu ali na kartici SIM. Zlonamerne aplikacije lahko izbrišejo vaša sporočila."</string>
     <string name="permlab_receiveWapPush" msgid="5991398711936590410">"prejemanje sporočil (WAP)"</string>
     <string name="permdesc_receiveWapPush" msgid="748232190220583385">"Aplikaciji omogoča prejemanje in obdelavo sporočil WAP. S tem lahko aplikacija nadzoruje ali izbriše sporočila, poslana v napravo, ne da bi vam jih pokazala."</string>
     <string name="permlab_receiveBluetoothMap" msgid="7593811487142360528">"prejemanje sporočil Bluetooth (MAP)"</string>
@@ -702,7 +702,7 @@
     <string name="permdesc_sdcardRead" product="default" msgid="2607362473654975411">"Aplikaciji omogoča branje vsebine kartice SD."</string>
     <string name="permlab_sdcardWrite" product="nosdcard" msgid="8485979062254666748">"spreminjanje ali brisanje vsebine shrambe USB"</string>
     <string name="permlab_sdcardWrite" product="default" msgid="8805693630050458763">"spreminjanje ali brisanje vsebine kartice SD"</string>
-    <string name="permdesc_sdcardWrite" product="nosdcard" msgid="6175406299445710888">"Programu omogoča zapisovanje v pomnilnik USB."</string>
+    <string name="permdesc_sdcardWrite" product="nosdcard" msgid="6175406299445710888">"Aplikaciji omogoča zapisovanje v pomnilnik USB."</string>
     <string name="permdesc_sdcardWrite" product="default" msgid="4337417790936632090">"Programu omogoča pisanje na kartico SD."</string>
     <string name="permlab_mediaStorageWrite" product="default" msgid="6859839199706879015">"spreminjanje/brisanje vsebine notranje shrambe nosilca podatkov"</string>
     <string name="permdesc_mediaStorageWrite" product="default" msgid="8189160597698529185">"Programu omogoča spreminjanje vsebine notranje shrambe nosilca podatkov."</string>
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"Izbrano: <xliff:g id="ITEM">%1$s</xliff:g>"</string>
     <string name="deleted_key" msgid="7659477886625566590">"Številka <xliff:g id="KEY">%1$s</xliff:g> je izbrisana"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g> za delo"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Če želite odpeti ta zaslon, se hkrati dotaknite in pridržite »Nazaj« in »Nedavni«."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Če želite odpeti ta zaslon, se dotaknite in pridržite »Nedavni«."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Če želite odpeti ta zaslon, se hkrati dotaknite tipk za nazaj in za pregled ter ju pridržite."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Če želite odpeti ta zaslon, se dotaknite tipke za pregled in jo pridržite."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Zaslon je pripet. Vaša organizacija ne dovoli odpenjanja."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Želite uporabljati pripenjanje zaslona?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Pripenjanje zaslona zaklene zaslon v en pogled.\n\nČe ga želite zapustiti, se hkrati dotaknite ter pridržite »Nazaj« in »Nedavni«."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Pripenjanje zaslona zaklene zaslon v en pogled.\n\nČe ga želite zapustiti, se dotaknite in pridržite »Nedavni«."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Pripenjanje zaslonov zaklene zaslon v enojnem pogledu.\n\nČe ga želite odpeti, se hkrati dotaknite tipk za nazaj in za pregled ter ju pridržite."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Pripenjanje zaslonov zaklene zaslon v enojnem pogledu.\n\nČe ga želite odpeti, se dotaknite tipke za pregled in jo pridržite."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NE, HVALA"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"ZAŽENI"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Zaslon je pripet"</string>
diff --git a/core/res/res/values-sr/strings.xml b/core/res/res/values-sr/strings.xml
index a8e2390..2d9f09e 100644
--- a/core/res/res/values-sr/strings.xml
+++ b/core/res/res/values-sr/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"Изабрали сте <xliff:g id="ITEM">%1$s</xliff:g>"</string>
     <string name="deleted_key" msgid="7659477886625566590">"Избрисали сте <xliff:g id="KEY">%1$s</xliff:g>"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g> на послу"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Да бисте откачили овај екран, истовремено додирните и задржите Назад и Недавно."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Да бисте откачили овај екран, додирните и задржите Недавно."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Да бисте откачили овај екран, истовремено додирните и задржите Назад и Преглед."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Да бисте откачили овај екран, додирните и задржите Преглед."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Екран је закачен. Ваша организација не дозвољава откачињање."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Желите ли да користите качење екрана?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Качење екрана закључава екран у једном приказу.\n\nДа бисте изашли, истовремено додирните и задржите Назад и Недавно."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Качење екрана закључава екран у једном приказу.\n\nДа бисте изашли, додирните и задржите Недавно."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Качење екрана закључава екран и задржава исти приказ.\n\nДа бисте га откачили, истовремено додирните и задржите Назад и Преглед."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Качење екрана закључава екран и задржава исти приказ.\n\nДа бисте га откачили, додирните и задржите Преглед."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"НЕ, ХВАЛА"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"ПОКРЕНИ"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Екран је закачен"</string>
diff --git a/core/res/res/values-sv/strings.xml b/core/res/res/values-sv/strings.xml
index 139699a..fa31aaf 100644
--- a/core/res/res/values-sv/strings.xml
+++ b/core/res/res/values-sv/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> har markerats"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> har tagits bort"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g> för arbetet"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Om du inte vill att skärmen ska vara fäst håller du ned Föregående och Senaste samtidigt."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Håll ned Senaste om du inte vill att skärmen ska vara fäst."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Om du vill lossa skärmen trycker du länge på Tillbaka och Översikt samtidigt."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Om du vill lossa skämen trycker du länge på Översikt."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Skärmen är fäst. Din organisation tillåter inte att du avslutar läget."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Fäst skärmen?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Om skärmen fästs låses bilden.\n\nAvsluta läget genom att hålla ned Föregående och Senaste samtidigt."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Om skärmen fästs låses bilden.\n\nAnsluta läget genom att hålla ned Senaste."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"När du fäster skärmen blir den låst i en viss vy.\n\nOm du vill lossa den trycker du länge på Tillbaka och Översikt samtidigt."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"När du fäster skärmen blir den låst i en viss vy.\n\nOm du vill lossa den trycker du länge på Översikt."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"NEJ TACK"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"STARTA"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Skärmen är fäst"</string>
diff --git a/core/res/res/values-sw/strings.xml b/core/res/res/values-sw/strings.xml
index 417b48b..062c3ec 100644
--- a/core/res/res/values-sw/strings.xml
+++ b/core/res/res/values-sw/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> kimechaguliwa"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> kimefutwa"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Ya kazini <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Ili ubandue skrini hii, gusa na ushikilie Nyuma na Ya hivi majuzi kwa wakati mmoja."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Ili ubandue skrini hii, gusa na ushikilie Ya hivi karibuni."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Ili ubanue skrini hii, gusa na ushikilie Nyuma na Muhtasari kwa wakati mmoja."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Ili ubanue skrini hii, gusa na ushikilie Muhtasari."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Skrini imebandikwa. Ubanduaji hauruhusiwi na shirika lako."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Ungependa kutumia ubandikaji skrini?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Ubandikaji skrini hufunga skrini kwenye onyesho moja.\n\nIli uondoe, gusa na ushikilie Nyuma na Ya hivi majuzi kwa wakati mmoja."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Ubandikaji skrini hufunga skrini kwenye onyesho moja.\n\nIli uondoe, gusa na ushikilie Ya hivi majuzi."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Ubandikaji skrini hufunga skrini kwenye onyesho moja.\n\nIli uibanue, gusa na ushikilie Nyuma na Muhtasari kwa wakati mmoja."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Ubandikaji skrini hufunga skrini kwenye onyesho moja. \n\nIli uibanue, gusa na ushikilie Muhtasari."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"HAPANA, ASANTE"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"ANZA"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Skrini imebandikwa"</string>
diff --git a/core/res/res/values-ta-rIN/strings.xml b/core/res/res/values-ta-rIN/strings.xml
index f8009910..e2c39c7 100644
--- a/core/res/res/values-ta-rIN/strings.xml
+++ b/core/res/res/values-ta-rIN/strings.xml
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> தேர்ந்தெடுக்கப்பட்டது"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> நீக்கப்பட்டது"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"பணியிடம் <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"இந்தத் திரையின் பின்னை அகற்ற, ஒரே நேரத்தில் முந்தைய மற்றும் சமீபத்தியவையைத் தொட்டு பிடிக்கவும்."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"திரையின் பின்னை அகற்ற, சமீபத்தியவையைத் தொட்டு பிடிக்கவும்."</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"திரை பின் செய்யப்பட்டது. பின்னை அகற்ற உங்கள் நிறுவனம் ஆதரிக்கவில்லை."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"திரையை பின் செய்தலைப் பயன்படுத்தவா?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"திரையைப் பின் செய்தல், ஒரே காட்சியில் திரையைப் பூட்டுகிறது.\n\nவெளியேற, ஒரே நேரத்தில் முந்தையது மற்றும் சமீபத்தியவையை அழுத்திப் பிடிக்கவும்."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"திரையைப் பின் செய்தல், ஒரே காட்சியில் திரையைப் பூட்டுகிறது.\n\nவெளியேற, சமீபத்தியவையை அழுத்திப் பிடிக்கவும்."</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"வேண்டாம், நன்றி"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"தொடங்கு"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"திரை பின் செய்யப்பட்டது"</string>
diff --git a/core/res/res/values-te-rIN/strings.xml b/core/res/res/values-te-rIN/strings.xml
index b9c3bbd..cfb2b4e 100644
--- a/core/res/res/values-te-rIN/strings.xml
+++ b/core/res/res/values-te-rIN/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> ఎంచుకోబడింది"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> తొలగించబడింది"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"కార్యాలయం <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"ఈ స్క్రీన్‌ను అన్‌పిన్ చేయడానికి, వెనుకకు మరియు ఇటీవలివి బటన్‌లను ఒకేసారి నొక్కి, ఉంచండి."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"ఈ స్క్రీన్‌ను అన్‌పిన్ చేయడానికి, ఇటీవలివి బటన్‌ను నొక్కి, ఉంచండి."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"ఈ స్క్రీన్‌ను అన్‌పిన్ చేయడానికి, వెనుకకు మరియు స్థూలదృష్టి బటన్‌లను ఒకేసారి నొక్కి, ఉంచండి."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"ఈ స్క్రీన్‌ని అన్‌పిన్ చేయడానికి, స్థూలదృష్టిని నొక్కి, ఉంచండి."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"స్క్రీన్ పిన్ చేయబడింది. మీ సంస్థలో అన్‌పిన్ చేయడానికి అనుమతి లేదు."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"స్క్రీన్ పిన్నింగ్‌ను ఉపయోగించాలా?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"స్క్రీన్ పిన్నింగ్ ఒక్క వీక్షణలో డిస్‌ప్లేను లాక్ చేస్తుంది.\n\nనిష్క్రమించడానికి, వెనుకకు మరియు ఇటీవలివి బటన్‌లను ఒకేసారి నొక్కి, ఉంచండి."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"స్క్రీన్ పిన్నింగ్ ఒక్క వీక్షణలో డిస్‌ప్లేను లాక్ చేస్తుంది.\n\nనిష్క్రమించడానికి, ఇటీవలివి బటన్‌ను నొక్కి, ఉంచండి."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"స్క్రీన్ పిన్నింగ్ ఒక్క వీక్షణలో డిస్‌ప్లేను లాక్ చేస్తుంది.\n\nఅన్‌పిన్ చేయడానికి, వెనుకకు మరియు స్థూలదృష్టి బటన్‌లను ఒకేసారి నొక్కి, ఉంచండి."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"స్క్రీన్ పిన్నింగ్ ఒక్క వీక్షణలో డిస్‌ప్లేను లాక్ చేస్తుంది.\n\nఅన్‌పిన్ చేయడానికి, స్థూలదృష్టిని నొక్కి, ఉంచండి."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"వద్దు, ధన్యవాదాలు"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"ప్రారంభించు"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"స్క్రీన్ పిన్ చేయబడింది"</string>
diff --git a/core/res/res/values-th/strings.xml b/core/res/res/values-th/strings.xml
index abc0953..32d4897 100644
--- a/core/res/res/values-th/strings.xml
+++ b/core/res/res/values-th/strings.xml
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"เลือก <xliff:g id="ITEM">%1$s</xliff:g>"</string>
     <string name="deleted_key" msgid="7659477886625566590">"ลบ <xliff:g id="KEY">%1$s</xliff:g> แล้ว"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g>ที่ทำงาน"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"หากต้องการเลิกตรึงหน้าจอ แตะ \"กลับ\" และ \"ล่าสุด\" ค้างไว้พร้อมกัน"</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"หากต้องการเลิกตรึงหน้าจอ ให้แตะ \"ล่าสุด\" ค้างไว้"</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"ตรึงหน้าจอแล้ว องค์กรของคุณไม่อนุญาตให้เลิกตรึง"</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"ใช้การตรึงหน้าจอไหม"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"การตรึงหน้าจอจะล็อกหน้าจอให้อยู่ในมุมมองเดียว\n\nหากต้องการออก ให้แตะ \"กลับ\" และ \"ล่าสุด\" ค้างไว้พร้อมกัน"</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"การตรึงหน้าจอจะล็อกหน้าจอให้อยู่ในมุมมองเดียว\n\nหากต้องการออก แตะ \"ล่าสุด\" ค้างไว้"</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"ไม่เป็นไร ขอบคุณ"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"เริ่มต้น"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"ตรึงหน้าจอแล้ว"</string>
diff --git a/core/res/res/values-tl/strings.xml b/core/res/res/values-tl/strings.xml
index f1083c5..3817299 100644
--- a/core/res/res/values-tl/strings.xml
+++ b/core/res/res/values-tl/strings.xml
@@ -700,7 +700,7 @@
     <string name="permlab_sdcardRead" product="default" msgid="2188156462934977940">"basahin ang mga nilalaman ng iyong SD card"</string>
     <string name="permdesc_sdcardRead" product="nosdcard" msgid="3446988712598386079">"Pinapayagan ang app na basahin ang mga nilalaman ng iyong USB storage."</string>
     <string name="permdesc_sdcardRead" product="default" msgid="2607362473654975411">"Pinapayagan ang app na basahin ang mga nilalaman ng iyong SD card."</string>
-    <string name="permlab_sdcardWrite" product="nosdcard" msgid="8485979062254666748">"bago tanggal laman USB storage"</string>
+    <string name="permlab_sdcardWrite" product="nosdcard" msgid="8485979062254666748">"Baguhin/Tanggalin ang laman ng USB"</string>
     <string name="permlab_sdcardWrite" product="default" msgid="8805693630050458763">"baguhin o tanggalin ang mga nilalaman ng iyong SD card"</string>
     <string name="permdesc_sdcardWrite" product="nosdcard" msgid="6175406299445710888">"Pinapayagan ang app na magsulat sa USB storage."</string>
     <string name="permdesc_sdcardWrite" product="default" msgid="4337417790936632090">"Pinapayagan ang app na magsulat sa SD card."</string>
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"Napili ang <xliff:g id="ITEM">%1$s</xliff:g>"</string>
     <string name="deleted_key" msgid="7659477886625566590">"Tinanggal ang <xliff:g id="KEY">%1$s</xliff:g>"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g> sa Trabaho"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Upang i-unpin ang screen na ito, pindutin nang matagal ang Bumalik at Mga Kamakailan nang sabay-sabay."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Upang i-unpin ang screen na ito, pindutin nang matagal ang Mga Kamakailan."</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Naka-pin ang screen. Hindi pinapayagan ng iyong organisasyon ang pag-a-unpin."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Gamitin ang pagpi-pin ng screen?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Nila-lock ng pagpi-pin ng screen ang display sa iisang view.\n\nUpang lumabas, pindutin nang matagal ang Bumalik at Mga Kamakailan nang sabay-sabay."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Nila-lock ng pagpi-pin ng screen ang display sa iisang view.\n\nUpang lumabas, pindutin nang matagal ang Mga Kamakailan."</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"HINDI, SALAMAT NA LANG"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"SIMULAN"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Naka-pin ang screen"</string>
diff --git a/core/res/res/values-tr/strings.xml b/core/res/res/values-tr/strings.xml
index a81aaab..f480980 100644
--- a/core/res/res/values-tr/strings.xml
+++ b/core/res/res/values-tr/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> seçildi"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> silindi"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g> (İş)"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Bu ekranın sabitlemesini kaldırmak için Geri ve Son Kullanılanlar düğmelerine aynı anda dokunun ve basılı tutun."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Bu ekranın sabitlemesini kaldırmak için Son Kullanılanlar düğmesine dokunun ve basılı tutun."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Bu ekranın sabitlemesini kaldırmak için Geri ve Genel Bakış\'a aynı anda dokunup basılı tutun."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Bu ekranın sabitlemesini kaldırmak için Genel Bakış\'a dokunup basılı tutun."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Ekran sabitlendi. Kuruluşunuz sabitlemenin kaldırılmasına izin vermiyor."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Ekran sabitleme kullanılsın mı?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Ekran sabitleme, ekranı tek bir görünümde kilitler.\n\nÇıkmak için Geri ve Son Kullanılanlar düğmelerine aynı anda dokunun ve basılı tutun."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Ekran sabitleme, ekranı tek bir görünümde kilitler.\n\nÇıkmak için Son Kullanılanlar düğmesine dokunun ve basılı tutun."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Ekran sabitleme özelliği, ekranı tek bir görünüme kilitler.\n\nSabitlemeyi kaldırmak için Geri ve Genel Bakış\'a aynı anda dokunup basılı tutun."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Ekran sabitleme özelliği, ekranı tek bir görünüme kilitler.\n\nSabitlemeyi kaldırmak için Genel Bakış\'a dokunup basılı tutun."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"HAYIR, TEŞEKKÜRLER"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"BAŞLAT"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Ekran sabitlendi"</string>
diff --git a/core/res/res/values-uk/strings.xml b/core/res/res/values-uk/strings.xml
index c8ac494..f70044a 100644
--- a/core/res/res/values-uk/strings.xml
+++ b/core/res/res/values-uk/strings.xml
@@ -642,7 +642,7 @@
     <string name="permlab_accessNetworkState" msgid="4951027964348974773">"переглядати мережеві з’єднання"</string>
     <string name="permdesc_accessNetworkState" msgid="8318964424675960975">"Дозволяє програмі переглядати інформацію про з’єднання з мережами, як-от дані про наявні та під’єднані мережі."</string>
     <string name="permlab_createNetworkSockets" msgid="8018758136404323658">"повний доступ до мережі"</string>
-    <string name="permdesc_createNetworkSockets" msgid="3403062187779724185">"Дозволяє програмі створювати сокети мережі та використовувати спеціальні мережеві протоколи. Веб-переглядач та інші програми надають засоби надсилання даних в Інтернет, тому цей дозвіл не потрібен для надсилання даних в Інтернет."</string>
+    <string name="permdesc_createNetworkSockets" msgid="3403062187779724185">"Додаток може створювати сокети мережі та використовувати спеціальні мережеві протоколи. Оскільки веб-переглядач та інші додатки самостійно реалізують функції надсилання даних в Інтернет, цей дозвіл надавати не обов’язково."</string>
     <string name="permlab_writeApnSettings" msgid="505660159675751896">"змінювати/перехоплювати налаштування та трафік мережі"</string>
     <string name="permdesc_writeApnSettings" msgid="5333798886412714193">"Дозволяє програмі змінювати налаштування мережі, а також перехоплювати та перевіряти весь мережевий трафік, наприклад, змінювати проксі-сервер і порт будь-якої точки APN. Шкідливі програми можуть контролювати, переадресовувати чи змінювати мережеві пакети без вашого відома."</string>
     <string name="permlab_changeNetworkState" msgid="958884291454327309">"змінюв. підключення до мережі"</string>
@@ -700,9 +700,9 @@
     <string name="permlab_sdcardRead" product="default" msgid="2188156462934977940">"читати вміст карти SD"</string>
     <string name="permdesc_sdcardRead" product="nosdcard" msgid="3446988712598386079">"Дозволяє програмі читати вміст носія USB."</string>
     <string name="permdesc_sdcardRead" product="default" msgid="2607362473654975411">"Дозволяє програмі читати вміст карти SD."</string>
-    <string name="permlab_sdcardWrite" product="nosdcard" msgid="8485979062254666748">"змінювати чи видаляти вміст USB"</string>
+    <string name="permlab_sdcardWrite" product="nosdcard" msgid="8485979062254666748">"змінювати чи видаляти дані на USB-носії"</string>
     <string name="permlab_sdcardWrite" product="default" msgid="8805693630050458763">"змінювати чи видаляти вміст на карті SD"</string>
-    <string name="permdesc_sdcardWrite" product="nosdcard" msgid="6175406299445710888">"Дозволяє програмі писати на носій USB"</string>
+    <string name="permdesc_sdcardWrite" product="nosdcard" msgid="6175406299445710888">"Додаток зможе записувати дані на USB-носій"</string>
     <string name="permdesc_sdcardWrite" product="default" msgid="4337417790936632090">"Дозволяє програмі записувати на карту SD."</string>
     <string name="permlab_mediaStorageWrite" product="default" msgid="6859839199706879015">"змінювати/видаляти вміст внутр. сховища даних"</string>
     <string name="permdesc_mediaStorageWrite" product="default" msgid="8189160597698529185">"Дозволяє програмі змінювати вміст внутрішнього сховища даних."</string>
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"Вибрано: <xliff:g id="ITEM">%1$s</xliff:g>"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> видалено"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Робоча <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Щоб відкріпити екран, одночасно натисніть і втримуйте кнопки \"Назад\" і \"Останні додатки\"."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Щоб відкріпити екран, натисніть і втримуйте кнопку \"Останні додатки\"."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Щоб відкріпити екран, одночасно натисніть і утримуйте кнопки \"Назад\" та \"Огляд\"."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Щоб відкріпити екран, натисніть і утримуйте кнопку \"Огляд\"."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Екран закріплено. Ваша організація заборонила відкріплювати його."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Увімкнути функцію закріплення екрана?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Ця функція не дозволяє переходити в інші додатки.\n\nЩоб вийти з цього режиму, одночасно натисніть і втримуйте кнопки \"Назад\" і \"Останні додатки\"."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Ця функція не дозволяє переходити в інші додатки.\n\nЩоб вийти з цього режиму, натисніть і втримуйте кнопку \"Останні додатки\"."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Функція закріплення екрана блокує дисплей, показуючи один екран.\n\nЩоб відкріпити екран, одночасно натисніть і утримуйте кнопки \"Назад\" та \"Огляд\"."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Функція закріплення екрана блокує дисплей, показуючи один екран.\n\nЩоб відкріпити екран, натисніть і утримуйте кнопку \"Огляд\"."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"НІ, ДЯКУЮ"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"УВІМКНУТИ"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Екран закріплено"</string>
diff --git a/core/res/res/values-ur-rPK/strings.xml b/core/res/res/values-ur-rPK/strings.xml
index e919891..680b48c 100644
--- a/core/res/res/values-ur-rPK/strings.xml
+++ b/core/res/res/values-ur-rPK/strings.xml
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> کو منتخب کیا گیا"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> کو حذف کر دیا گیا"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"دفتر <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"اس اسکرین کا پن ہٹانے کیلئے، پیچھے اور حالیہ کو ایک ہی وقت میں ٹچ کریں اور دبائے رکھیں۔"</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"اس اسکرین کا پن ہٹانے کیلئے، حالیہ کو ٹچ کریں اور دبائے رکھیں۔"</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"اسکرین کو پن کر دیا گیا ہے۔ آپ کی تنظیم کی جانب سے پن ہٹانے کی اجازت نہیں ہے۔"</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"اسکرین پننگ کا استعمال کریں؟"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"اسکرین پننگ ڈسپلے کو ایک واحد منظر میں مقفل کر دیتی ہے۔\n\nخارج ہونے کیلئے، پیچھے اور حالیہ کو ایک ہی وقت میں ٹچ کریں اور دبائے رکھیں۔"</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"اسکرین پننگ ڈسپلے کو ایک واحد منظر میں مقفل کر دیتی ہے۔\n\nخارج ہونے کیلئے، حالیہ کو ٹچ کریں اور دبائے رکھیں۔"</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"نہیں، شکریہ"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"شروع کریں"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"اسکرین کو پن کر دیا گیا"</string>
diff --git a/core/res/res/values-uz-rUZ/strings.xml b/core/res/res/values-uz-rUZ/strings.xml
index 69a3076..d6f1695 100644
--- a/core/res/res/values-uz-rUZ/strings.xml
+++ b/core/res/res/values-uz-rUZ/strings.xml
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"<xliff:g id="ITEM">%1$s</xliff:g> tanlandi"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> o‘chirildi"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Ish <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Ushbu ekranni bo‘shatish uchun “Orqaga” va “Yaqinda ishlatilganlar” tugmalarini bir vaqtda bosib turing."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Ushbu ekranni bo‘shatish uchun “Yaqinda ishlatilganlar” tugmasini bosib turing."</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Ekran qadab qo‘yildi. Uni bo‘shatishga tashkilotingiz ruxsat bermagan."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Ekranni qadab qo‘yish funksiyasidan foydalanilsinmi?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Ekranni qadab qo‘yish funksiyasi ekranni faqat bitta narsa ko‘rinadigan bo‘lib qulflaydi.\n\nChiqish uchun “Orqaga” va “Yaqinda ishlatilganlar” tugmalarini bir vaqtda bosib turing."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Ekranni qadab qo‘yish funksiyasi ekranni faqat bitta narsa ko‘rinadigan bo‘lib qulflaydi.\n\nChiqish uchun “Yaqinda ishlatilganlar” tugmasini bosib turing."</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"YO‘Q, KERAK EMAS"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"ISHGA TUSHIRISH"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Ekran qadab qo‘yildi"</string>
diff --git a/core/res/res/values-vi/strings.xml b/core/res/res/values-vi/strings.xml
index ce9f14d..770e133 100644
--- a/core/res/res/values-vi/strings.xml
+++ b/core/res/res/values-vi/strings.xml
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"Đã chọn <xliff:g id="ITEM">%1$s</xliff:g>"</string>
     <string name="deleted_key" msgid="7659477886625566590">"Đã xóa <xliff:g id="KEY">%1$s</xliff:g>"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"<xliff:g id="LABEL">%1$s</xliff:g> làm việc"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Để bỏ ghim màn hình này, hãy chạm và giữ Quay lại và Gần đây đồng thời."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Để bỏ ghim màn hình này, hãy chạm và giữ Gần đây."</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Màn hình đã được ghim. Tổ chức của bạn không cho phép bỏ ghim."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Sử dụng ghim màn hình?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Ghim màn hình sẽ khóa màn hình ở một chế độ xem.\n\nĐể thoát, hãy chạm và giữ Quay lại và Gần đây đồng thời."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Ghim màn hình sẽ khóa màn hình ở một chế độ xem.\n\nĐể thoát, hãy chạm và giữ Gần đây."</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"KHÔNG, CẢM ƠN"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"BẮT ĐẦU"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Đã ghim màn hình"</string>
diff --git a/core/res/res/values-zh-rCN/strings.xml b/core/res/res/values-zh-rCN/strings.xml
index bde6973..7b2a959 100644
--- a/core/res/res/values-zh-rCN/strings.xml
+++ b/core/res/res/values-zh-rCN/strings.xml
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"已选择<xliff:g id="ITEM">%1$s</xliff:g>"</string>
     <string name="deleted_key" msgid="7659477886625566590">"已删除<xliff:g id="KEY">%1$s</xliff:g>"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"工作<xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"要取消固定屏幕,请同时触摸并按住“返回”和“最近”按钮。"</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"要取消固定屏幕,请触摸并按住“最近”按钮。"</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"屏幕处于固定状态。您所属的单位不允许取消固定。"</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"要固定屏幕吗?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"固定屏幕后,设备会一直显示某个屏幕。\n\n要取消固定,请同时触摸并按住“返回”和“最近”按钮。"</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"固定屏幕后,设备会一直显示某个屏幕。\n\n要取消固定,请触摸并按住“最近”按钮。"</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"不用了"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"固定"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"已固定屏幕"</string>
diff --git a/core/res/res/values-zh-rHK/strings.xml b/core/res/res/values-zh-rHK/strings.xml
index 69e53b0..37c541a 100644
--- a/core/res/res/values-zh-rHK/strings.xml
+++ b/core/res/res/values-zh-rHK/strings.xml
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"已選取<xliff:g id="ITEM">%1$s</xliff:g>"</string>
     <string name="deleted_key" msgid="7659477886625566590">"<xliff:g id="KEY">%1$s</xliff:g> 已刪除"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"公司<xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"如要取消固定這個螢幕,請同時輕觸並按住 [返回] 和 [近期]。"</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"如要取消固定這個螢幕,請輕觸並按住 [近期]。"</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"螢幕已固定,而您的機構不允許取消固定。"</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"使用螢幕固定功能?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"螢幕固定會鎖定螢幕,只顯示單一應用程式畫面。\n\n如要退出這個模式,請同時輕觸並按住 [返回] 和 [近期]。"</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"螢幕固定會鎖定螢幕,只顯示單一應用程式畫面。\n\n如要退出這個模式,請輕觸並按住 [近期]。"</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"不用了,謝謝"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"啟動"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"螢幕已固定"</string>
diff --git a/core/res/res/values-zh-rTW/strings.xml b/core/res/res/values-zh-rTW/strings.xml
index b5cd8cf..65fccb5 100644
--- a/core/res/res/values-zh-rTW/strings.xml
+++ b/core/res/res/values-zh-rTW/strings.xml
@@ -1759,12 +1759,16 @@
     <string name="item_is_selected" msgid="949687401682476608">"已選取 <xliff:g id="ITEM">%1$s</xliff:g>"</string>
     <string name="deleted_key" msgid="7659477886625566590">"已刪除 <xliff:g id="KEY">%1$s</xliff:g>"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"公司<xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"如要取消固定這個螢幕,請同時輕觸並按住 [返回] 和 [近期]。"</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"如要取消固定這個螢幕,請輕觸並按住 [近期]。"</string>
+    <!-- no translation found for lock_to_app_toast (7570091317001980053) -->
+    <skip />
+    <!-- no translation found for lock_to_app_toast_accessible (8239120109365070664) -->
+    <skip />
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"螢幕已固定,且貴機構不允許取消固定。"</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"使用螢幕固定功能?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"「螢幕固定」會鎖定螢幕,只顯示單一應用程式畫面。\n\n如要退出這個模式,請同時輕觸並按住 [返回] 和 [近期]。"</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"「螢幕固定」會鎖定螢幕,只顯示單一應用程式畫面。\n\n如要退出這個模式,請輕觸並按住 [近期]。"</string>
+    <!-- no translation found for lock_to_app_description (4120623404152035221) -->
+    <skip />
+    <!-- no translation found for lock_to_app_description_accessible (199664191087836099) -->
+    <skip />
     <string name="lock_to_app_negative" msgid="2259143719362732728">"不用了,謝謝"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"啟動"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"已固定螢幕"</string>
diff --git a/core/res/res/values-zu/strings.xml b/core/res/res/values-zu/strings.xml
index ff4cacf..52a971c 100644
--- a/core/res/res/values-zu/strings.xml
+++ b/core/res/res/values-zu/strings.xml
@@ -1759,12 +1759,12 @@
     <string name="item_is_selected" msgid="949687401682476608">"I-<xliff:g id="ITEM">%1$s</xliff:g> ekhethiwe"</string>
     <string name="deleted_key" msgid="7659477886625566590">"I-<xliff:g id="KEY">%1$s</xliff:g> isusiwe"</string>
     <string name="managed_profile_label_badge" msgid="2355652472854327647">"Umsebenzi <xliff:g id="LABEL">%1$s</xliff:g>"</string>
-    <string name="lock_to_app_toast" msgid="1230563865743799321">"Ukuze ususe ukuphina lesi sikrini, thinta futhi ubambe u-Emuva no-Kwakamuva ngesikhathi esisodwa."</string>
-    <string name="lock_to_app_toast_accessible" msgid="3340628918851844044">"Ukuze ususe ukuphina lesi sikrini, thinta futhi ubambe u-Kwakamuva."</string>
+    <string name="lock_to_app_toast" msgid="7570091317001980053">"Ukuze ususe ukuphina kulesi sikrini, thinta uphinde ubambe i-Emuva ne-Ukubuka konke ngesikhathi esisodwa."</string>
+    <string name="lock_to_app_toast_accessible" msgid="8239120109365070664">"Ukuze ususe ukuphina lesi sikrini, thinta uphinde ubambe Ukubuka konke."</string>
     <string name="lock_to_app_toast_locked" msgid="8739004135132606329">"Isikrini siphiniwe. Ukususa ukuphina akuvumelekile inhlangano yakho."</string>
     <string name="lock_to_app_title" msgid="1682643873107812874">"Sebenzisa ukuphina isikrini?"</string>
-    <string name="lock_to_app_description" msgid="9076084599283282800">"Ukuphina isikrini kukhiya isibonisi ngokubuka okukodwa.\n\nUkuze ushiye, thinta futhi ubambe u-Emuva no-Kwakamuca ngesikhathi esisodwa."</string>
-    <string name="lock_to_app_description_accessible" msgid="2132076937479670601">"Ukuphina isikrini kukhiya isibonisi ngokubuka okukodwa.\n\nUkuze uphume, thinta futhi ubambe u-Kwakamuva."</string>
+    <string name="lock_to_app_description" msgid="4120623404152035221">"Ukuphina isikrini kukhiyela isibonisi ekubukeni okukodwa.\n\nUkuze ususe ukuphina, thinta uphinde ubambe i-Ngemuva ne-Ukubuka konke ngesikhathi esisodwa."</string>
+    <string name="lock_to_app_description_accessible" msgid="199664191087836099">"Ukuphina isikrini kukhiya isikrini ngokubuka okukodwa.\n\nUkuze ususe ukuphina, thinta uphinde ubambe Ukubuka konke."</string>
     <string name="lock_to_app_negative" msgid="2259143719362732728">"CHA, NGIYABONGA"</string>
     <string name="lock_to_app_positive" msgid="7085139175671313864">"QALA"</string>
     <string name="lock_to_app_start" msgid="6643342070839862795">"Isikrini siphiniwe"</string>
diff --git a/core/tests/bluetoothtests/AndroidManifest.xml b/core/tests/bluetoothtests/AndroidManifest.xml
index cbfa84d..e43ba12 100644
--- a/core/tests/bluetoothtests/AndroidManifest.xml
+++ b/core/tests/bluetoothtests/AndroidManifest.xml
@@ -20,6 +20,7 @@
     <uses-permission android:name="android.permission.BLUETOOTH" />
     <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
     <uses-permission android:name="android.permission.BROADCAST_STICKY" />
+    <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
     <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
     <uses-permission android:name="android.permission.WRITE_SETTINGS" />
diff --git a/docs/html/about/about_toc.cs b/docs/html/about/about_toc.cs
index a657ee3..95688a9 100644
--- a/docs/html/about/about_toc.cs
+++ b/docs/html/about/about_toc.cs
@@ -1,11 +1,18 @@
 <ul id="nav">
-  
+
 <li class="nav-section">
     <div class="nav-section-header"><a href="<?cs var:toroot?>about/index.html">Welcome</a></div>
     <ul>
       <li><a href="<?cs var:toroot?>about/start.html">Get Started</a></li>
     </ul>
-  </li> 
+  </li>
+  <li class="nav-section">
+    <div class="nav-section-header"><a href="<?cs var:toroot ?>about/versions/android-5.0.html">
+      <span class="en">Lollipop</span></a></div>
+      <ul>
+        <li><a href="<?cs var:toroot ?>about/versions/android-5.0.html">Android 5.0 APIs</a></li>
+      </ul>
+  </li>
   <li class="nav-section">
     <div class="nav-section-header"><a href="<?cs var:toroot ?>about/versions/kitkat.html">
       <span class="en">KitKat</span></a></div>
diff --git a/docs/html/about/versions/android-5.0.jd b/docs/html/about/versions/android-5.0.jd
new file mode 100644
index 0000000..d9084b6
--- /dev/null
+++ b/docs/html/about/versions/android-5.0.jd
@@ -0,0 +1,1189 @@
+page.title=Android 5.0 APIs
+excludeFromSuggestions=true
+sdk.platform.version=5.0
+sdk.platform.apiLevel=21
+@jd:body
+
+
+<div id="qv-wrapper">
+<div id="qv">
+
+<h2>In this document
+    <a href="#" onclick="hideNestedItems('#toc44',this);return false;" class="header-toggle">
+        <span class="more">show more</span>
+        <span class="less" style="display:none">show less</span></a></h2>
+
+<ol id="toc44" class="hide-nested">
+  <li><a href="#ApiLevel">Update your target API level</a></li>
+  <li><a href="#Behaviors">Important Behavior Changes</a>
+    <ol>
+      <li><a href="#ART">If you haven't tested your app against the new Android Runtime (ART)...</a></li>
+      <li><a href="#BehaviorNotifications">If your app implements notifications...</a></li>
+      <li><a href="#BehaviorMediaControl">If your app uses RemoteControlClient...</a></li>
+<li><a href="#BehaviorGetRecentTasks">If your app uses getRecentTasks()...</a></li>
+<li><a href="#64BitSupport">If you are using the Android Native Development Kit (NDK)...</a></li>
+<li><a href="#BindService">If your app binds to a Service...</a></li>
+    </ol>
+  </li>
+  <li><a href="#UI">User Interface</a>
+    <ol>
+      <li><a href="#MaterialDesign">Material design support</a></li>
+      <li><a href="#Recents">Concurrent documents and activities in the recents screen</a></li>
+      <li><a href="#WebView">WebView updates</a></li>
+      <li><a href="#ScreenCapture">Screen capturing and sharing</a></li>
+    </ol>
+  </li>
+  <li><a href="#Notifications">Notifications</a>
+    <ol>
+      <li><a href="#LockscreenNotifications">Lock screen notifications</a></li>
+      <li><a href="#NotificationsMetadata">Notifications metadata</a></li>
+    </ol>
+  </li>
+  <li><a href="#Graphics">Graphics</a>
+    <ol>
+      <li><a href="#OpenGLES-3-1">Support for OpenGL ES 3.1</a></li>
+      <li><a href="#AndroidExtensionPack">Android Extension Pack</a></li>
+    </ol>
+  </li>
+  <li><a href="#Media">Media</a>
+    <ol>
+      <li><a href="#Camera-v2">Camera API for advanced camera capabilities</a></li>
+      <li><a href="#AudioPlayback">Audio playback</a></li>
+      <li><a href="#MediaPlaybackControl">Media playback control</a></li>
+      <li><a href="#MediaBrowsing">Media browsing</a></li>
+    </ol>
+  </li>
+  <li><a href="#Storage">Storage</a>
+    <ol>
+      <li><a href="#DirectorySelection">Directory selection</a></li>
+    </ol>
+  </li>
+  <li><a href="#Wireless">Wireless and Connectivity</a>
+    <ol>
+      <li><a href="#Multinetwork">Multiple network connections</a></li>
+      <li><a href="#BluetoothBroadcasting">Bluetooth broadcasting</a></li>
+      <li><a href="#NFCEnhancements">NFC enhancements</a></li>
+    </ol>
+  </li>
+  <li><a href="#Power">Project Volta</a>
+    <ol>
+      <li><a href="#JobScheduler">Scheduling jobs</a></li>
+      <li><a href="#PowerMeasurementTools">Developer tools for battery usage</a>
+    </ol>
+  </li>
+  <li><a href="#Enterprise">Android in the Workplace and in Education</a>
+    <ol>
+      <li><a href="#ManagedProvisioning">Managed provisioning</a></li>
+      <li><a href="#DeviceOwner">Device owner</a></li>
+      <li><a href="#ScreenPinning">Screen pinning</a></li>
+    </ol>
+  </li>
+  <li><a href="#System">System</a>
+    <ol>
+      <li><a href="#AppUsageStatistics">App usage statistics</a></li>
+    </ol>
+  </li>
+  <li><a href="#Printing">Printing Framework</a>
+    <ol>
+      <li><a href="#PDFRender">Render PDF as bitmap</a></li>
+    </ol>
+  </li>
+  <li><a href="#TestingA11y">Testing &amp; Accessibility</a>
+    <ol>
+      <li><a href="#TestingA11yImprovements">Testing and accessibility improvements</a></li>
+    </ol>
+  </li>
+  <li><a href="#IME">IME</a>
+    <ol>
+      <li><a href="#Switching">Easier switching between input languages</a></li>
+    </ol>
+  </li>
+  <li><a href="#Manifest">Manifest Declarations</a>
+    <ol>
+      <li><a href="#ManifestFeatures">Declarable required features</a></li>
+      <li><a href="#Permissions">User permissions</a></li>
+    </ol>
+  </li>
+</ol>
+
+<h2>See also</h2>
+<ol>
+<li><a href="{@docRoot}sdk/api_diff/21/changes.html">API
+Differences Report &raquo;</a> </li>
+</ol>
+
+</div>
+</div>
+
+<p>API Level: {@sdkPlatformApiLevel}</p>
+
+<p>Android 5.0 (<a href="{@docRoot}reference/android/os/Build.VERSION_CODES.html#L">Lollipop</a>)
+  offers new features for users and app developers. This document provides an
+  introduction to the most notable new APIs.</p>
+
+<p>As an app developer, you should download the Android 5.0 system image and
+SDK platform from the <a href="{@docRoot}tools/help/sdk-manager.html">SDK Manager</a>
+as soon as possible. If you don’t have a device running Android 5.0 on which to
+test your app, use the Android 5.0 system image to test your app on the
+<a href="{@docRoot}tools/devices/emulator.html">Android emulator</a>. Then
+build your apps against the Android 5.0 platform to begin using the latest APIs.</p>
+
+<h3 id="ApiLevel">Update your target API level</h3>
+
+<p>To better optimize your app for devices running Android {@sdkPlatformVersion},
+  set your <a
+href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code targetSdkVersion}</a> to
+<code>"{@sdkPlatformApiLevel}"</code>, install your app on an Android
+{@sdkPlatformVersion} system image, test it, then publish the updated app with
+this change.</p>
+
+<p>You can use Android {@sdkPlatformVersion} APIs while also supporting older
+versions by adding conditions to your code that check for the system API level
+before executing APIs not supported by your <a
+href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code minSdkVersion}</a>.
+To learn more about maintaining backward compatibility, read <a
+href="{@docRoot}training/basics/supporting-devices/platforms.html">Supporting
+Different Platform Versions</a>.</p>
+
+<p>For more information about how API levels work, read <a
+href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#ApiLevels">What is API
+Level?</a></p>
+
+<h2 id="Behaviors">Important Behavior Changes</h2>
+
+<p>If you have previously published an app for Android, be aware that your app
+  might be affected by changes in Android 5.0.</p>
+
+<h3 id="ART">If you haven't tested your app against the new Android Runtime (ART)...</h3>
+
+<p>The 4.4 release introduced a new, experimental Android runtime, ART. Under
+4.4, ART was optional, and the default runtime remained Dalvik. With Android
+5.0, ART is now the default runtime.</p>
+
+<p>For an overview of ART's new features, see
+<a href="https://source.android.com/devices/tech/dalvik/art.html">Introducing
+ART</a>. Some of the major new features are:</p>
+
+<ul>
+  <li>Ahead-of-time (AOT) compilation</li>
+  <li>Improved garbage collection (GC)</li>
+  <li>Improved debugging support</li>
+</ul>
+
+<p>Most Android apps should just work without any changes under ART. However, some
+techniques that work on Dalvik do not work on ART. For information about the
+most important issues, see
+<a href="{@docRoot}guide/practices/verifying-apps-art.html">Verifying App
+Behavior on the Android Runtime (ART)</a>. Pay particular attention if:</p>
+
+<ul>
+  <li>Your app uses Java Native Interface (JNI) to run C/C++ code.</li>
+  <li>You use development tools that generate non-standard code (such as some
+      obfuscators).</li>
+  <li>You use techniques that are incompatible with compacting garbage
+      collection. (ART does not currently implement compacting GC, but
+      compacting GC is under development in the Android Open Source
+      Project.)</li>
+</ul>
+
+<h3 id="BehaviorNotifications">If your app implements notifications...</h3>
+
+<p>Make sure your notifications take these Android 5.0 changes into account.
+ To learn more about designing your notifications for Android 5.0 and higher,
+ see the <a href="{@docRoot}design/patterns/notifications.html">notifications design guide</a>.
+</p>
+
+<h4 id="NotificationsMaterialDesignStyle">Material design style</h4>
+<p>Notifications are drawn with dark text atop white (or very light) backgrounds
+  to match the new material design widgets. Make sure that all your
+  notifications look right with the new color scheme. If your notifications
+look wrong, fix them:</p>
+
+<ul>
+  <li>Use {@link android.app.Notification.Builder#setColor(int) setColor()}
+    to set an accent color in a circle behind your icon image. </li>
+  <li>Update or remove assets that involve color. The system ignores all
+    non-alpha channels in action icons and in the main notification icon. You
+    should assume that these icons will be alpha-only. The system draws
+    notification icons in white and action icons in dark gray.</li>
+</ul>
+
+<h4 id="NotificationsSoundVibration">Sound and vibration</h4>
+<p>If you are currently adding sounds and vibrations to your notifications by
+using the {@link android.media.Ringtone}, {@link android.media.MediaPlayer},
+or {@link android.os.Vibrator} classes, remove this code so that
+the system can present notifications correctly in
+<em>priority</em> mode. Instead, use
+{@link android.app.Notification.Builder} methods to add sounds and
+vibration.</p>
+
+<p>Setting the device to
+{@link android.media.AudioManager#RINGER_MODE_SILENT RINGER_MODE_SILENT} now
+causes the device to enter the new priority mode. The device stays in priority
+mode when you leave silent mode.</p>
+
+<p>Previously, Android used {@link android.media.AudioManager#STREAM_MUSIC STREAM_MUSIC}
+as the master stream to control volume on tablet devices. In Android 5.0, the
+master volume stream for both phone and tablet devices is now unified, and
+is controlled by {@link android.media.AudioManager#STREAM_RING STREAM_RING} or
+{@link android.media.AudioManager#STREAM_NOTIFICATION STREAM_NOTIFICATION}.</p>
+
+<h4 id="NotificationsLockscreenVisibility">Lock screen visibility</h4>
+<p>By default, notifications now appear on the user's lock screen in Android 5.0.
+Users can choose to protect sensitive information from being exposed, in which
+case the system automatically redacts the text displayed by the notification. To
+customize this redacted notification, use
+{@link android.app.Notification.Builder#setPublicVersion(android.app.Notification)
+  setPublicVersion()}.</p>
+<p>If the notification does not contain personal information, or if you want to
+allow media playback control on the notification, call the
+{@link android.app.Notification.Builder#setVisibility(int) setVisibility()}
+method and set the notification's visibility level to
+{@link android.app.Notification#VISIBILITY_PUBLIC VISIBILITY_PUBLIC}.
+</p>
+
+<div class="figure" style="width:320px">
+  <img src="{@docRoot}images/android-5.0/hun-example.png"
+    srcset="{@docRoot}images/android-5.0/hun-example@2x.png 2x"
+    alt="" width="320" height="541" id="figure1" />
+  <p class="img-caption">
+    <strong>Figure 1.</strong> Fullscreen activity showing a heads-up notification
+  </p>
+</div>
+
+<h4 id="NotificationsMediaPlayback">Media playback</h4>
+<p>If you are implementing notifications that present media playback
+status or transport controls, consider using the new
+{@link android.app.Notification.MediaStyle} template instead of a custom
+{@link android.widget.RemoteViews.RemoteView} object. Whichever approach you
+choose, make sure to set the notification's visibility to
+{@link android.app.Notification#VISIBILITY_PUBLIC VISIBILITY_PUBLIC} so that
+your controls are accessible from the lock screen. Note that beginning in
+Android 5.0, the system no longer shows
+{@link android.media.RemoteControlClient} objects on the lock screen. For more
+information, see
+<a href="#BehaviorMediaControl">If your app uses RemoteControlClient</a>.</p>
+
+<h4 id="NotificationsHeadsup">Heads-up notification</h4>
+<p>Notifications may now appear in a small floating window (also called a
+  heads-up notification) when the device is active (that is, the device is
+  unlocked and its screen is on). These notifications appear similar to the
+  compact form of your notification, except that the heads-up notification also
+  shows action buttons. Users can act on, or dismiss, a heads-up notification
+  without leaving the current app.</p>
+
+<p>Examples of conditions that may trigger heads-up notifications include:</p>
+
+<ul>
+  <li>The user's activity is in fullscreen mode (the app uses
+{@link android.app.Notification#fullScreenIntent})</li>
+  <li>The notification has high priority and uses ringtones or vibrations</li>
+</ul>
+
+<p>If your app implements notifications under any of those scenarios, make sure
+that heads-up notifications are presented correctly.</p>
+
+<h3 id="BehaviorMediaControl">If your app uses RemoteControlClient...</h3>
+<p>The {@link android.media.RemoteControlClient} class is now deprecated. Switch
+  to the new {@link android.media.session.MediaSession} API as
+  soon as possible.</p>
+
+<p>Lock screens in Android 5.0 do not show transport controls for
+your {@link android.media.session.MediaSession} or
+{@link android.media.RemoteControlClient}. Instead, your app can provide
+media playback control from the lock screen through a notification. This
+gives your app more control over the presentation of media buttons, while
+providing a consistent experience for users across locked and
+unlocked devices.</p>
+
+<p>Android 5.0 introduces a new
+{@link android.app.Notification.MediaStyle} template for this purpose.
+{@link android.app.Notification.MediaStyle} converts notification
+actions that you added with
+{@link android.app.Notification.Builder#addAction(int, java.lang.CharSequence,
+  android.app.PendingIntent)
+Notification.Builder.addAction()} into compact buttons embedded in your app's
+media playback notifications. Pass your session token to the
+{@link android.app.Notification.MediaStyle#setMediaSession(android.media.session.MediaSession.Token)
+  setSession()} method to inform the system that this notification controls an
+  ongoing media session.</p>
+
+<p>Make sure to set the notification's visibility to
+  {@link android.app.Notification#VISIBILITY_PUBLIC VISIBILITY_PUBLIC}
+  to mark the notification as safe to show on any lock screen (secure or
+  otherwise). For more information, see
+  <a href="#LockscreenNotifications">Lock screen notifications</a>.</p>
+
+<p>To display media playback controls if your app is running on the
+Android <a href="{@docRoot}tv/index.html">TV</a> or
+<a href="{@docRoot}wear/index.html">Wear</a> platform, implement the
+{@link android.media.session.MediaSession} class. You should also implement
+{@link android.media.session.MediaSession} if your app needs to receive media
+button events on Android devices.</p>
+
+<h3 id="BehaviorGetRecentTasks">If your app uses getRecentTasks()...</h3>
+
+<p>With the introduction of the new <em>concurrent documents and activities
+tasks</em> feature in Android 5.0 (see <a href="#Recents">Concurrent
+documents and activities in the recents screen</a> below),
+the {@link android.app.ActivityManager#getRecentTasks
+ActivityManager.getRecentTasks()} method is now deprecated to improve user
+privacy. For backward compatibility, this method still returns a small subset of
+its data, including the calling application’s own tasks and possibly some other
+non-sensitive tasks (such as Home). If your app is using this method to retrieve
+its own tasks, use {@link android.app.ActivityManager#getAppTasks() getAppTasks()}
+instead to retrieve that information.</p>
+
+<h3 id="64BitSupport">If you are using the Android Native Development Kit (NDK)...</h3>
+
+<p>Android 5.0 introduces support for 64-bit systems. The 64-bit enhancement
+  increases address space and improves performance, while still supporting
+  existing 32-bit apps fully. The 64-bit support also improves the performance of
+  OpenSSL for cryptography. In addition, this release introduces new native
+  media NDK APIs, as well as native OpenGL ES (GLES) 3.1 support.</p>
+
+<p>To use the 64-bit support provided in Android 5.0, download and install NDK
+  Revision 10c from the
+<a href="{@docRoot}tools/sdk/ndk/index.html">Android NDK page</a>. Refer to the
+Revision 10c <a href="{@docRoot}tools/sdk/ndk/index.html#Revisions">release notes</a>
+for more information about important changes and bug fixes to the NDK.</p>
+
+<h3 id="BindService">If your app binds to a Service...</h3>
+
+<p>The
+  {@link android.content.Context#bindService(android.content.Intent, android.content.ServiceConnection, int) Context.bindService()}
+  method now requires an explicit {@link android.content.Intent},
+and throws an exception if given an implicit intent.
+To ensure your app is secure, use an explicit intent when starting or binding
+your {@link android.app.Service}, and do not declare intent filters for the service.</p>
+
+<h2 id="UI">User Interface</h2>
+
+<h3 id="MaterialDesign">Material design support</h3>
+
+<p>The upcoming release adds support for Android's new <em>material design</em>
+style. You can create apps with material design that are visually dynamic and
+have UI element transitions that feel natural to users. This support includes:</p>
+
+<ul>
+
+  <li>The material theme</li>
+  <li>View shadows</li>
+  <li>The {@link android.support.v7.widget.RecyclerView} widget</li>
+  <li>Drawable animation and styling effects</li>
+  <li>Material design animation and activity transition effects</li>
+  <li>Animators for view properties based on the state of the view</li>
+  <li>Customizable UI widgets and app bars with color palettes that you control</li>
+  <li>Animated and non-animated drawables based on XML vector graphics</li>
+</ul>
+
+<p>To learn more about adding material design functionality to your app, see
+<a href="{@docRoot}training/material/index.html">Material Design</a>.</p>
+
+<h3 id="Recents">Concurrent documents and activities in the recents screen</h3>
+
+<p>In previous releases, the
+<a href="{@docRoot}guide/components/recents.html">recents screen</a>
+could only display only one task for each app that the user interacted with
+most recently. Now your app can open more tasks as needed for additional
+concurrent activities for documents. This feature facilitates multitasking by
+letting users quickly switch between individual activities and documents from
+the recents screen, with a consistent switching experience across all apps.
+Examples of such concurrent tasks might include open tabs in a web
+browser app, documents in a productivity app, concurrent matches in
+a game, or chats in a messaging app. Your app can manage its tasks
+through the {@link android.app.ActivityManager.AppTask} class.</p>
+
+<p>To insert a logical break so that the system treats your activity as a new
+task, use {@link android.content.Intent#FLAG_ACTIVITY_NEW_DOCUMENT} when
+launching the activity with {@link android.app.Activity#startActivity(android.content.Intent)
+startActivity()}. You can also get this behavior by setting the
+<a href="{@docRoot}guide/topics/manifest/activity-element.html">&lt;activity&gt;</a>
+element's {@code documentLaunchMode} attribute to {@code "intoExisting"} or
+{@code "always"} in your manifest.</p>
+
+<p>To avoid cluttering the recents screen, you can set the maximum number of
+tasks from your app that can appear in that screen. To do this, set the
+<a href="{@docRoot}guide/topics/manifest/application-element.html">&lt;application&gt;</a>
+attribute {@link android.R.attr#maxRecents android:maxRecents}. The current
+maximum that can be specified is 50 tasks per user (25 for low RAM devices).</a></p>
+
+<p>Tasks in the recents screen can be set to persist across reboots. To control
+the persistence behavior, use the
+<a href="{@docRoot}reference/android/R.attr.html#persistableMode">android:persistableMode</a>
+attribute. You can also change
+the visual properties of an activity in the recents screen, such as the
+activity’s color, label, and icon. To do this, make sure the
+<a href="{@docRoot}reference/android/R.attr.html#relinquishTaskIdentity">android:relinquishTaskIdentity</a>
+attribute of the task’s root activity is set
+to {@code true}. You can then use the
+{@link android.app.Activity#setTaskDescription(android.app.ActivityManager.TaskDescription) setTaskDescription()}
+method to set its appearance properties.</p>
+
+<h3 id="WebView">WebView updates</h3>
+<p>Android 5.0 updates the {@link android.webkit.WebView}
+implementation to Chromium M37, bringing security and stability enhancements,
+as well as bug fixes. The default user-agent string for a
+{@link android.webkit.WebView} running on Android 5.0 has
+been updated to incorporate 37.0.0.0 as the version number.</p>
+
+<p>This release introduces the {@link android.webkit.PermissionRequest} class,
+which allows your app to grant the {@link android.webkit.WebView} permission
+to access protected resources like the camera and microphone, through web APIs
+such as <a href="https://developer.mozilla.org/en-US/docs/NavigatorUserMedia.getUserMedia"
+class="external-link">getUserMedia()</a>. Your app must have the appropriate
+Android permissions for these resources in order to grant the permissions to the
+{@link android.webkit.WebView}.</p>
+
+<p>With the new <code><a href="{@docRoot}reference/android/webkit/WebChromeClient.html#onShowFileChooser(android.webkit.WebView, android.webkit.ValueCallback<android.net.Uri[]>, android.webkit.WebChromeClient.FileChooserParams)">onShowFileChooser()</a></code> method,
+you can now use an input form field in the {@link android.webkit.WebView},
+and launch a file chooser to select images and files from the Android device.</p>
+
+<p>Additionally, this release brings support for the
+<a href="http://webaudio.github.io/web-audio-api/" class="external-link">WebAudio</a>,
+<a href="https://www.khronos.org/webgl/" class="external-link">WebGL</a>, and
+<a href="http://www.webrtc.org/" class="external-link">WebRTC</a> open standards.
+To learn more about the new features included in this release, see
+<a href="https://developer.chrome.com/multidevice/webview/overview"
+class="external-link">WebView for Android</a>.</p>
+
+<h3 id="ScreenCapture">Screen capturing and sharing</h3>
+<p>Android 5.0 lets you add screen capturing and screen sharing capabilities to
+your app with the new {@link android.media.projection} APIs. This functionality
+is useful, for example, if you want to enable screen sharing in a video
+conferencing app.</p>
+
+<p>The new {@link android.media.projection.MediaProjection#createVirtualDisplay(java.lang.String, int, int, int, int, android.view.Surface, android.hardware.display.VirtualDisplay.Callback, android.os.Handler) createVirtualDisplay()} method
+allows your app to capture the contents of the main screen (the default
+display) into a {@link android.view.Surface} object, which your app can then
+send across the network. The API only allows capturing non-secure screen
+content, and not system audio. To begin screen capturing, your app must first
+request the user’s permission by launching a screen capture dialog using an
+{@link android.content.Intent} obtained through the
+{@link android.media.projection.MediaProjectionManager#createScreenCaptureIntent()}
+method.</p>
+
+<p>For an example of how to use the new APIs, see the {@code MediaProjectionDemo}
+class in the {@code ApiDemos} sample project.</p>
+
+<h2 id="Notifications">Notifications</h2>
+
+<h3 id="LockscreenNotifications">Lock screen notifications</h3>
+<p>Lock screens in Android 5.0 have the ability to present
+notifications. Users can choose via <em>Settings</em> whether to allow
+sensitive notification content to be shown over a secure lock screen.</p>
+
+<p>Your app can control the level of detail visible when its notifications are
+displayed over the secure lock screen. To control the visibility level, call
+{@link android.app.Notification.Builder#setVisibility(int) setVisibility()} and
+specify one of these values:</p>
+
+<ul>
+<li>{@link android.app.Notification#VISIBILITY_PRIVATE VISIBILITY_PRIVATE}:
+Shows basic information, such as the notification’s icon, but hides the
+notification’s full content.</li>
+<li>{@link android.app.Notification#VISIBILITY_PUBLIC VISIBILITY_PUBLIC}:
+Shows the notification’s full content.</li>
+<li>{@link android.app.Notification#VISIBILITY_SECRET VISIBILITY_SECRET}:
+Shows nothing, excluding even the notification’s icon.</li>
+</ul>
+
+<p>When the visibility level is {@link android.app.Notification#VISIBILITY_PRIVATE VISIBILITY_PRIVATE},
+  you can also provide a redacted version of the notification
+content that hides personal details. For example, an SMS app might display a
+notification that shows "You have 3 new text messages" but hides the message
+content and senders. To provide this alternative notification, first create the
+replacement notification using {@link android.app.Notification.Builder}. When
+you create the private notification object, attach the replacement notification
+to it through the
+{@link android.app.Notification.Builder#setPublicVersion(android.app.Notification)
+  setPublicVersion()} method.</p>
+
+<h3 id="NotificationsMetadata">Notifications metadata</h3>
+<p>Android 5.0 uses metadata associated with your app notifications
+to sort the notifications more intelligently. To set the metadata, call the
+following methods in {@link android.app.Notification.Builder} when you
+construct the notification:</p>
+
+<ul>
+<li>{@link android.app.Notification.Builder#setCategory(java.lang.String)
+  setCategory()}: Tells the system how to handle your app notifications when the
+  device is in <em>priority</em> mode (for example, if a notification represents an
+incoming call, instant message, or alarm).
+<li>{@link android.app.Notification.Builder#setPriority(int) setPriority()}:
+  Marks the notification as more or less important than normal notifications.
+  Notifications with the priority field set to
+  {@link android.app.Notification#PRIORITY_MAX PRIORITY_MAX} or
+{@link android.app.Notification#PRIORITY_HIGH PRIORITY_HIGH} appear in a
+small floating window if the notification also has sound or vibration.</li>
+<li>{@link android.app.Notification.Builder#addPerson(java.lang.String)
+addPerson()}: Enables you to add one or more people who are relevant to a notification.
+Your app can use this to signal to the system that it should group together
+notifications from the specified people, or rank notifications from these people
+as being more important.</li>
+</ul>
+
+<h2 id="Graphics">Graphics</h2>
+
+<h3 id="OpenGLES-3-1">Support for OpenGL ES 3.1</h3>
+<p>Android 5.0 adds Java interfaces and native support for OpenGL
+ES 3.1. Key new functionality provided in OpenGL ES 3.1 includes:</p>
+
+<ul>
+<li>Compute shaders
+<li>Separate shader objects
+<li>Indirect draw commands
+<li>Multisample and stencil textures
+<li>Shading language improvements
+<li>Extensions for advanced blend modes and debugging
+<li>Backward compatibility with OpenGL ES 2.0 and 3.0
+</ul>
+
+<p>The Java interface for OpenGL ES 3.1 on Android is provided with
+  {@link android.opengl.GLES31}. When using OpenGL ES 3.1, be sure that you
+  declare it in your manifest file with the
+  <a href="{@docRoot}guide/topics/manifest/uses-feature-element.html">{@code &lt;uses-feature&gt;}</a> tag and the {@code android:glEsVersion} attribute. For example:</p>
+
+<pre>
+&lt;manifest&gt;
+    &lt;uses-feature android:glEsVersion="0x00030001" /&gt;
+    ...
+&lt;/manifest&gt;
+</pre>
+
+<p>For more information about using OpenGL ES, including how to check the
+device’s supported OpenGL ES version at runtime, see the
+<a href="{@docRoot}guide/topics/graphics/opengl.html">OpenGL ES API guide</a>.</p>
+
+<h3 id="AndroidExtensionPack">Android Extension Pack</h3>
+
+<p>In addition to OpenGL ES 3.1, this release provides an extension pack with
+Java interfaces and native support for advanced graphics functionality. These
+extensions are treated as a single package by Android. (If the
+{@code ANDROID_extension_pack_es31a} extension is present, your app can
+assume all extensions in the package are present and enable the shading language
+features with a single {@code #extension} statement.)</p>
+
+<p>The extension pack supports:</p>
+
+<ul>
+<li>Guaranteed fragment shader support for shader storage buffers, images, and
+  atomics (Fragment shader support is optional in OpenGL ES 3.1.)</li>
+<li>Tessellation and geometry shaders</li>
+<li>ASTC (LDR) texture compression format</li>
+<li>Per-sample interpolation and shading</li>
+<li>Different blend modes for each color attachment in a frame buffer</li>
+</ul>
+
+<p>The Java interface for the extension pack is provided with
+  {@link android.opengl.GLES31Ext}. In your app manifest, you can declare that
+  your app must be installed only on devices that support the extension pack.
+  For example:</p>
+
+<pre>
+&lt;manifest&gt;
+    &lt;uses-feature android:name=“android.hardware.opengles.aep”
+        android:required="true" /&gt;
+    ...
+&lt;/manifest&gt;
+</pre>
+
+<h2 id="Media">Media</h2>
+
+<h3 id="Camera-v2">Camera API for advanced camera capabilities</h3>
+
+<p>Android 5.0 introduces the new
+<a href="{@docRoot}reference/android/hardware/camera2/package-summary.html">android.hardware.camera2</a>
+API to facilitate fine-grain photo capture and image processing. You can now
+programmatically access the camera devices available to the system with
+{@link android.hardware.camera2.CameraManager#getCameraIdList() getCameraIdList()}
+and connect to a specific device with
+{@link android.hardware.camera2.CameraManager#openCamera(java.lang.String, android.hardware.camera2.CameraDevice.StateCallback, android.os.Handler) openCamera()}.
+To start capturing images, create a {@link android.hardware.camera2.CameraCaptureSession}
+and specify the {@link android.view.Surface} objects to send captured images.
+The {@link android.hardware.camera2.CameraCaptureSession} can be configured to
+take single shots or multiple images in a burst.</p>
+
+<p>To be notified when new images are captured, implement the
+{@link android.hardware.camera2.CameraCaptureSession.CaptureCallback} listener
+and set it in your capture request. Now when the system completes the image
+capture request, your {@link android.hardware.camera2.CameraCaptureSession.CaptureCallback}
+listener receives a call to
+{@link android.hardware.camera2.CameraCaptureSession.CaptureCallback#onCaptureCompleted(android.hardware.camera2.CameraCaptureSession, android.hardware.camera2.CaptureRequest, android.hardware.camera2.TotalCaptureResult) onCaptureCompleted()},
+providing you with the image capture metadata in a
+{@link android.hardware.camera2.CaptureResult}.</p>
+
+<p>The {@link android.hardware.camera2.CameraCharacteristics} class lets your
+app detect what camera features are available on a device. The object's
+{@link android.hardware.camera2.CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
+INFO_SUPPORTED_HARDWARE_LEVEL} property represents the camera's level of functionality.</p>
+
+<ul>
+  <li>All devices support at least the
+{@link android.hardware.camera2.CameraMetadata#INFO_SUPPORTED_HARDWARE_LEVEL_LEGACY
+  INFO_SUPPORTED_HARDWARE_LEVEL_LEGACY} hardware level, which has capabilities
+  roughly equivalent to that of the deprecated {@link android.hardware.Camera}
+  API.</li>
+  <li>Devices that support the {@link android.hardware.camera2.CameraMetadata#INFO_SUPPORTED_HARDWARE_LEVEL_FULL
+    INFO_SUPPORTED_HARDWARE_LEVEL_FULL} hardware level are capable of manual
+    control of capture and post-processing, and capturing high-resolution images
+    at high frame rates.</li>
+</ul>
+
+<p>To see how to use the updated
+<a href="{@docRoot}reference/android/hardware/camera2/package-summary.html">Camera</a>
+API, refer to the {@code Camera2Basic} and {@code Camera2Video} implementation
+samples in this release.</p>
+
+<h3 id="AudioPlayback">Audio playback</h3>
+<p>This release includes the following changes to
+  {@link android.media.AudioTrack}:</p>
+<ul>
+  <li>Your app can now supply audio data in floating-point format
+({@link android.media.AudioFormat#ENCODING_PCM_FLOAT ENCODING_PCM_FLOAT}). This
+permits greater dynamic range, more consistent precision, and greater headroom.
+Floating-point arithmetic is especially useful during intermediate calculations.
+Playback endpoints use integer format for audio data, and with lower bit depth.
+(In Android 5.0, portions of the internal pipeline are not yet
+floating point.)
+  <li>Your app can now supply audio data as a {@link java.nio.ByteBuffer}, in
+the same format as provided by {@link android.media.MediaCodec}.
+  <li>The {@link android.media.AudioTrack#WRITE_NON_BLOCKING WRITE_NON_BLOCKING}
+option can simplify buffering and multithreading for some apps.
+</ul>
+
+<h3 id="MediaPlaybackControl">Media playback control</h3>
+<p>Use the new notification and media APIs to ensure that the
+system UI knows about your media playback and can extract and show album art.
+Controlling media playback across a UI and a service is now easier with the new
+{@link android.media.session.MediaSession} and
+{@link android.media.session.MediaController} classes.</p>
+
+<p>The new {@link android.media.session.MediaSession} class replaces
+the deprecated {@link android.media.RemoteControlClient} class and provides a
+single set of callback methods for handling transport controls and media buttons.
+If your app provides media playback and runs on the Android
+<a href="{@docRoot}tv/index.html">TV</a> or
+<a href="{@docRoot}wear/index.html">Wear</a> platform, use the
+{@link android.media.session.MediaSession} class to handle your transport
+controls using the same callback methods.</p>
+
+<p>You can now build your own media controller app with the new
+{@link android.media.session.MediaController} class. This class provides
+a thread-safe way to monitor and control media playback from your app's UI process.
+When creating a controller, specify a {@link android.media.session.MediaSession.Token}
+object so that your app can interact with the given {@link android.media.session.MediaSession}.
+By using the {@link android.media.session.MediaController.TransportControls} methods,
+you can send commands such as {@link android.media.session.MediaController.TransportControls#play() play()},
+{@link android.media.session.MediaController.TransportControls#stop() stop()},
+{@link android.media.session.MediaController.TransportControls#skipToNext() skipToNext()},
+and {@link android.media.session.MediaController.TransportControls#setRating(android.media.Rating) setRating()}
+to control media playback on that session. With the controller, you can also
+register a {@link android.media.session.MediaController.Callback} object to
+listen for metadata and state changes on the session.</p>
+
+<p>In addition, you can create rich notifications that allow playback control
+tied to a media session with the new {@link android.app.Notification.MediaStyle}
+class.</p>
+
+<h3 id="MediaBrowsing">Media browsing</h3>
+<p>Android 5.0 introduces the ability for apps to browse the media content
+  library of another app, through the new
+  <a href="{@docRoot}reference/android/media/browse/package-summary.html">android.media.browse</a>
+  API. To expose the media content in your app, extend the
+{@link android.service.media.MediaBrowserService} class. Your implementation of
+{@link android.service.media.MediaBrowserService} should provide access to a
+{@link android.media.session.MediaSession.Token} so that apps can play media content
+provided through your service.</p>
+<p>To interact with a media browser service, use the
+  {@link android.media.browse.MediaBrowser} class. Specify the component
+  name for a {@link android.media.session.MediaSession} when you create an
+  {@link android.media.browse.MediaBrowser} instance. Using that browser instance,
+  your app can then connect to the associated service and obtain a
+  {@link android.media.session.MediaSession.Token} object to play content exposed
+  through that service.</p>
+
+<h2 id="Storage">Storage</h2>
+
+<h3 id="DirectorySelection">Directory selection</h3>
+
+<p>Android 5.0 extends the
+  <a href="{@docRoot}guide/topics/providers/document-provider.html">Storage Access Framework</a>
+to let users select an entire directory subtree, giving apps read/write access
+to all contained documents without requiring user confirmation for each item.</p>
+
+<p>To select a directory subtree, build and send an
+{@link android.content.Intent#ACTION_OPEN_DOCUMENT_TREE OPEN_DOCUMENT_TREE}
+intent. The system displays all
+{@link android.provider.DocumentsProvider} instances that support subtree selection,
+letting the user browse and select a directory. The returned URI represents
+access to the selected subtree. You can then use {@link
+android.provider.DocumentsContract#buildChildDocumentsUriUsingTree(android.net.Uri, java.lang.String) buildChildDocumentsUriUsingTree()}
+and {@link android.provider.DocumentsContract#buildDocumentUriUsingTree(android.net.Uri, java.lang.String) buildDocumentUriUsingTree()}
+along with
+{@link android.content.ContentResolver#query(android.net.Uri, java.lang.String[], java.lang.String, java.lang.String[], java.lang.String) query()}
+to explore the subtree.</p>
+
+<p>The new {@link android.provider.DocumentsContract#createDocument(android.content.ContentResolver, android.net.Uri, java.lang.String, java.lang.String)
+createDocument()} method lets you create new documents or directories anywhere
+under the subtree. To manage existing documents, use
+{@link android.provider.DocumentsContract#renameDocument(android.content.ContentResolver, android.net.Uri, java.lang.String) renameDocument()} and
+{@link android.provider.DocumentsProvider#deleteDocument(java.lang.String) deleteDocument()}.
+Check {@link android.provider.DocumentsContract.Document#COLUMN_FLAGS COLUMN_FLAGS}
+to verify provider support for these calls before issuing them.</p>
+
+<p>If you're implementing a {@link android.provider.DocumentsProvider} and want
+to support subtree selection, implement {@link android.provider.DocumentsProvider#isChildDocument(java.lang.String, java.lang.String) isChildDocument()} and include {@link
+android.provider.DocumentsContract.Root#FLAG_SUPPORTS_IS_CHILD FLAG_SUPPORTS_IS_CHILD}
+in your {@link android.provider.DocumentsContract.Root#COLUMN_FLAGS COLUMN_FLAGS}.</p>
+
+<p>Android 5.0 also introduces new package-specific directories on
+shared storage where your app can place media files for inclusion in
+{@link android.provider.MediaStore}. The new
+{@link android.content.Context#getExternalMediaDirs()} returns paths to these
+directories on all shared storage devices. Similarly to
+{@link android.content.Context#getExternalFilesDir(java.lang.String) getExternalFilesDir()},
+no additional permissions are needed by your app to access the returned paths. The
+platform periodically scans for new media in these directories, but you can also
+use {@link android.media.MediaScannerConnection} to explicitly scan for new
+content.</p>
+
+<h2 id="Wireless">Wireless &amp; Connectivity</h2>
+
+<h3 id="Multinetwork">Multiple network connections</h3>
+<p>Android 5.0 provides new multi-networking APIs that let your app
+dynamically scan for available networks with specific capabilities, and
+establish a connection to them. This functionality is useful when your app
+requires a specialized network, such as an SUPL, MMS, or carrier-billing network,
+or if you want to send data using a particular type of transport protocol.</p>
+
+<p>To select and connect to a network dynamically from your app, follow these
+steps:</p>
+
+<ol>
+ <li>Create a {@link android.net.ConnectivityManager}.</li>
+ <li>Use the {@link android.net.NetworkRequest.Builder} class to create an
+  {@link android.net.NetworkRequest} object and specify the network features
+  and transport type your app is interested in.</li>
+<li>To scan for suitable networks, call {@link android.net.ConnectivityManager#requestNetwork(android.net.NetworkRequest, android.net.ConnectivityManager.NetworkCallback) requestNetwork()}
+or {@link android.net.ConnectivityManager#registerNetworkCallback(android.net.NetworkRequest, android.net.ConnectivityManager.NetworkCallback) registerNetworkCallback()}, and pass in the
+{@link android.net.NetworkRequest} object and an implementation of
+{@link android.net.ConnectivityManager.NetworkCallback}. Use the
+{@link android.net.ConnectivityManager#requestNetwork(android.net.NetworkRequest, android.net.ConnectivityManager.NetworkCallback) requestNetwork()} method if you want to actively switch to a suitable network once it’s detected; to receive
+only notifications for scanned networks without actively switching, use the
+{@link android.net.ConnectivityManager#registerNetworkCallback(android.net.NetworkRequest, android.net.ConnectivityManager.NetworkCallback) registerNetworkCallback()} method instead.</li>
+</ol>
+
+<p>When the system detects a suitable network, it connects to the network and
+invokes the
+{@link android.net.ConnectivityManager.NetworkCallback#onAvailable(android.net.Network) onAvailable()}
+callback. You can use the {@link android.net.Network} object from the callback to
+get additional information about the network, or to direct traffic to use the
+selected network.</p>
+
+<h3 id="BluetoothBroadcasting">Bluetooth Low Energy</h3>
+<p>Android 4.3 introduced platform support for
+  <a href="{@docRoot}guide/topics/connectivity/bluetooth-le.html">Bluetooth Low Energy</a>
+(<em>Bluetooth LE</em>) in the central role. In Android 5.0, an Android device can now
+act as a Bluetooth LE <em>peripheral device</em>. Apps can use this capability
+to make their presence known to nearby devices. For instance, you can build apps
+that allow a device to function as a pedometer or health monitor and communicate
+its data with another Bluetooth LE device.</p>
+
+<p>The new {@link android.bluetooth.le} APIs enable your apps to broadcast
+advertisements, scan for responses, and form connections with nearby Bluetooth
+LE devices. To use the new advertising and scanning features, add the
+{@link android.Manifest.permission#BLUETOOTH_ADMIN BLUETOOTH_ADMIN}
+permission in your manifest. When users update or download your app from the Play Store,
+they are asked to grant the following permission to your app:
+"Bluetooth connection information: Allows the app to control Bluetooth,
+including broadcasting to or getting information about nearby Bluetooth devices."</p>
+
+<p>To begin Bluetooth LE advertising so that other devices can discover
+your app, call
+{@link android.bluetooth.le.BluetoothLeAdvertiser#startAdvertising(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseCallback) startAdvertising()}
+and pass in an implementation of the
+{@link android.bluetooth.le.AdvertiseCallback} class. The callback object
+receives a report of the success or failure of the advertising operation.</p>
+
+<p> Android 5.0 introduces the {@link android.bluetooth.le.ScanFilter} class so
+  that your app can scan for only the
+specific types of devices it is interested in. To begin scanning for Bluetooth
+LE devices, call {@link android.bluetooth.le.BluetoothLeScanner#startScan(android.bluetooth.le.ScanCallback) startScan()}
+and pass in a list of filters. In the method call, you must also provide an
+implementation of {@link android.bluetooth.le.ScanCallback} to report when a
+Bluetooth LE advertisement is found. </p>
+
+<h3 id="NFCEnhancements">NFC enhancements</h3>
+<p>Android 5.0 adds these enhancements to enable wider and more
+flexible use of NFC:</p>
+
+<ul>
+<li>Android Beam is now available in the <em>share</em> menu.</li>
+<li>Your app can invoke the Android Beam on the user’s device to share data by
+calling {@link android.nfc.NfcAdapter#invokeBeam(android.app.Activity) invokeBeam()}.
+This avoids the need for the user to manually tap the device against another
+NFC-capable device to complete the data transfer.</li>
+<li>You can use the new {@link android.nfc.NdefRecord#createTextRecord(java.lang.String, java.lang.String)
+  createTextRecord()} method to create an NDEF record containing UTF-8 text data.</li>
+<li>If you are developing a payment app, you now have the ability to
+register an NFC application ID (AID) dynamically by calling
+<code><a href="{@docRoot}reference/android/nfc/cardemulation/CardEmulation.html#registerAidsForService(android.content.ComponentName, java.lang.String, java.util.List<java.lang.String>)">registerAidsForService()</a></code>.
+You can also use {@link android.nfc.cardemulation.CardEmulation#setPreferredService(android.app.Activity, android.content.ComponentName) setPreferredService()} to set the preferred card emulation service that should
+be used when a specific activity is in the foreground.</li>
+</ul>
+
+<h2 id="Power">Project Volta</h2>
+
+<p>In addition to new features, Android 5.0 emphasizes improvements in battery
+  life. Use the new APIs and tool to understand and optimize your app’s power
+  consumption.</p>
+
+<h3 id="JobScheduler">Scheduling jobs</h3>
+<p>Android 5.0 provides a new {@link android.app.job.JobScheduler}
+API that lets you optimize battery life by defining jobs for the system to run
+asynchronously at a later time or under specified conditions (such as when the
+device is charging). Job scheduling is useful in such situations as:</p>
+<ul>
+  <li>The app has non-user-facing work that you can defer.</li>
+  <li>The app has work you'd prefer to do when the unit is plugged in.</li>
+  <li>The app has a task that requires network access or a Wi-Fi
+    connection.</li>
+  <li>The app has a number of tasks that you want to run as a batch on a regular
+   schedule.</li>
+
+</ul>
+
+<p>A unit of work is encapsulated by a {@link android.app.job.JobInfo} object.
+This object specifies the scheduling criteria.</p>
+
+<p>Use the {@link android.app.job.JobInfo.Builder} class to configure how the
+scheduled task should run. You can schedule the task to run under specific
+conditions, such as:</p>
+
+<ul>
+  <li>Start when the device is charging</li>
+  <li>Start when the device is connected to an unmetered network</li>
+  <li>Start when the device is idle</li>
+  <li>Finish before a certain deadline or with a minimum delay</li>
+</ul>
+
+<p>For example, you can add code like this to run your task on an
+unmetered network:</p>
+
+<pre>
+JobInfo uploadTask = new JobInfo.Builder(mJobId,
+                                         mServiceComponent /* JobService component */)
+        .setRequiredNetworkCapabilities(JobInfo.NetworkType.UNMETERED)
+        .build();
+JobScheduler jobScheduler =
+        (JobScheduler) context.getSystemService(Context.JOB_SCHEDULER_SERVICE);
+jobScheduler.schedule(uploadTask);
+</pre>
+
+<p>If the device has stable power (that is, it has been plugged in for more
+  than 2 minutes and the battery is at a
+<a href="{@docRoot}reference/android/content/Intent.html#ACTION_BATTERY_OKAY">healthy level</a>),
+the system will run any scheduled job that is ready to run, even if the job’s
+deadline has not expired.</p>
+
+<p>To see an example of how to use the {@link android.app.job.JobScheduler} API,
+refer to the {@code JobSchedulerSample} implementation sample in this release.</p>
+
+<h3 id="PowerMeasurementTools">Developer tools for battery usage</h3>
+
+<p>The new {@code dumpsys batterystats} command generates interesting
+statistical data about battery usage on a device, organized by unique user ID
+(UID). The statistics include:</p>
+
+<ul>
+<li>History of battery related events
+<li>Global statistics for the device
+<li>Approximate power use per UID and system component
+<li>Per-app mobile ms per packet
+<li>System UID aggregated statistics
+<li>App UID aggregated statistics
+</ul>
+
+<p>Use the {@code --help} option to learn about the various options for
+tailoring the output. For example, to print battery usage
+statistics for a given app package since the device was last charged, run this
+command:
+<pre>
+$ adb shell dumpsys batterystats --charged &lt;package-name&gt;
+</pre>
+
+<p>You can use the
+  <a href="https://github.com/google/battery-historian" class="external-link">Battery Historian</a>
+  tool on the output of the {@code dumpsys} command to
+generate an HTML visualization of power-related events from the logs. This
+information makes it easier for you to understand and diagnose any battery
+related issues.</p>
+
+<h2 id="Enterprise">Android in the Workplace and in Education</h2>
+<h3 id="ManagedProvisioning">Managed provisioning</h3>
+
+<div class="figure" style="width:360px">
+  <img src="../../images/android-5.0/managed_apps_launcher.png"
+    srcset="../../images/android-5.0/managed_apps_launcher@2x.png 2x"
+    alt="" width="360" height="609" id="figure3" />
+  <p class="img-caption">
+    <strong>Figure 2.</strong> Launcher screen showing managed apps (marked with
+    a lock badge)
+  </p>
+</div>
+
+<p>Android 5.0 provides new functionality for running apps within
+an enterprise environment. A
+<a href="{@docRoot}guide/topics/admin/device-admin.html">device administrator</a> can
+initiate a managed provisioning process to add a copresent but separate
+<em>managed profile</em> to a device, if the user has an existing personal account.
+Apps that are associated with managed profiles appear alongside
+non-managed apps in the user’s Launcher, recents screen, and notifications.</p>
+
+<p>To start the managed provisioning process, send
+{@link android.app.admin.DevicePolicyManager#ACTION_PROVISION_MANAGED_PROFILE
+ACTION_PROVISION_MANAGED_PROFILE} in an {@link android.content.Intent}. If the
+call is successful, the system triggers the
+{@link android.app.admin.DeviceAdminReceiver#onProfileProvisioningComplete(android.content.Context, android.content.Intent) onProfileProvisioningComplete()} callback.
+You can then call {@link android.app.admin.DevicePolicyManager#setProfileEnabled(android.content.ComponentName) setProfileEnabled()} to
+enable this managed profile.</p>
+
+<p>By default, only a small subset of apps are enabled in the managed profile.
+  You can install additional apps in the managed profile by calling
+  {@link android.app.admin.DevicePolicyManager#enableSystemApp(android.content.ComponentName, android.content.Intent) enableSystemApp()}.</p>
+
+<p>If you are developing a Launcher app, you can use the new {@link
+android.content.pm.LauncherApps} class to get a list of launchable activities
+for the current user and any associated managed profiles. Your Launcher can make
+the managed apps visually prominent by appending a work badge to the icon
+drawable. To retrieve the badged icon, call
+{@link android.content.pm.PackageManager#getUserBadgedIcon(android.graphics.drawable.Drawable, android.os.UserHandle)
+getUserBadgedIcon()}.</p>
+
+<p>To see how to use the new functionality, refer to the
+{@code BasicManagedProfile} implementation sample in this release.</p>
+
+<h3 id="DeviceOwner">Device owner</h3>
+<p>Android 5.0 introduces the ability to deploy a device owner app. A <em>device
+  owner</em> is a specialized type of
+  <a href="{@docRoot}guide/topics/admin/device-admin.html">device administrator</a>
+  that has the additional ability to create and remove secondary users and to
+  configure global settings on the device. Your device owner app can use the
+  methods in the {@link android.app.admin.DevicePolicyManager} class to take
+  fine-grain control of the configuration, security, and apps on managed devices.
+  A device can have only one active device owner at a time.</p>
+
+<p>To deploy and activate a device owner, you must perform an NFC data transfer
+  from a programming app to the device while the device is in its unprovisioned
+  state. This data transfer sends the same information as in the provisioning intent
+  described in <a href="#ManagedProvisioning">Managed provisioning</a>.</p>
+
+<h3 id="ScreenPinning">Screen pinning</h3>
+
+<p>Android 5.0 introduces a new screen pinning API that lets you temporarily
+  restrict users from leaving your task or being interrupted by notifications.
+  This could be used, for example, if you are developing an education app to
+  support high stakes assessment requirements on Android, or a single-purpose or
+  kiosk application. Once your app activates screen pinning, users cannot see
+  notifications, access other apps, or return to the home screen,
+  until your app exits the mode.</p>
+
+<p>There are two ways to activate screen pinning:</p>
+
+<ul>
+<li><strong>Manually:</strong> Users can enable screen pinning in
+<em>Settings > Security > Screen Pinning</em>, and select the tasks they want to
+pin by touching the green pin icon in the recents screen.</li>
+<li><strong>Programmatically:</strong> To activate screen pinning
+programmatically, call {@link android.app.Activity#startLockTask() startLockTask()}
+from your app. If the requesting app is not a device owner, the user is prompted
+for confirmation. A device owner app can call the
+{@link android.app.admin.DevicePolicyManager#setLockTaskPackages(android.content.ComponentName, java.lang.String[]) setLockTaskPackages()}
+method to enable apps to be pinnable without the user confirmation step.</li>
+</ul>
+
+<p>When task locking is active, the following behavior happens:</p>
+
+<ul>
+<li>The status bar is blank, and user notifications and status information are
+hidden.</li>
+<li>The Home and Recent Apps buttons are hidden.</li>
+<li>Other apps cannot launch new activities.</li>
+<li>The current app can start new activities, as long as doing so does not
+create new tasks.</li>
+<li>When screen pinning is invoked by a device owner, the user remains locked
+  to your app until the app calls
+  {@link android.app.Activity#stopLockTask() stopLockTask()}.</li>
+<li>If screen pinning is activity by another app that is not a device owner or
+by the user directly, the user can exit by holding both the Back and Recent buttons.</li>
+
+</ul>
+
+<h2 id="Printing">Printing Framework</h2>
+
+<h3 id="PDFRender">Render PDF as bitmap</h3>
+<p>You can now render PDF document pages into bitmap images for printing by
+using the new {@link android.graphics.pdf.PdfRenderer} class. You must specify a
+{@link android.os.ParcelFileDescriptor} that is seekable (that is, the content
+can be randomly accessed) on which the system writes the the printable content.
+Your app can obtain a page for rendering with
+{@link android.graphics.pdf.PdfRenderer#openPage(int) openPage()}, then call
+{@link android.graphics.pdf.PdfRenderer.Page#render(android.graphics.Bitmap, android.graphics.Rect, android.graphics.Matrix, int) render()}
+to turn the opened {@link android.graphics.pdf.PdfRenderer.Page} into a bitmap. You
+can also set additional parameters if you only want to convert a portion of the
+document into a bitmap image (for example, to implement
+<a href="http://en.wikipedia.org/wiki/Tiled_rendering" class="external-link">tiled rendering</a>
+to zoom in on the document).</p>
+
+<p>For an example of how to use the new APIs, see the {@code PdfRendererBasic}
+  sample.</p>
+
+<h2 id="System">System</h2>
+<h3 id="AppUsageStatistics">App usage statistics</h3>
+<p>You can now access app usage history on an Android device with the
+  new {@link android.app.usage} API. This API provides more detailed usage
+  information than the deprecated
+  {@link android.app.ActivityManager#getRecentTasks(int, int) getRecentTasks()} method.
+  To use this API, you must first declare the
+  {@code "android.permission.PACKAGE_USAGE_STATS"} permission in your manifest.
+  The user must also enable access for this app through <em>Settings > Security > Apps</em>
+  with usage access.</p>
+
+<p>The system collects the usage data on a per-app basis, aggregating the
+  data over daily, weekly, monthly, and yearly intervals. The maximum duration
+  that the system keeps this data is as follows:</p>
+
+<ul>
+  <li>Daily data: 7 days</li>
+  <li>Weekly data: 4 weeks</li>
+  <li>Monthly data: 6 months</li>
+  <li>Yearly data: 2 years</li>
+</ul>
+
+<p>For each app, the system records the following data:</p>
+<ul>
+<li>The last time the app was used</li>
+<li>The total length of time the app was in the foreground for that time interval
+  (by day, week, month, or year)</li>
+<li>Timestamp capturing when a component (identified by a package and activity name)
+  moved to the foreground or background during a day</li>
+<li>Timestamp capturing when a device configuration changed (such as when the
+  device orientation changed because of rotation)</li>
+</ul>
+
+<h2 id="TestingA11y">Testing &amp; Accessibility </h2>
+
+<h3 id="TestingA11yImprovements">Testing and accessibility improvements</h3>
+<p>Android 5.0 adds the following support for testing and
+accessibility:</p>
+
+<ul>
+<li>The new {@link android.app.UiAutomation#getWindowAnimationFrameStats() getWindowAnimationFrameStats()}
+and {@link android.app.UiAutomation#getWindowContentFrameStats(int) getWindowContentFrameStats()}
+methods capture frame statistics for window animations and content. These methods
+let you write instrumentation tests to evaluate whether an app is rendering
+frames at a sufficient refresh frequency to provide a smooth user experience.</li>
+
+<li>The new
+{@link android.app.UiAutomation#executeShellCommand(java.lang.String) executeShellCommand()}
+method lets you execute shell commands from your instrumentation test. The
+command execution is similar to running {@code adb shell} from a host
+connected to the device, allowing you to use shell-based tools such as
+{@code dumpsys}, {@code am}, {@code content}, and {@code pm}.</li>
+
+<li>Accessibility services and test tools that use the accessibility APIs
+(such as <a href="{@docRoot}tools/help/uiautomator/index.html">{@code UiAutomator}</a>)
+can now retrieve detailed information about the properties of windows on the
+screen that sighted users can interact with. To retrieve a list of
+{@link android.view.accessibility.AccessibilityWindowInfo} objects, call the new
+{@link android.accessibilityservice.AccessibilityService#getWindows() getWindows()}
+method.</li>
+
+<li>The new {@link android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction}
+  class lets you define standard or customized actions to perform on an
+  {@link android.view.accessibility.AccessibilityNodeInfo}.
+The new {@link android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction}
+class replaces the actions-related APIs previously found in
+{@link android.view.accessibility.AccessibilityNodeInfo}.</li>
+
+<li>Android 5.0 provides finer-grain control over text-to-speech synthesis in
+  your app. The new {@link android.speech.tts.Voice} class allows your app to
+  use voice profiles associated with specific locales, quality and latency
+  rating, and text-to-speech engine-specific parameters.</li>
+</ul>
+
+<h2 id="IME">IME</h2>
+
+<h3 id="Switching">Easier switching between input languages</h3>
+
+<p>Beginning in Android 5.0, users can more easily switch between
+all <a href="{@docRoot}guide/topics/text/creating-input-method.html">input
+method editors (IME)</a> supported by the platform. Performing the designated
+switching action (usually touching a Globe icon on the soft keyboard) cycles
+through all such IMEs. This change in behavior is implemented by the
+{@link android.view.inputmethod.InputMethodManager#shouldOfferSwitchingToNextInputMethod(android.os.IBinder) shouldOfferSwitchingToNextInputMethod()}
+method.</p>
+
+<p>In addition, the framework now checks whether the next IME includes a
+switching mechanism at all (and, thus, whether that IME supports switching to
+the IME after it). An
+IME with a switching mechanism will not cycle to an IME without one. This
+change in behavior is implemented by the
+{@link android.view.inputmethod.InputMethodManager#switchToNextInputMethod(android.os.IBinder, boolean) switchToNextInputMethod()}
+method.
+
+<p>To see an example of how to use the updated IME-switching APIs, refer to the
+updated soft-keyboard implementation sample in this release. To learn more about
+how to implement switching between IMEs, see
+<a href="{@docRoot}guide/topics/text/creating-input-method.html">Creating an Input Method</a>.
+</p>
+
+<h2 id="Manifest">Manifest Declarations</h2>
+
+<h3 id="ManifestFeatures">Declarable required features</h3>
+<p>The following values are now supported in the
+<a href="{@docRoot}guide/topics/manifest/uses-feature-element.html">{@code &lt;uses-feature&gt;}</a>
+element, so you can ensure that your app is installed only on devices that
+provide the features your app needs.</p>
+
+<ul>
+<li>{@link android.content.pm.PackageManager#FEATURE_AUDIO_OUTPUT}</li>
+<li>{@link android.content.pm.PackageManager#FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING}</li>
+<li>{@link android.content.pm.PackageManager#FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR}</li>
+<li>{@link android.content.pm.PackageManager#FEATURE_CAMERA_CAPABILITY_RAW}</li>
+<li>{@link android.content.pm.PackageManager#FEATURE_CAMERA_LEVEL_FULL}</li>
+<li>{@link android.content.pm.PackageManager#FEATURE_GAMEPAD}</li>
+<li>{@link android.content.pm.PackageManager#FEATURE_LIVE_TV}</li>
+<li>{@link android.content.pm.PackageManager#FEATURE_MANAGED_USERS}</li>
+<li>{@link android.content.pm.PackageManager#FEATURE_LEANBACK}</li>
+<li>{@link android.content.pm.PackageManager#FEATURE_OPENGLES_EXTENSION_PACK}</li>
+<li>{@link android.content.pm.PackageManager#FEATURE_SECURELY_REMOVES_USERS}</li>
+<li>{@link android.content.pm.PackageManager#FEATURE_SENSOR_AMBIENT_TEMPERATURE}</li>
+<li>{@link android.content.pm.PackageManager#FEATURE_SENSOR_HEART_RATE_ECG}</li>
+<li>{@link android.content.pm.PackageManager#FEATURE_SENSOR_RELATIVE_HUMIDITY}</li>
+<li>{@link android.content.pm.PackageManager#FEATURE_VERIFIED_BOOT}</li>
+<li>{@link android.content.pm.PackageManager#FEATURE_WEBVIEW}</li>
+</ul>
+
+<h3 id="Permissions">User permissions</h3>
+
+<p>The following permissions are now supported in the
+<a href="{@docRoot}guide/topics/manifest/uses-permission-element.html">{@code &lt;uses-permission&gt;}</a>
+element to declare the permissions your app requires to access certain APIs.</p>
+
+<ul>
+<li>{@link android.Manifest.permission#BIND_DREAM_SERVICE}: When targeting API
+  level 21 and higher, this permission is required by a
+  <a href="{@docRoot}about/versions/android-4.2.html#Daydream">Daydream</a> service,
+  to ensure that only the system can bind to it.</li>
+
+<li>{@link android.Manifest.permission#READ_VOICEMAIL}: Required to allow your
+  app to read voicemails in the system.</li>
+
+<li>{@link android.Manifest.permission#WRITE_VOICEMAIL}: Required to allow your
+  app to modify and remove existing voicemails in the system.</li>
+</ul>
+
+<p class="note">For a detailed view of all API changes in Android 5.0, see the
+<a href="{@docRoot}sdk/api_diff/21/changes.html">API Differences Report</a>.</p>
diff --git a/docs/html/design/downloads/index.jd b/docs/html/design/downloads/index.jd
index 1664923..a073428 100644
--- a/docs/html/design/downloads/index.jd
+++ b/docs/html/design/downloads/index.jd
@@ -26,13 +26,13 @@
   <div class="layout-content-col span-4">
 
 <p>
-  <!--<a class="download-button"  onClick="_gaq.push(['_trackEvent', 'Design', 'Download', 'Fireworks Stencil']);"
+  <!--<a class="download-button"  onClick="ga('send', 'event', 'Design', 'Download', 'Fireworks Stencil');"
     href="{@docRoot}downloads/design/Android_Design_Fireworks_Stencil_20120814.png">Adobe&reg; Fireworks&reg; PNG Stencil</a>
-  <a class="download-button"  onClick="_gaq.push(['_trackEvent', 'Design', 'Download', 'Illustrator Stencil']);"
+  <a class="download-button"  onClick="ga('send', 'event', 'Design', 'Download', 'Illustrator Stencil');"
     href="{@docRoot}downloads/design/Android_Design_Illustrator_Vectors_20120814.ai">Adobe&reg; Illustrator&reg; Stencil</a>
-  <a class="download-button"  onClick="_gaq.push(['_trackEvent', 'Design', 'Download', 'OmniGraffle Stencil']);"
+  <a class="download-button"  onClick="ga('send', 'event', 'Design', 'Download', 'OmniGraffle Stencil');"
     href="{@docRoot}downloads/design/Android_Design_OmniGraffle_Stencil_20120814.graffle">Omni&reg; OmniGraffle&reg; Stencil</a>-->
-  <a class="download-button"  onClick="_gaq.push(['_trackEvent', 'Design', 'Download', 'Photoshop Sources']);"
+  <a class="download-button"  onClick="ga('send', 'event', 'Design', 'Download', 'Photoshop Sources');"
     href="{@docRoot}downloads/design/Android_Design_Stencils_Sources_20131106.zip">Adobe&reg; Photoshop&reg; Stencils and Sources</a>
 </p>
 
@@ -64,7 +64,7 @@
   <div class="layout-content-col span-4">
 
 <p>
-  <a class="download-button"  onClick="_gaq.push(['_trackEvent', 'Design', 'Download', 'Action Bar Icons']);"
+  <a class="download-button"  onClick="ga('send', 'event', 'Design', 'Download', 'Action Bar Icons');"
     href="{@docRoot}downloads/design/Android_Design_Icons_20131106.zip">Action Bar Icon Pack</a>
 </p>
 
@@ -89,10 +89,10 @@
 
   </div>
   <div class="layout-content-col span-4">
-  <a class="download-button"  onClick="_gaq.push(['_trackEvent', 'Design', 'Download', 'Wear Toolkit AI']);"
+  <a class="download-button"  onClick="ga('send', 'event', 'Design', 'Download', 'Wear Toolkit AI');"
     href="{@docRoot}downloads/design/Android_Wear_Toolkit_20140722.ai">Adobe&reg; Illustrator&reg; Toolkit</a>
 
-  <a class="download-button"  onClick="_gaq.push(['_trackEvent', 'Design', 'Download', 'Wear Toolkit PDF']);"
+  <a class="download-button"  onClick="ga('send', 'event', 'Design', 'Download', 'Wear Toolkit PDF');"
     href="{@docRoot}downloads/design/Android_Wear_Toolkit_20140722.pdf">PDF Toolkit</a>
   </div>
 </div>
@@ -110,9 +110,9 @@
 
   </div>
   <div class="layout-content-col span-4">
-  <a class="download-button"  onClick="_gaq.push(['_trackEvent', 'Design', 'Download', 'Wear App Patterns AI']);"
+  <a class="download-button"  onClick="ga('send', 'event', 'Design', 'Download', 'Wear App Patterns AI');"
     href="{@docRoot}downloads/design/Android_Wear_Patterns_20140722.ai">Adobe&reg; Illustrator&reg; App Patterns</a>
-  <a class="download-button"  onClick="_gaq.push(['_trackEvent', 'Design', 'Download', 'Wear App Patterns PDF']);"
+  <a class="download-button"  onClick="ga('send', 'event', 'Design', 'Download', 'Wear App Patterns PDF');"
     href="{@docRoot}downloads/design/Android_Wear_Patterns_20140722.pdf">PDF App Patterns</a>
   </div>
 </div>
@@ -131,7 +131,7 @@
 
   </div>
   <div class="layout-content-col span-4">
-  <a class="download-button"  onClick="_gaq.push(['_trackEvent', 'Design', 'Download', 'Wear Sample PSD Mocks']);"
+  <a class="download-button"  onClick="ga('send', 'event', 'Design', 'Download', 'Wear Sample PSD Mocks');"
     href="{@docRoot}downloads/design/Android_Wear_Sample_Assets.zip">Adobe&reg; Photoshop&reg; mocks</a>
   </div>
 </div>
@@ -164,9 +164,9 @@
   <div class="layout-content-col span-4">
 
 <p>
-  <a class="download-button"  onClick="_gaq.push(['_trackEvent', 'Design', 'Download', 'Roboto ZIP']);"
+  <a class="download-button"  onClick="ga('send', 'event', 'Design', 'Download', 'Roboto ZIP');"
     href="{@docRoot}downloads/design/roboto-1.2.zip">Roboto</a>
-  <a class="download-button"  onClick="_gaq.push(['_trackEvent', 'Design', 'Download', 'Roboto Specemin Book']);"
+  <a class="download-button"  onClick="ga('send', 'event', 'Design', 'Download', 'Roboto Specemin Book');"
     href="{@docRoot}downloads/design/Roboto_Specimen_Book_20131031.pdf">Specimen Book</a>
 </p>
 
@@ -190,7 +190,7 @@
   <div class="layout-content-col span-4">
 
 <p>
-  <a class="download-button"  onClick="_gaq.push(['_trackEvent', 'Design', 'Download', 'Color Swatches']);"
+  <a class="download-button"  onClick="ga('send', 'event', 'Design', 'Download', 'Color Swatches');"
     href="{@docRoot}downloads/design/Android_Design_Color_Swatches_20120229.zip">Color Swatches</a>
 </p>
 
diff --git a/docs/html/design/patterns/actionbar.jd b/docs/html/design/patterns/actionbar.jd
index a1adbd3..f28df01 100644
--- a/docs/html/design/patterns/actionbar.jd
+++ b/docs/html/design/patterns/actionbar.jd
@@ -182,7 +182,7 @@
 </p>
 <p>
 
-<a onClick="_gaq.push(['_trackEvent', 'Design', 'Download', 'Action Bar Icons (@actionbar page)']);"
+<a onClick="ga('send', 'event', 'Design', 'Download', 'Action Bar Icons (@actionbar page)');"
    href="{@docRoot}downloads/design/Android_Design_Icons_20131106.zip">Download the Action Bar Icon Pack</a>
 
 </p>
diff --git a/docs/html/design/style/color.jd b/docs/html/design/style/color.jd
index a7daacf..e00f6bc 100644
--- a/docs/html/design/style/color.jd
+++ b/docs/html/design/style/color.jd
@@ -115,7 +115,7 @@
 
 <p>Blue is the standard accent color in Android's color palette. Each color has a corresponding darker
 shade that can be used as a complement when needed.</p>
-<p><a onClick="_gaq.push(['_trackEvent', 'Design', 'Download', 'Color Swatches (@color page)']);"
+<p><a onClick="ga('send', 'event', 'Design', 'Download', 'Color Swatches (@color page)');"
       href="{@docRoot}downloads/design/Android_Design_Color_Swatches_20120229.zip">Download the swatches</a></p>
 
 <img src="{@docRoot}design/media/color_spectrum.png">
diff --git a/docs/html/design/style/iconography.jd b/docs/html/design/style/iconography.jd
index e5161f4..d212b06 100644
--- a/docs/html/design/style/iconography.jd
+++ b/docs/html/design/style/iconography.jd
@@ -140,7 +140,7 @@
 
 </p>
 <p>
-<a onClick="_gaq.push(['_trackEvent', 'Design', 'Download', 'Action Bar Icons (@iconography page)']);"
+<a onClick="ga('send', 'event', 'Design', 'Download', 'Action Bar Icons (@iconography page)');"
    href="{@docRoot}downloads/design/Android_Design_Icons_20131106.zip">Download the Action Bar Icon Pack</a>
 </p>
 
diff --git a/docs/html/design/style/typography.jd b/docs/html/design/style/typography.jd
index 6923f0b..a665097 100644
--- a/docs/html/design/style/typography.jd
+++ b/docs/html/design/style/typography.jd
@@ -12,7 +12,7 @@
   <div class="layout-content-col span-5">
 
 <p>
-  <a class="download-button"  onClick="_gaq.push(['_trackEvent', 'Design', 'Download', 'Roboto ZIP']);"
+  <a class="download-button"  onClick="ga('send', 'event', 'Design', 'Download', 'Roboto ZIP');"
     href="{@docRoot}downloads/design/roboto-1.2.zip">Download Roboto</a>
 </p>
 
@@ -30,7 +30,7 @@
 
     <img src="{@docRoot}design/media/typography_variants@2x.png" width="220">
 
-<p><a onClick="_gaq.push(['_trackEvent', 'Design', 'Download', 'Roboto Specimen Booke (@typography page)']);"
+<p><a onClick="ga('send', 'event', 'Design', 'Download', 'Roboto Specimen Book (@typography page)');"
       href="{@docRoot}downloads/design/Roboto_Specimen_Book_20131031.pdf">Specimen Book</a></p>
 
   </div>
diff --git a/docs/html/design/wear/creative-vision.jd b/docs/html/design/wear/creative-vision.jd
index aee115c..a879cf9 100644
--- a/docs/html/design/wear/creative-vision.jd
+++ b/docs/html/design/wear/creative-vision.jd
@@ -33,7 +33,7 @@
     <img src="{@docRoot}design/media/wear/vision_navigation.png" width="147" height="147" />
 
     <h2 id="Glanceable">Glanceable</h2>
-    <p>A classic wrist watch is designed to let you see the time in a split second and get on with what you were doing. Designing for Android Wear is no different. The less time it takes to use your software, the more time the user can be present in whatever they are doing. Android wear is fast, sharp and immediate.</p>
+    <p>A classic wrist watch is designed to let you see the time in a split second and get on with what you were doing. Designing for Android Wear is no different. The less time it takes to use your software, the more time the user can be present in whatever they are doing. Android wear is fast, sharp, and immediate.</p>
   </div>
 
   <div class="layout-content-col span-13">
diff --git a/docs/html/design/wear/patterns.jd b/docs/html/design/wear/patterns.jd
index 152379c..30fdc244 100644
--- a/docs/html/design/wear/patterns.jd
+++ b/docs/html/design/wear/patterns.jd
@@ -58,7 +58,7 @@
 
 <p>Where the user may need to take action on the information shown in a notification, you can provide action buttons. These are system-rendered buttons that appear to the right of detail cards. They consist of a white icon set on a blue system-rendered circular button and a short caption with a verb. Actions should be limited to three for a single card row.</p>
 
-<p>Tapping on an action button can cause an action to be executed; or an action to be continued on the companion handheld; or a full screen activity to be invoked for further input (see the <a href="#2DPicker">2D Picker</a> section below).</p>
+<p>Tapping on an action button can cause an action to be executed, an action to be continued on the companion handheld, or a full screen activity to be invoked for further input (see the <a href="#2DPicker">2D Picker</a> section below).</p>
 
 <p>Refer to the UI Toolkit provided in the <a href="{@docRoot}design/downloads/index.html#Wear">Downloads</a> page for detailed specs regarding action icons.</p>
 
@@ -94,10 +94,11 @@
 <li>This pattern should be used when only one possible action could be reasonably expected. For example, tapping on an address with a car icon and ETA seems like it would very obviously launch directions. Conversely, if you see a contact's photo and name, it's not clear what tapping would do (call them? email them?), so the pattern shouldn't be used in this case.</li>
 <li>On-card actions should not require a text label to be understood.</li>
 <li>On-card actions should only result in something happening on the wearable (apart from web links to open them on the phone).</li>
-<li>Only one action per card: no menus on a single card.</li>
+<li>You should only have one action per card.</li>
+<li>Do not put menus on a single card.</li>
 </ul>
 
-<p>Good examples of using an action on card include: play / pause music; toggle light switch on and off; navigate to an address; call a phone number.</p>
+<p>Good examples of using an action on card include: play and pause music, toggle light switch on and off, navigate to an address, and call a phone number.</p>
 
 
 <h2 id="Stacks" style="clear:both">Card stacks</h2>
@@ -143,7 +144,7 @@
   <img src="{@docRoot}design/media/wear/selection_list.png" width="147" height="147" style="float:right;margin:0 0 20px 40px;border:1px solid #ddd">
 
 <p>Choosing an item from a list is a common interaction. The Selection List pattern (available as the <a
-href="{@docRoot}training/wearables/apps/layouts.html#UiLibrary"><code>WearableListView</code></a> component) creates a simple list optimized for ease of use on a small screen: the focused item snaps to the center of the screen, and a single tap selects. This widget is recommended as a common pattern for selecting items. It is used throughout the system UI, including in the list that can be accessed by swiping up on the cue card.</p>
+href="{@docRoot}training/wearables/apps/layouts.html#UiLibrary"><code>WearableListView</code></a> component) creates a simple list optimized for ease of use on a small screen where the focused item snaps to the center of the screen and a single tap selects. This widget is recommended as a common pattern for selecting items. It is used throughout the system UI, including in the list that can be accessed by swiping up on the cue card.</p>
 
 
 <p>Of course, it is possible for Android Wear apps to extend themselves beyond the familiarities of these patterns. For a deeper look at the options available, see the <a href="{@docRoot}design/wear/structure.html">App Structure</a> guide.</p>
diff --git a/docs/html/design/wear/principles.jd b/docs/html/design/wear/principles.jd
index 6286a92..e6d6b4d 100644
--- a/docs/html/design/wear/principles.jd
+++ b/docs/html/design/wear/principles.jd
@@ -37,7 +37,7 @@
 <p class="img-caption" style="width:315px;float:right;clear:right;margin:5px 0 30px 40px">
 Use few and large touch targets.</p>
 
-<p>When you swipe through photos on your phone you’re using a large area of the display, and you don’t have to be precise at all. That’s the best kind of interaction for a wearable device. Your users are going to use your app in all sorts of situations, the least frequent one might actually be sitting down at their desk.</p>
+<p>When you swipe through photos on your phone, you’re using a large area of the display and precision isn't required. That’s the best kind of interaction for a wearable device. Your users are going to use your app in all sorts of situations, the least frequent one might actually be sitting down at their desk.</p>
 
 <p class="try"><b>Try this:</b> Use your app in various everyday situations, such as walking, eating, talking to people, or ordering coffee. If you have to slow down while walking or stop the conversation to be precise, you should consider how your gestures could be bigger.</p>
 
@@ -58,18 +58,18 @@
 
 <p>While users will engage with your app for only a few seconds at time, they'll use it many times throughout the day. A well-designed stream card carries one bit of information and potentially offers a few action buttons when the user swipes over.</p>
 
-<p class="try"><b>Try this:</b> How many bits of information is there in your design? Is everything absolutely necessary, or could you split it up into separate cards? If you’re designing a card, don’t forget that you can use multiple pages.</p>
+<p class="try"><b>Try this:</b> How many bits of information are there in your design? Is everything absolutely necessary, or could you split it up into separate cards? If you’re designing a card, don’t forget that you can use multiple pages.</p>
 
 
 <h2 id="CornerOfEye">Design for the corner of the eye</h2>
 
 <p>The longer the user is looking at your app, the more you are pulling them out of the real world. Thinking about how to design your app for glanceability can vastly help the user get full value from your app and quickly go back to what they were doing.</p>
 
-<p class="try"><b>Try this:</b> To view your app with your peripheral vision, try focusing on your knuckles while your watch is displaying the app. Do you get a sense of what it is trying to do? Is it distinguishable from other apps? Does the background image help conveying the message? Does it use photos or a distinct shape and color?</p>
+<p class="try"><b>Try this:</b> To view your app with your peripheral vision, try focusing on your knuckles while your watch is displaying the app. Do you get a sense of what it is trying to do? Is it distinguishable from other apps? Does the background image help convey the message? Does it use photos or a distinct shape and color?</p>
 
 
 <h2 id="Tapper">Don’t be a constant shoulder tapper</h2>
 
-<p>A watch constantly touches the user’s skin. Being this intimate, you want to buzz the watch fewer times than you’re used to on the phone.</p>
+<p>A watch constantly touches the user’s skin. Being this intimate, you want to vibrate the watch fewer times than you might on a phone.</p>
 
-<p class="try"><b>Try this:</b> Next time you’re in a conversation, imagine someone tapping you your shoulder, interrupting you with the information you want your app to deliver. If the information delivered did not justify suspending a conversation, you should not make the notification interruptive.</p>
\ No newline at end of file
+<p class="try"><b>Try this:</b> Next time you’re in a conversation, imagine someone tapping you on your shoulder, interrupting you with the information you want your app to deliver. If the information delivered did not justify suspending a conversation, you should not make the notification interruptive.</p>
\ No newline at end of file
diff --git a/docs/html/design/wear/structure.jd b/docs/html/design/wear/structure.jd
index a7b5232..b77ccc2 100644
--- a/docs/html/design/wear/structure.jd
+++ b/docs/html/design/wear/structure.jd
@@ -13,7 +13,7 @@
 }
 </style>
 
-<p>Users are used to tapping icons to launch apps. Android Wear is different. A typical Wear app adds a card to the stream at a contextually relevant moment. It might have a button that opens a full screen view for a fast micro interaction, like below, but it just as well might not.
+<p>Users are used to tapping icons to launch apps. Android Wear is different. A typical Wear app adds a card to the stream at a contextually relevant moment. It might have a button that opens a full screen view for a fast micro interaction, but it just as well might not.
 </p>
 
 <p>These are the building blocks, ordered by simplicity. You can use one of them or some of them, but we strongly recommend not building apps the user has to launch and quit before thinking really hard about how you could react to a specific location, activity, time of day, or something happening in the cloud.</p>
diff --git a/docs/html/design/wear/style.jd b/docs/html/design/wear/style.jd
index 948b934..bb2e17f 100644
--- a/docs/html/design/wear/style.jd
+++ b/docs/html/design/wear/style.jd
@@ -30,7 +30,7 @@
   <div class="layout-content-col span-7">
   <h2 id="Assets" style="clear:both">Specific Assets Required</h2>
 
-  <p>A core set of standard assets may need to be provided depending on your card design: app icon, background image or images, action icons, actions confirmation animation. Of course, your specific design may necessitate other assets. Background image should be provided in landscape format at least 600px width for notifications that include pages of cards, since the system automatically adds a parallaxing effect.</p>
+  <p>A core set of standard assets may need to be provided depending on your card design: app icon, background image or images, action icons, and action confirmation animations. Of course, your specific design may necessitate other assets. Background images should be provided in landscape format at least 600px width for notifications that include pages of cards, since the system automatically adds a parallaxing effect.</p>
   </div>
 </div>
 
@@ -54,7 +54,7 @@
 
 <h2 id="InfoDensity" style="margin-top:0" >Low Information Density</h2>
 
-<p>Cards should be designed to be glanceable in a split second, just like reading the time on a traditional watch. In most cases a pairing of an icon and value, or a title and short caption should be enough to convey a meaningful message. Note that the background photo should also be used to convey information; backgrounds that change to reflect and support the primary message in the card work great. For example, in the case illustrated above a suitable background image is chosen to reflect severity of the current traffic conditions. This is not just a nice piece of attention to detail; the background actually reinforces the message and makes the content more glanceable.</p>
+<p>Cards should be designed to be glanceable in a split second, just like reading the time on a traditional watch. In most cases a pairing of an icon and value, or a title and short caption should be enough to convey a meaningful message. Note that the background photo should also be used to convey information; backgrounds that change to reflect and support the primary message in the card work great. For example, in the case illustrated to the right, a suitable background image is chosen to reflect the severity of current traffic conditions. This is not just a nice piece of attention to detail; the background actually reinforces the message and makes the content more glanceable.</p>
 
 
 <img src="{@docRoot}design/media/wear/separate_info_cards.jpg" height="147"
@@ -68,7 +68,7 @@
 
 <h2 id="KeepMinimum" style="clear:both">Keep Notifications to a Minimum</h2>
 
-<p>Don’t abuse the user’s attention. Active notifications (that is, those that cause the device to vibrate) should only be used in cases that are both timely and involve a contact, for example receiving a message from a friend. Non-urgent notifications should be silently added to the Context Stream. See also the general Android Notifications Guidelines.</p>
+<p>Don’t abuse the user’s attention. Active notifications (that is, those that cause the device to vibrate) should only be used in cases that are both timely and involve a contact, for example receiving a message from a friend. Non-urgent notifications should be silently added to the Context Stream. See also the general <a href={@docRoot}design/patterns/notifications.html">Android Notifications Guidelines</a>.</p>
 
 
 
@@ -83,7 +83,7 @@
 
 <h2 id="Branding" style="clear:both" >Use Consistent Branding and Color</h2>
 
-<p>The app icon is used to identify and brand your application. The icon is optional but when present always appears in the same location, overhanging the top edge of the card at the right. Note that app icons or branding should not be displayed in the background photo, which is reserved to display an image relevant to the information on the card.</p>
+<p>The app icon is used to identify and brand your application. The icon is optional but when present always appears in the same location, overhanging the top right edge of the card. Note that app icons or branding should not be displayed in the background photo, which is reserved to display an image relevant to the information on the card.</p>
 
 
 <img src="{@docRoot}design/media/wear/copywrite.png" height="147"
@@ -91,7 +91,7 @@
 
 <h2 id="Copywrite" >Copywrite Sparingly</h2>
 
-<p>Omit needless text. Design for glanceability, not reading. Use words and phrases, not sentences. Use icons paired with values instead of text wherever possible. Text strings should be as concise as possible, and long pieces of text will be truncated to fit on a single card.</p>
+<p>Omit needless text. Design for glanceability and not for reading. Use words and phrases, not sentences. Use icons paired with values instead of text wherever possible. Text strings should be as concise as possible, and long pieces of text will be truncated to fit on a single card.</p>
 
 
 <h2 id="BeDiscreet" style="clear:both" >Be Discreet if Necessary</h2>
@@ -105,7 +105,7 @@
 
 <h2 id="ConfirmAnim">Confirmation Animations</h2>
 
-<p>If your app allows the user to perform an action, it is necessary to provide positive feedback. Show a generic confirmation animation or create your own. A confirmation animation is an opportunity to express your app’s character and insert a moment of delight for your user. Keep animations short (less than 1000ms) and simple. Animating the confirmation icon is an effective way of transitions the user to a new state after completing an action.</p>
+<p>If your app allows the user to perform an action, it is necessary to provide positive feedback. Show a generic confirmation animation or create your own. A confirmation animation is an opportunity to express your app’s character and insert a moment of delight for your user. Keep animations short (less than 1000ms) and simple. Animating the confirmation icon is an effective way of transitioning the user to a new state after completing an action.</p>
 
 
 
diff --git a/docs/html/distribute/tools/promote/badges.jd b/docs/html/distribute/tools/promote/badges.jd
index e91a804..4bea8be 100644
--- a/docs/html/distribute/tools/promote/badges.jd
+++ b/docs/html/distribute/tools/promote/badges.jd
@@ -101,7 +101,7 @@
             + selectedValue + imageEnd);
             
     // Send the event to Analytics
-    _gaq.push(['_trackEvent', 'Distribute', 'Create Google Play Badge', 'Package ' + selectedValue]);
+    ga('send', 'event', 'Distribute', 'Create Google Play Badge', 'Package ' + selectedValue);
   } else if (form["publisher"].value != "Example, Inc.") {
     $("#preview").show();
     var publisherName = escapeHTML(form["publisher"].value);
@@ -113,7 +113,7 @@
             + selectedValue + imageEnd);
    
     // Send the event to Analytics
-    _gaq.push(['_trackEvent', 'Distribute', 'Create Google Play Badge', 'Publisher ' + selectedValue]);
+    ga('send', 'event', 'Distribute', 'Create Google Play Badge', 'Publisher ' + selectedValue);
   } else {
     alert("Please enter your package name or publisher name");
   }
diff --git a/docs/html/distribute/tools/promote/device-art.jd b/docs/html/distribute/tools/promote/device-art.jd
index a204ea1..1736060 100644
--- a/docs/html/distribute/tools/promote/device-art.jd
+++ b/docs/html/distribute/tools/promote/device-art.jd
@@ -428,7 +428,7 @@
               g_currentImage = img;
               createFrame();
               // Send the event to Analytics
-              _gaq.push(['_trackEvent', 'Distribute', 'Create Device Art', g_currentDevice.title]);
+              ga('send', 'event', 'Distribute', 'Create Device Art', g_currentDevice.title);
             });
           });
         });
diff --git a/docs/html/images/android-5.0/ActivitySceneTransitionBasic.png b/docs/html/images/android-5.0/ActivitySceneTransitionBasic.png
new file mode 100644
index 0000000..ea58641
--- /dev/null
+++ b/docs/html/images/android-5.0/ActivitySceneTransitionBasic.png
Binary files differ
diff --git a/docs/html/images/android-5.0/ActivitySceneTransitionBasic@2x.png b/docs/html/images/android-5.0/ActivitySceneTransitionBasic@2x.png
new file mode 100644
index 0000000..cd28ade
--- /dev/null
+++ b/docs/html/images/android-5.0/ActivitySceneTransitionBasic@2x.png
Binary files differ
diff --git a/docs/html/images/android-5.0/BasicManagedProfile.png b/docs/html/images/android-5.0/BasicManagedProfile.png
new file mode 100644
index 0000000..7354842
--- /dev/null
+++ b/docs/html/images/android-5.0/BasicManagedProfile.png
Binary files differ
diff --git a/docs/html/images/android-5.0/BasicManagedProfile@2x.png b/docs/html/images/android-5.0/BasicManagedProfile@2x.png
new file mode 100644
index 0000000..c232809
--- /dev/null
+++ b/docs/html/images/android-5.0/BasicManagedProfile@2x.png
Binary files differ
diff --git a/docs/html/images/android-5.0/JobSchedulerSample.png b/docs/html/images/android-5.0/JobSchedulerSample.png
new file mode 100644
index 0000000..ee57bdb
--- /dev/null
+++ b/docs/html/images/android-5.0/JobSchedulerSample.png
Binary files differ
diff --git a/docs/html/images/android-5.0/JobSchedulerSample@2x.png b/docs/html/images/android-5.0/JobSchedulerSample@2x.png
new file mode 100644
index 0000000..3d543db
--- /dev/null
+++ b/docs/html/images/android-5.0/JobSchedulerSample@2x.png
Binary files differ
diff --git a/docs/html/images/android-5.0/art.png b/docs/html/images/android-5.0/art.png
new file mode 100644
index 0000000..c48f039
--- /dev/null
+++ b/docs/html/images/android-5.0/art.png
Binary files differ
diff --git a/docs/html/images/android-5.0/battery_historian.png b/docs/html/images/android-5.0/battery_historian.png
new file mode 100644
index 0000000..f1d4e40
--- /dev/null
+++ b/docs/html/images/android-5.0/battery_historian.png
Binary files differ
diff --git a/docs/html/images/android-5.0/battery_historian@2x.png b/docs/html/images/android-5.0/battery_historian@2x.png
new file mode 100644
index 0000000..8c8a87f
--- /dev/null
+++ b/docs/html/images/android-5.0/battery_historian@2x.png
Binary files differ
diff --git a/docs/html/images/android-5.0/bugs.png b/docs/html/images/android-5.0/bugs.png
new file mode 100644
index 0000000..46adf05
--- /dev/null
+++ b/docs/html/images/android-5.0/bugs.png
Binary files differ
diff --git a/docs/html/images/android-5.0/hun-example.png b/docs/html/images/android-5.0/hun-example.png
new file mode 100644
index 0000000..f07004b
--- /dev/null
+++ b/docs/html/images/android-5.0/hun-example.png
Binary files differ
diff --git a/docs/html/images/android-5.0/hun-example@2x.png b/docs/html/images/android-5.0/hun-example@2x.png
new file mode 100644
index 0000000..cc6b840
--- /dev/null
+++ b/docs/html/images/android-5.0/hun-example@2x.png
Binary files differ
diff --git a/docs/html/images/android-5.0/l-dev-prev.png b/docs/html/images/android-5.0/l-dev-prev.png
new file mode 100644
index 0000000..eae6ede
--- /dev/null
+++ b/docs/html/images/android-5.0/l-dev-prev.png
Binary files differ
diff --git a/docs/html/images/android-5.0/managed_apps_launcher.png b/docs/html/images/android-5.0/managed_apps_launcher.png
new file mode 100644
index 0000000..b5ef407
--- /dev/null
+++ b/docs/html/images/android-5.0/managed_apps_launcher.png
Binary files differ
diff --git a/docs/html/images/android-5.0/managed_apps_launcher@2x.png b/docs/html/images/android-5.0/managed_apps_launcher@2x.png
new file mode 100644
index 0000000..90d7d51
--- /dev/null
+++ b/docs/html/images/android-5.0/managed_apps_launcher@2x.png
Binary files differ
diff --git a/docs/html/images/android-5.0/notifications/AntiSample1.png b/docs/html/images/android-5.0/notifications/AntiSample1.png
new file mode 100644
index 0000000..b06c644
--- /dev/null
+++ b/docs/html/images/android-5.0/notifications/AntiSample1.png
Binary files differ
diff --git a/docs/html/images/android-5.0/notifications/AntiSample3.png b/docs/html/images/android-5.0/notifications/AntiSample3.png
new file mode 100644
index 0000000..df5f4e7
--- /dev/null
+++ b/docs/html/images/android-5.0/notifications/AntiSample3.png
Binary files differ
diff --git a/docs/html/images/android-5.0/notifications/ExpandedImage.png b/docs/html/images/android-5.0/notifications/ExpandedImage.png
new file mode 100644
index 0000000..81bb1d8
--- /dev/null
+++ b/docs/html/images/android-5.0/notifications/ExpandedImage.png
Binary files differ
diff --git a/docs/html/images/android-5.0/notifications/Headsup.png b/docs/html/images/android-5.0/notifications/Headsup.png
new file mode 100644
index 0000000..a6f497d
--- /dev/null
+++ b/docs/html/images/android-5.0/notifications/Headsup.png
Binary files differ
diff --git a/docs/html/images/android-5.0/notifications/Largelogo.png b/docs/html/images/android-5.0/notifications/Largelogo.png
new file mode 100644
index 0000000..90cd6bf
--- /dev/null
+++ b/docs/html/images/android-5.0/notifications/Largelogo.png
Binary files differ
diff --git a/docs/html/images/android-5.0/notifications/LockScreen.png b/docs/html/images/android-5.0/notifications/LockScreen.png
new file mode 100644
index 0000000..c204a81
--- /dev/null
+++ b/docs/html/images/android-5.0/notifications/LockScreen.png
Binary files differ
diff --git a/docs/html/images/android-5.0/notifications/MusicPlayback.png b/docs/html/images/android-5.0/notifications/MusicPlayback.png
new file mode 100644
index 0000000..9e7c98b
--- /dev/null
+++ b/docs/html/images/android-5.0/notifications/MusicPlayback.png
Binary files differ
diff --git a/docs/html/images/android-5.0/notifications/ProductIcons.png b/docs/html/images/android-5.0/notifications/ProductIcons.png
new file mode 100644
index 0000000..ae3bb03
--- /dev/null
+++ b/docs/html/images/android-5.0/notifications/ProductIcons.png
Binary files differ
diff --git a/docs/html/images/android-5.0/notifications/Productlogos.png b/docs/html/images/android-5.0/notifications/Productlogos.png
new file mode 100644
index 0000000..09169e1
--- /dev/null
+++ b/docs/html/images/android-5.0/notifications/Productlogos.png
Binary files differ
diff --git a/docs/html/images/android-5.0/notifications/ReplyAction.png b/docs/html/images/android-5.0/notifications/ReplyAction.png
new file mode 100644
index 0000000..78fc048
--- /dev/null
+++ b/docs/html/images/android-5.0/notifications/ReplyAction.png
Binary files differ
diff --git a/docs/html/images/android-5.0/notifications/Stack.png b/docs/html/images/android-5.0/notifications/Stack.png
new file mode 100644
index 0000000..c6d76b0
--- /dev/null
+++ b/docs/html/images/android-5.0/notifications/Stack.png
Binary files differ
diff --git a/docs/html/images/android-5.0/notifications/Summarise_Do.png b/docs/html/images/android-5.0/notifications/Summarise_Do.png
new file mode 100644
index 0000000..0117e14
--- /dev/null
+++ b/docs/html/images/android-5.0/notifications/Summarise_Do.png
Binary files differ
diff --git a/docs/html/images/android-5.0/notifications/Summarise_Dont.png b/docs/html/images/android-5.0/notifications/Summarise_Dont.png
new file mode 100644
index 0000000..6bda159
--- /dev/null
+++ b/docs/html/images/android-5.0/notifications/Summarise_Dont.png
Binary files differ
diff --git a/docs/html/images/android-5.0/notifications/Summary_Do.png b/docs/html/images/android-5.0/notifications/Summary_Do.png
new file mode 100644
index 0000000..6ba17d9
--- /dev/null
+++ b/docs/html/images/android-5.0/notifications/Summary_Do.png
Binary files differ
diff --git a/docs/html/images/android-5.0/notifications/TimeSensitive.png b/docs/html/images/android-5.0/notifications/TimeSensitive.png
new file mode 100644
index 0000000..c56487c
--- /dev/null
+++ b/docs/html/images/android-5.0/notifications/TimeSensitive.png
Binary files differ
diff --git a/docs/html/images/android-5.0/notifications/Triggered.png b/docs/html/images/android-5.0/notifications/Triggered.png
new file mode 100644
index 0000000..8366fac
--- /dev/null
+++ b/docs/html/images/android-5.0/notifications/Triggered.png
Binary files differ
diff --git a/docs/html/images/android-5.0/notifications/WearBasic.png b/docs/html/images/android-5.0/notifications/WearBasic.png
new file mode 100644
index 0000000..8482cd6
--- /dev/null
+++ b/docs/html/images/android-5.0/notifications/WearBasic.png
Binary files differ
diff --git a/docs/html/images/android-5.0/notifications/action_combo.png b/docs/html/images/android-5.0/notifications/action_combo.png
new file mode 100644
index 0000000..5400218
--- /dev/null
+++ b/docs/html/images/android-5.0/notifications/action_combo.png
Binary files differ
diff --git a/docs/html/images/android-5.0/notifications/basic_combo.png b/docs/html/images/android-5.0/notifications/basic_combo.png
new file mode 100644
index 0000000..01a0239
--- /dev/null
+++ b/docs/html/images/android-5.0/notifications/basic_combo.png
Binary files differ
diff --git a/docs/html/images/android-5.0/notifications/expandedtext_combo.png b/docs/html/images/android-5.0/notifications/expandedtext_combo.png
new file mode 100644
index 0000000..1bc276f
--- /dev/null
+++ b/docs/html/images/android-5.0/notifications/expandedtext_combo.png
Binary files differ
diff --git a/docs/html/images/android-5.0/notifications/notifications_pattern_priority.png b/docs/html/images/android-5.0/notifications/notifications_pattern_priority.png
new file mode 100644
index 0000000..af2d725
--- /dev/null
+++ b/docs/html/images/android-5.0/notifications/notifications_pattern_priority.png
Binary files differ
diff --git a/docs/html/images/android-5.0/notifications/stack_combo.png b/docs/html/images/android-5.0/notifications/stack_combo.png
new file mode 100644
index 0000000..ad22926
--- /dev/null
+++ b/docs/html/images/android-5.0/notifications/stack_combo.png
Binary files differ
diff --git a/docs/html/images/android-5.0/opt-in.png b/docs/html/images/android-5.0/opt-in.png
new file mode 100644
index 0000000..7151253
--- /dev/null
+++ b/docs/html/images/android-5.0/opt-in.png
Binary files differ
diff --git a/docs/html/images/android-5.0/updates.png b/docs/html/images/android-5.0/updates.png
new file mode 100644
index 0000000..f165c5a
--- /dev/null
+++ b/docs/html/images/android-5.0/updates.png
Binary files differ
diff --git a/docs/html/preview/index.html b/docs/html/preview/index.html
index acecdfa..ab959c7 100644
--- a/docs/html/preview/index.html
+++ b/docs/html/preview/index.html
@@ -153,6 +153,17 @@
 }
 </style>
 
+
+    <div style="height:20px"><!-- spacer to bump header down --></div>
+    <div id="butterbar-wrapper">
+      <div id="butterbar">
+        <a href="http://googleblog.blogspot.com/" id="butterbar-message">
+          The Android 5.0 SDK will be available on October 17th!
+        </a>
+      </div>
+    </div>
+
+
     <div class="landing-rest-of-page">
       <div class="landing-section" style="padding-top:30px">
         <div class="wrap">
diff --git a/docs/html/preview/setup-sdk.jd b/docs/html/preview/setup-sdk.jd
index 7ad881a..46e4aa0 100644
--- a/docs/html/preview/setup-sdk.jd
+++ b/docs/html/preview/setup-sdk.jd
@@ -350,7 +350,7 @@
     if ($("input#agree").is(':checked')) {
       $("#tos").fadeOut('fast');
       $("#landing").fadeIn('fast');
-      _gaq.push(['_trackEvent', 'L Preview', 'System Image', $("#downloadForRealz").html()]);
+      ga('send', 'event', 'L Preview', 'System Image', $("#downloadForRealz").html());
       location.hash = "";
       return true;
     } else {
diff --git a/docs/html/sdk/api_diff/21/changes.html b/docs/html/sdk/api_diff/21/changes.html
new file mode 100644
index 0000000..bc65075
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes.html
@@ -0,0 +1,45 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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 15 15:01:23 PDT 2014 -->
+<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 20 and 21
+</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,**" framespacing="1" frameborder="yes" border="1" bordercolor="#e9e9e9"> 
+<frameset rows="174,**" framespacing="1" frameborder="yes"  border="1" bordercolor="#e9e9e9">
+    <frame src="changes/jdiff_topleftframe.html" scrolling="no" name="topleftframe" frameborder="1">
+    <frame src="changes/alldiffs_index_all.html" scrolling="auto" name="bottomleftframe" frameborder="1">
+  </frameset>
+  <frame src="changes/changes-summary.html" scrolling="auto" name="rightframe" frameborder="1">
+</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/21/changes/alldiffs_index_additions.html b/docs/html/sdk/api_diff/21/changes/alldiffs_index_additions.html
new file mode 100644
index 0000000..31db5c9
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/alldiffs_index_additions.html
@@ -0,0 +1,7736 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<!-- Constructor AbsListView -->
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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.widget.AbsListView.html#android.widget.AbsListView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AbsListView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor AbsoluteLayout -->
+<nobr><A HREF="android.widget.AbsoluteLayout.html#android.widget.AbsoluteLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AbsoluteLayout</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor AbsSeekBar -->
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AbsSeekBar</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor AbsSpinner -->
+<nobr><A HREF="android.widget.AbsSpinner.html#android.widget.AbsSpinner.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AbsSpinner</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Method acceptThirdPartyCookies -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.acceptThirdPartyCookies_added(android.webkit.WebView)" class="hiddenlink" target="rightframe"><b>acceptThirdPartyCookies</b>
+(<code>WebView</code>)</A></nobr><br>
+<!-- Field ACCESSIBILITY_DISPLAY_INVERSION_ENABLED -->
+<nobr><A HREF="android.provider.Settings.Secure.html#android.provider.Settings.Secure.ACCESSIBILITY_DISPLAY_INVERSION_ENABLED" class="hiddenlink" target="rightframe">ACCESSIBILITY_DISPLAY_INVERSION_ENABLED</A>
+</nobr><br>
+<!-- Class AccessibilityNodeInfo.AccessibilityAction -->
+<A HREF="pkg_android.view.accessibility.html#AccessibilityNodeInfo.AccessibilityAction" class="hiddenlink" target="rightframe"><b>AccessibilityNodeInfo.AccessibilityAction</b></A><br>
+<!-- Class AccessibilityWindowInfo -->
+<A HREF="pkg_android.view.accessibility.html#AccessibilityWindowInfo" class="hiddenlink" target="rightframe"><b>AccessibilityWindowInfo</b></A><br>
+<!-- Field ACCOUNT_TYPE_AND_DATA_SET -->
+<nobr><A HREF="android.provider.ContactsContract.RawContactsColumns.html#android.provider.ContactsContract.RawContactsColumns.ACCOUNT_TYPE_AND_DATA_SET" class="hiddenlink" target="rightframe">ACCOUNT_TYPE_AND_DATA_SET</A>
+</nobr><br>
+<!-- Field ACTION_APPLICATION_RESTRICTIONS_CHANGED -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.ACTION_APPLICATION_RESTRICTIONS_CHANGED" class="hiddenlink" target="rightframe">ACTION_APPLICATION_RESTRICTIONS_CHANGED</A>
+</nobr><br>
+<!-- Field ACTION_APPWIDGET_HOST_RESTORED -->
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.ACTION_APPWIDGET_HOST_RESTORED" class="hiddenlink" target="rightframe">ACTION_APPWIDGET_HOST_RESTORED</A>
+</nobr><br>
+<!-- Field ACTION_APPWIDGET_RESTORED -->
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.ACTION_APPWIDGET_RESTORED" class="hiddenlink" target="rightframe">ACTION_APPWIDGET_RESTORED</A>
+</nobr><br>
+<!-- Field ACTION_ARGUMENT_SET_TEXT_CHARSEQUENCE -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.ACTION_ARGUMENT_SET_TEXT_CHARSEQUENCE" class="hiddenlink" target="rightframe">ACTION_ARGUMENT_SET_TEXT_CHARSEQUENCE</A>
+</nobr><br>
+<!-- Field ACTION_CAST_SETTINGS -->
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_CAST_SETTINGS" class="hiddenlink" target="rightframe">ACTION_CAST_SETTINGS</A>
+</nobr><br>
+<!-- Field ACTION_HDMI_AUDIO_PLUG -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ACTION_HDMI_AUDIO_PLUG" class="hiddenlink" target="rightframe">ACTION_HDMI_AUDIO_PLUG</A>
+</nobr><br>
+<!-- Field ACTION_HEADSET_PLUG -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ACTION_HEADSET_PLUG" class="hiddenlink" target="rightframe">ACTION_HEADSET_PLUG</A>
+</nobr><br>
+<!-- Field ACTION_HOME_SETTINGS -->
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_HOME_SETTINGS" class="hiddenlink" target="rightframe">ACTION_HOME_SETTINGS</A>
+</nobr><br>
+<!-- Field ACTION_LOCK_TASK_ENTERING -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.ACTION_LOCK_TASK_ENTERING" class="hiddenlink" target="rightframe">ACTION_LOCK_TASK_ENTERING</A>
+</nobr><br>
+<!-- Field ACTION_LOCK_TASK_EXITING -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.ACTION_LOCK_TASK_EXITING" class="hiddenlink" target="rightframe">ACTION_LOCK_TASK_EXITING</A>
+</nobr><br>
+<!-- Field ACTION_MANAGED_PROFILE_ADDED -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.ACTION_MANAGED_PROFILE_ADDED" class="hiddenlink" target="rightframe">ACTION_MANAGED_PROFILE_ADDED</A>
+</nobr><br>
+<!-- Field ACTION_MANAGED_PROFILE_REMOVED -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.ACTION_MANAGED_PROFILE_REMOVED" class="hiddenlink" target="rightframe">ACTION_MANAGED_PROFILE_REMOVED</A>
+</nobr><br>
+<!-- Field ACTION_NEXT_ALARM_CLOCK_CHANGED -->
+<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.ACTION_NEXT_ALARM_CLOCK_CHANGED" class="hiddenlink" target="rightframe">ACTION_NEXT_ALARM_CLOCK_CHANGED</A>
+</nobr><br>
+<!-- Field ACTION_OPEN_DOCUMENT_TREE -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.ACTION_OPEN_DOCUMENT_TREE" class="hiddenlink" target="rightframe">ACTION_OPEN_DOCUMENT_TREE</A>
+</nobr><br>
+<!-- Field ACTION_POWER_SAVE_MODE_CHANGED -->
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.ACTION_POWER_SAVE_MODE_CHANGED" class="hiddenlink" target="rightframe">ACTION_POWER_SAVE_MODE_CHANGED</A>
+</nobr><br>
+<!-- Field ACTION_PROFILE_PROVISIONING_COMPLETE -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.ACTION_PROFILE_PROVISIONING_COMPLETE" class="hiddenlink" target="rightframe">ACTION_PROFILE_PROVISIONING_COMPLETE</A>
+</nobr><br>
+<!-- Field ACTION_PROVISION_MANAGED_PROFILE -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.ACTION_PROVISION_MANAGED_PROFILE" class="hiddenlink" target="rightframe">ACTION_PROVISION_MANAGED_PROFILE</A>
+</nobr><br>
+<!-- Field ACTION_QUICK_CONTACT -->
+<nobr><A HREF="android.provider.ContactsContract.QuickContact.html#android.provider.ContactsContract.QuickContact.ACTION_QUICK_CONTACT" class="hiddenlink" target="rightframe">ACTION_QUICK_CONTACT</A>
+</nobr><br>
+<!-- Field ACTION_SET_TEXT -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.ACTION_SET_TEXT" class="hiddenlink" target="rightframe">ACTION_SET_TEXT</A>
+</nobr><br>
+<!-- Field ACTION_SHOW_REGULATORY_INFO -->
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_SHOW_REGULATORY_INFO" class="hiddenlink" target="rightframe">ACTION_SHOW_REGULATORY_INFO</A>
+</nobr><br>
+<!-- Field ACTION_USAGE_ACCESS_SETTINGS -->
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_USAGE_ACCESS_SETTINGS" class="hiddenlink" target="rightframe">ACTION_USAGE_ACCESS_SETTINGS</A>
+</nobr><br>
+<!-- Field ACTION_VOICE_INPUT_SETTINGS -->
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_VOICE_INPUT_SETTINGS" class="hiddenlink" target="rightframe">ACTION_VOICE_INPUT_SETTINGS</A>
+</nobr><br>
+<!-- Field actionBarPopupTheme -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionBarPopupTheme" class="hiddenlink" target="rightframe">actionBarPopupTheme</A>
+</nobr><br>
+<!-- Field actionBarTheme -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionBarTheme" class="hiddenlink" target="rightframe">actionBarTheme</A>
+</nobr><br>
+<!-- Class ActionMenuView -->
+<A HREF="pkg_android.widget.html#ActionMenuView" class="hiddenlink" target="rightframe"><b>ActionMenuView</b></A><br>
+<!-- Class ActionMenuView.LayoutParams -->
+<A HREF="pkg_android.widget.html#ActionMenuView.LayoutParams" class="hiddenlink" target="rightframe"><b>ActionMenuView.LayoutParams</b></A><br>
+<!-- Class ActionMenuView.OnMenuItemClickListener -->
+<A HREF="pkg_android.widget.html#ActionMenuView.OnMenuItemClickListener" class="hiddenlink" target="rightframe"><b><i>ActionMenuView.OnMenuItemClickListener</i></b></A><br>
+<!-- Field actionModeFindDrawable -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionModeFindDrawable" class="hiddenlink" target="rightframe">actionModeFindDrawable</A>
+</nobr><br>
+<!-- Field actionModeShareDrawable -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionModeShareDrawable" class="hiddenlink" target="rightframe">actionModeShareDrawable</A>
+</nobr><br>
+<!-- Field actionModeWebSearchDrawable -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionModeWebSearchDrawable" class="hiddenlink" target="rightframe">actionModeWebSearchDrawable</A>
+</nobr><br>
+<!-- Field actionOverflowMenuStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionOverflowMenuStyle" class="hiddenlink" target="rightframe">actionOverflowMenuStyle</A>
+</nobr><br>
+<!-- Class ActivityManager.AppTask -->
+<A HREF="pkg_android.app.html#ActivityManager.AppTask" class="hiddenlink" target="rightframe"><b>ActivityManager.AppTask</b></A><br>
+<!-- Class ActivityManager.TaskDescription -->
+<A HREF="pkg_android.app.html#ActivityManager.TaskDescription" class="hiddenlink" target="rightframe"><b>ActivityManager.TaskDescription</b></A><br>
+<!-- Constructor AdapterView -->
+<nobr><A HREF="android.widget.AdapterView.html#android.widget.AdapterView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AdapterView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor AdapterViewAnimator -->
+<nobr><A HREF="android.widget.AdapterViewAnimator.html#android.widget.AdapterViewAnimator.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AdapterViewAnimator</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor AdapterViewFlipper -->
+<i>AdapterViewFlipper</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AdapterViewFlipper.html#android.widget.AdapterViewFlipper.ctor_added(android.content.Context, android.util.AttributeSet, int)" class="hiddenlink" target="rightframe"><b>AdapterViewFlipper</b>
+(<code>Context, AttributeSet, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor AdapterViewFlipper -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AdapterViewFlipper.html#android.widget.AdapterViewFlipper.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AdapterViewFlipper</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Method addAction -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.addAction_added(android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction)" class="hiddenlink" target="rightframe"><b>addAction</b>
+(<code>AccessibilityAction</code>)</A></nobr><br>
+<!-- Method addAllowedApplication -->
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.addAllowedApplication_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>addAllowedApplication</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method addAppTask -->
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.addAppTask_added(android.app.Activity, android.content.Intent, android.app.ActivityManager.TaskDescription, android.graphics.Bitmap)" class="hiddenlink" target="rightframe"><b>addAppTask</b>
+(<code>Activity, Intent, TaskDescription, Bitmap</code>)</A></nobr><br>
+<!-- Method addArc -->
+<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addArc_added(float, float, float, float, float, float)" class="hiddenlink" target="rightframe"><b>addArc</b>
+(<code>float, float, float, float, float, float</code>)</A></nobr><br>
+<!-- Method addCrossProfileIntentFilter -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addCrossProfileIntentFilter_added(android.content.ComponentName, android.content.IntentFilter, int)" class="hiddenlink" target="rightframe"><b>addCrossProfileIntentFilter</b>
+(<code>ComponentName, IntentFilter, int</code>)</A></nobr><br>
+<!-- Method addCrossProfileWidgetProvider -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>addCrossProfileWidgetProvider</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method addDefaultNetworkActiveListener -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.addDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><b>addDefaultNetworkActiveListener</b>
+(<code>OnNetworkActiveListener</code>)</A></nobr><br>
+<!-- Method addDisallowedApplication -->
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.addDisallowedApplication_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>addDisallowedApplication</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method addEarcon -->
+<i>addEarcon</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.io.File)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, File</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method addEarcon -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, String</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method addOval -->
+<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addOval_added(float, float, float, float, android.graphics.Path.Direction)" class="hiddenlink" target="rightframe"><b>addOval</b>
+(<code>float, float, float, float, Direction</code>)</A></nobr><br>
+<!-- Method addPersistentPreferredActivity -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addPersistentPreferredActivity_added(android.content.ComponentName, android.content.IntentFilter, android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>addPersistentPreferredActivity</b>
+(<code>ComponentName, IntentFilter, ComponentName</code>)</A></nobr><br>
+<!-- Method addPerson -->
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.addPerson_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>addPerson</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method addRoundRect -->
+<i>addRoundRect</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addRoundRect_added(float, float, float, float, float, float, android.graphics.Path.Direction)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float, float, float, float, float, float, Direction</code>)</b>&nbsp;in&nbsp;android.graphics.Path
+</A></nobr><br>
+<!-- Method addRoundRect -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addRoundRect_added(float, float, float, float, float[], android.graphics.Path.Direction)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float, float, float, float, float[], Direction</code>)</b>&nbsp;in&nbsp;android.graphics.Path
+</A></nobr><br>
+<!-- Method addSharedElement -->
+<nobr><A HREF="android.app.FragmentTransaction.html#android.app.FragmentTransaction.addSharedElement_added(android.view.View, java.lang.String)" class="hiddenlink" target="rightframe"><b>addSharedElement</b>
+(<code>View, String</code>)</A></nobr><br>
+<!-- Method addSpeech -->
+<i>addSpeech</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.io.File)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, File</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method addSpeech -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, String, int</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method addTarget -->
+<i>addTarget</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.addTarget_added(java.lang.Class)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Class</code>)</b>&nbsp;in&nbsp;android.transition.Transition
+</A></nobr><br>
+<!-- Method addTarget -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.addTarget_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.transition.Transition
+</A></nobr><br>
+<!-- Method addUserRestriction -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addUserRestriction_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>addUserRestriction</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Field affiliatedTaskId -->
+<nobr><A HREF="android.app.ActivityManager.RecentTaskInfo.html#android.app.ActivityManager.RecentTaskInfo.affiliatedTaskId" class="hiddenlink" target="rightframe">affiliatedTaskId</A>
+</nobr><br>
+<!-- Field AKA -->
+<nobr><A HREF="android.net.wifi.WifiEnterpriseConfig.Eap.html#android.net.wifi.WifiEnterpriseConfig.Eap.AKA" class="hiddenlink" target="rightframe">AKA</A>
+</nobr><br>
+<!-- Class AlarmManager.AlarmClockInfo -->
+<A HREF="pkg_android.app.html#AlarmManager.AlarmClockInfo" class="hiddenlink" target="rightframe"><b>AlarmManager.AlarmClockInfo</b></A><br>
+<!-- Field ALL_CODECS -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.ALL_CODECS" class="hiddenlink" target="rightframe">ALL_CODECS</A>
+</nobr><br>
+<!-- Method allowBypass -->
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.allowBypass_added()" class="hiddenlink" target="rightframe"><b>allowBypass</b>
+()</A></nobr><br>
+<!-- Method allowFamily -->
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.allowFamily_added(int)" class="hiddenlink" target="rightframe"><b>allowFamily</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Field ambientShadowAlpha -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.ambientShadowAlpha" class="hiddenlink" target="rightframe">ambientShadowAlpha</A>
+</nobr><br>
+<!-- Field amPmBackgroundColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.amPmBackgroundColor" class="hiddenlink" target="rightframe">amPmBackgroundColor</A>
+</nobr><br>
+<!-- Field amPmTextColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.amPmTextColor" class="hiddenlink" target="rightframe">amPmTextColor</A>
+</nobr><br>
+<!-- Constructor AnalogClock -->
+<nobr><A HREF="android.widget.AnalogClock.html#android.widget.AnalogClock.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AnalogClock</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Package android.app.job -->
+<A HREF="changes-summary.html#android.app.job" class="hiddenlink" target="rightframe"><b>android.app.job</b></A><br>
+<!-- Package android.app.usage -->
+<A HREF="changes-summary.html#android.app.usage" class="hiddenlink" target="rightframe"><b>android.app.usage</b></A><br>
+<!-- Package android.bluetooth.le -->
+<A HREF="changes-summary.html#android.bluetooth.le" class="hiddenlink" target="rightframe"><b>android.bluetooth.le</b></A><br>
+<!-- Package android.hardware.camera2 -->
+<A HREF="changes-summary.html#android.hardware.camera2" class="hiddenlink" target="rightframe"><b>android.hardware.camera2</b></A><br>
+<!-- Package android.hardware.camera2.params -->
+<A HREF="changes-summary.html#android.hardware.camera2.params" class="hiddenlink" target="rightframe"><b>android.hardware.camera2.params</b></A><br>
+<!-- Package android.media.browse -->
+<A HREF="changes-summary.html#android.media.browse" class="hiddenlink" target="rightframe"><b>android.media.browse</b></A><br>
+<!-- Package android.media.projection -->
+<A HREF="changes-summary.html#android.media.projection" class="hiddenlink" target="rightframe"><b>android.media.projection</b></A><br>
+<!-- Package android.media.session -->
+<A HREF="changes-summary.html#android.media.session" class="hiddenlink" target="rightframe"><b>android.media.session</b></A><br>
+<!-- Package android.media.tv -->
+<A HREF="changes-summary.html#android.media.tv" class="hiddenlink" target="rightframe"><b>android.media.tv</b></A><br>
+<!-- Package android.service.media -->
+<A HREF="changes-summary.html#android.service.media" class="hiddenlink" target="rightframe"><b>android.service.media</b></A><br>
+<!-- Package android.service.restrictions -->
+<A HREF="changes-summary.html#android.service.restrictions" class="hiddenlink" target="rightframe"><b>android.service.restrictions</b></A><br>
+<!-- Package android.service.voice -->
+<A HREF="changes-summary.html#android.service.voice" class="hiddenlink" target="rightframe"><b>android.service.voice</b></A><br>
+<!-- Package android.system -->
+<A HREF="changes-summary.html#android.system" class="hiddenlink" target="rightframe"><b>android.system</b></A><br>
+<!-- Package android.telecom -->
+<A HREF="changes-summary.html#android.telecom" class="hiddenlink" target="rightframe"><b>android.telecom</b></A><br>
+<!-- Class AnimatedStateListDrawable -->
+<A HREF="pkg_android.graphics.drawable.html#AnimatedStateListDrawable" class="hiddenlink" target="rightframe"><b>AnimatedStateListDrawable</b></A><br>
+<!-- Class AnimatedVectorDrawable -->
+<A HREF="pkg_android.graphics.drawable.html#AnimatedVectorDrawable" class="hiddenlink" target="rightframe"><b>AnimatedVectorDrawable</b></A><br>
+<!-- Field ANY_CURSOR_ITEM_TYPE -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.ANY_CURSOR_ITEM_TYPE" class="hiddenlink" target="rightframe">ANY_CURSOR_ITEM_TYPE</A>
+</nobr><br>
+<!-- Method append -->
+<nobr><A HREF="android.text.SpannableStringBuilder.html#android.text.SpannableStringBuilder.append_added(java.lang.CharSequence, java.lang.Object, int)" class="hiddenlink" target="rightframe"><b>append</b>
+(<code>CharSequence, Object, int</code>)</A></nobr><br>
+<!-- Method applyTheme -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.applyTheme_added(android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>applyTheme</b>
+(<code>Theme</code>)</A></nobr><br>
+<!-- Field APPWIDGET_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.APPWIDGET_SERVICE" class="hiddenlink" target="rightframe">APPWIDGET_SERVICE</A>
+</nobr><br>
+<!-- Field ARCHIVED -->
+<nobr><A HREF="android.provider.Telephony.ThreadsColumns.html#android.provider.Telephony.ThreadsColumns.ARCHIVED" class="hiddenlink" target="rightframe">ARCHIVED</A>
+</nobr><br>
+<!-- Class ArcMotion -->
+<A HREF="pkg_android.transition.html#ArcMotion" class="hiddenlink" target="rightframe"><b>ArcMotion</b></A><br>
+<!-- Method arcTo -->
+<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.arcTo_added(float, float, float, float, float, float, boolean)" class="hiddenlink" target="rightframe"><b>arcTo</b>
+(<code>float, float, float, float, float, float, boolean</code>)</A></nobr><br>
+<!-- Field AUDIO_ATTRIBUTES_DEFAULT -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.AUDIO_ATTRIBUTES_DEFAULT" class="hiddenlink" target="rightframe">AUDIO_ATTRIBUTES_DEFAULT</A>
+</nobr><br>
+<!-- Field AUDIO_SESSION_ID_GENERATE -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.AUDIO_SESSION_ID_GENERATE" class="hiddenlink" target="rightframe">AUDIO_SESSION_ID_GENERATE</A>
+</nobr><br>
+<!-- Class AudioAttributes -->
+<A HREF="pkg_android.media.html#AudioAttributes" class="hiddenlink" target="rightframe"><b>AudioAttributes</b></A><br>
+<!-- Field audioAttributes -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.audioAttributes" class="hiddenlink" target="rightframe">audioAttributes</A>
+</nobr><br>
+<!-- Class AudioAttributes.Builder -->
+<A HREF="pkg_android.media.html#AudioAttributes.Builder" class="hiddenlink" target="rightframe"><b>AudioAttributes.Builder</b></A><br>
+<!-- Class AudioFormat.Builder -->
+<A HREF="pkg_android.media.html#AudioFormat.Builder" class="hiddenlink" target="rightframe"><b>AudioFormat.Builder</b></A><br>
+<!-- Constructor AudioTrack -->
+<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.ctor_added(android.media.AudioAttributes, android.media.AudioFormat, int, int, int)" class="hiddenlink" target="rightframe"><b>AudioTrack</b>
+(<code>AudioAttributes, AudioFormat, int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor AutoCompleteTextView -->
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AutoCompleteTextView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field autoRemoveFromRecents -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.autoRemoveFromRecents" class="hiddenlink" target="rightframe">autoRemoveFromRecents</A>
+</nobr><br>
+<!-- Constructor AutoTransition -->
+<nobr><A HREF="android.transition.AutoTransition.html#android.transition.AutoTransition.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>AutoTransition</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field AVCLevel52 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.AVCLevel52" class="hiddenlink" target="rightframe">AVCLevel52</A>
+</nobr><br>
+<!-- Field backgroundTint -->
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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">
+<nobr><A HREF="android.R.attr.html#android.R.attr.backgroundTint" class="hiddenlink" target="rightframe">backgroundTint</A>
+</nobr><br>
+<!-- Field backgroundTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.backgroundTintMode" class="hiddenlink" target="rightframe">backgroundTintMode</A>
+</nobr><br>
+<!-- Field banner -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.banner" class="hiddenlink" target="rightframe">banner</A>
+</nobr><br>
+<!-- Class BaseBundle -->
+<A HREF="pkg_android.os.html#BaseBundle" class="hiddenlink" target="rightframe"><b>BaseBundle</b></A><br>
+<!-- Field BATTERY_PROPERTY_CAPACITY -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.BATTERY_PROPERTY_CAPACITY" class="hiddenlink" target="rightframe">BATTERY_PROPERTY_CAPACITY</A>
+</nobr><br>
+<!-- Field BATTERY_PROPERTY_CHARGE_COUNTER -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.BATTERY_PROPERTY_CHARGE_COUNTER" class="hiddenlink" target="rightframe">BATTERY_PROPERTY_CHARGE_COUNTER</A>
+</nobr><br>
+<!-- Field BATTERY_PROPERTY_CURRENT_AVERAGE -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.BATTERY_PROPERTY_CURRENT_AVERAGE" class="hiddenlink" target="rightframe">BATTERY_PROPERTY_CURRENT_AVERAGE</A>
+</nobr><br>
+<!-- Field BATTERY_PROPERTY_CURRENT_NOW -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.BATTERY_PROPERTY_CURRENT_NOW" class="hiddenlink" target="rightframe">BATTERY_PROPERTY_CURRENT_NOW</A>
+</nobr><br>
+<!-- Field BATTERY_PROPERTY_ENERGY_COUNTER -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.BATTERY_PROPERTY_ENERGY_COUNTER" class="hiddenlink" target="rightframe">BATTERY_PROPERTY_ENERGY_COUNTER</A>
+</nobr><br>
+<!-- Field BATTERY_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.BATTERY_SERVICE" class="hiddenlink" target="rightframe">BATTERY_SERVICE</A>
+</nobr><br>
+<!-- Class BidirectionalTypeConverter -->
+<A HREF="pkg_android.animation.html#BidirectionalTypeConverter" class="hiddenlink" target="rightframe"><b>BidirectionalTypeConverter</b></A><br>
+<!-- Field BIND_DREAM_SERVICE -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.BIND_DREAM_SERVICE" class="hiddenlink" target="rightframe">BIND_DREAM_SERVICE</A>
+</nobr><br>
+<!-- Field BIND_TV_INPUT -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.BIND_TV_INPUT" class="hiddenlink" target="rightframe">BIND_TV_INPUT</A>
+</nobr><br>
+<!-- Field BIND_VOICE_INTERACTION -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.BIND_VOICE_INTERACTION" class="hiddenlink" target="rightframe">BIND_VOICE_INTERACTION</A>
+</nobr><br>
+<!-- Method bindAppWidgetIdIfAllowed -->
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.bindAppWidgetIdIfAllowed_added(int, android.os.UserHandle, android.content.ComponentName, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>bindAppWidgetIdIfAllowed</b>
+(<code>int, UserHandle, ComponentName, Bundle</code>)</A></nobr><br>
+<!-- Field BSSID -->
+<nobr><A HREF="android.net.wifi.WpsInfo.html#android.net.wifi.WpsInfo.BSSID" class="hiddenlink" target="rightframe">BSSID</A>
+</nobr><br>
+<!-- Field BUFFER_FLAG_KEY_FRAME -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.BUFFER_FLAG_KEY_FRAME" class="hiddenlink" target="rightframe">BUFFER_FLAG_KEY_FRAME</A>
+</nobr><br>
+<!-- Method buildChildDocumentsUriUsingTree -->
+<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.buildChildDocumentsUriUsingTree_added(android.net.Uri, java.lang.String)" class="hiddenlink" target="rightframe"><b>buildChildDocumentsUriUsingTree</b>
+(<code>Uri, String</code>)</A></nobr><br>
+<!-- Method buildDocumentUriUsingTree -->
+<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.buildDocumentUriUsingTree_added(android.net.Uri, java.lang.String)" class="hiddenlink" target="rightframe"><b>buildDocumentUriUsingTree</b>
+(<code>Uri, String</code>)</A></nobr><br>
+<!-- Method buildTreeDocumentUri -->
+<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.buildTreeDocumentUri_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>buildTreeDocumentUri</b>
+(<code>String, String</code>)</A></nobr><br>
+<!-- Constructor Bundle -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.ctor_added(android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>Bundle</b>
+(<code>PersistableBundle</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor Button -->
+<nobr><A HREF="android.widget.Button.html#android.widget.Button.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>Button</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field buttonBarNegativeButtonStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonBarNegativeButtonStyle" class="hiddenlink" target="rightframe">buttonBarNegativeButtonStyle</A>
+</nobr><br>
+<!-- Field buttonBarNeutralButtonStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonBarNeutralButtonStyle" class="hiddenlink" target="rightframe">buttonBarNeutralButtonStyle</A>
+</nobr><br>
+<!-- Field buttonBarPositiveButtonStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonBarPositiveButtonStyle" class="hiddenlink" target="rightframe">buttonBarPositiveButtonStyle</A>
+</nobr><br>
+<!-- Field buttonTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonTint" class="hiddenlink" target="rightframe">buttonTint</A>
+</nobr><br>
+<!-- Field buttonTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonTintMode" class="hiddenlink" target="rightframe">buttonTintMode</A>
+</nobr><br>
+<!-- Field CACHED_FORMATTED_NUMBER -->
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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">
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.CACHED_FORMATTED_NUMBER" class="hiddenlink" target="rightframe">CACHED_FORMATTED_NUMBER</A>
+</nobr><br>
+<!-- Field CACHED_LOOKUP_URI -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.CACHED_LOOKUP_URI" class="hiddenlink" target="rightframe">CACHED_LOOKUP_URI</A>
+</nobr><br>
+<!-- Field CACHED_MATCHED_NUMBER -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.CACHED_MATCHED_NUMBER" class="hiddenlink" target="rightframe">CACHED_MATCHED_NUMBER</A>
+</nobr><br>
+<!-- Field CACHED_NORMALIZED_NUMBER -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.CACHED_NORMALIZED_NUMBER" class="hiddenlink" target="rightframe">CACHED_NORMALIZED_NUMBER</A>
+</nobr><br>
+<!-- Field CACHED_PHOTO_ID -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.CACHED_PHOTO_ID" class="hiddenlink" target="rightframe">CACHED_PHOTO_ID</A>
+</nobr><br>
+<!-- Field calendarTextColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.calendarTextColor" class="hiddenlink" target="rightframe">calendarTextColor</A>
+</nobr><br>
+<!-- Constructor CalendarView -->
+<nobr><A HREF="android.widget.CalendarView.html#android.widget.CalendarView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>CalendarView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Method callActivityOnCreate -->
+<nobr><A HREF="android.app.Instrumentation.html#android.app.Instrumentation.callActivityOnCreate_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>callActivityOnCreate</b>
+(<code>Activity, Bundle, PersistableBundle</code>)</A></nobr><br>
+<!-- Method callActivityOnPostCreate -->
+<nobr><A HREF="android.app.Instrumentation.html#android.app.Instrumentation.callActivityOnPostCreate_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>callActivityOnPostCreate</b>
+(<code>Activity, Bundle, PersistableBundle</code>)</A></nobr><br>
+<!-- Method callActivityOnRestoreInstanceState -->
+<nobr><A HREF="android.app.Instrumentation.html#android.app.Instrumentation.callActivityOnRestoreInstanceState_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>callActivityOnRestoreInstanceState</b>
+(<code>Activity, Bundle, PersistableBundle</code>)</A></nobr><br>
+<!-- Method callActivityOnSaveInstanceState -->
+<nobr><A HREF="android.app.Instrumentation.html#android.app.Instrumentation.callActivityOnSaveInstanceState_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>callActivityOnSaveInstanceState</b>
+(<code>Activity, Bundle, PersistableBundle</code>)</A></nobr><br>
+<!-- Field CAMERA_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.CAMERA_SERVICE" class="hiddenlink" target="rightframe">CAMERA_SERVICE</A>
+</nobr><br>
+<!-- Method canApplyTheme -->
+<i>canApplyTheme</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.canApplyTheme_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.graphics.drawable.Drawable
+</A></nobr><br>
+<!-- Method canApplyTheme -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.Drawable.ConstantState.html#android.graphics.drawable.Drawable.ConstantState.canApplyTheme_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.graphics.drawable.Drawable.ConstantState
+</A></nobr><br>
+<!-- Method cancelNotification -->
+<i>cancelNotification</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.cancelNotification_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.service.notification.NotificationListenerService
+</A></nobr><br>
+<!-- Method cancelNotification -->
+&nbsp;&nbsp;<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.cancelNotification_added(java.lang.String, java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, String, int</code>)</b>&nbsp;in&nbsp;android.service.notification.NotificationListenerService
+</A></nobr><br>
+<!-- Method cancelNotifications -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.cancelNotifications_added(java.lang.String[])" class="hiddenlink" target="rightframe"><b>cancelNotifications</b>
+(<code>String[]</code>)</A></nobr><br>
+<!-- Method cancelSync -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.cancelSync_added(android.content.SyncRequest)" class="hiddenlink" target="rightframe"><b>cancelSync</b>
+(<code>SyncRequest</code>)</A></nobr><br>
+<!-- Method cancelWps -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.cancelWps_added(android.net.wifi.WifiManager.WpsCallback)" class="hiddenlink" target="rightframe"><b>cancelWps</b>
+(<code>WpsCallback</code>)</A></nobr><br>
+<!-- Method canRemoveViews -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.canRemoveViews_added()" class="hiddenlink" target="rightframe"><b>canRemoveViews</b>
+()</A></nobr><br>
+<!-- Method canVirtualize -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.canVirtualize_added(int, int)" class="hiddenlink" target="rightframe"><b>canVirtualize</b>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Field category -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.category" class="hiddenlink" target="rightframe">category</A>
+</nobr><br>
+<!-- Field CATEGORY_ALARM -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_ALARM" class="hiddenlink" target="rightframe">CATEGORY_ALARM</A>
+</nobr><br>
+<!-- Field CATEGORY_CALL -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_CALL" class="hiddenlink" target="rightframe">CATEGORY_CALL</A>
+</nobr><br>
+<!-- Field CATEGORY_EMAIL -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_EMAIL" class="hiddenlink" target="rightframe">CATEGORY_EMAIL</A>
+</nobr><br>
+<!-- Field CATEGORY_ERROR -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_ERROR" class="hiddenlink" target="rightframe">CATEGORY_ERROR</A>
+</nobr><br>
+<!-- Field CATEGORY_EVENT -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_EVENT" class="hiddenlink" target="rightframe">CATEGORY_EVENT</A>
+</nobr><br>
+<!-- Field CATEGORY_LEANBACK_LAUNCHER -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.CATEGORY_LEANBACK_LAUNCHER" class="hiddenlink" target="rightframe">CATEGORY_LEANBACK_LAUNCHER</A>
+</nobr><br>
+<!-- Field CATEGORY_MESSAGE -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_MESSAGE" class="hiddenlink" target="rightframe">CATEGORY_MESSAGE</A>
+</nobr><br>
+<!-- Field CATEGORY_PROGRESS -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_PROGRESS" class="hiddenlink" target="rightframe">CATEGORY_PROGRESS</A>
+</nobr><br>
+<!-- Field CATEGORY_PROMO -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_PROMO" class="hiddenlink" target="rightframe">CATEGORY_PROMO</A>
+</nobr><br>
+<!-- Field CATEGORY_RECOMMENDATION -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_RECOMMENDATION" class="hiddenlink" target="rightframe">CATEGORY_RECOMMENDATION</A>
+</nobr><br>
+<!-- Field CATEGORY_SERVICE -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_SERVICE" class="hiddenlink" target="rightframe">CATEGORY_SERVICE</A>
+</nobr><br>
+<!-- Field CATEGORY_SOCIAL -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_SOCIAL" class="hiddenlink" target="rightframe">CATEGORY_SOCIAL</A>
+</nobr><br>
+<!-- Field CATEGORY_STATUS -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_STATUS" class="hiddenlink" target="rightframe">CATEGORY_STATUS</A>
+</nobr><br>
+<!-- Field CATEGORY_SYSTEM -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_SYSTEM" class="hiddenlink" target="rightframe">CATEGORY_SYSTEM</A>
+</nobr><br>
+<!-- Field CATEGORY_TRANSPORT -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_TRANSPORT" class="hiddenlink" target="rightframe">CATEGORY_TRANSPORT</A>
+</nobr><br>
+<!-- Method categoryAllowsForegroundPreference -->
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.categoryAllowsForegroundPreference_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>categoryAllowsForegroundPreference</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Field CENATT -->
+<i>CENATT</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENATT" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENATT -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENATT" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENATT -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENATT" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENATT -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENATT" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENATX -->
+<i>CENATX</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENATX" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENATX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENATX" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENATX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENATX" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENATX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENATX" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENCOM -->
+<i>CENCOM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENCOM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENCOM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENCOM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENCRC -->
+<i>CENCRC</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENCRC -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENCRC -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENCRC -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENDSK -->
+<i>CENDSK</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENDSK" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENDSK -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENDSK" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENDSK -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENDSK" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENDSK -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENDSK" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENEXT -->
+<i>CENEXT</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENEXT -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENEXT -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENEXT -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENFLG -->
+<i>CENFLG</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENFLG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENFLG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENFLG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENHDR -->
+<i>CENHDR</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENHDR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENHDR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENHDR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENHOW -->
+<i>CENHOW</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENHOW -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENHOW -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENHOW -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENLEN -->
+<i>CENLEN</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENLEN -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENLEN -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENLEN -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENNAM -->
+<i>CENNAM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENNAM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENNAM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENNAM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENOFF -->
+<i>CENOFF</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENOFF -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENOFF -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENOFF -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENSIG -->
+<i>CENSIG</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENSIG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENSIG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENSIG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENSIZ -->
+<i>CENSIZ</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENSIZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENSIZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENSIZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENTIM -->
+<i>CENTIM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENTIM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENTIM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENTIM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENVEM -->
+<i>CENVEM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENVEM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENVEM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENVEM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENVEM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENVEM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENVEM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENVEM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENVER -->
+<i>CENVER</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENVER" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENVER -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENVER" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENVER -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENVER" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENVER -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENVER" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Constructor ChangeBounds -->
+<nobr><A HREF="android.transition.ChangeBounds.html#android.transition.ChangeBounds.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>ChangeBounds</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class ChangeClipBounds -->
+<A HREF="pkg_android.transition.html#ChangeClipBounds" class="hiddenlink" target="rightframe"><b>ChangeClipBounds</b></A><br>
+<!-- Class ChangeImageTransform -->
+<A HREF="pkg_android.transition.html#ChangeImageTransform" class="hiddenlink" target="rightframe"><b>ChangeImageTransform</b></A><br>
+<!-- Class ChangeTransform -->
+<A HREF="pkg_android.transition.html#ChangeTransform" class="hiddenlink" target="rightframe"><b>ChangeTransform</b></A><br>
+<!-- Field CHANNEL_OUT_SIDE_LEFT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_SIDE_LEFT" class="hiddenlink" target="rightframe">CHANNEL_OUT_SIDE_LEFT</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_SIDE_RIGHT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_SIDE_RIGHT" class="hiddenlink" target="rightframe">CHANNEL_OUT_SIDE_RIGHT</A>
+</nobr><br>
+<!-- Constructor CheckBox -->
+<nobr><A HREF="android.widget.CheckBox.html#android.widget.CheckBox.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>CheckBox</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor CheckBoxPreference -->
+<nobr><A HREF="android.preference.CheckBoxPreference.html#android.preference.CheckBoxPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>CheckBoxPreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor CheckedTextView -->
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>CheckedTextView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field checkMarkTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.checkMarkTint" class="hiddenlink" target="rightframe">checkMarkTint</A>
+</nobr><br>
+<!-- Field checkMarkTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.checkMarkTintMode" class="hiddenlink" target="rightframe">checkMarkTintMode</A>
+</nobr><br>
+<!-- Constructor Chronometer -->
+<nobr><A HREF="android.widget.Chronometer.html#android.widget.Chronometer.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>Chronometer</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class CircularPropagation -->
+<A HREF="pkg_android.transition.html#CircularPropagation" class="hiddenlink" target="rightframe"><b>CircularPropagation</b></A><br>
+<!-- Method clearClientCertPreferences -->
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.clearClientCertPreferences_added(java.lang.Runnable)" class="hiddenlink" target="rightframe"><b>clearClientCertPreferences</b>
+(<code>Runnable</code>)</A></nobr><br>
+<!-- Method clearCrossProfileIntentFilters -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearCrossProfileIntentFilters_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>clearCrossProfileIntentFilters</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method clearDeviceOwnerApp -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearDeviceOwnerApp_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>clearDeviceOwnerApp</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method clearPackagePersistentPreferredActivities -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearPackagePersistentPreferredActivities_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>clearPackagePersistentPreferredActivities</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method clearUserRestriction -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearUserRestriction_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>clearUserRestriction</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method clearWindowAnimationFrameStats -->
+<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.clearWindowAnimationFrameStats_added()" class="hiddenlink" target="rightframe"><b>clearWindowAnimationFrameStats</b>
+()</A></nobr><br>
+<!-- Method clearWindowContentFrameStats -->
+<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.clearWindowContentFrameStats_added(int)" class="hiddenlink" target="rightframe"><b>clearWindowContentFrameStats</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Class ClientCertRequest -->
+<A HREF="pkg_android.webkit.html#ClientCertRequest" class="hiddenlink" target="rightframe"><b>ClientCertRequest</b></A><br>
+<!-- Field CLOCK_TICK -->
+<nobr><A HREF="android.view.HapticFeedbackConstants.html#android.view.HapticFeedbackConstants.CLOCK_TICK" class="hiddenlink" target="rightframe">CLOCK_TICK</A>
+</nobr><br>
+<!-- Field closeIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.closeIcon" class="hiddenlink" target="rightframe">closeIcon</A>
+</nobr><br>
+<!-- Field color -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.color" class="hiddenlink" target="rightframe">color</A>
+</nobr><br>
+<!-- Field COLOR_DEFAULT -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.COLOR_DEFAULT" class="hiddenlink" target="rightframe">COLOR_DEFAULT</A>
+</nobr><br>
+<!-- Field COLOR_FormatYUV420Flexible -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.COLOR_FormatYUV420Flexible" class="hiddenlink" target="rightframe">COLOR_FormatYUV420Flexible</A>
+</nobr><br>
+<!-- Field colorAccent -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorAccent" class="hiddenlink" target="rightframe">colorAccent</A>
+</nobr><br>
+<!-- Field colorButtonNormal -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorButtonNormal" class="hiddenlink" target="rightframe">colorButtonNormal</A>
+</nobr><br>
+<!-- Field colorControlActivated -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorControlActivated" class="hiddenlink" target="rightframe">colorControlActivated</A>
+</nobr><br>
+<!-- Field colorControlHighlight -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorControlHighlight" class="hiddenlink" target="rightframe">colorControlHighlight</A>
+</nobr><br>
+<!-- Field colorControlNormal -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorControlNormal" class="hiddenlink" target="rightframe">colorControlNormal</A>
+</nobr><br>
+<!-- Field colorEdgeEffect -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorEdgeEffect" class="hiddenlink" target="rightframe">colorEdgeEffect</A>
+</nobr><br>
+<!-- Field colorPrimary -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorPrimary" class="hiddenlink" target="rightframe">colorPrimary</A>
+</nobr><br>
+<!-- Field colorPrimaryDark -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorPrimaryDark" class="hiddenlink" target="rightframe">colorPrimaryDark</A>
+</nobr><br>
+<!-- Field commitIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.commitIcon" class="hiddenlink" target="rightframe">commitIcon</A>
+</nobr><br>
+<!-- Constructor CompoundButton -->
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>CompoundButton</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Method computeSystemWindowInsets -->
+<nobr><A HREF="android.view.View.html#android.view.View.computeSystemWindowInsets_added(android.view.WindowInsets, android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>computeSystemWindowInsets</b>
+(<code>WindowInsets, Rect</code>)</A></nobr><br>
+<!-- Class ConcurrentLinkedDeque -->
+<A HREF="pkg_java.util.concurrent.html#ConcurrentLinkedDeque" class="hiddenlink" target="rightframe"><b>ConcurrentLinkedDeque</b></A><br>
+<!-- Field CONNECTION_PRIORITY_BALANCED -->
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_BALANCED" class="hiddenlink" target="rightframe">CONNECTION_PRIORITY_BALANCED</A>
+</nobr><br>
+<!-- Field CONNECTION_PRIORITY_HIGH -->
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_HIGH" class="hiddenlink" target="rightframe">CONNECTION_PRIORITY_HIGH</A>
+</nobr><br>
+<!-- Field CONNECTION_PRIORITY_LOW_POWER -->
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_LOW_POWER" class="hiddenlink" target="rightframe">CONNECTION_PRIORITY_LOW_POWER</A>
+</nobr><br>
+<!-- Class ConnectivityManager.NetworkCallback -->
+<A HREF="pkg_android.net.html#ConnectivityManager.NetworkCallback" class="hiddenlink" target="rightframe"><b>ConnectivityManager.NetworkCallback</b></A><br>
+<!-- Class ConnectivityManager.OnNetworkActiveListener -->
+<A HREF="pkg_android.net.html#ConnectivityManager.OnNetworkActiveListener" class="hiddenlink" target="rightframe"><b><i>ConnectivityManager.OnNetworkActiveListener</i></b></A><br>
+<!-- Method consumeStableInsets -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.consumeStableInsets_added()" class="hiddenlink" target="rightframe"><b>consumeStableInsets</b>
+()</A></nobr><br>
+<!-- Class ContactsContract.CommonDataKinds.Callable -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Callable" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Callable</b></A><br>
+<!-- Class ContactsContract.PinnedPositions -->
+<A HREF="pkg_android.provider.html#ContactsContract.PinnedPositions" class="hiddenlink" target="rightframe"><b>ContactsContract.PinnedPositions</b></A><br>
+<!-- Class ContactsContract.SearchSnippets -->
+<A HREF="pkg_android.provider.html#ContactsContract.SearchSnippets" class="hiddenlink" target="rightframe"><b>ContactsContract.SearchSnippets</b></A><br>
+<!-- Field CONTENT_FREQUENT_URI -->
+<nobr><A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.CONTENT_FREQUENT_URI" class="hiddenlink" target="rightframe">CONTENT_FREQUENT_URI</A>
+</nobr><br>
+<!-- Field CONTENT_MULTI_VCARD_URI -->
+<nobr><A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.CONTENT_MULTI_VCARD_URI" class="hiddenlink" target="rightframe">CONTENT_MULTI_VCARD_URI</A>
+</nobr><br>
+<!-- Field CONTENT_URI_WITH_VOICEMAIL -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.CONTENT_URI_WITH_VOICEMAIL" class="hiddenlink" target="rightframe">CONTENT_URI_WITH_VOICEMAIL</A>
+</nobr><br>
+<!-- Field contentAgeHint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentAgeHint" class="hiddenlink" target="rightframe">contentAgeHint</A>
+</nobr><br>
+<!-- Field contentInsetEnd -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetEnd" class="hiddenlink" target="rightframe">contentInsetEnd</A>
+</nobr><br>
+<!-- Field contentInsetLeft -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetLeft" class="hiddenlink" target="rightframe">contentInsetLeft</A>
+</nobr><br>
+<!-- Field contentInsetRight -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetRight" class="hiddenlink" target="rightframe">contentInsetRight</A>
+</nobr><br>
+<!-- Field contentInsetStart -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetStart" class="hiddenlink" target="rightframe">contentInsetStart</A>
+</nobr><br>
+<!-- Field controlX1 -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlX1" class="hiddenlink" target="rightframe">controlX1</A>
+</nobr><br>
+<!-- Field controlX2 -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlX2" class="hiddenlink" target="rightframe">controlX2</A>
+</nobr><br>
+<!-- Field controlY1 -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlY1" class="hiddenlink" target="rightframe">controlY1</A>
+</nobr><br>
+<!-- Field controlY2 -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlY2" class="hiddenlink" target="rightframe">controlY2</A>
+</nobr><br>
+<!-- Method copy1DRangeFrom -->
+<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copy1DRangeFrom_added(int, int, java.lang.Object)" class="hiddenlink" target="rightframe"><b>copy1DRangeFrom</b>
+(<code>int, int, Object</code>)</A></nobr><br>
+<!-- Method copy1DRangeFromUnchecked -->
+<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copy1DRangeFromUnchecked_added(int, int, java.lang.Object)" class="hiddenlink" target="rightframe"><b>copy1DRangeFromUnchecked</b>
+(<code>int, int, Object</code>)</A></nobr><br>
+<!-- Method copy2DRangeFrom -->
+<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copy2DRangeFrom_added(int, int, int, int, java.lang.Object)" class="hiddenlink" target="rightframe"><b>copy2DRangeFrom</b>
+(<code>int, int, int, int, Object</code>)</A></nobr><br>
+<!-- Method copyFrom -->
+<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copyFrom_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>copyFrom</b>
+(<code>Object</code>)</A></nobr><br>
+<!-- Method copyFromUnchecked -->
+<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copyFromUnchecked_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>copyFromUnchecked</b>
+(<code>Object</code>)</A></nobr><br>
+<!-- Method copyTo -->
+<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copyTo_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>copyTo</b>
+(<code>Object</code>)</A></nobr><br>
+<!-- Field country -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.country" class="hiddenlink" target="rightframe">country</A>
+</nobr><br>
+<!-- Field COUNTRY_ISO -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.COUNTRY_ISO" class="hiddenlink" target="rightframe">COUNTRY_ISO</A>
+</nobr><br>
+<!-- Method create -->
+<i>create</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Dialog.html#android.app.Dialog.create_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Dialog
+</A></nobr><br>
+<!-- Method create -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.create_added(android.content.Context, android.net.Uri, android.view.SurfaceHolder, android.media.AudioAttributes, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context, Uri, SurfaceHolder, AudioAttributes, int</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+<!-- Method create -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.create_added(android.content.Context, int, android.media.AudioAttributes, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context, int, AudioAttributes, int</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+<!-- Method create -->
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.RenderScript.html#android.renderscript.RenderScript.create_added(android.content.Context, android.renderscript.RenderScript.ContextType, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context, ContextType, int</code>)</b>&nbsp;in&nbsp;android.renderscript.RenderScript
+</A></nobr><br>
+<!-- Field CREATE_FLAG_LOW_LATENCY -->
+<nobr><A HREF="android.renderscript.RenderScript.html#android.renderscript.RenderScript.CREATE_FLAG_LOW_LATENCY" class="hiddenlink" target="rightframe">CREATE_FLAG_LOW_LATENCY</A>
+</nobr><br>
+<!-- Field CREATE_FLAG_LOW_POWER -->
+<nobr><A HREF="android.renderscript.RenderScript.html#android.renderscript.RenderScript.CREATE_FLAG_LOW_POWER" class="hiddenlink" target="rightframe">CREATE_FLAG_LOW_POWER</A>
+</nobr><br>
+<!-- Field CREATE_FLAG_NONE -->
+<nobr><A HREF="android.renderscript.RenderScript.html#android.renderscript.RenderScript.CREATE_FLAG_NONE" class="hiddenlink" target="rightframe">CREATE_FLAG_NONE</A>
+</nobr><br>
+<!-- Method createAndInitializeUser -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.createAndInitializeUser_added(android.content.ComponentName, java.lang.String, java.lang.String, android.content.ComponentName, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>createAndInitializeUser</b>
+(<code>ComponentName, String, String, ComponentName, Bundle</code>)</A></nobr><br>
+<!-- Method createConfirmDeviceCredentialIntent -->
+<nobr><A HREF="android.app.KeyguardManager.html#android.app.KeyguardManager.createConfirmDeviceCredentialIntent_added(java.lang.CharSequence, java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>createConfirmDeviceCredentialIntent</b>
+(<code>CharSequence, CharSequence</code>)</A></nobr><br>
+<!-- Method createDocument -->
+<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.createDocument_added(android.content.ContentResolver, android.net.Uri, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>createDocument</b>
+(<code>ContentResolver, Uri, String, String</code>)</A></nobr><br>
+<!-- Method createFromProfileLevel -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.createFromProfileLevel_added(java.lang.String, int, int)" class="hiddenlink" target="rightframe"><b>createFromProfileLevel</b>
+(<code>String, int, int</code>)</A></nobr><br>
+<!-- Method createFromXml -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.createFromXml_added(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>createFromXml</b>
+(<code>Resources, XmlPullParser, Theme</code>)</A></nobr><br>
+<!-- Method createFromXmlInner -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.createFromXmlInner_added(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.util.AttributeSet, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>createFromXmlInner</b>
+(<code>Resources, XmlPullParser, AttributeSet, Theme</code>)</A></nobr><br>
+<!-- Method createPrintDocumentAdapter -->
+<i>createPrintDocumentAdapter</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.createPrintDocumentAdapter_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.webkit.WebView
+</A></nobr><br>
+<!-- Method createPrintDocumentAdapter -->
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.createPrintDocumentAdapter_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.webkit.WebView
+</A></nobr><br>
+<!-- Method createTextRecord -->
+<nobr><A HREF="android.nfc.NdefRecord.html#android.nfc.NdefRecord.createTextRecord_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>createTextRecord</b>
+(<code>String, String</code>)</A></nobr><br>
+<!-- Method createUser -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.createUser_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>createUser</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method createVirtualDisplay -->
+<nobr><A HREF="android.hardware.display.DisplayManager.html#android.hardware.display.DisplayManager.createVirtualDisplay_added(java.lang.String, int, int, int, android.view.Surface, int, android.hardware.display.VirtualDisplay.Callback, android.os.Handler)" class="hiddenlink" target="rightframe"><b>createVirtualDisplay</b>
+(<code>String, int, int, int, Surface, int, Callback, Handler</code>)</A></nobr><br>
+<!-- Method createX -->
+<nobr><A HREF="android.renderscript.Type.html#android.renderscript.Type.createX_added(android.renderscript.RenderScript, android.renderscript.Element, int)" class="hiddenlink" target="rightframe"><b>createX</b>
+(<code>RenderScript, Element, int</code>)</A></nobr><br>
+<!-- Method createXY -->
+<nobr><A HREF="android.renderscript.Type.html#android.renderscript.Type.createXY_added(android.renderscript.RenderScript, android.renderscript.Element, int, int)" class="hiddenlink" target="rightframe"><b>createXY</b>
+(<code>RenderScript, Element, int, int</code>)</A></nobr><br>
+<!-- Method createXYZ -->
+<nobr><A HREF="android.renderscript.Type.html#android.renderscript.Type.createXYZ_added(android.renderscript.RenderScript, android.renderscript.Element, int, int, int)" class="hiddenlink" target="rightframe"><b>createXYZ</b>
+(<code>RenderScript, Element, int, int, int</code>)</A></nobr><br>
+<!-- Field CREATOR -->
+<i>CREATOR</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.Telephony.BaseMmsColumns.html#android.provider.Telephony.BaseMmsColumns.CREATOR" class="hiddenlink" target="rightframe">android.provider.Telephony.BaseMmsColumns</A>
+</nobr><br>
+<!-- Field CREATOR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.Telephony.TextBasedSmsColumns.html#android.provider.Telephony.TextBasedSmsColumns.CREATOR" class="hiddenlink" target="rightframe">android.provider.Telephony.TextBasedSmsColumns</A>
+</nobr><br>
+<!-- Field CURSOR_UPDATE_IMMEDIATE -->
+<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.CURSOR_UPDATE_IMMEDIATE" class="hiddenlink" target="rightframe">CURSOR_UPDATE_IMMEDIATE</A>
+</nobr><br>
+<!-- Field CURSOR_UPDATE_MONITOR -->
+<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.CURSOR_UPDATE_MONITOR" class="hiddenlink" target="rightframe">CURSOR_UPDATE_MONITOR</A>
+</nobr><br>
+<!-- Class CursorAnchorInfo -->
+<A HREF="pkg_android.view.inputmethod.html#CursorAnchorInfo" class="hiddenlink" target="rightframe"><b>CursorAnchorInfo</b></A><br>
+<!-- Class CursorAnchorInfo.Builder -->
+<A HREF="pkg_android.view.inputmethod.html#CursorAnchorInfo.Builder" class="hiddenlink" target="rightframe"><b>CursorAnchorInfo.Builder</b></A><br>
+<!-- Field DATA_USAGE -->
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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="#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.CallLog.Calls.html#android.provider.CallLog.Calls.DATA_USAGE" class="hiddenlink" target="rightframe">DATA_USAGE</A>
+</nobr><br>
+<!-- Constructor DatePicker -->
+<nobr><A HREF="android.widget.DatePicker.html#android.widget.DatePicker.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>DatePicker</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field datePickerDialogTheme -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.datePickerDialogTheme" class="hiddenlink" target="rightframe">datePickerDialogTheme</A>
+</nobr><br>
+<!-- Field datePickerMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.datePickerMode" class="hiddenlink" target="rightframe">datePickerMode</A>
+</nobr><br>
+<!-- Field dayOfWeekBackground -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.dayOfWeekBackground" class="hiddenlink" target="rightframe">dayOfWeekBackground</A>
+</nobr><br>
+<!-- Field dayOfWeekTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.dayOfWeekTextAppearance" class="hiddenlink" target="rightframe">dayOfWeekTextAppearance</A>
+</nobr><br>
+<!-- Field DEFERRED_SNIPPETING -->
+<nobr><A HREF="android.provider.ContactsContract.html#android.provider.ContactsContract.DEFERRED_SNIPPETING" class="hiddenlink" target="rightframe">DEFERRED_SNIPPETING</A>
+</nobr><br>
+<!-- Field DEFERRED_SNIPPETING_QUERY -->
+<nobr><A HREF="android.provider.ContactsContract.html#android.provider.ContactsContract.DEFERRED_SNIPPETING_QUERY" class="hiddenlink" target="rightframe">DEFERRED_SNIPPETING_QUERY</A>
+</nobr><br>
+<!-- Field DENSITY_560 -->
+<nobr><A HREF="android.util.DisplayMetrics.html#android.util.DisplayMetrics.DENSITY_560" class="hiddenlink" target="rightframe">DENSITY_560</A>
+</nobr><br>
+<!-- Constructor DialogPreference -->
+<i>DialogPreference</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.preference.DialogPreference.html#android.preference.DialogPreference.ctor_added(android.content.Context)" class="hiddenlink" target="rightframe"><b>DialogPreference</b>
+(<code>Context</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor DialogPreference -->
+&nbsp;&nbsp;<nobr><A HREF="android.preference.DialogPreference.html#android.preference.DialogPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>DialogPreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field DISALLOW_ADD_USER -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_ADD_USER" class="hiddenlink" target="rightframe">DISALLOW_ADD_USER</A>
+</nobr><br>
+<!-- Field DISALLOW_ADJUST_VOLUME -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_ADJUST_VOLUME" class="hiddenlink" target="rightframe">DISALLOW_ADJUST_VOLUME</A>
+</nobr><br>
+<!-- Field DISALLOW_APPS_CONTROL -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_APPS_CONTROL" class="hiddenlink" target="rightframe">DISALLOW_APPS_CONTROL</A>
+</nobr><br>
+<!-- Field DISALLOW_CONFIG_CELL_BROADCASTS -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CONFIG_CELL_BROADCASTS" class="hiddenlink" target="rightframe">DISALLOW_CONFIG_CELL_BROADCASTS</A>
+</nobr><br>
+<!-- Field DISALLOW_CONFIG_MOBILE_NETWORKS -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS" class="hiddenlink" target="rightframe">DISALLOW_CONFIG_MOBILE_NETWORKS</A>
+</nobr><br>
+<!-- Field DISALLOW_CONFIG_TETHERING -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CONFIG_TETHERING" class="hiddenlink" target="rightframe">DISALLOW_CONFIG_TETHERING</A>
+</nobr><br>
+<!-- Field DISALLOW_CONFIG_VPN -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CONFIG_VPN" class="hiddenlink" target="rightframe">DISALLOW_CONFIG_VPN</A>
+</nobr><br>
+<!-- Field DISALLOW_CREATE_WINDOWS -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CREATE_WINDOWS" class="hiddenlink" target="rightframe">DISALLOW_CREATE_WINDOWS</A>
+</nobr><br>
+<!-- Field DISALLOW_CROSS_PROFILE_COPY_PASTE -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CROSS_PROFILE_COPY_PASTE" class="hiddenlink" target="rightframe">DISALLOW_CROSS_PROFILE_COPY_PASTE</A>
+</nobr><br>
+<!-- Field DISALLOW_DEBUGGING_FEATURES -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_DEBUGGING_FEATURES" class="hiddenlink" target="rightframe">DISALLOW_DEBUGGING_FEATURES</A>
+</nobr><br>
+<!-- Field DISALLOW_FACTORY_RESET -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_FACTORY_RESET" class="hiddenlink" target="rightframe">DISALLOW_FACTORY_RESET</A>
+</nobr><br>
+<!-- Field DISALLOW_MOUNT_PHYSICAL_MEDIA -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_MOUNT_PHYSICAL_MEDIA" class="hiddenlink" target="rightframe">DISALLOW_MOUNT_PHYSICAL_MEDIA</A>
+</nobr><br>
+<!-- Field DISALLOW_OUTGOING_CALLS -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_OUTGOING_CALLS" class="hiddenlink" target="rightframe">DISALLOW_OUTGOING_CALLS</A>
+</nobr><br>
+<!-- Field DISALLOW_SMS -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_SMS" class="hiddenlink" target="rightframe">DISALLOW_SMS</A>
+</nobr><br>
+<!-- Field DISALLOW_UNMUTE_MICROPHONE -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_UNMUTE_MICROPHONE" class="hiddenlink" target="rightframe">DISALLOW_UNMUTE_MICROPHONE</A>
+</nobr><br>
+<!-- Method dispatchNestedFling -->
+<nobr><A HREF="android.view.View.html#android.view.View.dispatchNestedFling_added(float, float, boolean)" class="hiddenlink" target="rightframe"><b>dispatchNestedFling</b>
+(<code>float, float, boolean</code>)</A></nobr><br>
+<!-- Method dispatchNestedPreFling -->
+<nobr><A HREF="android.view.View.html#android.view.View.dispatchNestedPreFling_added(float, float)" class="hiddenlink" target="rightframe"><b>dispatchNestedPreFling</b>
+(<code>float, float</code>)</A></nobr><br>
+<!-- Method dispatchNestedPreScroll -->
+<nobr><A HREF="android.view.View.html#android.view.View.dispatchNestedPreScroll_added(int, int, int[], int[])" class="hiddenlink" target="rightframe"><b>dispatchNestedPreScroll</b>
+(<code>int, int, int[], int[]</code>)</A></nobr><br>
+<!-- Method dispatchNestedScroll -->
+<nobr><A HREF="android.view.View.html#android.view.View.dispatchNestedScroll_added(int, int, int, int, int[])" class="hiddenlink" target="rightframe"><b>dispatchNestedScroll</b>
+(<code>int, int, int, int, int[]</code>)</A></nobr><br>
+<!-- Field DOCUMENT_LAUNCH_ALWAYS -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.DOCUMENT_LAUNCH_ALWAYS" class="hiddenlink" target="rightframe">DOCUMENT_LAUNCH_ALWAYS</A>
+</nobr><br>
+<!-- Field DOCUMENT_LAUNCH_INTO_EXISTING -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.DOCUMENT_LAUNCH_INTO_EXISTING" class="hiddenlink" target="rightframe">DOCUMENT_LAUNCH_INTO_EXISTING</A>
+</nobr><br>
+<!-- Field DOCUMENT_LAUNCH_NEVER -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.DOCUMENT_LAUNCH_NEVER" class="hiddenlink" target="rightframe">DOCUMENT_LAUNCH_NEVER</A>
+</nobr><br>
+<!-- Field DOCUMENT_LAUNCH_NONE -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.DOCUMENT_LAUNCH_NONE" class="hiddenlink" target="rightframe">DOCUMENT_LAUNCH_NONE</A>
+</nobr><br>
+<!-- Field documentLaunchMode -->
+<i>documentLaunchMode</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.documentLaunchMode" class="hiddenlink" target="rightframe">android.R.attr</A>
+</nobr><br>
+<!-- Field documentLaunchMode -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.documentLaunchMode" class="hiddenlink" target="rightframe">android.content.pm.ActivityInfo</A>
+</nobr><br>
+<!-- Method downloadMultimediaMessage -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.downloadMultimediaMessage_added(android.content.Context, java.lang.String, android.net.Uri, android.os.Bundle, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>downloadMultimediaMessage</b>
+(<code>Context, String, Uri, Bundle, PendingIntent</code>)</A></nobr><br>
+<!-- Method drawableHotspotChanged -->
+<nobr><A HREF="android.view.View.html#android.view.View.drawableHotspotChanged_added(float, float)" class="hiddenlink" target="rightframe"><b>drawableHotspotChanged</b>
+(<code>float, float</code>)</A></nobr><br>
+<!-- Method drawArc -->
+<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawArc_added(float, float, float, float, float, float, boolean, android.graphics.Paint)" class="hiddenlink" target="rightframe"><b>drawArc</b>
+(<code>float, float, float, float, float, float, boolean, Paint</code>)</A></nobr><br>
+<!-- Method drawOval -->
+<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawOval_added(float, float, float, float, android.graphics.Paint)" class="hiddenlink" target="rightframe"><b>drawOval</b>
+(<code>float, float, float, float, Paint</code>)</A></nobr><br>
+<!-- Method drawRoundRect -->
+<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawRoundRect_added(float, float, float, float, float, float, android.graphics.Paint)" class="hiddenlink" target="rightframe"><b>drawRoundRect</b>
+(<code>float, float, float, float, float, float, Paint</code>)</A></nobr><br>
+<!-- Field EDGE_TYPE_DEPRESSED -->
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.EDGE_TYPE_DEPRESSED" class="hiddenlink" target="rightframe">EDGE_TYPE_DEPRESSED</A>
+</nobr><br>
+<!-- Field EDGE_TYPE_RAISED -->
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.EDGE_TYPE_RAISED" class="hiddenlink" target="rightframe">EDGE_TYPE_RAISED</A>
+</nobr><br>
+<!-- Field EDGE_TYPE_UNSPECIFIED -->
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.EDGE_TYPE_UNSPECIFIED" class="hiddenlink" target="rightframe">EDGE_TYPE_UNSPECIFIED</A>
+</nobr><br>
+<!-- Constructor EditText -->
+<nobr><A HREF="android.widget.EditText.html#android.widget.EditText.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>EditText</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor EditTextPreference -->
+<nobr><A HREF="android.preference.EditTextPreference.html#android.preference.EditTextPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>EditTextPreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor EGLObjectHandle -->
+<nobr><A HREF="android.opengl.EGLObjectHandle.html#android.opengl.EGLObjectHandle.ctor_added(long)" class="hiddenlink" target="rightframe"><b>EGLObjectHandle</b>
+(<code>long</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field elegantTextHeight -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.elegantTextHeight" class="hiddenlink" target="rightframe">elegantTextHeight</A>
+</nobr><br>
+<!-- Field elevation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.elevation" class="hiddenlink" target="rightframe">elevation</A>
+</nobr><br>
+<!-- Field ENABLE_CAR_MODE_ALLOW_SLEEP -->
+<nobr><A HREF="android.app.UiModeManager.html#android.app.UiModeManager.ENABLE_CAR_MODE_ALLOW_SLEEP" class="hiddenlink" target="rightframe">ENABLE_CAR_MODE_ALLOW_SLEEP</A>
+</nobr><br>
+<!-- Method enableSlowWholeDocumentDraw -->
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.enableSlowWholeDocumentDraw_added()" class="hiddenlink" target="rightframe"><b>enableSlowWholeDocumentDraw</b>
+()</A></nobr><br>
+<!-- Method enableSystemApp -->
+<i>enableSystemApp</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.enableSystemApp_added(android.content.ComponentName, android.content.Intent)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ComponentName, Intent</code>)</b>&nbsp;in&nbsp;android.app.admin.DevicePolicyManager
+</A></nobr><br>
+<!-- Method enableSystemApp -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.enableSystemApp_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ComponentName, String</code>)</b>&nbsp;in&nbsp;android.app.admin.DevicePolicyManager
+</A></nobr><br>
+<!-- Field ENCODING_AC3 -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ENCODING_AC3" class="hiddenlink" target="rightframe">ENCODING_AC3</A>
+</nobr><br>
+<!-- Field ENCODING_E_AC3 -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ENCODING_E_AC3" class="hiddenlink" target="rightframe">ENCODING_E_AC3</A>
+</nobr><br>
+<!-- Field ENCODING_PCM_FLOAT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ENCODING_PCM_FLOAT" class="hiddenlink" target="rightframe">ENCODING_PCM_FLOAT</A>
+</nobr><br>
+<!-- Field ENDCOM -->
+<i>ENDCOM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field ENDCOM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field ENDCOM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field ENDCOM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field ENDHDR -->
+<i>ENDHDR</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field ENDHDR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field ENDHDR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field ENDHDR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field ENDOFF -->
+<i>ENDOFF</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field ENDOFF -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field ENDOFF -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field ENDOFF -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field ENDSIG -->
+<i>ENDSIG</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field ENDSIG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field ENDSIG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field ENDSIG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field ENDSIZ -->
+<i>ENDSIZ</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field ENDSIZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field ENDSIZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field ENDSIZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field ENDSUB -->
+<i>ENDSUB</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDSUB" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field ENDSUB -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDSUB" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field ENDSUB -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDSUB" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field ENDSUB -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDSUB" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field ENDTOT -->
+<i>ENDTOT</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDTOT" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field ENDTOT -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDTOT" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field ENDTOT -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDTOT" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field ENDTOT -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDTOT" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field ENSURE_VERIFY_APPS -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.ENSURE_VERIFY_APPS" class="hiddenlink" target="rightframe">ENSURE_VERIFY_APPS</A>
+</nobr><br>
+<!-- Field ENTERPRISE_CONTENT_FILTER_URI -->
+<nobr><A HREF="android.provider.ContactsContract.PhoneLookup.html#android.provider.ContactsContract.PhoneLookup.ENTERPRISE_CONTENT_FILTER_URI" class="hiddenlink" target="rightframe">ENTERPRISE_CONTENT_FILTER_URI</A>
+</nobr><br>
+<!-- Field ENTRY_CONTENT_TYPE -->
+<nobr><A HREF="android.provider.MediaStore.Audio.Media.html#android.provider.MediaStore.Audio.Media.ENTRY_CONTENT_TYPE" class="hiddenlink" target="rightframe">ENTRY_CONTENT_TYPE</A>
+</nobr><br>
+<!-- Method error -->
+<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.error_added(int)" class="hiddenlink" target="rightframe"><b>error</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Field ERROR -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ERROR" class="hiddenlink" target="rightframe">ERROR</A>
+</nobr><br>
+<!-- Field ERROR_DEAD_OBJECT -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ERROR_DEAD_OBJECT" class="hiddenlink" target="rightframe">ERROR_DEAD_OBJECT</A>
+</nobr><br>
+<!-- Field ERROR_INSUFFICIENT_OUTPUT_PROTECTION -->
+<nobr><A HREF="android.media.MediaCodec.CryptoException.html#android.media.MediaCodec.CryptoException.ERROR_INSUFFICIENT_OUTPUT_PROTECTION" class="hiddenlink" target="rightframe">ERROR_INSUFFICIENT_OUTPUT_PROTECTION</A>
+</nobr><br>
+<!-- Field ERROR_INVALID_REQUEST -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_INVALID_REQUEST" class="hiddenlink" target="rightframe">ERROR_INVALID_REQUEST</A>
+</nobr><br>
+<!-- Field ERROR_NETWORK -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_NETWORK" class="hiddenlink" target="rightframe">ERROR_NETWORK</A>
+</nobr><br>
+<!-- Field ERROR_NETWORK_TIMEOUT -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_NETWORK_TIMEOUT" class="hiddenlink" target="rightframe">ERROR_NETWORK_TIMEOUT</A>
+</nobr><br>
+<!-- Field ERROR_NOT_INSTALLED_YET -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_NOT_INSTALLED_YET" class="hiddenlink" target="rightframe">ERROR_NOT_INSTALLED_YET</A>
+</nobr><br>
+<!-- Field ERROR_OUTPUT -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_OUTPUT" class="hiddenlink" target="rightframe">ERROR_OUTPUT</A>
+</nobr><br>
+<!-- Field ERROR_SERVICE -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_SERVICE" class="hiddenlink" target="rightframe">ERROR_SERVICE</A>
+</nobr><br>
+<!-- Field ERROR_SYNTHESIS -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_SYNTHESIS" class="hiddenlink" target="rightframe">ERROR_SYNTHESIS</A>
+</nobr><br>
+<!-- Field excludeClass -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeClass" class="hiddenlink" target="rightframe">excludeClass</A>
+</nobr><br>
+<!-- Field excludeId -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeId" class="hiddenlink" target="rightframe">excludeId</A>
+</nobr><br>
+<!-- Field excludeName -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeName" class="hiddenlink" target="rightframe">excludeName</A>
+</nobr><br>
+<!-- Method excludeTarget -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.excludeTarget_added(java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>excludeTarget</b>
+(<code>String, boolean</code>)</A></nobr><br>
+<!-- Method executeShellCommand -->
+<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.executeShellCommand_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>executeShellCommand</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Constructor ExpandableListView -->
+<nobr><A HREF="android.widget.ExpandableListView.html#android.widget.ExpandableListView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ExpandableListView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class Explode -->
+<A HREF="pkg_android.transition.html#Explode" class="hiddenlink" target="rightframe"><b>Explode</b></A><br>
+<!-- Field EXTCRC -->
+<i>EXTCRC</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.EXTCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field EXTCRC -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.EXTCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field EXTCRC -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.EXTCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field EXTCRC -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.EXTCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field EXTHDR -->
+<i>EXTHDR</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.EXTHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field EXTHDR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.EXTHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field EXTHDR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.EXTHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field EXTHDR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.EXTHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field EXTLEN -->
+<i>EXTLEN</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.EXTLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field EXTLEN -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.EXTLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field EXTLEN -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.EXTLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field EXTLEN -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.EXTLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<i>EXTRA_ADDRESS_BOOK_INDEX</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html#android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Contactables</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html#android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Email</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Event</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html#android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.GroupMembership</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html#android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Identity</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html#android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Im</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html#android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Nickname</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html#android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Note</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html#android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Organization</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html#android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Phone</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html#android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Photo</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html#android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Relation</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html#android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.SipAddress</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredName</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html#android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html#android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Website</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Data.html#android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Data</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<i>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html#android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Contactables</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html#android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Email</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Event</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html#android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.GroupMembership</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html#android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Identity</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html#android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Im</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html#android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Nickname</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html#android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Note</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html#android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Organization</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html#android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Phone</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html#android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Photo</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html#android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Relation</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html#android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.SipAddress</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredName</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html#android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html#android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Website</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Data.html#android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Data</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<i>EXTRA_ADDRESS_BOOK_INDEX_TITLES</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html#android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Contactables</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html#android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Email</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Event</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html#android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.GroupMembership</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html#android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Identity</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html#android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Im</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html#android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Nickname</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html#android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Note</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html#android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Organization</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html#android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Phone</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html#android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Photo</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html#android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Relation</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html#android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.SipAddress</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredName</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html#android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html#android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Website</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Data.html#android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Data</A>
+</nobr><br>
+<!-- Field EXTRA_APPWIDGET_OLD_IDS -->
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.EXTRA_APPWIDGET_OLD_IDS" class="hiddenlink" target="rightframe">EXTRA_APPWIDGET_OLD_IDS</A>
+</nobr><br>
+<!-- Field EXTRA_APPWIDGET_PROVIDER_PROFILE -->
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE" class="hiddenlink" target="rightframe">EXTRA_APPWIDGET_PROVIDER_PROFILE</A>
+</nobr><br>
+<!-- Field EXTRA_ASSIST_INPUT_HINT_KEYBOARD -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD" class="hiddenlink" target="rightframe">EXTRA_ASSIST_INPUT_HINT_KEYBOARD</A>
+</nobr><br>
+<!-- Field EXTRA_AUDIO_PLUG_STATE -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.EXTRA_AUDIO_PLUG_STATE" class="hiddenlink" target="rightframe">EXTRA_AUDIO_PLUG_STATE</A>
+</nobr><br>
+<!-- Field EXTRA_BACKGROUND_IMAGE_URI -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_BACKGROUND_IMAGE_URI" class="hiddenlink" target="rightframe">EXTRA_BACKGROUND_IMAGE_URI</A>
+</nobr><br>
+<!-- Field EXTRA_BIG_TEXT -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_BIG_TEXT" class="hiddenlink" target="rightframe">EXTRA_BIG_TEXT</A>
+</nobr><br>
+<!-- Field EXTRA_CALL_TYPE_FILTER -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.EXTRA_CALL_TYPE_FILTER" class="hiddenlink" target="rightframe">EXTRA_CALL_TYPE_FILTER</A>
+</nobr><br>
+<!-- Field EXTRA_COMPACT_ACTIONS -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_COMPACT_ACTIONS" class="hiddenlink" target="rightframe">EXTRA_COMPACT_ACTIONS</A>
+</nobr><br>
+<!-- Field EXTRA_ENCODINGS -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.EXTRA_ENCODINGS" class="hiddenlink" target="rightframe">EXTRA_ENCODINGS</A>
+</nobr><br>
+<!-- Field EXTRA_EXCLUDE_MIMES -->
+<nobr><A HREF="android.provider.ContactsContract.QuickContact.html#android.provider.ContactsContract.QuickContact.EXTRA_EXCLUDE_MIMES" class="hiddenlink" target="rightframe">EXTRA_EXCLUDE_MIMES</A>
+</nobr><br>
+<!-- Field EXTRA_HOST_ID -->
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.EXTRA_HOST_ID" class="hiddenlink" target="rightframe">EXTRA_HOST_ID</A>
+</nobr><br>
+<!-- Field EXTRA_LOCK_TASK_PACKAGE -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.EXTRA_LOCK_TASK_PACKAGE" class="hiddenlink" target="rightframe">EXTRA_LOCK_TASK_PACKAGE</A>
+</nobr><br>
+<!-- Field EXTRA_MAX_CHANNEL_COUNT -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.EXTRA_MAX_CHANNEL_COUNT" class="hiddenlink" target="rightframe">EXTRA_MAX_CHANNEL_COUNT</A>
+</nobr><br>
+<!-- Field EXTRA_MEDIA_GENRE -->
+<nobr><A HREF="android.provider.MediaStore.html#android.provider.MediaStore.EXTRA_MEDIA_GENRE" class="hiddenlink" target="rightframe">EXTRA_MEDIA_GENRE</A>
+</nobr><br>
+<!-- Field EXTRA_MEDIA_PLAYLIST -->
+<nobr><A HREF="android.provider.MediaStore.html#android.provider.MediaStore.EXTRA_MEDIA_PLAYLIST" class="hiddenlink" target="rightframe">EXTRA_MEDIA_PLAYLIST</A>
+</nobr><br>
+<!-- Field EXTRA_MEDIA_RADIO_CHANNEL -->
+<nobr><A HREF="android.provider.MediaStore.html#android.provider.MediaStore.EXTRA_MEDIA_RADIO_CHANNEL" class="hiddenlink" target="rightframe">EXTRA_MEDIA_RADIO_CHANNEL</A>
+</nobr><br>
+<!-- Field EXTRA_MEDIA_SESSION -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_MEDIA_SESSION" class="hiddenlink" target="rightframe">EXTRA_MEDIA_SESSION</A>
+</nobr><br>
+<!-- Field EXTRA_MMS_DATA -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.EXTRA_MMS_DATA" class="hiddenlink" target="rightframe">EXTRA_MMS_DATA</A>
+</nobr><br>
+<!-- Field EXTRA_PRINTER_INFO -->
+<nobr><A HREF="android.printservice.PrintService.html#android.printservice.PrintService.EXTRA_PRINTER_INFO" class="hiddenlink" target="rightframe">EXTRA_PRINTER_INFO</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_EMAIL_ADDRESS -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_EMAIL_ADDRESS" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_EMAIL_ADDRESS</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_LOCAL_TIME -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_LOCAL_TIME" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_LOCAL_TIME</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_LOCALE -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_LOCALE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_LOCALE</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_TIME_ZONE -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_TIME_ZONE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_TIME_ZONE</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_HIDDEN -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_HIDDEN" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_HIDDEN</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_PAC_URL -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PAC_URL" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PAC_URL</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_PASSWORD -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PASSWORD" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PASSWORD</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_PROXY_BYPASS -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_BYPASS" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PROXY_BYPASS</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_PROXY_HOST -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_HOST" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PROXY_HOST</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_PROXY_PORT -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_PORT" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PROXY_PORT</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_SECURITY_TYPE -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_SECURITY_TYPE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_SECURITY_TYPE</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_SSID -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_SSID" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_SSID</A>
+</nobr><br>
+<!-- Field EXTRA_PROXY_INFO -->
+<nobr><A HREF="android.net.Proxy.html#android.net.Proxy.EXTRA_PROXY_INFO" class="hiddenlink" target="rightframe">EXTRA_PROXY_INFO</A>
+</nobr><br>
+<!-- Field EXTRA_REPLACEMENT_EXTRAS -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_REPLACEMENT_EXTRAS" class="hiddenlink" target="rightframe">EXTRA_REPLACEMENT_EXTRAS</A>
+</nobr><br>
+<!-- Field EXTRA_SIZE -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.EXTRA_SIZE" class="hiddenlink" target="rightframe">EXTRA_SIZE</A>
+</nobr><br>
+<!-- Field EXTRA_TEMPLATE -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_TEMPLATE" class="hiddenlink" target="rightframe">EXTRA_TEMPLATE</A>
+</nobr><br>
+<!-- Field EXTRA_USER -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_USER" class="hiddenlink" target="rightframe">EXTRA_USER</A>
+</nobr><br>
+<!-- Constructor ExtractEditText -->
+<nobr><A HREF="android.inputmethodservice.ExtractEditText.html#android.inputmethodservice.ExtractEditText.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ExtractEditText</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field EXTSIG -->
+<i>EXTSIG</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.EXTSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field EXTSIG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.EXTSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field EXTSIG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.EXTSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field EXTSIG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.EXTSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field EXTSIZ -->
+<i>EXTSIZ</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.EXTSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field EXTSIZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.EXTSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field EXTSIZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.EXTSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field EXTSIZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.EXTSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Constructor Fade -->
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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.transition.Fade.html#android.transition.Fade.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Fade</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field fast_out_linear_in -->
+<nobr><A HREF="android.R.interpolator.html#android.R.interpolator.fast_out_linear_in" class="hiddenlink" target="rightframe">fast_out_linear_in</A>
+</nobr><br>
+<!-- Field fast_out_slow_in -->
+<nobr><A HREF="android.R.interpolator.html#android.R.interpolator.fast_out_slow_in" class="hiddenlink" target="rightframe">fast_out_slow_in</A>
+</nobr><br>
+<!-- Field fastScrollStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fastScrollStyle" class="hiddenlink" target="rightframe">fastScrollStyle</A>
+</nobr><br>
+<!-- Field FEATURE_ACTIVITY_TRANSITIONS -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.FEATURE_ACTIVITY_TRANSITIONS" class="hiddenlink" target="rightframe">FEATURE_ACTIVITY_TRANSITIONS</A>
+</nobr><br>
+<!-- Field FEATURE_AUDIO_OUTPUT -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_AUDIO_OUTPUT" class="hiddenlink" target="rightframe">FEATURE_AUDIO_OUTPUT</A>
+</nobr><br>
+<!-- Field FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING" class="hiddenlink" target="rightframe">FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING</A>
+</nobr><br>
+<!-- Field FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR" class="hiddenlink" target="rightframe">FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR</A>
+</nobr><br>
+<!-- Field FEATURE_CAMERA_CAPABILITY_RAW -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_RAW" class="hiddenlink" target="rightframe">FEATURE_CAMERA_CAPABILITY_RAW</A>
+</nobr><br>
+<!-- Field FEATURE_CAMERA_LEVEL_FULL -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_LEVEL_FULL" class="hiddenlink" target="rightframe">FEATURE_CAMERA_LEVEL_FULL</A>
+</nobr><br>
+<!-- Field FEATURE_CONNECTION_SERVICE -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CONNECTION_SERVICE" class="hiddenlink" target="rightframe">FEATURE_CONNECTION_SERVICE</A>
+</nobr><br>
+<!-- Field FEATURE_CONTENT_TRANSITIONS -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.FEATURE_CONTENT_TRANSITIONS" class="hiddenlink" target="rightframe">FEATURE_CONTENT_TRANSITIONS</A>
+</nobr><br>
+<!-- Field FEATURE_GAMEPAD -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_GAMEPAD" class="hiddenlink" target="rightframe">FEATURE_GAMEPAD</A>
+</nobr><br>
+<!-- Field FEATURE_LEANBACK -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_LEANBACK" class="hiddenlink" target="rightframe">FEATURE_LEANBACK</A>
+</nobr><br>
+<!-- Field FEATURE_LIVE_TV -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_LIVE_TV" class="hiddenlink" target="rightframe">FEATURE_LIVE_TV</A>
+</nobr><br>
+<!-- Field FEATURE_MANAGED_USERS -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_MANAGED_USERS" class="hiddenlink" target="rightframe">FEATURE_MANAGED_USERS</A>
+</nobr><br>
+<!-- Field FEATURE_OPENGLES_EXTENSION_PACK -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_OPENGLES_EXTENSION_PACK" class="hiddenlink" target="rightframe">FEATURE_OPENGLES_EXTENSION_PACK</A>
+</nobr><br>
+<!-- Field FEATURE_SECURELY_REMOVES_USERS -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SECURELY_REMOVES_USERS" class="hiddenlink" target="rightframe">FEATURE_SECURELY_REMOVES_USERS</A>
+</nobr><br>
+<!-- Field FEATURE_SecurePlayback -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.FEATURE_SecurePlayback" class="hiddenlink" target="rightframe">FEATURE_SecurePlayback</A>
+</nobr><br>
+<!-- Field FEATURE_SENSOR_AMBIENT_TEMPERATURE -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SENSOR_AMBIENT_TEMPERATURE" class="hiddenlink" target="rightframe">FEATURE_SENSOR_AMBIENT_TEMPERATURE</A>
+</nobr><br>
+<!-- Field FEATURE_SENSOR_HEART_RATE_ECG -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SENSOR_HEART_RATE_ECG" class="hiddenlink" target="rightframe">FEATURE_SENSOR_HEART_RATE_ECG</A>
+</nobr><br>
+<!-- Field FEATURE_SENSOR_RELATIVE_HUMIDITY -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SENSOR_RELATIVE_HUMIDITY" class="hiddenlink" target="rightframe">FEATURE_SENSOR_RELATIVE_HUMIDITY</A>
+</nobr><br>
+<!-- Field FEATURE_TunneledPlayback -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.FEATURE_TunneledPlayback" class="hiddenlink" target="rightframe">FEATURE_TunneledPlayback</A>
+</nobr><br>
+<!-- Field FEATURE_VERIFIED_BOOT -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_VERIFIED_BOOT" class="hiddenlink" target="rightframe">FEATURE_VERIFIED_BOOT</A>
+</nobr><br>
+<!-- Class FeatureGroupInfo -->
+<A HREF="pkg_android.content.pm.html#FeatureGroupInfo" class="hiddenlink" target="rightframe"><b>FeatureGroupInfo</b></A><br>
+<!-- Field featureGroups -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.featureGroups" class="hiddenlink" target="rightframe">featureGroups</A>
+</nobr><br>
+<!-- Field FEATURES -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.FEATURES" class="hiddenlink" target="rightframe">FEATURES</A>
+</nobr><br>
+<!-- Field FEATURES_VIDEO -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.FEATURES_VIDEO" class="hiddenlink" target="rightframe">FEATURES_VIDEO</A>
+</nobr><br>
+<!-- Field fillAlpha -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fillAlpha" class="hiddenlink" target="rightframe">fillAlpha</A>
+</nobr><br>
+<!-- Field fillColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fillColor" class="hiddenlink" target="rightframe">fillColor</A>
+</nobr><br>
+<!-- Method findDecoderForFormat -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.findDecoderForFormat_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>findDecoderForFormat</b>
+(<code>MediaFormat</code>)</A></nobr><br>
+<!-- Method findEncoderForFormat -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.findEncoderForFormat_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>findEncoderForFormat</b>
+(<code>MediaFormat</code>)</A></nobr><br>
+<!-- Method findFocus -->
+<i>findFocus</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.accessibilityservice.AccessibilityService.html#android.accessibilityservice.AccessibilityService.findFocus_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.accessibilityservice.AccessibilityService
+</A></nobr><br>
+<!-- Method findFocus -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.findFocus_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.app.UiAutomation
+</A></nobr><br>
+<!-- Method finishAfterTransition -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.finishAfterTransition_added()" class="hiddenlink" target="rightframe"><b>finishAfterTransition</b>
+()</A></nobr><br>
+<!-- Method finishAndRemoveTask -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.finishAndRemoveTask_added()" class="hiddenlink" target="rightframe"><b>finishAndRemoveTask</b>
+()</A></nobr><br>
+<!-- Field FLAG_ACTIVITY_NEW_DOCUMENT -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_ACTIVITY_NEW_DOCUMENT" class="hiddenlink" target="rightframe">FLAG_ACTIVITY_NEW_DOCUMENT</A>
+</nobr><br>
+<!-- Field FLAG_ACTIVITY_RETAIN_IN_RECENTS -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS" class="hiddenlink" target="rightframe">FLAG_ACTIVITY_RETAIN_IN_RECENTS</A>
+</nobr><br>
+<!-- Field FLAG_AUTO_REMOVE_FROM_RECENTS -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_AUTO_REMOVE_FROM_RECENTS" class="hiddenlink" target="rightframe">FLAG_AUTO_REMOVE_FROM_RECENTS</A>
+</nobr><br>
+<!-- Field FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS -->
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS" class="hiddenlink" target="rightframe">FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS</A>
+</nobr><br>
+<!-- Field FLAG_FULL_BACKUP_ONLY -->
+<nobr><A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.FLAG_FULL_BACKUP_ONLY" class="hiddenlink" target="rightframe">FLAG_FULL_BACKUP_ONLY</A>
+</nobr><br>
+<!-- Field FLAG_GRANT_PREFIX_URI_PERMISSION -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_GRANT_PREFIX_URI_PERMISSION" class="hiddenlink" target="rightframe">FLAG_GRANT_PREFIX_URI_PERMISSION</A>
+</nobr><br>
+<!-- Field FLAG_IS_GAME -->
+<nobr><A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.FLAG_IS_GAME" class="hiddenlink" target="rightframe">FLAG_IS_GAME</A>
+</nobr><br>
+<!-- Field FLAG_MANAGED_CAN_ACCESS_PARENT -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.FLAG_MANAGED_CAN_ACCESS_PARENT" class="hiddenlink" target="rightframe">FLAG_MANAGED_CAN_ACCESS_PARENT</A>
+</nobr><br>
+<!-- Field FLAG_MULTIARCH -->
+<nobr><A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.FLAG_MULTIARCH" class="hiddenlink" target="rightframe">FLAG_MULTIARCH</A>
+</nobr><br>
+<!-- Field FLAG_PARENT_CAN_ACCESS_MANAGED -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.FLAG_PARENT_CAN_ACCESS_MANAGED" class="hiddenlink" target="rightframe">FLAG_PARENT_CAN_ACCESS_MANAGED</A>
+</nobr><br>
+<!-- Field FLAG_RELINQUISH_TASK_IDENTITY -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY" class="hiddenlink" target="rightframe">FLAG_RELINQUISH_TASK_IDENTITY</A>
+</nobr><br>
+<!-- Field FLAG_RESUME_WHILE_PAUSING -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_RESUME_WHILE_PAUSING" class="hiddenlink" target="rightframe">FLAG_RESUME_WHILE_PAUSING</A>
+</nobr><br>
+<!-- Field FLAG_RETRIEVE_INTERACTIVE_WINDOWS -->
+<nobr><A HREF="android.accessibilityservice.AccessibilityServiceInfo.html#android.accessibilityservice.AccessibilityServiceInfo.FLAG_RETRIEVE_INTERACTIVE_WINDOWS" class="hiddenlink" target="rightframe">FLAG_RETRIEVE_INTERACTIVE_WINDOWS</A>
+</nobr><br>
+<!-- Field FLAG_SUPPORTS_IS_CHILD -->
+<nobr><A HREF="android.provider.DocumentsContract.Root.html#android.provider.DocumentsContract.Root.FLAG_SUPPORTS_IS_CHILD" class="hiddenlink" target="rightframe">FLAG_SUPPORTS_IS_CHILD</A>
+</nobr><br>
+<!-- Field FLAG_SUPPORTS_RENAME -->
+<nobr><A HREF="android.provider.DocumentsContract.Document.html#android.provider.DocumentsContract.Document.FLAG_SUPPORTS_RENAME" class="hiddenlink" target="rightframe">FLAG_SUPPORTS_RENAME</A>
+</nobr><br>
+<!-- Method fling -->
+<nobr><A HREF="android.widget.AbsListView.html#android.widget.AbsListView.fling_added(int)" class="hiddenlink" target="rightframe"><b>fling</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Class FloatArrayEvaluator -->
+<A HREF="pkg_android.animation.html#FloatArrayEvaluator" class="hiddenlink" target="rightframe"><b>FloatArrayEvaluator</b></A><br>
+<!-- Method flush -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.flush_added()" class="hiddenlink" target="rightframe"><b>flush</b>
+()</A></nobr><br>
+<!-- Field fontFeatureSettings -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fontFeatureSettings" class="hiddenlink" target="rightframe">fontFeatureSettings</A>
+</nobr><br>
+<!-- Method forceVirtualizationMode -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.forceVirtualizationMode_added(int)" class="hiddenlink" target="rightframe"><b>forceVirtualizationMode</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method forEach -->
+<i>forEach</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsic3DLUT.html#android.renderscript.ScriptIntrinsic3DLUT.forEach_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsic3DLUT
+</A></nobr><br>
+<!-- Method forEach -->
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsicBlur.html#android.renderscript.ScriptIntrinsicBlur.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsicBlur
+</A></nobr><br>
+<!-- Method forEach -->
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsicColorMatrix.html#android.renderscript.ScriptIntrinsicColorMatrix.forEach_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsicColorMatrix
+</A></nobr><br>
+<!-- Method forEach -->
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsicConvolve3x3.html#android.renderscript.ScriptIntrinsicConvolve3x3.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsicConvolve3x3
+</A></nobr><br>
+<!-- Method forEach -->
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsicConvolve5x5.html#android.renderscript.ScriptIntrinsicConvolve5x5.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsicConvolve5x5
+</A></nobr><br>
+<!-- Method forEach -->
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsicHistogram.html#android.renderscript.ScriptIntrinsicHistogram.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsicHistogram
+</A></nobr><br>
+<!-- Method forEach -->
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsicLUT.html#android.renderscript.ScriptIntrinsicLUT.forEach_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsicLUT
+</A></nobr><br>
+<!-- Method forEach_Dot -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicHistogram.html#android.renderscript.ScriptIntrinsicHistogram.forEach_Dot_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEach_Dot</b>
+(<code>Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachAdd -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachAdd_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachAdd</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachClear -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachClear_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachClear</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachDst -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDst_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDst</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachDstAtop -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDstAtop_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDstAtop</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachDstIn -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDstIn_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDstIn</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachDstOut -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDstOut_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDstOut</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachDstOver -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDstOver_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDstOver</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachMultiply -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachMultiply_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachMultiply</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachSrc -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrc_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrc</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachSrcAtop -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrcAtop_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrcAtop</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachSrcIn -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrcIn_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrcIn</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachSrcOut -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrcOut_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrcOut</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachSrcOver -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrcOver_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrcOver</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachSubtract -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSubtract_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSubtract</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachXor -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachXor_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachXor</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Field foregroundTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.foregroundTint" class="hiddenlink" target="rightframe">foregroundTint</A>
+</nobr><br>
+<!-- Field foregroundTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.foregroundTintMode" class="hiddenlink" target="rightframe">foregroundTintMode</A>
+</nobr><br>
+<!-- Class ForkJoinPool -->
+<A HREF="pkg_java.util.concurrent.html#ForkJoinPool" class="hiddenlink" target="rightframe"><b>ForkJoinPool</b></A><br>
+<!-- Class ForkJoinPool.ForkJoinWorkerThreadFactory -->
+<A HREF="pkg_java.util.concurrent.html#ForkJoinPool.ForkJoinWorkerThreadFactory" class="hiddenlink" target="rightframe"><b><i>ForkJoinPool.ForkJoinWorkerThreadFactory</i></b></A><br>
+<!-- Class ForkJoinPool.ManagedBlocker -->
+<A HREF="pkg_java.util.concurrent.html#ForkJoinPool.ManagedBlocker" class="hiddenlink" target="rightframe"><b><i>ForkJoinPool.ManagedBlocker</i></b></A><br>
+<!-- Class ForkJoinTask -->
+<A HREF="pkg_java.util.concurrent.html#ForkJoinTask" class="hiddenlink" target="rightframe"><b>ForkJoinTask</b></A><br>
+<!-- Class ForkJoinWorkerThread -->
+<A HREF="pkg_java.util.concurrent.html#ForkJoinWorkerThread" class="hiddenlink" target="rightframe"><b>ForkJoinWorkerThread</b></A><br>
+<!-- Method forLanguageTag -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.forLanguageTag_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>forLanguageTag</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method formatNumber -->
+<i>formatNumber</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, String</code>)</b>&nbsp;in&nbsp;android.telephony.PhoneNumberUtils
+</A></nobr><br>
+<!-- Method formatNumber -->
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_added(java.lang.String, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, String, String</code>)</b>&nbsp;in&nbsp;android.telephony.PhoneNumberUtils
+</A></nobr><br>
+<!-- Method formatNumber -->
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.telephony.PhoneNumberUtils
+</A></nobr><br>
+<!-- Method formatNumber -->
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_added(android.text.Editable, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Editable, int</code>)</b>&nbsp;in&nbsp;android.telephony.PhoneNumberUtils
+</A></nobr><br>
+<!-- Method formatNumberToE164 -->
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumberToE164_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>formatNumberToE164</b>
+(<code>String, String</code>)</A></nobr><br>
+<!-- Field FQDN -->
+<nobr><A HREF="android.net.wifi.WifiConfiguration.html#android.net.wifi.WifiConfiguration.FQDN" class="hiddenlink" target="rightframe">FQDN</A>
+</nobr><br>
+<!-- Field fragmentAllowEnterTransitionOverlap -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentAllowEnterTransitionOverlap" class="hiddenlink" target="rightframe">fragmentAllowEnterTransitionOverlap</A>
+</nobr><br>
+<!-- Field fragmentAllowReturnTransitionOverlap -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentAllowReturnTransitionOverlap" class="hiddenlink" target="rightframe">fragmentAllowReturnTransitionOverlap</A>
+</nobr><br>
+<!-- Field fragmentEnterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentEnterTransition" class="hiddenlink" target="rightframe">fragmentEnterTransition</A>
+</nobr><br>
+<!-- Field fragmentExitTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentExitTransition" class="hiddenlink" target="rightframe">fragmentExitTransition</A>
+</nobr><br>
+<!-- Field fragmentReenterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentReenterTransition" class="hiddenlink" target="rightframe">fragmentReenterTransition</A>
+</nobr><br>
+<!-- Field fragmentReturnTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentReturnTransition" class="hiddenlink" target="rightframe">fragmentReturnTransition</A>
+</nobr><br>
+<!-- Field fragmentSharedElementEnterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentSharedElementEnterTransition" class="hiddenlink" target="rightframe">fragmentSharedElementEnterTransition</A>
+</nobr><br>
+<!-- Field fragmentSharedElementReturnTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentSharedElementReturnTransition" class="hiddenlink" target="rightframe">fragmentSharedElementReturnTransition</A>
+</nobr><br>
+<!-- Constructor FrameLayout -->
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>FrameLayout</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class FrameStats -->
+<A HREF="pkg_android.view.html#FrameStats" class="hiddenlink" target="rightframe"><b>FrameStats</b></A><br>
+<!-- Field FREQUENCY_UNITS -->
+<nobr><A HREF="android.net.wifi.WifiInfo.html#android.net.wifi.WifiInfo.FREQUENCY_UNITS" class="hiddenlink" target="rightframe">FREQUENCY_UNITS</A>
+</nobr><br>
+<!-- Field fromId -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fromId" class="hiddenlink" target="rightframe">fromId</A>
+</nobr><br>
+<!-- Field FULL_NAME_STYLE -->
+<nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.FULL_NAME_STYLE" class="hiddenlink" target="rightframe">FULL_NAME_STYLE</A>
+</nobr><br>
+<!-- Field fullBackupOnly -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fullBackupOnly" class="hiddenlink" target="rightframe">fullBackupOnly</A>
+</nobr><br>
+<!-- Constructor Gallery -->
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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">
+<nobr><A HREF="android.widget.Gallery.html#android.widget.Gallery.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>Gallery</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field GATT_CONNECTION_CONGESTED -->
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.GATT_CONNECTION_CONGESTED" class="hiddenlink" target="rightframe">GATT_CONNECTION_CONGESTED</A>
+</nobr><br>
+<!-- Method generateAudioSessionId -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.generateAudioSessionId_added()" class="hiddenlink" target="rightframe"><b>generateAudioSessionId</b>
+()</A></nobr><br>
+<!-- Field GEOCODED_LOCATION -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.GEOCODED_LOCATION" class="hiddenlink" target="rightframe">GEOCODED_LOCATION</A>
+</nobr><br>
+<!-- Constructor GestureOverlayView -->
+<nobr><A HREF="android.gesture.GestureOverlayView.html#android.gesture.GestureOverlayView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>GestureOverlayView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Method getAccountTypesWithManagementDisabled -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getAccountTypesWithManagementDisabled_added()" class="hiddenlink" target="rightframe"><b>getAccountTypesWithManagementDisabled</b>
+()</A></nobr><br>
+<!-- Method getActionList -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getActionList_added()" class="hiddenlink" target="rightframe"><b>getActionList</b>
+()</A></nobr><br>
+<!-- Method getActiveNotifications -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getActiveNotifications_added(java.lang.String[])" class="hiddenlink" target="rightframe"><b>getActiveNotifications</b>
+(<code>String[]</code>)</A></nobr><br>
+<!-- Method getAidsForService -->
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.getAidsForService_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>getAidsForService</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method getAllNetworks -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getAllNetworks_added()" class="hiddenlink" target="rightframe"><b>getAllNetworks</b>
+()</A></nobr><br>
+<!-- Method getAllowEnterTransitionOverlap -->
+<i>getAllowEnterTransitionOverlap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getAllowEnterTransitionOverlap_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method getAllowEnterTransitionOverlap -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getAllowEnterTransitionOverlap_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getAllowReturnTransitionOverlap -->
+<i>getAllowReturnTransitionOverlap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getAllowReturnTransitionOverlap_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method getAllowReturnTransitionOverlap -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getAllowReturnTransitionOverlap_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getAlternateSetting -->
+<nobr><A HREF="android.hardware.usb.UsbInterface.html#android.hardware.usb.UsbInterface.getAlternateSetting_added()" class="hiddenlink" target="rightframe"><b>getAlternateSetting</b>
+()</A></nobr><br>
+<!-- Method getApplicationRestrictions -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getApplicationRestrictions_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>getApplicationRestrictions</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method getAppTasks -->
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getAppTasks_added()" class="hiddenlink" target="rightframe"><b>getAppTasks</b>
+()</A></nobr><br>
+<!-- Method getAppTaskThumbnailSize -->
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getAppTaskThumbnailSize_added()" class="hiddenlink" target="rightframe"><b>getAppTaskThumbnailSize</b>
+()</A></nobr><br>
+<!-- Method getAppVsyncOffsetNanos -->
+<nobr><A HREF="android.view.Display.html#android.view.Display.getAppVsyncOffsetNanos_added()" class="hiddenlink" target="rightframe"><b>getAppVsyncOffsetNanos</b>
+()</A></nobr><br>
+<!-- Method getAttributes -->
+<nobr><A HREF="android.net.nsd.NsdServiceInfo.html#android.net.nsd.NsdServiceInfo.getAttributes_added()" class="hiddenlink" target="rightframe"><b>getAttributes</b>
+()</A></nobr><br>
+<!-- Method getAudioAttributes -->
+<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.getAudioAttributes_added()" class="hiddenlink" target="rightframe"><b>getAudioAttributes</b>
+()</A></nobr><br>
+<!-- Method getAudioCapabilities -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getAudioCapabilities_added()" class="hiddenlink" target="rightframe"><b>getAudioCapabilities</b>
+()</A></nobr><br>
+<!-- Method getAutoTimeRequired -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getAutoTimeRequired_added()" class="hiddenlink" target="rightframe"><b>getAutoTimeRequired</b>
+()</A></nobr><br>
+<!-- Method getAvailableLanguages -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getAvailableLanguages_added()" class="hiddenlink" target="rightframe"><b>getAvailableLanguages</b>
+()</A></nobr><br>
+<!-- Method getBackgroundTintList -->
+<nobr><A HREF="android.view.View.html#android.view.View.getBackgroundTintList_added()" class="hiddenlink" target="rightframe"><b>getBackgroundTintList</b>
+()</A></nobr><br>
+<!-- Method getBackgroundTintMode -->
+<nobr><A HREF="android.view.View.html#android.view.View.getBackgroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getBackgroundTintMode</b>
+()</A></nobr><br>
+<!-- Method getBluetoothLeAdvertiser -->
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.getBluetoothLeAdvertiser_added()" class="hiddenlink" target="rightframe"><b>getBluetoothLeAdvertiser</b>
+()</A></nobr><br>
+<!-- Method getBluetoothLeScanner -->
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.getBluetoothLeScanner_added()" class="hiddenlink" target="rightframe"><b>getBluetoothLeScanner</b>
+()</A></nobr><br>
+<!-- Method getButtonTintList -->
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.getButtonTintList_added()" class="hiddenlink" target="rightframe"><b>getButtonTintList</b>
+()</A></nobr><br>
+<!-- Method getButtonTintMode -->
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.getButtonTintMode_added()" class="hiddenlink" target="rightframe"><b>getButtonTintMode</b>
+()</A></nobr><br>
+<!-- Method getCarrierConfigValues -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.getCarrierConfigValues_added()" class="hiddenlink" target="rightframe"><b>getCarrierConfigValues</b>
+()</A></nobr><br>
+<!-- Method getChangingConfigurations -->
+<nobr><A HREF="android.content.res.TypedArray.html#android.content.res.TypedArray.getChangingConfigurations_added()" class="hiddenlink" target="rightframe"><b>getChangingConfigurations</b>
+()</A></nobr><br>
+<!-- Method getChannelMask -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getChannelMask_added()" class="hiddenlink" target="rightframe"><b>getChannelMask</b>
+()</A></nobr><br>
+<!-- Method getCharSequence -->
+<nobr><A HREF="android.view.textservice.TextInfo.html#android.view.textservice.TextInfo.getCharSequence_added()" class="hiddenlink" target="rightframe"><b>getCharSequence</b>
+()</A></nobr><br>
+<!-- Method getCharSequenceText -->
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getCharSequenceText_added()" class="hiddenlink" target="rightframe"><b>getCharSequenceText</b>
+()</A></nobr><br>
+<!-- Method getCheckMarkTintList -->
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.getCheckMarkTintList_added()" class="hiddenlink" target="rightframe"><b>getCheckMarkTintList</b>
+()</A></nobr><br>
+<!-- Method getCheckMarkTintMode -->
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.getCheckMarkTintMode_added()" class="hiddenlink" target="rightframe"><b>getCheckMarkTintMode</b>
+()</A></nobr><br>
+<!-- Method getClipToOutline -->
+<nobr><A HREF="android.view.View.html#android.view.View.getClipToOutline_added()" class="hiddenlink" target="rightframe"><b>getClipToOutline</b>
+()</A></nobr><br>
+<!-- Method getClipToPadding -->
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.getClipToPadding_added()" class="hiddenlink" target="rightframe"><b>getClipToPadding</b>
+()</A></nobr><br>
+<!-- Method getCodeCacheDir -->
+<i>getCodeCacheDir</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.Context.html#android.content.Context.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.Context
+</A></nobr><br>
+<!-- Method getCodeCacheDir -->
+&nbsp;&nbsp;<nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.ContextWrapper
+</A></nobr><br>
+<!-- Method getCodeCacheDir -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockContext
+</A></nobr><br>
+<!-- Method getCodecInfos -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecInfos_added()" class="hiddenlink" target="rightframe"><b>getCodecInfos</b>
+()</A></nobr><br>
+<!-- Method getColor -->
+<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.getColor_added()" class="hiddenlink" target="rightframe"><b>getColor</b>
+()</A></nobr><br>
+<!-- Method getColorFilter -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.getColorFilter_added()" class="hiddenlink" target="rightframe"><b>getColorFilter</b>
+()</A></nobr><br>
+<!-- Method getConfiguration -->
+<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getConfiguration_added(int)" class="hiddenlink" target="rightframe"><b>getConfiguration</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getConfigurationCount -->
+<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getConfigurationCount_added()" class="hiddenlink" target="rightframe"><b>getConfigurationCount</b>
+()</A></nobr><br>
+<!-- Method getContentScene -->
+<i>getContentScene</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.getContentScene_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+<!-- Method getContentScene -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getContentScene_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getContentTransitionManager -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.getContentTransitionManager_added()" class="hiddenlink" target="rightframe"><b>getContentTransitionManager</b>
+()</A></nobr><br>
+<!-- Method getCropRect -->
+<nobr><A HREF="android.media.Image.html#android.media.Image.getCropRect_added()" class="hiddenlink" target="rightframe"><b>getCropRect</b>
+()</A></nobr><br>
+<!-- Method getCrossProfileCallerIdDisabled -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getCrossProfileCallerIdDisabled_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getCrossProfileCallerIdDisabled</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getCrossProfileWidgetProviders -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getCrossProfileWidgetProviders_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getCrossProfileWidgetProviders</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getCurrentInterruptionFilter -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getCurrentInterruptionFilter_added()" class="hiddenlink" target="rightframe"><b>getCurrentInterruptionFilter</b>
+()</A></nobr><br>
+<!-- Method getCurrentListenerHints -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getCurrentListenerHints_added()" class="hiddenlink" target="rightframe"><b>getCurrentListenerHints</b>
+()</A></nobr><br>
+<!-- Method getCurrentRanking -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getCurrentRanking_added()" class="hiddenlink" target="rightframe"><b>getCurrentRanking</b>
+()</A></nobr><br>
+<!-- Method getDefaultFormat -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getDefaultFormat_added()" class="hiddenlink" target="rightframe"><b>getDefaultFormat</b>
+()</A></nobr><br>
+<!-- Method getDefaultSensor -->
+<nobr><A HREF="android.hardware.SensorManager.html#android.hardware.SensorManager.getDefaultSensor_added(int, boolean)" class="hiddenlink" target="rightframe"><b>getDefaultSensor</b>
+(<code>int, boolean</code>)</A></nobr><br>
+<!-- Method getDefaultVoice -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getDefaultVoice_added()" class="hiddenlink" target="rightframe"><b>getDefaultVoice</b>
+()</A></nobr><br>
+<!-- Method getDirtyBounds -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.getDirtyBounds_added()" class="hiddenlink" target="rightframe"><b>getDirtyBounds</b>
+()</A></nobr><br>
+<!-- Method getDisplayScript -->
+<i>getDisplayScript</i><br>
+&nbsp;&nbsp;<nobr><A HREF="java.util.Locale.html#java.util.Locale.getDisplayScript_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;java.util.Locale
+</A></nobr><br>
+<!-- Method getDisplayScript -->
+&nbsp;&nbsp;<nobr><A HREF="java.util.Locale.html#java.util.Locale.getDisplayScript_added(java.util.Locale)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Locale</code>)</b>&nbsp;in&nbsp;java.util.Locale
+</A></nobr><br>
+<!-- Method getDrawable -->
+<i>getDrawable</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.Context.html#android.content.Context.getDrawable_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.content.Context
+</A></nobr><br>
+<!-- Method getDrawable -->
+&nbsp;&nbsp;<nobr><A HREF="android.content.res.Resources.html#android.content.res.Resources.getDrawable_added(int, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, Theme</code>)</b>&nbsp;in&nbsp;android.content.res.Resources
+</A></nobr><br>
+<!-- Method getDrawable -->
+&nbsp;&nbsp;<nobr><A HREF="android.content.res.Resources.Theme.html#android.content.res.Resources.Theme.getDrawable_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.content.res.Resources.Theme
+</A></nobr><br>
+<!-- Method getDrawableForDensity -->
+<nobr><A HREF="android.content.res.Resources.html#android.content.res.Resources.getDrawableForDensity_added(int, int, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>getDrawableForDensity</b>
+(<code>int, int, Theme</code>)</A></nobr><br>
+<!-- Method getElevation -->
+<i>getElevation</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getElevation_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+<!-- Method getElevation -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.View.html#android.view.View.getElevation_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.View
+</A></nobr><br>
+<!-- Method getElevation -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.PopupWindow.html#android.widget.PopupWindow.getElevation_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.PopupWindow
+</A></nobr><br>
+<!-- Method getEncoderCapabilities -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getEncoderCapabilities_added()" class="hiddenlink" target="rightframe"><b>getEncoderCapabilities</b>
+()</A></nobr><br>
+<!-- Method getEncoding -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getEncoding_added()" class="hiddenlink" target="rightframe"><b>getEncoding</b>
+()</A></nobr><br>
+<!-- Method getEnterTransition -->
+<i>getEnterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getEnterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method getEnterTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getEnterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getEpicenter -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getEpicenter_added()" class="hiddenlink" target="rightframe"><b>getEpicenter</b>
+()</A></nobr><br>
+<!-- Method getEpicenterCallback -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getEpicenterCallback_added()" class="hiddenlink" target="rightframe"><b>getEpicenterCallback</b>
+()</A></nobr><br>
+<!-- Method getError -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getError_added()" class="hiddenlink" target="rightframe"><b>getError</b>
+()</A></nobr><br>
+<!-- Method getExitTransition -->
+<i>getExitTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getExitTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method getExitTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getExitTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getExtension -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getExtension_added(char)" class="hiddenlink" target="rightframe"><b>getExtension</b>
+(<code>char</code>)</A></nobr><br>
+<!-- Method getExtensionKeys -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getExtensionKeys_added()" class="hiddenlink" target="rightframe"><b>getExtensionKeys</b>
+()</A></nobr><br>
+<!-- Method getExternalMediaDirs -->
+<i>getExternalMediaDirs</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.Context.html#android.content.Context.getExternalMediaDirs_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.Context
+</A></nobr><br>
+<!-- Method getExternalMediaDirs -->
+&nbsp;&nbsp;<nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.getExternalMediaDirs_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.ContextWrapper
+</A></nobr><br>
+<!-- Method getExternalMediaDirs -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.getExternalMediaDirs_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockContext
+</A></nobr><br>
+<!-- Method getExternalStorageState -->
+<nobr><A HREF="android.os.Environment.html#android.os.Environment.getExternalStorageState_added(java.io.File)" class="hiddenlink" target="rightframe"><b>getExternalStorageState</b>
+(<code>File</code>)</A></nobr><br>
+<!-- Method getFeatureEnabled -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.getFeatureEnabled_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getFeatureEnabled</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getFirstDayOfWeek -->
+<nobr><A HREF="android.widget.DatePicker.html#android.widget.DatePicker.getFirstDayOfWeek_added()" class="hiddenlink" target="rightframe"><b>getFirstDayOfWeek</b>
+()</A></nobr><br>
+<!-- Method getFontFeatureSettings -->
+<i>getFontFeatureSettings</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.getFontFeatureSettings_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+<!-- Method getFontFeatureSettings -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getFontFeatureSettings_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<!-- Method getForegroundTintList -->
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.getForegroundTintList_added()" class="hiddenlink" target="rightframe"><b>getForegroundTintList</b>
+()</A></nobr><br>
+<!-- Method getForegroundTintMode -->
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.getForegroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getForegroundTintMode</b>
+()</A></nobr><br>
+<!-- Method getFrequency -->
+<nobr><A HREF="android.net.wifi.WifiInfo.html#android.net.wifi.WifiInfo.getFrequency_added()" class="hiddenlink" target="rightframe"><b>getFrequency</b>
+()</A></nobr><br>
+<!-- Method getFromDegrees -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.getFromDegrees_added()" class="hiddenlink" target="rightframe"><b>getFromDegrees</b>
+()</A></nobr><br>
+<!-- Method getGradientRadius -->
+<nobr><A HREF="android.graphics.drawable.GradientDrawable.html#android.graphics.drawable.GradientDrawable.getGradientRadius_added()" class="hiddenlink" target="rightframe"><b>getGradientRadius</b>
+()</A></nobr><br>
+<!-- Method getGroupKey -->
+<nobr><A HREF="android.service.notification.StatusBarNotification.html#android.service.notification.StatusBarNotification.getGroupKey_added()" class="hiddenlink" target="rightframe"><b>getGroupKey</b>
+()</A></nobr><br>
+<!-- Method getHideOffset -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getHideOffset_added()" class="hiddenlink" target="rightframe"><b>getHideOffset</b>
+()</A></nobr><br>
+<!-- Method getImageTintList -->
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.getImageTintList_added()" class="hiddenlink" target="rightframe"><b>getImageTintList</b>
+()</A></nobr><br>
+<!-- Method getImageTintMode -->
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.getImageTintMode_added()" class="hiddenlink" target="rightframe"><b>getImageTintMode</b>
+()</A></nobr><br>
+<!-- Method getIndeterminateTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getIndeterminateTintList_added()" class="hiddenlink" target="rightframe"><b>getIndeterminateTintList</b>
+()</A></nobr><br>
+<!-- Method getIndeterminateTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getIndeterminateTintMode_added()" class="hiddenlink" target="rightframe"><b>getIndeterminateTintMode</b>
+()</A></nobr><br>
+<!-- Method getInputBuffer -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputBuffer_added(int)" class="hiddenlink" target="rightframe"><b>getInputBuffer</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getInputFormat -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputFormat_added()" class="hiddenlink" target="rightframe"><b>getInputFormat</b>
+()</A></nobr><br>
+<!-- Method getInputImage -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputImage_added(int)" class="hiddenlink" target="rightframe"><b>getInputImage</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getInputMethodWindowRecommendedHeight -->
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.getInputMethodWindowRecommendedHeight_added()" class="hiddenlink" target="rightframe"><b>getInputMethodWindowRecommendedHeight</b>
+()</A></nobr><br>
+<!-- Method getInstalledCaCerts -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getInstalledCaCerts_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getInstalledCaCerts</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getInstalledProvidersForProfile -->
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.getInstalledProvidersForProfile_added(android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>getInstalledProvidersForProfile</b>
+(<code>UserHandle</code>)</A></nobr><br>
+<!-- Method getIntProperty -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.getIntProperty_added(int)" class="hiddenlink" target="rightframe"><b>getIntProperty</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getIntValue -->
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.getIntValue_added()" class="hiddenlink" target="rightframe"><b>getIntValue</b>
+()</A></nobr><br>
+<!-- Method getLeanbackLaunchIntentForPackage -->
+<i>getLeanbackLaunchIntentForPackage</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getLeanbackLaunchIntentForPackage_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method getLeanbackLaunchIntentForPackage -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getLeanbackLaunchIntentForPackage_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Method getLetterSpacing -->
+<i>getLetterSpacing</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.getLetterSpacing_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+<!-- Method getLetterSpacing -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getLetterSpacing_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<!-- Method getLinkProperties -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getLinkProperties_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>getLinkProperties</b>
+(<code>Network</code>)</A></nobr><br>
+<!-- Method getLongProperty -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.getLongProperty_added(int)" class="hiddenlink" target="rightframe"><b>getLongProperty</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getManufacturerName -->
+<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getManufacturerName_added()" class="hiddenlink" target="rightframe"><b>getManufacturerName</b>
+()</A></nobr><br>
+<!-- Method getMax -->
+<nobr><A HREF="android.text.InputFilter.LengthFilter.html#android.text.InputFilter.LengthFilter.getMax_added()" class="hiddenlink" target="rightframe"><b>getMax</b>
+()</A></nobr><br>
+<!-- Method getMaxDelay -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.getMaxDelay_added()" class="hiddenlink" target="rightframe"><b>getMaxDelay</b>
+()</A></nobr><br>
+<!-- Method getMaxHeight -->
+<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.getMaxHeight_added()" class="hiddenlink" target="rightframe"><b>getMaxHeight</b>
+()</A></nobr><br>
+<!-- Method getMaxTextLength -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getMaxTextLength_added()" class="hiddenlink" target="rightframe"><b>getMaxTextLength</b>
+()</A></nobr><br>
+<!-- Method getMediaController -->
+<i>getMediaController</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.getMediaController_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+<!-- Method getMediaController -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getMediaController_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getMediaSession -->
+<nobr><A HREF="android.media.RemoteControlClient.html#android.media.RemoteControlClient.getMediaSession_added()" class="hiddenlink" target="rightframe"><b>getMediaSession</b>
+()</A></nobr><br>
+<!-- Method getMimeType -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getMimeType_added()" class="hiddenlink" target="rightframe"><b>getMimeType</b>
+()</A></nobr><br>
+<!-- Method getMixedContentMode -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.getMixedContentMode_added()" class="hiddenlink" target="rightframe"><b>getMixedContentMode</b>
+()</A></nobr><br>
+<!-- Method getMode -->
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.getMode_added()" class="hiddenlink" target="rightframe"><b>getMode</b>
+()</A></nobr><br>
+<!-- Method getName -->
+<nobr><A HREF="android.hardware.usb.UsbInterface.html#android.hardware.usb.UsbInterface.getName_added()" class="hiddenlink" target="rightframe"><b>getName</b>
+()</A></nobr><br>
+<!-- Method getNativeHandle -->
+<nobr><A HREF="android.opengl.EGLObjectHandle.html#android.opengl.EGLObjectHandle.getNativeHandle_added()" class="hiddenlink" target="rightframe"><b>getNativeHandle</b>
+()</A></nobr><br>
+<!-- Method getNavigationBarColor -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.getNavigationBarColor_added()" class="hiddenlink" target="rightframe"><b>getNavigationBarColor</b>
+()</A></nobr><br>
+<!-- Method getNestedScrollAxes -->
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.getNestedScrollAxes_added()" class="hiddenlink" target="rightframe"><b>getNestedScrollAxes</b>
+()</A></nobr><br>
+<!-- Method getNetworkCapabilities -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getNetworkCapabilities_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>getNetworkCapabilities</b>
+(<code>Network</code>)</A></nobr><br>
+<!-- Method getNetworkInfo -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getNetworkInfo_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>getNetworkInfo</b>
+(<code>Network</code>)</A></nobr><br>
+<!-- Method getNextAlarmClock -->
+<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.getNextAlarmClock_added()" class="hiddenlink" target="rightframe"><b>getNextAlarmClock</b>
+()</A></nobr><br>
+<!-- Method getNoBackupFilesDir -->
+<i>getNoBackupFilesDir</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.Context.html#android.content.Context.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.Context
+</A></nobr><br>
+<!-- Method getNoBackupFilesDir -->
+&nbsp;&nbsp;<nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.ContextWrapper
+</A></nobr><br>
+<!-- Method getNoBackupFilesDir -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockContext
+</A></nobr><br>
+<!-- Method getOutline -->
+<i>getOutline</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.getOutline_added(android.graphics.Outline)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Outline</code>)</b>&nbsp;in&nbsp;android.graphics.drawable.Drawable
+</A></nobr><br>
+<!-- Method getOutline -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.shapes.Shape.html#android.graphics.drawable.shapes.Shape.getOutline_added(android.graphics.Outline)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Outline</code>)</b>&nbsp;in&nbsp;android.graphics.drawable.shapes.Shape
+</A></nobr><br>
+<!-- Method getOutlineProvider -->
+<nobr><A HREF="android.view.View.html#android.view.View.getOutlineProvider_added()" class="hiddenlink" target="rightframe"><b>getOutlineProvider</b>
+()</A></nobr><br>
+<!-- Method getOutputBuffer -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputBuffer_added(int)" class="hiddenlink" target="rightframe"><b>getOutputBuffer</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getOutputFormat -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputFormat_added(int)" class="hiddenlink" target="rightframe"><b>getOutputFormat</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getOutputImage -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputImage_added(int)" class="hiddenlink" target="rightframe"><b>getOutputImage</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getPackageInstaller -->
+<i>getPackageInstaller</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getPackageInstaller_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method getPackageInstaller -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getPackageInstaller_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Method getPaddingMode -->
+<nobr><A HREF="android.graphics.drawable.LayerDrawable.html#android.graphics.drawable.LayerDrawable.getPaddingMode_added()" class="hiddenlink" target="rightframe"><b>getPaddingMode</b>
+()</A></nobr><br>
+<!-- Method getPathMotion -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getPathMotion_added()" class="hiddenlink" target="rightframe"><b>getPathMotion</b>
+()</A></nobr><br>
+<!-- Method getPermittedAccessibilityServices -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getPermittedAccessibilityServices_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getPermittedAccessibilityServices</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getPermittedInputMethods -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getPermittedInputMethods_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getPermittedInputMethods</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getPivotX -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.getPivotX_added()" class="hiddenlink" target="rightframe"><b>getPivotX</b>
+()</A></nobr><br>
+<!-- Method getPivotY -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.getPivotY_added()" class="hiddenlink" target="rightframe"><b>getPivotY</b>
+()</A></nobr><br>
+<!-- Method getPresentationDeadlineNanos -->
+<nobr><A HREF="android.view.Display.html#android.view.Display.getPresentationDeadlineNanos_added()" class="hiddenlink" target="rightframe"><b>getPresentationDeadlineNanos</b>
+()</A></nobr><br>
+<!-- Method getPreviousName -->
+<nobr><A HREF="android.accounts.AccountManager.html#android.accounts.AccountManager.getPreviousName_added(android.accounts.Account)" class="hiddenlink" target="rightframe"><b>getPreviousName</b>
+(<code>Account</code>)</A></nobr><br>
+<!-- Method getProcessDefaultNetwork -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getProcessDefaultNetwork_added()" class="hiddenlink" target="rightframe"><b>getProcessDefaultNetwork</b>
+()</A></nobr><br>
+<!-- Method getProductName -->
+<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getProductName_added()" class="hiddenlink" target="rightframe"><b>getProductName</b>
+()</A></nobr><br>
+<!-- Method getProfile -->
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.getProfile_added()" class="hiddenlink" target="rightframe"><b>getProfile</b>
+()</A></nobr><br>
+<!-- Method getProgressBackgroundTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressBackgroundTintList_added()" class="hiddenlink" target="rightframe"><b>getProgressBackgroundTintList</b>
+()</A></nobr><br>
+<!-- Method getProgressBackgroundTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressBackgroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getProgressBackgroundTintMode</b>
+()</A></nobr><br>
+<!-- Method getProgressTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressTintList_added()" class="hiddenlink" target="rightframe"><b>getProgressTintList</b>
+()</A></nobr><br>
+<!-- Method getProgressTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressTintMode_added()" class="hiddenlink" target="rightframe"><b>getProgressTintMode</b>
+()</A></nobr><br>
+<!-- Method getPropagation -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getPropagation_added()" class="hiddenlink" target="rightframe"><b>getPropagation</b>
+()</A></nobr><br>
+<!-- Method getReasonPhrase -->
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getReasonPhrase_added()" class="hiddenlink" target="rightframe"><b>getReasonPhrase</b>
+()</A></nobr><br>
+<!-- Method getReenterTransition -->
+<i>getReenterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getReenterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method getReenterTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getReenterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getRemoveOnCancelPolicy -->
+<nobr><A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html#java.util.concurrent.ScheduledThreadPoolExecutor.getRemoveOnCancelPolicy_added()" class="hiddenlink" target="rightframe"><b>getRemoveOnCancelPolicy</b>
+()</A></nobr><br>
+<!-- Method getReportingMode -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.getReportingMode_added()" class="hiddenlink" target="rightframe"><b>getReportingMode</b>
+()</A></nobr><br>
+<!-- Method getResources -->
+<nobr><A HREF="android.content.res.Resources.Theme.html#android.content.res.Resources.Theme.getResources_added()" class="hiddenlink" target="rightframe"><b>getResources</b>
+()</A></nobr><br>
+<!-- Method getResponseHeaders -->
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getResponseHeaders_added()" class="hiddenlink" target="rightframe"><b>getResponseHeaders</b>
+()</A></nobr><br>
+<!-- Method getReturnTransition -->
+<i>getReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method getReturnTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getSampleRate -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getSampleRate_added()" class="hiddenlink" target="rightframe"><b>getSampleRate</b>
+()</A></nobr><br>
+<!-- Method getScreenCaptureDisabled -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getScreenCaptureDisabled_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getScreenCaptureDisabled</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getScript -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getScript_added()" class="hiddenlink" target="rightframe"><b>getScript</b>
+()</A></nobr><br>
+<!-- Method getSecondaryProgressTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getSecondaryProgressTintList_added()" class="hiddenlink" target="rightframe"><b>getSecondaryProgressTintList</b>
+()</A></nobr><br>
+<!-- Method getSecondaryProgressTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getSecondaryProgressTintMode_added()" class="hiddenlink" target="rightframe"><b>getSecondaryProgressTintMode</b>
+()</A></nobr><br>
+<!-- Method getSelectedTrack -->
+<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.getSelectedTrack_added(int)" class="hiddenlink" target="rightframe"><b>getSelectedTrack</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getSelectionMode -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.getSelectionMode_added()" class="hiddenlink" target="rightframe"><b>getSelectionMode</b>
+()</A></nobr><br>
+<!-- Method getSerialNumber -->
+<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getSerialNumber_added()" class="hiddenlink" target="rightframe"><b>getSerialNumber</b>
+()</A></nobr><br>
+<!-- Method getSharedElementEnterTransition -->
+<i>getSharedElementEnterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getSharedElementEnterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method getSharedElementEnterTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementEnterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getSharedElementExitTransition -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementExitTransition_added()" class="hiddenlink" target="rightframe"><b>getSharedElementExitTransition</b>
+()</A></nobr><br>
+<!-- Method getSharedElementReenterTransition -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementReenterTransition_added()" class="hiddenlink" target="rightframe"><b>getSharedElementReenterTransition</b>
+()</A></nobr><br>
+<!-- Method getSharedElementReturnTransition -->
+<i>getSharedElementReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getSharedElementReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method getSharedElementReturnTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getSharedElementsUseOverlay -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementsUseOverlay_added()" class="hiddenlink" target="rightframe"><b>getSharedElementsUseOverlay</b>
+()</A></nobr><br>
+<!-- Method getShowSoftInputOnFocus -->
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getShowSoftInputOnFocus_added()" class="hiddenlink" target="rightframe"><b>getShowSoftInputOnFocus</b>
+()</A></nobr><br>
+<!-- Method getShowText -->
+<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.getShowText_added()" class="hiddenlink" target="rightframe"><b>getShowText</b>
+()</A></nobr><br>
+<!-- Method getSize -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getSize_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getSize</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getSizeF -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getSizeF_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getSizeF</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getSpeakerAngles -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.getSpeakerAngles_added(int, int, int[])" class="hiddenlink" target="rightframe"><b>getSpeakerAngles</b>
+(<code>int, int, int[]</code>)</A></nobr><br>
+<!-- Method getSplitTrack -->
+<i>getSplitTrack</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.getSplitTrack_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.AbsSeekBar
+</A></nobr><br>
+<!-- Method getSplitTrack -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.getSplitTrack_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.Switch
+</A></nobr><br>
+<!-- Method getStableInsetBottom -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetBottom_added()" class="hiddenlink" target="rightframe"><b>getStableInsetBottom</b>
+()</A></nobr><br>
+<!-- Method getStableInsetLeft -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetLeft_added()" class="hiddenlink" target="rightframe"><b>getStableInsetLeft</b>
+()</A></nobr><br>
+<!-- Method getStableInsetRight -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetRight_added()" class="hiddenlink" target="rightframe"><b>getStableInsetRight</b>
+()</A></nobr><br>
+<!-- Method getStableInsetTop -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetTop_added()" class="hiddenlink" target="rightframe"><b>getStableInsetTop</b>
+()</A></nobr><br>
+<!-- Method getStateListAnimator -->
+<nobr><A HREF="android.view.View.html#android.view.View.getStateListAnimator_added()" class="hiddenlink" target="rightframe"><b>getStateListAnimator</b>
+()</A></nobr><br>
+<!-- Method getStatusBarColor -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.getStatusBarColor_added()" class="hiddenlink" target="rightframe"><b>getStatusBarColor</b>
+()</A></nobr><br>
+<!-- Method getStatusCode -->
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getStatusCode_added()" class="hiddenlink" target="rightframe"><b>getStatusCode</b>
+()</A></nobr><br>
+<!-- Method getSupportedRefreshRates -->
+<nobr><A HREF="android.view.Display.html#android.view.Display.getSupportedRefreshRates_added()" class="hiddenlink" target="rightframe"><b>getSupportedRefreshRates</b>
+()</A></nobr><br>
+<!-- Method getSurface -->
+<nobr><A HREF="android.media.MediaRecorder.html#android.media.MediaRecorder.getSurface_added()" class="hiddenlink" target="rightframe"><b>getSurface</b>
+()</A></nobr><br>
+<!-- Method getTargetNames -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getTargetNames_added()" class="hiddenlink" target="rightframe"><b>getTargetNames</b>
+()</A></nobr><br>
+<!-- Method getTargetTypes -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getTargetTypes_added()" class="hiddenlink" target="rightframe"><b>getTargetTypes</b>
+()</A></nobr><br>
+<!-- Method getThumbTintList -->
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.getThumbTintList_added()" class="hiddenlink" target="rightframe"><b>getThumbTintList</b>
+()</A></nobr><br>
+<!-- Method getThumbTintMode -->
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.getThumbTintMode_added()" class="hiddenlink" target="rightframe"><b>getThumbTintMode</b>
+()</A></nobr><br>
+<!-- Method getToDegrees -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.getToDegrees_added()" class="hiddenlink" target="rightframe"><b>getToDegrees</b>
+()</A></nobr><br>
+<!-- Method getTouchscreenBlocksFocus -->
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.getTouchscreenBlocksFocus_added()" class="hiddenlink" target="rightframe"><b>getTouchscreenBlocksFocus</b>
+()</A></nobr><br>
+<!-- Method getTransitionAt -->
+<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.getTransitionAt_added(int)" class="hiddenlink" target="rightframe"><b>getTransitionAt</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getTransitionBackgroundFadeDuration -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.getTransitionBackgroundFadeDuration_added()" class="hiddenlink" target="rightframe"><b>getTransitionBackgroundFadeDuration</b>
+()</A></nobr><br>
+<!-- Method getTransitionCount -->
+<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.getTransitionCount_added()" class="hiddenlink" target="rightframe"><b>getTransitionCount</b>
+()</A></nobr><br>
+<!-- Method getTransitionManager -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.getTransitionManager_added()" class="hiddenlink" target="rightframe"><b>getTransitionManager</b>
+()</A></nobr><br>
+<!-- Method getTransitionName -->
+<nobr><A HREF="android.view.View.html#android.view.View.getTransitionName_added()" class="hiddenlink" target="rightframe"><b>getTransitionName</b>
+()</A></nobr><br>
+<!-- Method getTranslationZ -->
+<nobr><A HREF="android.view.View.html#android.view.View.getTranslationZ_added()" class="hiddenlink" target="rightframe"><b>getTranslationZ</b>
+()</A></nobr><br>
+<!-- Method getTreeDocumentId -->
+<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.getTreeDocumentId_added(android.net.Uri)" class="hiddenlink" target="rightframe"><b>getTreeDocumentId</b>
+(<code>Uri</code>)</A></nobr><br>
+<!-- Method getType -->
+<nobr><A HREF="android.content.res.TypedArray.html#android.content.res.TypedArray.getType_added(int)" class="hiddenlink" target="rightframe"><b>getType</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getTypeLabel -->
+<nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.getTypeLabel_added(android.content.res.Resources, int, java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>getTypeLabel</b>
+(<code>Resources, int, CharSequence</code>)</A></nobr><br>
+<!-- Method getUnicodeLocaleAttributes -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleAttributes_added()" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleAttributes</b>
+()</A></nobr><br>
+<!-- Method getUnicodeLocaleKeys -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleKeys_added()" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleKeys</b>
+()</A></nobr><br>
+<!-- Method getUnicodeLocaleType -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleType_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleType</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getUser -->
+<nobr><A HREF="android.service.notification.StatusBarNotification.html#android.service.notification.StatusBarNotification.getUser_added()" class="hiddenlink" target="rightframe"><b>getUser</b>
+()</A></nobr><br>
+<!-- Method getUserBadgedDrawableForDensity -->
+<i>getUserBadgedDrawableForDensity</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle, Rect, int</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method getUserBadgedDrawableForDensity -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle, Rect, int</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Method getUserBadgedIcon -->
+<i>getUserBadgedIcon</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method getUserBadgedIcon -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Method getUserBadgedLabel -->
+<i>getUserBadgedLabel</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, UserHandle</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method getUserBadgedLabel -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, UserHandle</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Method getUserProfiles -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.getUserProfiles_added()" class="hiddenlink" target="rightframe"><b>getUserProfiles</b>
+()</A></nobr><br>
+<!-- Method getVideoCapabilities -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getVideoCapabilities_added()" class="hiddenlink" target="rightframe"><b>getVideoCapabilities</b>
+()</A></nobr><br>
+<!-- Method getVirtualizationMode -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.getVirtualizationMode_added()" class="hiddenlink" target="rightframe"><b>getVirtualizationMode</b>
+()</A></nobr><br>
+<!-- Method getVoice -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getVoice_added()" class="hiddenlink" target="rightframe"><b>getVoice</b>
+()</A></nobr><br>
+<!-- Method getVoiceName -->
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getVoiceName_added()" class="hiddenlink" target="rightframe"><b>getVoiceName</b>
+()</A></nobr><br>
+<!-- Method getVoices -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getVoices_added()" class="hiddenlink" target="rightframe"><b>getVoices</b>
+()</A></nobr><br>
+<!-- Method getWindow -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getWindow_added()" class="hiddenlink" target="rightframe"><b>getWindow</b>
+()</A></nobr><br>
+<!-- Method getWindowAnimationFrameStats -->
+<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.getWindowAnimationFrameStats_added()" class="hiddenlink" target="rightframe"><b>getWindowAnimationFrameStats</b>
+()</A></nobr><br>
+<!-- Method getWindowContentFrameStats -->
+<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.getWindowContentFrameStats_added(int)" class="hiddenlink" target="rightframe"><b>getWindowContentFrameStats</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getWindows -->
+<i>getWindows</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.accessibilityservice.AccessibilityService.html#android.accessibilityservice.AccessibilityService.getWindows_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.accessibilityservice.AccessibilityService
+</A></nobr><br>
+<!-- Method getWindows -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.getWindows_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.UiAutomation
+</A></nobr><br>
+<!-- Method getZ -->
+<nobr><A HREF="android.view.View.html#android.view.View.getZ_added()" class="hiddenlink" target="rightframe"><b>getZ</b>
+()</A></nobr><br>
+<!-- Class GLES31 -->
+<A HREF="pkg_android.opengl.html#GLES31" class="hiddenlink" target="rightframe"><b>GLES31</b></A><br>
+<!-- Class GLES31Ext -->
+<A HREF="pkg_android.opengl.html#GLES31Ext" class="hiddenlink" target="rightframe"><b>GLES31Ext</b></A><br>
+<!-- Class GLES31Ext.DebugProcKHR -->
+<A HREF="pkg_android.opengl.html#GLES31Ext.DebugProcKHR" class="hiddenlink" target="rightframe"><b><i>GLES31Ext.DebugProcKHR</i></b></A><br>
+<!-- Field GLOBAL_ACTION_POWER_DIALOG -->
+<nobr><A HREF="android.accessibilityservice.AccessibilityService.html#android.accessibilityservice.AccessibilityService.GLOBAL_ACTION_POWER_DIALOG" class="hiddenlink" target="rightframe">GLOBAL_ACTION_POWER_DIALOG</A>
+</nobr><br>
+<!-- Field goIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.goIcon" class="hiddenlink" target="rightframe">goIcon</A>
+</nobr><br>
+<!-- Constructor GridLayout -->
+<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>GridLayout</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor GridView -->
+<nobr><A HREF="android.widget.GridView.html#android.widget.GridView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>GridView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Method hasBackgroundColor -->
+<A NAME="H"></A>
+<br><font size="+2">H</font>&nbsp;
+<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">
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasBackgroundColor_added()" class="hiddenlink" target="rightframe"><b>hasBackgroundColor</b>
+()</A></nobr><br>
+<!-- Method hasCaCertInstalled -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.hasCaCertInstalled_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>hasCaCertInstalled</b>
+(<code>ComponentName, byte[]</code>)</A></nobr><br>
+<!-- Method hasEdgeColor -->
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasEdgeColor_added()" class="hiddenlink" target="rightframe"><b>hasEdgeColor</b>
+()</A></nobr><br>
+<!-- Method hasEdgeType -->
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasEdgeType_added()" class="hiddenlink" target="rightframe"><b>hasEdgeType</b>
+()</A></nobr><br>
+<!-- Method hasFinished -->
+<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.hasFinished_added()" class="hiddenlink" target="rightframe"><b>hasFinished</b>
+()</A></nobr><br>
+<!-- Method hasForegroundColor -->
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasForegroundColor_added()" class="hiddenlink" target="rightframe"><b>hasForegroundColor</b>
+()</A></nobr><br>
+<!-- Method hasNestedScrollingParent -->
+<nobr><A HREF="android.view.View.html#android.view.View.hasNestedScrollingParent_added()" class="hiddenlink" target="rightframe"><b>hasNestedScrollingParent</b>
+()</A></nobr><br>
+<!-- Method hasQueuedPredecessors -->
+<i>hasQueuedPredecessors</i><br>
+&nbsp;&nbsp;<nobr><A HREF="java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html#java.util.concurrent.locks.AbstractQueuedLongSynchronizer.hasQueuedPredecessors_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;java.util.concurrent.locks.AbstractQueuedLongSynchronizer
+</A></nobr><br>
+<!-- Method hasQueuedPredecessors -->
+&nbsp;&nbsp;<nobr><A HREF="java.util.concurrent.locks.AbstractQueuedSynchronizer.html#java.util.concurrent.locks.AbstractQueuedSynchronizer.hasQueuedPredecessors_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;java.util.concurrent.locks.AbstractQueuedSynchronizer
+</A></nobr><br>
+<!-- Method hasStableInsets -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.hasStableInsets_added()" class="hiddenlink" target="rightframe"><b>hasStableInsets</b>
+()</A></nobr><br>
+<!-- Method hasStarted -->
+<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.hasStarted_added()" class="hiddenlink" target="rightframe"><b>hasStarted</b>
+()</A></nobr><br>
+<!-- Method hasUserRestriction -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.hasUserRestriction_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>hasUserRestriction</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method hasWindowColor -->
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasWindowColor_added()" class="hiddenlink" target="rightframe"><b>hasWindowColor</b>
+()</A></nobr><br>
+<!-- Field headerAmPmTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerAmPmTextAppearance" class="hiddenlink" target="rightframe">headerAmPmTextAppearance</A>
+</nobr><br>
+<!-- Field headerDayOfMonthTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerDayOfMonthTextAppearance" class="hiddenlink" target="rightframe">headerDayOfMonthTextAppearance</A>
+</nobr><br>
+<!-- Field headerMonthTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerMonthTextAppearance" class="hiddenlink" target="rightframe">headerMonthTextAppearance</A>
+</nobr><br>
+<!-- Field headerTimeTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerTimeTextAppearance" class="hiddenlink" target="rightframe">headerTimeTextAppearance</A>
+</nobr><br>
+<!-- Field headerYearTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerYearTextAppearance" class="hiddenlink" target="rightframe">headerYearTextAppearance</A>
+</nobr><br>
+<!-- Field headsUpContentView -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.headsUpContentView" class="hiddenlink" target="rightframe">headsUpContentView</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel1 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel1" class="hiddenlink" target="rightframe">HEVCHighTierLevel1</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel2 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel2" class="hiddenlink" target="rightframe">HEVCHighTierLevel2</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel21 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel21" class="hiddenlink" target="rightframe">HEVCHighTierLevel21</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel3 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel3" class="hiddenlink" target="rightframe">HEVCHighTierLevel3</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel31 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel31" class="hiddenlink" target="rightframe">HEVCHighTierLevel31</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel4 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel4" class="hiddenlink" target="rightframe">HEVCHighTierLevel4</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel41 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel41" class="hiddenlink" target="rightframe">HEVCHighTierLevel41</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel5 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel5" class="hiddenlink" target="rightframe">HEVCHighTierLevel5</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel51 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel51" class="hiddenlink" target="rightframe">HEVCHighTierLevel51</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel52 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel52" class="hiddenlink" target="rightframe">HEVCHighTierLevel52</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel6 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel6" class="hiddenlink" target="rightframe">HEVCHighTierLevel6</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel61 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel61" class="hiddenlink" target="rightframe">HEVCHighTierLevel61</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel62 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel62" class="hiddenlink" target="rightframe">HEVCHighTierLevel62</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel1 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel1" class="hiddenlink" target="rightframe">HEVCMainTierLevel1</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel2 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel2" class="hiddenlink" target="rightframe">HEVCMainTierLevel2</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel21 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel21" class="hiddenlink" target="rightframe">HEVCMainTierLevel21</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel3 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel3" class="hiddenlink" target="rightframe">HEVCMainTierLevel3</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel31 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel31" class="hiddenlink" target="rightframe">HEVCMainTierLevel31</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel4 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel4" class="hiddenlink" target="rightframe">HEVCMainTierLevel4</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel41 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel41" class="hiddenlink" target="rightframe">HEVCMainTierLevel41</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel5 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel5" class="hiddenlink" target="rightframe">HEVCMainTierLevel5</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel51 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel51" class="hiddenlink" target="rightframe">HEVCMainTierLevel51</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel52 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel52" class="hiddenlink" target="rightframe">HEVCMainTierLevel52</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel6 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel6" class="hiddenlink" target="rightframe">HEVCMainTierLevel6</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel61 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel61" class="hiddenlink" target="rightframe">HEVCMainTierLevel61</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel62 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel62" class="hiddenlink" target="rightframe">HEVCMainTierLevel62</A>
+</nobr><br>
+<!-- Field HEVCProfileMain -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCProfileMain" class="hiddenlink" target="rightframe">HEVCProfileMain</A>
+</nobr><br>
+<!-- Field HEVCProfileMain10 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCProfileMain10" class="hiddenlink" target="rightframe">HEVCProfileMain10</A>
+</nobr><br>
+<!-- Field hideOnContentScroll -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.hideOnContentScroll" class="hiddenlink" target="rightframe">hideOnContentScroll</A>
+</nobr><br>
+<!-- Field HINT_HOST_DISABLE_EFFECTS -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.HINT_HOST_DISABLE_EFFECTS" class="hiddenlink" target="rightframe">HINT_HOST_DISABLE_EFFECTS</A>
+</nobr><br>
+<!-- Constructor HorizontalScrollView -->
+<nobr><A HREF="android.widget.HorizontalScrollView.html#android.widget.HorizontalScrollView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>HorizontalScrollView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field HOST_VIEW_ID -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeProvider.html#android.view.accessibility.AccessibilityNodeProvider.HOST_VIEW_ID" class="hiddenlink" target="rightframe">HOST_VIEW_ID</A>
+</nobr><br>
+<!-- Method iccCloseLogicalChannel -->
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccCloseLogicalChannel_added(int)" class="hiddenlink" target="rightframe"><b>iccCloseLogicalChannel</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method iccExchangeSimIO -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccExchangeSimIO_added(int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccExchangeSimIO</b>
+(<code>int, int, int, int, int, String</code>)</A></nobr><br>
+<!-- Method iccOpenLogicalChannel -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccOpenLogicalChannel_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>iccOpenLogicalChannel</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Class IccOpenLogicalChannelResponse -->
+<A HREF="pkg_android.telephony.html#IccOpenLogicalChannelResponse" class="hiddenlink" target="rightframe"><b>IccOpenLogicalChannelResponse</b></A><br>
+<!-- Method iccTransmitApduBasicChannel -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccTransmitApduBasicChannel_added(int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccTransmitApduBasicChannel</b>
+(<code>int, int, int, int, int, String</code>)</A></nobr><br>
+<!-- Method iccTransmitApduLogicalChannel -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccTransmitApduLogicalChannel_added(int, int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccTransmitApduLogicalChannel</b>
+(<code>int, int, int, int, int, int, String</code>)</A></nobr><br>
+<!-- Class IllformedLocaleException -->
+<A HREF="pkg_java.util.html#IllformedLocaleException" class="hiddenlink" target="rightframe"><b>IllformedLocaleException</b></A><br>
+<!-- Constructor ImageButton -->
+<nobr><A HREF="android.widget.ImageButton.html#android.widget.ImageButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ImageButton</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor ImageView -->
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ImageView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field IMPORTANCE_GONE -->
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.IMPORTANCE_GONE" class="hiddenlink" target="rightframe">IMPORTANCE_GONE</A>
+</nobr><br>
+<!-- Field IN_DEFAULT_DIRECTORY -->
+<nobr><A HREF="android.provider.ContactsContract.ContactsColumns.html#android.provider.ContactsContract.ContactsColumns.IN_DEFAULT_DIRECTORY" class="hiddenlink" target="rightframe">IN_DEFAULT_DIRECTORY</A>
+</nobr><br>
+<!-- Field indeterminateTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.indeterminateTint" class="hiddenlink" target="rightframe">indeterminateTint</A>
+</nobr><br>
+<!-- Field indeterminateTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.indeterminateTintMode" class="hiddenlink" target="rightframe">indeterminateTintMode</A>
+</nobr><br>
+<!-- Method indexOfKey -->
+<nobr><A HREF="android.util.ArrayMap.html#android.util.ArrayMap.indexOfKey_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>indexOfKey</b>
+(<code>Object</code>)</A></nobr><br>
+<!-- Method inflate -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.inflate_added(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.util.AttributeSet, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>inflate</b>
+(<code>Resources, XmlPullParser, AttributeSet, Theme</code>)</A></nobr><br>
+<!-- Field inset -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.inset" class="hiddenlink" target="rightframe">inset</A>
+</nobr><br>
+<!-- Field INSTALL_LOCATION_AUTO -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.INSTALL_LOCATION_AUTO" class="hiddenlink" target="rightframe">INSTALL_LOCATION_AUTO</A>
+</nobr><br>
+<!-- Field INSTALL_LOCATION_INTERNAL_ONLY -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY" class="hiddenlink" target="rightframe">INSTALL_LOCATION_INTERNAL_ONLY</A>
+</nobr><br>
+<!-- Field INSTALL_LOCATION_PREFER_EXTERNAL -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.INSTALL_LOCATION_PREFER_EXTERNAL" class="hiddenlink" target="rightframe">INSTALL_LOCATION_PREFER_EXTERNAL</A>
+</nobr><br>
+<!-- Method installCaCert -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.installCaCert_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>installCaCert</b>
+(<code>ComponentName, byte[]</code>)</A></nobr><br>
+<!-- Method installKeyPair -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.installKeyPair_added(android.content.ComponentName, java.security.PrivateKey, java.security.cert.Certificate, java.lang.String)" class="hiddenlink" target="rightframe"><b>installKeyPair</b>
+(<code>ComponentName, PrivateKey, Certificate, String</code>)</A></nobr><br>
+<!-- Field installLocation -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.installLocation" class="hiddenlink" target="rightframe">installLocation</A>
+</nobr><br>
+<!-- Class IntArrayEvaluator -->
+<A HREF="pkg_android.animation.html#IntArrayEvaluator" class="hiddenlink" target="rightframe"><b>IntArrayEvaluator</b></A><br>
+<!-- Field INTENT_CATEGORY_NOTIFICATION_PREFERENCES -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.INTENT_CATEGORY_NOTIFICATION_PREFERENCES" class="hiddenlink" target="rightframe">INTENT_CATEGORY_NOTIFICATION_PREFERENCES</A>
+</nobr><br>
+<!-- Field INTERRUPTION_FILTER_ALL -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_ALL" class="hiddenlink" target="rightframe">INTERRUPTION_FILTER_ALL</A>
+</nobr><br>
+<!-- Field INTERRUPTION_FILTER_NONE -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_NONE" class="hiddenlink" target="rightframe">INTERRUPTION_FILTER_NONE</A>
+</nobr><br>
+<!-- Field INTERRUPTION_FILTER_PRIORITY -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_PRIORITY" class="hiddenlink" target="rightframe">INTERRUPTION_FILTER_PRIORITY</A>
+</nobr><br>
+<!-- Method invalidateOutline -->
+<nobr><A HREF="android.view.View.html#android.view.View.invalidateOutline_added()" class="hiddenlink" target="rightframe"><b>invalidateOutline</b>
+()</A></nobr><br>
+<!-- Method invokeBeam -->
+<nobr><A HREF="android.nfc.NfcAdapter.html#android.nfc.NfcAdapter.invokeBeam_added(android.app.Activity)" class="hiddenlink" target="rightframe"><b>invokeBeam</b>
+(<code>Activity</code>)</A></nobr><br>
+<!-- Class IpPrefix -->
+<A HREF="pkg_android.net.html#IpPrefix" class="hiddenlink" target="rightframe"><b>IpPrefix</b></A><br>
+<!-- Method is5GHzBandSupported -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.is5GHzBandSupported_added()" class="hiddenlink" target="rightframe"><b>is5GHzBandSupported</b>
+()</A></nobr><br>
+<!-- Method isAccessibilityFocused -->
+<nobr><A HREF="android.view.View.html#android.view.View.isAccessibilityFocused_added()" class="hiddenlink" target="rightframe"><b>isAccessibilityFocused</b>
+()</A></nobr><br>
+<!-- Method isAffine -->
+<nobr><A HREF="android.graphics.Matrix.html#android.graphics.Matrix.isAffine_added()" class="hiddenlink" target="rightframe"><b>isAffine</b>
+()</A></nobr><br>
+<!-- Method isApplicationHidden -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isApplicationHidden_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>isApplicationHidden</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method isButtonPressed -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.isButtonPressed_added(int)" class="hiddenlink" target="rightframe"><b>isButtonPressed</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method isChildDocument -->
+<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.isChildDocument_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>isChildDocument</b>
+(<code>String, String</code>)</A></nobr><br>
+<!-- Method isConsumed -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.isConsumed_added()" class="hiddenlink" target="rightframe"><b>isConsumed</b>
+()</A></nobr><br>
+<!-- Method isConvex -->
+<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.isConvex_added()" class="hiddenlink" target="rightframe"><b>isConvex</b>
+()</A></nobr><br>
+<!-- Method isDefaultNetworkActive -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.isDefaultNetworkActive_added()" class="hiddenlink" target="rightframe"><b>isDefaultNetworkActive</b>
+()</A></nobr><br>
+<!-- Method isDeviceToApRttSupported -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isDeviceToApRttSupported_added()" class="hiddenlink" target="rightframe"><b>isDeviceToApRttSupported</b>
+()</A></nobr><br>
+<!-- Method isElegantTextHeight -->
+<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.isElegantTextHeight_added()" class="hiddenlink" target="rightframe"><b>isElegantTextHeight</b>
+()</A></nobr><br>
+<!-- Method isEnhancedPowerReportingSupported -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isEnhancedPowerReportingSupported_added()" class="hiddenlink" target="rightframe"><b>isEnhancedPowerReportingSupported</b>
+()</A></nobr><br>
+<!-- Method isEnterpriseContactId -->
+<nobr><A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.isEnterpriseContactId_added(long)" class="hiddenlink" target="rightframe"><b>isEnterpriseContactId</b>
+(<code>long</code>)</A></nobr><br>
+<!-- Method isExternalStorageEmulated -->
+<nobr><A HREF="android.os.Environment.html#android.os.Environment.isExternalStorageEmulated_added(java.io.File)" class="hiddenlink" target="rightframe"><b>isExternalStorageEmulated</b>
+(<code>File</code>)</A></nobr><br>
+<!-- Method isExternalStorageRemovable -->
+<nobr><A HREF="android.os.Environment.html#android.os.Environment.isExternalStorageRemovable_added(java.io.File)" class="hiddenlink" target="rightframe"><b>isExternalStorageRemovable</b>
+(<code>File</code>)</A></nobr><br>
+<!-- Method isFeatureRequired -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.isFeatureRequired_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>isFeatureRequired</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method isFormatSupported -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.isFormatSupported_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>isFormatSupported</b>
+(<code>MediaFormat</code>)</A></nobr><br>
+<!-- Field isGame -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.isGame" class="hiddenlink" target="rightframe">isGame</A>
+</nobr><br>
+<!-- Method isHideOnContentScrollEnabled -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.isHideOnContentScrollEnabled_added()" class="hiddenlink" target="rightframe"><b>isHideOnContentScrollEnabled</b>
+()</A></nobr><br>
+<!-- Method isImportantForAccessibility -->
+<nobr><A HREF="android.view.View.html#android.view.View.isImportantForAccessibility_added()" class="hiddenlink" target="rightframe"><b>isImportantForAccessibility</b>
+()</A></nobr><br>
+<!-- Method isInLockTaskMode -->
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.isInLockTaskMode_added()" class="hiddenlink" target="rightframe"><b>isInLockTaskMode</b>
+()</A></nobr><br>
+<!-- Method isLocalEmergencyNumber -->
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.isLocalEmergencyNumber_added(android.content.Context, java.lang.String)" class="hiddenlink" target="rightframe"><b>isLocalEmergencyNumber</b>
+(<code>Context, String</code>)</A></nobr><br>
+<!-- Method isLockTaskPermitted -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isLockTaskPermitted_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>isLockTaskPermitted</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method isMasterVolumeMuted -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isMasterVolumeMuted_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>isMasterVolumeMuted</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method isMultipleAdvertisementSupported -->
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isMultipleAdvertisementSupported_added()" class="hiddenlink" target="rightframe"><b>isMultipleAdvertisementSupported</b>
+()</A></nobr><br>
+<!-- Method isNestedScrollingEnabled -->
+<nobr><A HREF="android.view.View.html#android.view.View.isNestedScrollingEnabled_added()" class="hiddenlink" target="rightframe"><b>isNestedScrollingEnabled</b>
+()</A></nobr><br>
+<!-- Method isOffloadedFilteringSupported -->
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isOffloadedFilteringSupported_added()" class="hiddenlink" target="rightframe"><b>isOffloadedFilteringSupported</b>
+()</A></nobr><br>
+<!-- Method isOffloadedScanBatchingSupported -->
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isOffloadedScanBatchingSupported_added()" class="hiddenlink" target="rightframe"><b>isOffloadedScanBatchingSupported</b>
+()</A></nobr><br>
+<!-- Method isOpaque -->
+<nobr><A HREF="android.content.res.ColorStateList.html#android.content.res.ColorStateList.isOpaque_added()" class="hiddenlink" target="rightframe"><b>isOpaque</b>
+()</A></nobr><br>
+<!-- Method isP2pSupported -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isP2pSupported_added()" class="hiddenlink" target="rightframe"><b>isP2pSupported</b>
+()</A></nobr><br>
+<!-- Method isPivotXRelative -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.isPivotXRelative_added()" class="hiddenlink" target="rightframe"><b>isPivotXRelative</b>
+()</A></nobr><br>
+<!-- Method isPivotYRelative -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.isPivotYRelative_added()" class="hiddenlink" target="rightframe"><b>isPivotYRelative</b>
+()</A></nobr><br>
+<!-- Method isPowerSaveMode -->
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.isPowerSaveMode_added()" class="hiddenlink" target="rightframe"><b>isPowerSaveMode</b>
+()</A></nobr><br>
+<!-- Method isPreferredNetworkOffloadSupported -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isPreferredNetworkOffloadSupported_added()" class="hiddenlink" target="rightframe"><b>isPreferredNetworkOffloadSupported</b>
+()</A></nobr><br>
+<!-- Method isProfileOwnerApp -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isProfileOwnerApp_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>isProfileOwnerApp</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method isSelected -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.isSelected_added()" class="hiddenlink" target="rightframe"><b>isSelected</b>
+()</A></nobr><br>
+<!-- Method isSmsCapable -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.isSmsCapable_added()" class="hiddenlink" target="rightframe"><b>isSmsCapable</b>
+()</A></nobr><br>
+<!-- Method isTdlsSupported -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isTdlsSupported_added()" class="hiddenlink" target="rightframe"><b>isTdlsSupported</b>
+()</A></nobr><br>
+<!-- Method isTransitionGroup -->
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.isTransitionGroup_added()" class="hiddenlink" target="rightframe"><b>isTransitionGroup</b>
+()</A></nobr><br>
+<!-- Method isUninstallBlocked -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isUninstallBlocked_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>isUninstallBlocked</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method isUserAddedCertificate -->
+<nobr><A HREF="android.net.http.X509TrustManagerExtensions.html#android.net.http.X509TrustManagerExtensions.isUserAddedCertificate_added(java.security.cert.X509Certificate)" class="hiddenlink" target="rightframe"><b>isUserAddedCertificate</b>
+(<code>X509Certificate</code>)</A></nobr><br>
+<!-- Method isVoiceMailNumber -->
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.isVoiceMailNumber_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>isVoiceMailNumber</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method isVolumeFixed -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.isVolumeFixed_added()" class="hiddenlink" target="rightframe"><b>isVolumeFixed</b>
+()</A></nobr><br>
+<!-- Method isWakeLockLevelSupported -->
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.isWakeLockLevelSupported_added(int)" class="hiddenlink" target="rightframe"><b>isWakeLockLevelSupported</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method isWakeUpSensor -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.isWakeUpSensor_added()" class="hiddenlink" target="rightframe"><b>isWakeUpSensor</b>
+()</A></nobr><br>
+<!-- Field JOB_SCHEDULER_SERVICE -->
+<A NAME="J"></A>
+<br><font size="+2">J</font>&nbsp;
+<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="#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.content.Context.html#android.content.Context.JOB_SCHEDULER_SERVICE" class="hiddenlink" target="rightframe">JOB_SCHEDULER_SERVICE</A>
+</nobr><br>
+<!-- Field KEY_AAC_DRC_ATTENUATION_FACTOR -->
+<A NAME="K"></A>
+<br><font size="+2">K</font>&nbsp;
+<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.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_ATTENUATION_FACTOR" class="hiddenlink" target="rightframe">KEY_AAC_DRC_ATTENUATION_FACTOR</A>
+</nobr><br>
+<!-- Field KEY_AAC_DRC_BOOST_FACTOR -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_BOOST_FACTOR" class="hiddenlink" target="rightframe">KEY_AAC_DRC_BOOST_FACTOR</A>
+</nobr><br>
+<!-- Field KEY_AAC_DRC_HEAVY_COMPRESSION -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_HEAVY_COMPRESSION" class="hiddenlink" target="rightframe">KEY_AAC_DRC_HEAVY_COMPRESSION</A>
+</nobr><br>
+<!-- Field KEY_AAC_DRC_TARGET_REFERENCE_LEVEL -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_TARGET_REFERENCE_LEVEL" class="hiddenlink" target="rightframe">KEY_AAC_DRC_TARGET_REFERENCE_LEVEL</A>
+</nobr><br>
+<!-- Field KEY_AAC_ENCODED_TARGET_LEVEL -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_ENCODED_TARGET_LEVEL" class="hiddenlink" target="rightframe">KEY_AAC_ENCODED_TARGET_LEVEL</A>
+</nobr><br>
+<!-- Field KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT" class="hiddenlink" target="rightframe">KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT</A>
+</nobr><br>
+<!-- Field KEY_AAC_SBR_MODE -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_SBR_MODE" class="hiddenlink" target="rightframe">KEY_AAC_SBR_MODE</A>
+</nobr><br>
+<!-- Field KEY_AUDIO_SESSION_ID -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AUDIO_SESSION_ID" class="hiddenlink" target="rightframe">KEY_AUDIO_SESSION_ID</A>
+</nobr><br>
+<!-- Field KEY_BITRATE_MODE -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_BITRATE_MODE" class="hiddenlink" target="rightframe">KEY_BITRATE_MODE</A>
+</nobr><br>
+<!-- Field KEY_CAPTURE_RATE -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_CAPTURE_RATE" class="hiddenlink" target="rightframe">KEY_CAPTURE_RATE</A>
+</nobr><br>
+<!-- Field KEY_COMPLEXITY -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_COMPLEXITY" class="hiddenlink" target="rightframe">KEY_COMPLEXITY</A>
+</nobr><br>
+<!-- Field KEY_FEATURE_NETWORK_RETRIES_COUNT -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_RETRIES_COUNT" class="hiddenlink" target="rightframe">KEY_FEATURE_NETWORK_RETRIES_COUNT</A>
+</nobr><br>
+<!-- Field KEY_FEATURE_NETWORK_TIMEOUT_MS -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_TIMEOUT_MS" class="hiddenlink" target="rightframe">KEY_FEATURE_NETWORK_TIMEOUT_MS</A>
+</nobr><br>
+<!-- Field KEY_FEATURE_NOT_INSTALLED -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NOT_INSTALLED" class="hiddenlink" target="rightframe">KEY_FEATURE_NOT_INSTALLED</A>
+</nobr><br>
+<!-- Field KEY_PARAM_SESSION_ID -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_PARAM_SESSION_ID" class="hiddenlink" target="rightframe">KEY_PARAM_SESSION_ID</A>
+</nobr><br>
+<!-- Field KEY_PROFILE -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_PROFILE" class="hiddenlink" target="rightframe">KEY_PROFILE</A>
+</nobr><br>
+<!-- Field KEY_TEMPORAL_LAYERING -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_TEMPORAL_LAYERING" class="hiddenlink" target="rightframe">KEY_TEMPORAL_LAYERING</A>
+</nobr><br>
+<!-- Constructor KeyboardView -->
+<nobr><A HREF="android.inputmethodservice.KeyboardView.html#android.inputmethodservice.KeyboardView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>KeyboardView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field KEYCODE_11 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_11" class="hiddenlink" target="rightframe">KEYCODE_11</A>
+</nobr><br>
+<!-- Field KEYCODE_12 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_12" class="hiddenlink" target="rightframe">KEYCODE_12</A>
+</nobr><br>
+<!-- Field KEYCODE_HELP -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_HELP" class="hiddenlink" target="rightframe">KEYCODE_HELP</A>
+</nobr><br>
+<!-- Field KEYCODE_LAST_CHANNEL -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_LAST_CHANNEL" class="hiddenlink" target="rightframe">KEYCODE_LAST_CHANNEL</A>
+</nobr><br>
+<!-- Field KEYCODE_MEDIA_TOP_MENU -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_MEDIA_TOP_MENU" class="hiddenlink" target="rightframe">KEYCODE_MEDIA_TOP_MENU</A>
+</nobr><br>
+<!-- Field KEYCODE_PAIRING -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_PAIRING" class="hiddenlink" target="rightframe">KEYCODE_PAIRING</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_ANTENNA_CABLE -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_ANTENNA_CABLE" class="hiddenlink" target="rightframe">KEYCODE_TV_ANTENNA_CABLE</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_AUDIO_DESCRIPTION -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION" class="hiddenlink" target="rightframe">KEYCODE_TV_AUDIO_DESCRIPTION</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN" class="hiddenlink" target="rightframe">KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP" class="hiddenlink" target="rightframe">KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_CONTENTS_MENU -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_CONTENTS_MENU" class="hiddenlink" target="rightframe">KEYCODE_TV_CONTENTS_MENU</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_DATA_SERVICE -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_DATA_SERVICE" class="hiddenlink" target="rightframe">KEYCODE_TV_DATA_SERVICE</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_COMPONENT_1 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPONENT_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPONENT_1</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_COMPONENT_2 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPONENT_2" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPONENT_2</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_COMPOSITE_1 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPOSITE_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPOSITE_1</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_COMPOSITE_2 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPOSITE_2" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPOSITE_2</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_HDMI_1 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_1</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_HDMI_2 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_2" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_2</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_HDMI_3 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_3" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_3</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_HDMI_4 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_4" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_4</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_VGA_1 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_VGA_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_VGA_1</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_MEDIA_CONTEXT_MENU -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_MEDIA_CONTEXT_MENU" class="hiddenlink" target="rightframe">KEYCODE_TV_MEDIA_CONTEXT_MENU</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_NETWORK -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_NETWORK" class="hiddenlink" target="rightframe">KEYCODE_TV_NETWORK</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_NUMBER_ENTRY -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_NUMBER_ENTRY" class="hiddenlink" target="rightframe">KEYCODE_TV_NUMBER_ENTRY</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_RADIO_SERVICE -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_RADIO_SERVICE" class="hiddenlink" target="rightframe">KEYCODE_TV_RADIO_SERVICE</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_SATELLITE -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_SATELLITE_BS -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE_BS" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE_BS</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_SATELLITE_CS -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE_CS" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE_CS</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_SATELLITE_SERVICE -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE_SERVICE" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE_SERVICE</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_TELETEXT -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TELETEXT" class="hiddenlink" target="rightframe">KEYCODE_TV_TELETEXT</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_TERRESTRIAL_ANALOG -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TERRESTRIAL_ANALOG" class="hiddenlink" target="rightframe">KEYCODE_TV_TERRESTRIAL_ANALOG</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_TERRESTRIAL_DIGITAL -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TERRESTRIAL_DIGITAL" class="hiddenlink" target="rightframe">KEYCODE_TV_TERRESTRIAL_DIGITAL</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_TIMER_PROGRAMMING -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TIMER_PROGRAMMING" class="hiddenlink" target="rightframe">KEYCODE_TV_TIMER_PROGRAMMING</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_ZOOM_MODE -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_ZOOM_MODE" class="hiddenlink" target="rightframe">KEYCODE_TV_ZOOM_MODE</A>
+</nobr><br>
+<!-- Field KEYCODE_VOICE_ASSIST -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_VOICE_ASSIST" class="hiddenlink" target="rightframe">KEYCODE_VOICE_ASSIST</A>
+</nobr><br>
+<!-- Field KEYGUARD_DISABLE_FINGERPRINT -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_FINGERPRINT" class="hiddenlink" target="rightframe">KEYGUARD_DISABLE_FINGERPRINT</A>
+</nobr><br>
+<!-- Field KEYGUARD_DISABLE_SECURE_NOTIFICATIONS -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_SECURE_NOTIFICATIONS" class="hiddenlink" target="rightframe">KEYGUARD_DISABLE_SECURE_NOTIFICATIONS</A>
+</nobr><br>
+<!-- Field KEYGUARD_DISABLE_TRUST_AGENTS -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_TRUST_AGENTS" class="hiddenlink" target="rightframe">KEYGUARD_DISABLE_TRUST_AGENTS</A>
+</nobr><br>
+<!-- Field KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS" class="hiddenlink" target="rightframe">KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS</A>
+</nobr><br>
+<!-- Field L -->
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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">
+<nobr><A HREF="android.os.Build.VERSION_CODES.html#android.os.Build.VERSION_CODES.L" class="hiddenlink" target="rightframe">L</A>
+</nobr><br>
+<!-- Field LAUNCHER_APPS_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.LAUNCHER_APPS_SERVICE" class="hiddenlink" target="rightframe">LAUNCHER_APPS_SERVICE</A>
+</nobr><br>
+<!-- Class LauncherActivityInfo -->
+<A HREF="pkg_android.content.pm.html#LauncherActivityInfo" class="hiddenlink" target="rightframe"><b>LauncherActivityInfo</b></A><br>
+<!-- Class LauncherApps -->
+<A HREF="pkg_android.content.pm.html#LauncherApps" class="hiddenlink" target="rightframe"><b>LauncherApps</b></A><br>
+<!-- Class LauncherApps.Callback -->
+<A HREF="pkg_android.content.pm.html#LauncherApps.Callback" class="hiddenlink" target="rightframe"><b>LauncherApps.Callback</b></A><br>
+<!-- Field launchTaskBehindSourceAnimation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.launchTaskBehindSourceAnimation" class="hiddenlink" target="rightframe">launchTaskBehindSourceAnimation</A>
+</nobr><br>
+<!-- Field launchTaskBehindTargetAnimation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.launchTaskBehindTargetAnimation" class="hiddenlink" target="rightframe">launchTaskBehindTargetAnimation</A>
+</nobr><br>
+<!-- Field layout_columnWeight -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.layout_columnWeight" class="hiddenlink" target="rightframe">layout_columnWeight</A>
+</nobr><br>
+<!-- Field layout_rowWeight -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.layout_rowWeight" class="hiddenlink" target="rightframe">layout_rowWeight</A>
+</nobr><br>
+<!-- Field letterSpacing -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.letterSpacing" class="hiddenlink" target="rightframe">letterSpacing</A>
+</nobr><br>
+<!-- Field linear_out_slow_in -->
+<nobr><A HREF="android.R.interpolator.html#android.R.interpolator.linear_out_slow_in" class="hiddenlink" target="rightframe">linear_out_slow_in</A>
+</nobr><br>
+<!-- Constructor LinearLayout -->
+<nobr><A HREF="android.widget.LinearLayout.html#android.widget.LinearLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>LinearLayout</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class LinkAddress -->
+<A HREF="pkg_android.net.html#LinkAddress" class="hiddenlink" target="rightframe"><b>LinkAddress</b></A><br>
+<!-- Class LinkedTransferQueue -->
+<A HREF="pkg_java.util.concurrent.html#LinkedTransferQueue" class="hiddenlink" target="rightframe"><b>LinkedTransferQueue</b></A><br>
+<!-- Class LinkProperties -->
+<A HREF="pkg_android.net.html#LinkProperties" class="hiddenlink" target="rightframe"><b>LinkProperties</b></A><br>
+<!-- Constructor ListPreference -->
+<i>ListPreference</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.preference.ListPreference.html#android.preference.ListPreference.ctor_added(android.content.Context, android.util.AttributeSet, int)" class="hiddenlink" target="rightframe"><b>ListPreference</b>
+(<code>Context, AttributeSet, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor ListPreference -->
+&nbsp;&nbsp;<nobr><A HREF="android.preference.ListPreference.html#android.preference.ListPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ListPreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor ListView -->
+<nobr><A HREF="android.widget.ListView.html#android.widget.ListView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ListView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Method loadIcon -->
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadIcon_added(android.content.Context, int)" class="hiddenlink" target="rightframe"><b>loadIcon</b>
+(<code>Context, int</code>)</A></nobr><br>
+<!-- Method loadLabel -->
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadLabel_added(android.content.pm.PackageManager)" class="hiddenlink" target="rightframe"><b>loadLabel</b>
+(<code>PackageManager</code>)</A></nobr><br>
+<!-- Method loadPreviewImage -->
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadPreviewImage_added(android.content.Context, int)" class="hiddenlink" target="rightframe"><b>loadPreviewImage</b>
+(<code>Context, int</code>)</A></nobr><br>
+<!-- Method loadStateListAnimator -->
+<nobr><A HREF="android.animation.AnimatorInflater.html#android.animation.AnimatorInflater.loadStateListAnimator_added(android.content.Context, int)" class="hiddenlink" target="rightframe"><b>loadStateListAnimator</b>
+(<code>Context, int</code>)</A></nobr><br>
+<!-- Class Locale.Builder -->
+<A HREF="pkg_java.util.html#Locale.Builder" class="hiddenlink" target="rightframe"><b>Locale.Builder</b></A><br>
+<!-- Field LOCCRC -->
+<i>LOCCRC</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field LOCCRC -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field LOCCRC -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field LOCCRC -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field LOCEXT -->
+<i>LOCEXT</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field LOCEXT -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field LOCEXT -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field LOCEXT -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field LOCFLG -->
+<i>LOCFLG</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field LOCFLG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field LOCFLG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field LOCFLG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field LOCHDR -->
+<i>LOCHDR</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field LOCHDR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field LOCHDR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field LOCHDR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field LOCHOW -->
+<i>LOCHOW</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field LOCHOW -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field LOCHOW -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field LOCHOW -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field LOCLEN -->
+<i>LOCLEN</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field LOCLEN -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field LOCLEN -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field LOCLEN -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field LOCNAM -->
+<i>LOCNAM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field LOCNAM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field LOCNAM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field LOCNAM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field LOCSIG -->
+<i>LOCSIG</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field LOCSIG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field LOCSIG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field LOCSIG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field LOCSIZ -->
+<i>LOCSIZ</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field LOCSIZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field LOCSIZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field LOCSIZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field LOCTIM -->
+<i>LOCTIM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field LOCTIM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field LOCTIM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field LOCTIM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field LOCVER -->
+<i>LOCVER</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCVER" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field LOCVER -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCVER" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field LOCVER -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCVER" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field LOCVER -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCVER" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field LOLLIPOP -->
+<nobr><A HREF="android.os.Build.VERSION_CODES.html#android.os.Build.VERSION_CODES.LOLLIPOP" class="hiddenlink" target="rightframe">LOLLIPOP</A>
+</nobr><br>
+<!-- Method makeSceneTransitionAnimation -->
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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">
+<i>makeSceneTransitionAnimation</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActivityOptions.html#android.app.ActivityOptions.makeSceneTransitionAnimation_added(android.app.Activity, android.util.Pair<android.view.View, java.lang.String>...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Activity, Pair&lt;View, String&gt;</code>)</b>&nbsp;in&nbsp;android.app.ActivityOptions
+</A></nobr><br>
+<!-- Method makeSceneTransitionAnimation -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActivityOptions.html#android.app.ActivityOptions.makeSceneTransitionAnimation_added(android.app.Activity, android.view.View, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Activity, View, String</code>)</b>&nbsp;in&nbsp;android.app.ActivityOptions
+</A></nobr><br>
+<!-- Method makeTaskLaunchBehind -->
+<nobr><A HREF="android.app.ActivityOptions.html#android.app.ActivityOptions.makeTaskLaunchBehind_added()" class="hiddenlink" target="rightframe"><b>makeTaskLaunchBehind</b>
+()</A></nobr><br>
+<!-- Field mask -->
+<nobr><A HREF="android.R.id.html#android.R.id.mask" class="hiddenlink" target="rightframe">mask</A>
+</nobr><br>
+<!-- Field MATCH_ID -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.MATCH_ID" class="hiddenlink" target="rightframe">MATCH_ID</A>
+</nobr><br>
+<!-- Field MATCH_INSTANCE -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.MATCH_INSTANCE" class="hiddenlink" target="rightframe">MATCH_INSTANCE</A>
+</nobr><br>
+<!-- Field MATCH_ITEM_ID -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.MATCH_ITEM_ID" class="hiddenlink" target="rightframe">MATCH_ITEM_ID</A>
+</nobr><br>
+<!-- Field MATCH_NAME -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.MATCH_NAME" class="hiddenlink" target="rightframe">MATCH_NAME</A>
+</nobr><br>
+<!-- Field matchOrder -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.matchOrder" class="hiddenlink" target="rightframe">matchOrder</A>
+</nobr><br>
+<!-- Field maximumAngle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.maximumAngle" class="hiddenlink" target="rightframe">maximumAngle</A>
+</nobr><br>
+<!-- Field maxRecents -->
+<i>maxRecents</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.maxRecents" class="hiddenlink" target="rightframe">android.R.attr</A>
+</nobr><br>
+<!-- Field maxRecents -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.maxRecents" class="hiddenlink" target="rightframe">android.content.pm.ActivityInfo</A>
+</nobr><br>
+<!-- Field MEDIA_PROJECTION_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.MEDIA_PROJECTION_SERVICE" class="hiddenlink" target="rightframe">MEDIA_PROJECTION_SERVICE</A>
+</nobr><br>
+<!-- Field MEDIA_SESSION_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.MEDIA_SESSION_SERVICE" class="hiddenlink" target="rightframe">MEDIA_SESSION_SERVICE</A>
+</nobr><br>
+<!-- Field MEDIA_TRACK_TYPE_SUBTITLE -->
+<nobr><A HREF="android.media.MediaPlayer.TrackInfo.html#android.media.MediaPlayer.TrackInfo.MEDIA_TRACK_TYPE_SUBTITLE" class="hiddenlink" target="rightframe">MEDIA_TRACK_TYPE_SUBTITLE</A>
+</nobr><br>
+<!-- Class MediaCodec.Callback -->
+<A HREF="pkg_android.media.html#MediaCodec.Callback" class="hiddenlink" target="rightframe"><b>MediaCodec.Callback</b></A><br>
+<!-- Class MediaCodec.CodecException -->
+<A HREF="pkg_android.media.html#MediaCodec.CodecException" class="hiddenlink" target="rightframe"><b>MediaCodec.CodecException</b></A><br>
+<!-- Class MediaCodecInfo.AudioCapabilities -->
+<A HREF="pkg_android.media.html#MediaCodecInfo.AudioCapabilities" class="hiddenlink" target="rightframe"><b>MediaCodecInfo.AudioCapabilities</b></A><br>
+<!-- Class MediaCodecInfo.EncoderCapabilities -->
+<A HREF="pkg_android.media.html#MediaCodecInfo.EncoderCapabilities" class="hiddenlink" target="rightframe"><b>MediaCodecInfo.EncoderCapabilities</b></A><br>
+<!-- Class MediaCodecInfo.VideoCapabilities -->
+<A HREF="pkg_android.media.html#MediaCodecInfo.VideoCapabilities" class="hiddenlink" target="rightframe"><b>MediaCodecInfo.VideoCapabilities</b></A><br>
+<!-- Constructor MediaCodecList -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.ctor_added(int)" class="hiddenlink" target="rightframe"><b>MediaCodecList</b>
+(<code>int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class MediaDescription -->
+<A HREF="pkg_android.media.html#MediaDescription" class="hiddenlink" target="rightframe"><b>MediaDescription</b></A><br>
+<!-- Class MediaDescription.Builder -->
+<A HREF="pkg_android.media.html#MediaDescription.Builder" class="hiddenlink" target="rightframe"><b>MediaDescription.Builder</b></A><br>
+<!-- Class MediaDrm.MediaDrmStateException -->
+<A HREF="pkg_android.media.html#MediaDrm.MediaDrmStateException" class="hiddenlink" target="rightframe"><b>MediaDrm.MediaDrmStateException</b></A><br>
+<!-- Class MediaMetadata -->
+<A HREF="pkg_android.media.html#MediaMetadata" class="hiddenlink" target="rightframe"><b>MediaMetadata</b></A><br>
+<!-- Class MediaMetadata.Builder -->
+<A HREF="pkg_android.media.html#MediaMetadata.Builder" class="hiddenlink" target="rightframe"><b>MediaMetadata.Builder</b></A><br>
+<!-- Constructor MediaRouteButton -->
+<nobr><A HREF="android.app.MediaRouteButton.html#android.app.MediaRouteButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>MediaRouteButton</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class MediaStore.Audio.Radio -->
+<A HREF="pkg_android.provider.html#MediaStore.Audio.Radio" class="hiddenlink" target="rightframe"><b>MediaStore.Audio.Radio</b></A><br>
+<!-- Field MESSAGE_BOX_FAILED -->
+<nobr><A HREF="android.provider.Telephony.BaseMmsColumns.html#android.provider.Telephony.BaseMmsColumns.MESSAGE_BOX_FAILED" class="hiddenlink" target="rightframe">MESSAGE_BOX_FAILED</A>
+</nobr><br>
+<!-- Field MIME_TYPE_PROVISIONING_NFC -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.MIME_TYPE_PROVISIONING_NFC" class="hiddenlink" target="rightframe">MIME_TYPE_PROVISIONING_NFC</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_AAC -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AAC" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AAC</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_AC3 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AC3" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AC3</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_AMR_NB -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AMR_NB" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AMR_NB</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_AMR_WB -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AMR_WB" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AMR_WB</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_FLAC -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_FLAC" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_FLAC</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_G711_ALAW -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_G711_ALAW" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_G711_ALAW</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_G711_MLAW -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_G711_MLAW" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_G711_MLAW</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_MPEG -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_MPEG" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_MPEG</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_MSGSM -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_MSGSM" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_MSGSM</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_OPUS -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_OPUS" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_OPUS</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_QCELP -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_QCELP" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_QCELP</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_RAW -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_RAW" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_RAW</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_VORBIS -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_VORBIS" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_VORBIS</A>
+</nobr><br>
+<!-- Field MIMETYPE_TEXT_CEA_608 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_TEXT_CEA_608" class="hiddenlink" target="rightframe">MIMETYPE_TEXT_CEA_608</A>
+</nobr><br>
+<!-- Field MIMETYPE_TEXT_VTT -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_TEXT_VTT" class="hiddenlink" target="rightframe">MIMETYPE_TEXT_VTT</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_AVC -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_AVC" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_AVC</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_H263 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_H263" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_H263</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_HEVC -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_HEVC" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_HEVC</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_MPEG2 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_MPEG2" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_MPEG2</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_MPEG4 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_MPEG4" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_MPEG4</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_RAW -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_RAW" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_RAW</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_VP8 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_VP8" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_VP8</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_VP9 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_VP9" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_VP9</A>
+</nobr><br>
+<!-- Field minimumHorizontalAngle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.minimumHorizontalAngle" class="hiddenlink" target="rightframe">minimumHorizontalAngle</A>
+</nobr><br>
+<!-- Field minimumVerticalAngle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.minimumVerticalAngle" class="hiddenlink" target="rightframe">minimumVerticalAngle</A>
+</nobr><br>
+<!-- Field MIXED_CONTENT_ALWAYS_ALLOW -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.MIXED_CONTENT_ALWAYS_ALLOW" class="hiddenlink" target="rightframe">MIXED_CONTENT_ALWAYS_ALLOW</A>
+</nobr><br>
+<!-- Field MIXED_CONTENT_COMPATIBILITY_MODE -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.MIXED_CONTENT_COMPATIBILITY_MODE" class="hiddenlink" target="rightframe">MIXED_CONTENT_COMPATIBILITY_MODE</A>
+</nobr><br>
+<!-- Field MIXED_CONTENT_NEVER_ALLOW -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.MIXED_CONTENT_NEVER_ALLOW" class="hiddenlink" target="rightframe">MIXED_CONTENT_NEVER_ALLOW</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_ALIAS_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALIAS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_ALIAS_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_ALIAS_MAX_CHARS -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALIAS_MAX_CHARS" class="hiddenlink" target="rightframe">MMS_CONFIG_ALIAS_MAX_CHARS</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_ALIAS_MIN_CHARS -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALIAS_MIN_CHARS" class="hiddenlink" target="rightframe">MMS_CONFIG_ALIAS_MIN_CHARS</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_ALLOW_ATTACH_AUDIO -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALLOW_ATTACH_AUDIO" class="hiddenlink" target="rightframe">MMS_CONFIG_ALLOW_ATTACH_AUDIO</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_APPEND_TRANSACTION_ID -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_APPEND_TRANSACTION_ID" class="hiddenlink" target="rightframe">MMS_CONFIG_APPEND_TRANSACTION_ID</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_EMAIL_GATEWAY_NUMBER -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_EMAIL_GATEWAY_NUMBER" class="hiddenlink" target="rightframe">MMS_CONFIG_EMAIL_GATEWAY_NUMBER</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_GROUP_MMS_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_GROUP_MMS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_GROUP_MMS_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_HTTP_PARAMS -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_HTTP_PARAMS" class="hiddenlink" target="rightframe">MMS_CONFIG_HTTP_PARAMS</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_HTTP_SOCKET_TIMEOUT -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_HTTP_SOCKET_TIMEOUT" class="hiddenlink" target="rightframe">MMS_CONFIG_HTTP_SOCKET_TIMEOUT</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MAX_IMAGE_HEIGHT -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MAX_IMAGE_HEIGHT" class="hiddenlink" target="rightframe">MMS_CONFIG_MAX_IMAGE_HEIGHT</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MAX_IMAGE_WIDTH -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MAX_IMAGE_WIDTH" class="hiddenlink" target="rightframe">MMS_CONFIG_MAX_IMAGE_WIDTH</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MAX_MESSAGE_SIZE -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MAX_MESSAGE_SIZE" class="hiddenlink" target="rightframe">MMS_CONFIG_MAX_MESSAGE_SIZE</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE" class="hiddenlink" target="rightframe">MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MMS_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MMS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MMS_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MMS_READ_REPORT_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MMS_READ_REPORT_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MMS_READ_REPORT_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MULTIPART_SMS_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MULTIPART_SMS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MULTIPART_SMS_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_NAI_SUFFIX -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_NAI_SUFFIX" class="hiddenlink" target="rightframe">MMS_CONFIG_NAI_SUFFIX</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_RECIPIENT_LIMIT -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_RECIPIENT_LIMIT" class="hiddenlink" target="rightframe">MMS_CONFIG_RECIPIENT_LIMIT</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES" class="hiddenlink" target="rightframe">MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD" class="hiddenlink" target="rightframe">MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD" class="hiddenlink" target="rightframe">MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_SUBJECT_MAX_LENGTH -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SUBJECT_MAX_LENGTH" class="hiddenlink" target="rightframe">MMS_CONFIG_SUBJECT_MAX_LENGTH</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION" class="hiddenlink" target="rightframe">MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_UA_PROF_TAG_NAME -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_UA_PROF_TAG_NAME" class="hiddenlink" target="rightframe">MMS_CONFIG_UA_PROF_TAG_NAME</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_UA_PROF_URL -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_UA_PROF_URL" class="hiddenlink" target="rightframe">MMS_CONFIG_UA_PROF_URL</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_USER_AGENT -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_USER_AGENT" class="hiddenlink" target="rightframe">MMS_CONFIG_USER_AGENT</A>
+</nobr><br>
+<!-- Field MMS_ERROR_CONFIGURATION_ERROR -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_CONFIGURATION_ERROR" class="hiddenlink" target="rightframe">MMS_ERROR_CONFIGURATION_ERROR</A>
+</nobr><br>
+<!-- Field MMS_ERROR_HTTP_FAILURE -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_HTTP_FAILURE" class="hiddenlink" target="rightframe">MMS_ERROR_HTTP_FAILURE</A>
+</nobr><br>
+<!-- Field MMS_ERROR_INVALID_APN -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_INVALID_APN" class="hiddenlink" target="rightframe">MMS_ERROR_INVALID_APN</A>
+</nobr><br>
+<!-- Field MMS_ERROR_IO_ERROR -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_IO_ERROR" class="hiddenlink" target="rightframe">MMS_ERROR_IO_ERROR</A>
+</nobr><br>
+<!-- Field MMS_ERROR_RETRY -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_RETRY" class="hiddenlink" target="rightframe">MMS_ERROR_RETRY</A>
+</nobr><br>
+<!-- Field MMS_ERROR_UNABLE_CONNECT_MMS -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_UNABLE_CONNECT_MMS" class="hiddenlink" target="rightframe">MMS_ERROR_UNABLE_CONNECT_MMS</A>
+</nobr><br>
+<!-- Field MMS_ERROR_UNSPECIFIED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_UNSPECIFIED" class="hiddenlink" target="rightframe">MMS_ERROR_UNSPECIFIED</A>
+</nobr><br>
+<!-- Field MODE_DEFAULT -->
+<nobr><A HREF="android.app.AppOpsManager.html#android.app.AppOpsManager.MODE_DEFAULT" class="hiddenlink" target="rightframe">MODE_DEFAULT</A>
+</nobr><br>
+<!-- Field MODE_IN -->
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.MODE_IN" class="hiddenlink" target="rightframe">MODE_IN</A>
+</nobr><br>
+<!-- Field MODE_OUT -->
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.MODE_OUT" class="hiddenlink" target="rightframe">MODE_OUT</A>
+</nobr><br>
+<!-- Field multiArch -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.multiArch" class="hiddenlink" target="rightframe">multiArch</A>
+</nobr><br>
+<!-- Constructor MultiAutoCompleteTextView -->
+<nobr><A HREF="android.widget.MultiAutoCompleteTextView.html#android.widget.MultiAutoCompleteTextView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>MultiAutoCompleteTextView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor MultiSelectListPreference -->
+<i>MultiSelectListPreference</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.preference.MultiSelectListPreference.html#android.preference.MultiSelectListPreference.ctor_added(android.content.Context, android.util.AttributeSet, int)" class="hiddenlink" target="rightframe"><b>MultiSelectListPreference</b>
+(<code>Context, AttributeSet, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor MultiSelectListPreference -->
+&nbsp;&nbsp;<nobr><A HREF="android.preference.MultiSelectListPreference.html#android.preference.MultiSelectListPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>MultiSelectListPreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class MutableBoolean -->
+<A HREF="pkg_android.util.html#MutableBoolean" class="hiddenlink" target="rightframe"><b>MutableBoolean</b></A><br>
+<!-- Class MutableByte -->
+<A HREF="pkg_android.util.html#MutableByte" class="hiddenlink" target="rightframe"><b>MutableByte</b></A><br>
+<!-- Class MutableChar -->
+<A HREF="pkg_android.util.html#MutableChar" class="hiddenlink" target="rightframe"><b>MutableChar</b></A><br>
+<!-- Class MutableDouble -->
+<A HREF="pkg_android.util.html#MutableDouble" class="hiddenlink" target="rightframe"><b>MutableDouble</b></A><br>
+<!-- Class MutableFloat -->
+<A HREF="pkg_android.util.html#MutableFloat" class="hiddenlink" target="rightframe"><b>MutableFloat</b></A><br>
+<!-- Class MutableInt -->
+<A HREF="pkg_android.util.html#MutableInt" class="hiddenlink" target="rightframe"><b>MutableInt</b></A><br>
+<!-- Class MutableLong -->
+<A HREF="pkg_android.util.html#MutableLong" class="hiddenlink" target="rightframe"><b>MutableLong</b></A><br>
+<!-- Class MutableShort -->
+<A HREF="pkg_android.util.html#MutableShort" class="hiddenlink" target="rightframe"><b>MutableShort</b></A><br>
+<!-- Field MUXER_OUTPUT_WEBM -->
+<nobr><A HREF="android.media.MediaMuxer.OutputFormat.html#android.media.MediaMuxer.OutputFormat.MUXER_OUTPUT_WEBM" class="hiddenlink" target="rightframe">MUXER_OUTPUT_WEBM</A>
+</nobr><br>
+<!-- Field NAME_RAW_CONTACT_ID -->
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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">
+<nobr><A HREF="android.provider.ContactsContract.ContactsColumns.html#android.provider.ContactsContract.ContactsColumns.NAME_RAW_CONTACT_ID" class="hiddenlink" target="rightframe">NAME_RAW_CONTACT_ID</A>
+</nobr><br>
+<!-- Field NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME" class="hiddenlink" target="rightframe">NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME</A>
+</nobr><br>
+<!-- Field navigationBarBackground -->
+<nobr><A HREF="android.R.id.html#android.R.id.navigationBarBackground" class="hiddenlink" target="rightframe">navigationBarBackground</A>
+</nobr><br>
+<!-- Field navigationBarColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.navigationBarColor" class="hiddenlink" target="rightframe">navigationBarColor</A>
+</nobr><br>
+<!-- Field navigationContentDescription -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.navigationContentDescription" class="hiddenlink" target="rightframe">navigationContentDescription</A>
+</nobr><br>
+<!-- Field navigationIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.navigationIcon" class="hiddenlink" target="rightframe">navigationIcon</A>
+</nobr><br>
+<!-- Field nestedScrollingEnabled -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.nestedScrollingEnabled" class="hiddenlink" target="rightframe">nestedScrollingEnabled</A>
+</nobr><br>
+<!-- Class Network -->
+<A HREF="pkg_android.net.html#Network" class="hiddenlink" target="rightframe"><b>Network</b></A><br>
+<!-- Class NetworkCapabilities -->
+<A HREF="pkg_android.net.html#NetworkCapabilities" class="hiddenlink" target="rightframe"><b>NetworkCapabilities</b></A><br>
+<!-- Class NetworkRequest -->
+<A HREF="pkg_android.net.html#NetworkRequest" class="hiddenlink" target="rightframe"><b>NetworkRequest</b></A><br>
+<!-- Class NetworkRequest.Builder -->
+<A HREF="pkg_android.net.html#NetworkRequest.Builder" class="hiddenlink" target="rightframe"><b>NetworkRequest.Builder</b></A><br>
+<!-- Method newDrawable -->
+<nobr><A HREF="android.graphics.drawable.Drawable.ConstantState.html#android.graphics.drawable.Drawable.ConstantState.newDrawable_added(android.content.res.Resources, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>newDrawable</b>
+(<code>Resources, Theme</code>)</A></nobr><br>
+<!-- Method normalizeNumber -->
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.normalizeNumber_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>normalizeNumber</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Class Notification.MediaStyle -->
+<A HREF="pkg_android.app.html#Notification.MediaStyle" class="hiddenlink" target="rightframe"><b>Notification.MediaStyle</b></A><br>
+<!-- Class NotificationListenerService.Ranking -->
+<A HREF="pkg_android.service.notification.html#NotificationListenerService.Ranking" class="hiddenlink" target="rightframe"><b>NotificationListenerService.Ranking</b></A><br>
+<!-- Class NotificationListenerService.RankingMap -->
+<A HREF="pkg_android.service.notification.html#NotificationListenerService.RankingMap" class="hiddenlink" target="rightframe"><b>NotificationListenerService.RankingMap</b></A><br>
+<!-- Constructor NumberPicker -->
+<nobr><A HREF="android.widget.NumberPicker.html#android.widget.NumberPicker.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>NumberPicker</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field numbersBackgroundColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.numbersBackgroundColor" class="hiddenlink" target="rightframe">numbersBackgroundColor</A>
+</nobr><br>
+<!-- Field numbersSelectorColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.numbersSelectorColor" class="hiddenlink" target="rightframe">numbersSelectorColor</A>
+</nobr><br>
+<!-- Field numbersTextColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.numbersTextColor" class="hiddenlink" target="rightframe">numbersTextColor</A>
+</nobr><br>
+<!-- Method obtain -->
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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">
+<i>obtain</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.obtain_added(int, int, boolean, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, boolean, int</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo.CollectionInfo
+</A></nobr><br>
+<!-- Method obtain -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.obtain_added(int, int, int, int, boolean, boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, int, int, boolean, boolean</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo
+</A></nobr><br>
+<!-- Method ofArgb -->
+<i>ofArgb</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofArgb_added(T, android.util.Property<T, java.lang.Integer>, int...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, Property&lt;T, Integer&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofArgb -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofArgb_added(java.lang.Object, java.lang.String, int...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, </code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofArgb -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ValueAnimator.html#android.animation.ValueAnimator.ofArgb_added(int...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.animation.ValueAnimator
+</A></nobr><br>
+<!-- Method ofFloat -->
+<i>ofFloat</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofFloat_added(T, android.util.Property<T, java.lang.Float>, android.util.Property<T, java.lang.Float>, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, Property&lt;T, Float&gt;, Property&lt;T, Float&gt;, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofFloat -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofFloat_added(java.lang.Object, java.lang.String, java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, String, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofInt -->
+<i>ofInt</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofInt_added(T, android.util.Property<T, java.lang.Integer>, android.util.Property<T, java.lang.Integer>, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, Property&lt;T, Integer&gt;, Property&lt;T, Integer&gt;, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofInt -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofInt_added(java.lang.Object, java.lang.String, java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, String, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofMultiFloat -->
+<i>ofMultiFloat</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiFloat_added(java.lang.Object, java.lang.String, android.animation.TypeConverter<T, float[]>, android.animation.TypeEvaluator<T>, T...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, TypeConverter&lt;T, float[]&gt;, TypeEvaluator&lt;T&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofMultiFloat -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiFloat_added(java.lang.Object, java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofMultiFloat -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiFloat_added(java.lang.Object, java.lang.String, float[][])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, float[][]</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofMultiFloat -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, android.animation.TypeConverter<T, float[]>, android.animation.TypeEvaluator<T>, android.animation.Keyframe...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, TypeConverter&lt;T, float[]&gt;, TypeEvaluator&lt;T&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<!-- Method ofMultiFloat -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, android.animation.TypeConverter<V, float[]>, android.animation.TypeEvaluator<V>, V...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, TypeConverter&lt;V, float[]&gt;, TypeEvaluator&lt;V&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<!-- Method ofMultiFloat -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, Path</code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<!-- Method ofMultiFloat -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, float[][])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, float[][]</code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<!-- Method ofMultiInt -->
+<i>ofMultiInt</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiInt_added(java.lang.Object, java.lang.String, android.animation.TypeConverter<T, int[]>, android.animation.TypeEvaluator<T>, T...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, TypeConverter&lt;T, int[]&gt;, TypeEvaluator&lt;T&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofMultiInt -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiInt_added(java.lang.Object, java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofMultiInt -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiInt_added(java.lang.Object, java.lang.String, int[][])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, int[][]</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofMultiInt -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, android.animation.TypeConverter<T, int[]>, android.animation.TypeEvaluator<T>, android.animation.Keyframe...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, TypeConverter&lt;T, int[]&gt;, TypeEvaluator&lt;T&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<!-- Method ofMultiInt -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, android.animation.TypeConverter<V, int[]>, android.animation.TypeEvaluator<V>, V...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, TypeConverter&lt;V, int[]&gt;, TypeEvaluator&lt;V&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<!-- Method ofMultiInt -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, Path</code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<!-- Method ofMultiInt -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, int[][])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, int[][]</code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<!-- Method ofObject -->
+<i>ofObject</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofObject_added(T, android.util.Property<T, P>, android.animation.TypeConverter<V, P>, android.animation.TypeEvaluator<V>, V...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, Property&lt;T, P&gt;, TypeConverter&lt;V, P&gt;, TypeEvaluator&lt;V&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofObject -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofObject_added(T, android.util.Property<T, V>, android.animation.TypeConverter<android.graphics.PointF, V>, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, Property&lt;T, V&gt;, TypeConverter&lt;PointF, V&gt;, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofObject -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofObject_added(java.lang.Object, java.lang.String, android.animation.TypeConverter<android.graphics.PointF, ?>, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, TypeConverter&lt;PointF, ?&gt;, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofObject -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofObject_added(android.util.Property<?, V>, android.animation.TypeConverter<T, V>, android.animation.TypeEvaluator<T>, T...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Property&lt;?, V&gt;, TypeConverter&lt;T, V&gt;, TypeEvaluator&lt;T&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<!-- Method ofObject -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofObject_added(android.util.Property<?, V>, android.animation.TypeConverter<android.graphics.PointF, V>, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Property&lt;?, V&gt;, TypeConverter&lt;PointF, V&gt;, Path</code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<!-- Method ofObject -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofObject_added(java.lang.String, android.animation.TypeConverter<android.graphics.PointF, ?>, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, TypeConverter&lt;PointF, ?&gt;, Path</code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<!-- Method onActivityReenter -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onActivityReenter_added(int, android.content.Intent)" class="hiddenlink" target="rightframe"><b>onActivityReenter</b>
+(<code>int, Intent</code>)</A></nobr><br>
+<!-- Method onAppear -->
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.onAppear_added(android.view.ViewGroup, android.view.View, android.transition.TransitionValues, android.transition.TransitionValues)" class="hiddenlink" target="rightframe"><b>onAppear</b>
+(<code>ViewGroup, View, TransitionValues, TransitionValues</code>)</A></nobr><br>
+<!-- Method onApplyWindowInsets -->
+<nobr><A HREF="android.service.wallpaper.WallpaperService.Engine.html#android.service.wallpaper.WallpaperService.Engine.onApplyWindowInsets_added(android.view.WindowInsets)" class="hiddenlink" target="rightframe"><b>onApplyWindowInsets</b>
+(<code>WindowInsets</code>)</A></nobr><br>
+<!-- Method onCreate -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onCreate_added(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>onCreate</b>
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<!-- Method onDisappear -->
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.onDisappear_added(android.view.ViewGroup, android.view.View, android.transition.TransitionValues, android.transition.TransitionValues)" class="hiddenlink" target="rightframe"><b>onDisappear</b>
+(<code>ViewGroup, View, TransitionValues, TransitionValues</code>)</A></nobr><br>
+<!-- Method onEnterAnimationComplete -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onEnterAnimationComplete_added()" class="hiddenlink" target="rightframe"><b>onEnterAnimationComplete</b>
+()</A></nobr><br>
+<!-- Method onError -->
+<i>onError</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_added(java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, int</code>)</b>&nbsp;in&nbsp;android.speech.tts.UtteranceProgressListener
+</A></nobr><br>
+<!-- Method onError -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.speech.tts.UtteranceProgressListener
+</A></nobr><br>
+<!-- Method onGetDefaultVoiceNameFor -->
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onGetDefaultVoiceNameFor_added(java.lang.String, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>onGetDefaultVoiceNameFor</b>
+(<code>String, String, String</code>)</A></nobr><br>
+<!-- Method onGetVoices -->
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onGetVoices_added()" class="hiddenlink" target="rightframe"><b>onGetVoices</b>
+()</A></nobr><br>
+<!-- Method onInterruptionFilterChanged -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onInterruptionFilterChanged_added(int)" class="hiddenlink" target="rightframe"><b>onInterruptionFilterChanged</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method onIsValidVoiceName -->
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onIsValidVoiceName_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>onIsValidVoiceName</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method onListenerConnected -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onListenerConnected_added()" class="hiddenlink" target="rightframe"><b>onListenerConnected</b>
+()</A></nobr><br>
+<!-- Method onListenerHintsChanged -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onListenerHintsChanged_added(int)" class="hiddenlink" target="rightframe"><b>onListenerHintsChanged</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method onLoadVoice -->
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onLoadVoice_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>onLoadVoice</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method onLockTaskModeEntering -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.onLockTaskModeEntering_added(android.content.Context, android.content.Intent, java.lang.String)" class="hiddenlink" target="rightframe"><b>onLockTaskModeEntering</b>
+(<code>Context, Intent, String</code>)</A></nobr><br>
+<!-- Method onLockTaskModeExiting -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.onLockTaskModeExiting_added(android.content.Context, android.content.Intent)" class="hiddenlink" target="rightframe"><b>onLockTaskModeExiting</b>
+(<code>Context, Intent</code>)</A></nobr><br>
+<!-- Method onMtuChanged -->
+<nobr><A HREF="android.bluetooth.BluetoothGattCallback.html#android.bluetooth.BluetoothGattCallback.onMtuChanged_added(android.bluetooth.BluetoothGatt, int, int)" class="hiddenlink" target="rightframe"><b>onMtuChanged</b>
+(<code>BluetoothGatt, int, int</code>)</A></nobr><br>
+<!-- Method onNestedFling -->
+<i>onNestedFling</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedFling_added(android.view.View, float, float, boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, float, float, boolean</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+<!-- Method onNestedFling -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedFling_added(android.view.View, float, float, boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, float, float, boolean</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<!-- Method onNestedPreFling -->
+<i>onNestedPreFling</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedPreFling_added(android.view.View, float, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, float, float</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+<!-- Method onNestedPreFling -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedPreFling_added(android.view.View, float, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, float, float</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<!-- Method onNestedPreScroll -->
+<i>onNestedPreScroll</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedPreScroll_added(android.view.View, int, int, int[])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, int, int, int[]</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+<!-- Method onNestedPreScroll -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedPreScroll_added(android.view.View, int, int, int[])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, int, int, int[]</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<!-- Method onNestedScroll -->
+<i>onNestedScroll</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedScroll_added(android.view.View, int, int, int, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, int, int, int, int</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+<!-- Method onNestedScroll -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedScroll_added(android.view.View, int, int, int, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, int, int, int, int</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<!-- Method onNestedScrollAccepted -->
+<i>onNestedScrollAccepted</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedScrollAccepted_added(android.view.View, android.view.View, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, View, int</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+<!-- Method onNestedScrollAccepted -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedScrollAccepted_added(android.view.View, android.view.View, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, View, int</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<!-- Method onNotificationPosted -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationPosted_added(android.service.notification.StatusBarNotification, android.service.notification.NotificationListenerService.RankingMap)" class="hiddenlink" target="rightframe"><b>onNotificationPosted</b>
+(<code>StatusBarNotification, RankingMap</code>)</A></nobr><br>
+<!-- Method onNotificationRankingUpdate -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationRankingUpdate_added(android.service.notification.NotificationListenerService.RankingMap)" class="hiddenlink" target="rightframe"><b>onNotificationRankingUpdate</b>
+(<code>RankingMap</code>)</A></nobr><br>
+<!-- Method onNotificationRemoved -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationRemoved_added(android.service.notification.StatusBarNotification, android.service.notification.NotificationListenerService.RankingMap)" class="hiddenlink" target="rightframe"><b>onNotificationRemoved</b>
+(<code>StatusBarNotification, RankingMap</code>)</A></nobr><br>
+<!-- Method onNotificationSent -->
+<nobr><A HREF="android.bluetooth.BluetoothGattServerCallback.html#android.bluetooth.BluetoothGattServerCallback.onNotificationSent_added(android.bluetooth.BluetoothDevice, int)" class="hiddenlink" target="rightframe"><b>onNotificationSent</b>
+(<code>BluetoothDevice, int</code>)</A></nobr><br>
+<!-- Method onPermissionRequest -->
+<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onPermissionRequest_added(android.webkit.PermissionRequest)" class="hiddenlink" target="rightframe"><b>onPermissionRequest</b>
+(<code>PermissionRequest</code>)</A></nobr><br>
+<!-- Method onPermissionRequestCanceled -->
+<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onPermissionRequestCanceled_added(android.webkit.PermissionRequest)" class="hiddenlink" target="rightframe"><b>onPermissionRequestCanceled</b>
+(<code>PermissionRequest</code>)</A></nobr><br>
+<!-- Method onPostCreate -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onPostCreate_added(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>onPostCreate</b>
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<!-- Method onProfileProvisioningComplete -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.onProfileProvisioningComplete_added(android.content.Context, android.content.Intent)" class="hiddenlink" target="rightframe"><b>onProfileProvisioningComplete</b>
+(<code>Context, Intent</code>)</A></nobr><br>
+<!-- Method onPull -->
+<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.onPull_added(float, float)" class="hiddenlink" target="rightframe"><b>onPull</b>
+(<code>float, float</code>)</A></nobr><br>
+<!-- Method onReceivedClientCertRequest -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.onReceivedClientCertRequest_added(android.webkit.WebView, android.webkit.ClientCertRequest)" class="hiddenlink" target="rightframe"><b>onReceivedClientCertRequest</b>
+(<code>WebView, ClientCertRequest</code>)</A></nobr><br>
+<!-- Method onRestored -->
+<nobr><A HREF="android.appwidget.AppWidgetProvider.html#android.appwidget.AppWidgetProvider.onRestored_added(android.content.Context, int[], int[])" class="hiddenlink" target="rightframe"><b>onRestored</b>
+(<code>Context, int[], int[]</code>)</A></nobr><br>
+<!-- Method onRestoreFinished -->
+<nobr><A HREF="android.app.backup.BackupAgent.html#android.app.backup.BackupAgent.onRestoreFinished_added()" class="hiddenlink" target="rightframe"><b>onRestoreFinished</b>
+()</A></nobr><br>
+<!-- Method onRestoreInstanceState -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onRestoreInstanceState_added(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>onRestoreInstanceState</b>
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<!-- Method onSaveInstanceState -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onSaveInstanceState_added(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>onSaveInstanceState</b>
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<!-- Method onShowFileChooser -->
+<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onShowFileChooser_added(android.webkit.WebView, android.webkit.ValueCallback<android.net.Uri[]>, android.webkit.WebChromeClient.FileChooserParams)" class="hiddenlink" target="rightframe"><b>onShowFileChooser</b>
+(<code>WebView, ValueCallback&lt;Uri[]&gt;, FileChooserParams</code>)</A></nobr><br>
+<!-- Method onStartNestedScroll -->
+<i>onStartNestedScroll</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onStartNestedScroll_added(android.view.View, android.view.View, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, View, int</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+<!-- Method onStartNestedScroll -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onStartNestedScroll_added(android.view.View, android.view.View, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, View, int</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<!-- Method onStopNestedScroll -->
+<i>onStopNestedScroll</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onStopNestedScroll_added(android.view.View)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+<!-- Method onStopNestedScroll -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onStopNestedScroll_added(android.view.View)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<!-- Method onUnhandledInputEvent -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.onUnhandledInputEvent_added(android.webkit.WebView, android.view.InputEvent)" class="hiddenlink" target="rightframe"><b>onUnhandledInputEvent</b>
+(<code>WebView, InputEvent</code>)</A></nobr><br>
+<!-- Method onUpdateCursorAnchorInfo -->
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.onUpdateCursorAnchorInfo_added(android.view.inputmethod.CursorAnchorInfo)" class="hiddenlink" target="rightframe"><b>onUpdateCursorAnchorInfo</b>
+(<code>CursorAnchorInfo</code>)</A></nobr><br>
+<!-- Method onVisibleBehindCanceled -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onVisibleBehindCanceled_added()" class="hiddenlink" target="rightframe"><b>onVisibleBehindCanceled</b>
+()</A></nobr><br>
+<!-- Method onWakeUp -->
+<nobr><A HREF="android.service.dreams.DreamService.html#android.service.dreams.DreamService.onWakeUp_added()" class="hiddenlink" target="rightframe"><b>onWakeUp</b>
+()</A></nobr><br>
+<!-- Method openAssetFile -->
+<i>openAssetFile</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.openAssetFile_added(android.net.Uri, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Uri, String</code>)</b>&nbsp;in&nbsp;android.provider.DocumentsProvider
+</A></nobr><br>
+<!-- Method openAssetFile -->
+&nbsp;&nbsp;<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.openAssetFile_added(android.net.Uri, java.lang.String, android.os.CancellationSignal)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Uri, String, CancellationSignal</code>)</b>&nbsp;in&nbsp;android.provider.DocumentsProvider
+</A></nobr><br>
+<!-- Field OPSTR_GET_USAGE_STATS -->
+<nobr><A HREF="android.app.AppOpsManager.html#android.app.AppOpsManager.OPSTR_GET_USAGE_STATS" class="hiddenlink" target="rightframe">OPSTR_GET_USAGE_STATS</A>
+</nobr><br>
+<!-- Class Outline -->
+<A HREF="pkg_android.graphics.html#Outline" class="hiddenlink" target="rightframe"><b>Outline</b></A><br>
+<!-- Field outlineProvider -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.outlineProvider" class="hiddenlink" target="rightframe">outlineProvider</A>
+</nobr><br>
+<!-- Field overlapAnchor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.overlapAnchor" class="hiddenlink" target="rightframe">overlapAnchor</A>
+</nobr><br>
+<!-- Class PackageInstaller -->
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="pkg_android.content.pm.html#PackageInstaller" class="hiddenlink" target="rightframe"><b>PackageInstaller</b></A><br>
+<!-- Class PackageInstaller.Session -->
+<A HREF="pkg_android.content.pm.html#PackageInstaller.Session" class="hiddenlink" target="rightframe"><b>PackageInstaller.Session</b></A><br>
+<!-- Class PackageInstaller.SessionCallback -->
+<A HREF="pkg_android.content.pm.html#PackageInstaller.SessionCallback" class="hiddenlink" target="rightframe"><b>PackageInstaller.SessionCallback</b></A><br>
+<!-- Class PackageInstaller.SessionInfo -->
+<A HREF="pkg_android.content.pm.html#PackageInstaller.SessionInfo" class="hiddenlink" target="rightframe"><b>PackageInstaller.SessionInfo</b></A><br>
+<!-- Class PackageInstaller.SessionParams -->
+<A HREF="pkg_android.content.pm.html#PackageInstaller.SessionParams" class="hiddenlink" target="rightframe"><b>PackageInstaller.SessionParams</b></A><br>
+<!-- Field PADDING_MODE_NEST -->
+<nobr><A HREF="android.graphics.drawable.LayerDrawable.html#android.graphics.drawable.LayerDrawable.PADDING_MODE_NEST" class="hiddenlink" target="rightframe">PADDING_MODE_NEST</A>
+</nobr><br>
+<!-- Field PADDING_MODE_STACK -->
+<nobr><A HREF="android.graphics.drawable.LayerDrawable.html#android.graphics.drawable.LayerDrawable.PADDING_MODE_STACK" class="hiddenlink" target="rightframe">PADDING_MODE_STACK</A>
+</nobr><br>
+<!-- Field paddingMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.paddingMode" class="hiddenlink" target="rightframe">paddingMode</A>
+</nobr><br>
+<!-- Field PASSWORD_QUALITY_NUMERIC_COMPLEX -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.PASSWORD_QUALITY_NUMERIC_COMPLEX" class="hiddenlink" target="rightframe">PASSWORD_QUALITY_NUMERIC_COMPLEX</A>
+</nobr><br>
+<!-- Field pathData -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.pathData" class="hiddenlink" target="rightframe">pathData</A>
+</nobr><br>
+<!-- Class PathInterpolator -->
+<A HREF="pkg_android.view.animation.html#PathInterpolator" class="hiddenlink" target="rightframe"><b>PathInterpolator</b></A><br>
+<!-- Class PathMotion -->
+<A HREF="pkg_android.transition.html#PathMotion" class="hiddenlink" target="rightframe"><b>PathMotion</b></A><br>
+<!-- Field patternPathData -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.patternPathData" class="hiddenlink" target="rightframe">patternPathData</A>
+</nobr><br>
+<!-- Class PatternPathMotion -->
+<A HREF="pkg_android.transition.html#PatternPathMotion" class="hiddenlink" target="rightframe"><b>PatternPathMotion</b></A><br>
+<!-- Class PdfRenderer -->
+<A HREF="pkg_android.graphics.pdf.html#PdfRenderer" class="hiddenlink" target="rightframe"><b>PdfRenderer</b></A><br>
+<!-- Class PdfRenderer.Page -->
+<A HREF="pkg_android.graphics.pdf.html#PdfRenderer.Page" class="hiddenlink" target="rightframe"><b>PdfRenderer.Page</b></A><br>
+<!-- Class PermissionRequest -->
+<A HREF="pkg_android.webkit.html#PermissionRequest" class="hiddenlink" target="rightframe"><b>PermissionRequest</b></A><br>
+<!-- Field PERSIST_ACROSS_REBOOTS -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.PERSIST_ACROSS_REBOOTS" class="hiddenlink" target="rightframe">PERSIST_ACROSS_REBOOTS</A>
+</nobr><br>
+<!-- Field PERSIST_NEVER -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.PERSIST_NEVER" class="hiddenlink" target="rightframe">PERSIST_NEVER</A>
+</nobr><br>
+<!-- Field PERSIST_ROOT_ONLY -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.PERSIST_ROOT_ONLY" class="hiddenlink" target="rightframe">PERSIST_ROOT_ONLY</A>
+</nobr><br>
+<!-- Class PersistableBundle -->
+<A HREF="pkg_android.os.html#PersistableBundle" class="hiddenlink" target="rightframe"><b>PersistableBundle</b></A><br>
+<!-- Field persistableMode -->
+<i>persistableMode</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.persistableMode" class="hiddenlink" target="rightframe">android.R.attr</A>
+</nobr><br>
+<!-- Field persistableMode -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.persistableMode" class="hiddenlink" target="rightframe">android.content.pm.ActivityInfo</A>
+</nobr><br>
+<!-- Class Phaser -->
+<A HREF="pkg_java.util.concurrent.html#Phaser" class="hiddenlink" target="rightframe"><b>Phaser</b></A><br>
+<!-- Field PHONE_ACCOUNT_COMPONENT_NAME -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.PHONE_ACCOUNT_COMPONENT_NAME" class="hiddenlink" target="rightframe">PHONE_ACCOUNT_COMPONENT_NAME</A>
+</nobr><br>
+<!-- Field PHONE_ACCOUNT_ID -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.PHONE_ACCOUNT_ID" class="hiddenlink" target="rightframe">PHONE_ACCOUNT_ID</A>
+</nobr><br>
+<!-- Constructor PhoneNumberFormattingTextWatcher -->
+<nobr><A HREF="android.telephony.PhoneNumberFormattingTextWatcher.html#android.telephony.PhoneNumberFormattingTextWatcher.ctor_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>PhoneNumberFormattingTextWatcher</b>
+(<code>String</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field PINNED -->
+<nobr><A HREF="android.provider.ContactsContract.ContactOptionsColumns.html#android.provider.ContactsContract.ContactOptionsColumns.PINNED" class="hiddenlink" target="rightframe">PINNED</A>
+</nobr><br>
+<!-- Method playEarcon -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playEarcon_added(java.lang.String, int, android.os.Bundle, java.lang.String)" class="hiddenlink" target="rightframe"><b>playEarcon</b>
+(<code>String, int, Bundle, String</code>)</A></nobr><br>
+<!-- Method playSilentUtterance -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playSilentUtterance_added(long, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>playSilentUtterance</b>
+(<code>long, int, String</code>)</A></nobr><br>
+<!-- Class PointFEvaluator -->
+<A HREF="pkg_android.animation.html#PointFEvaluator" class="hiddenlink" target="rightframe"><b>PointFEvaluator</b></A><br>
+<!-- Field popupElevation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.popupElevation" class="hiddenlink" target="rightframe">popupElevation</A>
+</nobr><br>
+<!-- Field popupTheme -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.popupTheme" class="hiddenlink" target="rightframe">popupTheme</A>
+</nobr><br>
+<!-- Method postponeEnterTransition -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.postponeEnterTransition_added()" class="hiddenlink" target="rightframe"><b>postponeEnterTransition</b>
+()</A></nobr><br>
+<!-- Constructor Preference -->
+<nobr><A HREF="android.preference.Preference.html#android.preference.Preference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>Preference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor PreferenceCategory -->
+<nobr><A HREF="android.preference.PreferenceCategory.html#android.preference.PreferenceCategory.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>PreferenceCategory</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor PreferenceGroup -->
+<nobr><A HREF="android.preference.PreferenceGroup.html#android.preference.PreferenceGroup.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>PreferenceGroup</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field preferredRefreshRate -->
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.preferredRefreshRate" class="hiddenlink" target="rightframe">preferredRefreshRate</A>
+</nobr><br>
+<!-- Field PRIVATE_USE_EXTENSION -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.PRIVATE_USE_EXTENSION" class="hiddenlink" target="rightframe">PRIVATE_USE_EXTENSION</A>
+</nobr><br>
+<!-- Field progressBackgroundTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressBackgroundTint" class="hiddenlink" target="rightframe">progressBackgroundTint</A>
+</nobr><br>
+<!-- Field progressBackgroundTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressBackgroundTintMode" class="hiddenlink" target="rightframe">progressBackgroundTintMode</A>
+</nobr><br>
+<!-- Constructor ProgressBar -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ProgressBar</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field progressTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressTint" class="hiddenlink" target="rightframe">progressTint</A>
+</nobr><br>
+<!-- Field progressTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressTintMode" class="hiddenlink" target="rightframe">progressTintMode</A>
+</nobr><br>
+<!-- Field propertyXName -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.propertyXName" class="hiddenlink" target="rightframe">propertyXName</A>
+</nobr><br>
+<!-- Field propertyYName -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.propertyYName" class="hiddenlink" target="rightframe">propertyYName</A>
+</nobr><br>
+<!-- Field PROTECTION_FLAG_APPOP -->
+<nobr><A HREF="android.content.pm.PermissionInfo.html#android.content.pm.PermissionInfo.PROTECTION_FLAG_APPOP" class="hiddenlink" target="rightframe">PROTECTION_FLAG_APPOP</A>
+</nobr><br>
+<!-- Field PROXIMITY_SCREEN_OFF_WAKE_LOCK -->
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.PROXIMITY_SCREEN_OFF_WAKE_LOCK" class="hiddenlink" target="rightframe">PROXIMITY_SCREEN_OFF_WAKE_LOCK</A>
+</nobr><br>
+<!-- Class ProxyInfo -->
+<A HREF="pkg_android.net.html#ProxyInfo" class="hiddenlink" target="rightframe"><b>ProxyInfo</b></A><br>
+<!-- Class PskKeyManager -->
+<A HREF="pkg_android.net.html#PskKeyManager" class="hiddenlink" target="rightframe"><b>PskKeyManager</b></A><br>
+<!-- Field publicVersion -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.publicVersion" class="hiddenlink" target="rightframe">publicVersion</A>
+</nobr><br>
+<!-- Method putSize -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putSize_added(java.lang.String, android.util.Size)" class="hiddenlink" target="rightframe"><b>putSize</b>
+(<code>String, Size</code>)</A></nobr><br>
+<!-- Method putSizeF -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putSizeF_added(java.lang.String, android.util.SizeF)" class="hiddenlink" target="rightframe"><b>putSizeF</b>
+(<code>String, SizeF</code>)</A></nobr><br>
+<!-- Field QUALITY_2160P -->
+<A NAME="Q"></A>
+<br><font size="+2">Q</font>&nbsp;
+<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.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_2160P" class="hiddenlink" target="rightframe">QUALITY_2160P</A>
+</nobr><br>
+<!-- Field QUALITY_HIGH_SPEED_1080P -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_1080P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_1080P</A>
+</nobr><br>
+<!-- Field QUALITY_HIGH_SPEED_2160P -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_2160P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_2160P</A>
+</nobr><br>
+<!-- Field QUALITY_HIGH_SPEED_480P -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_480P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_480P</A>
+</nobr><br>
+<!-- Field QUALITY_HIGH_SPEED_720P -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_720P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_720P</A>
+</nobr><br>
+<!-- Field QUALITY_HIGH_SPEED_HIGH -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_HIGH" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_HIGH</A>
+</nobr><br>
+<!-- Field QUALITY_HIGH_SPEED_LOW -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_LOW" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_LOW</A>
+</nobr><br>
+<!-- Field QUALITY_TIME_LAPSE_2160P -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_TIME_LAPSE_2160P" class="hiddenlink" target="rightframe">QUALITY_TIME_LAPSE_2160P</A>
+</nobr><br>
+<!-- Field QUERY_PARAMETER_SIP_ADDRESS -->
+<nobr><A HREF="android.provider.ContactsContract.PhoneLookup.html#android.provider.ContactsContract.PhoneLookup.QUERY_PARAMETER_SIP_ADDRESS" class="hiddenlink" target="rightframe">QUERY_PARAMETER_SIP_ADDRESS</A>
+</nobr><br>
+<!-- Field queryBackground -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.queryBackground" class="hiddenlink" target="rightframe">queryBackground</A>
+</nobr><br>
+<!-- Constructor QuickContactBadge -->
+<nobr><A HREF="android.widget.QuickContactBadge.html#android.widget.QuickContactBadge.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>QuickContactBadge</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class R.transition -->
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="pkg_android.html#R.transition" class="hiddenlink" target="rightframe"><b>R.transition</b></A><br>
+<!-- Constructor RadioButton -->
+<nobr><A HREF="android.widget.RadioButton.html#android.widget.RadioButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>RadioButton</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class Range -->
+<A HREF="pkg_android.util.html#Range" class="hiddenlink" target="rightframe"><b>Range</b></A><br>
+<!-- Field RATING_NONE -->
+<nobr><A HREF="android.media.Rating.html#android.media.Rating.RATING_NONE" class="hiddenlink" target="rightframe">RATING_NONE</A>
+</nobr><br>
+<!-- Constructor RatingBar -->
+<nobr><A HREF="android.widget.RatingBar.html#android.widget.RatingBar.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>RatingBar</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class Rational -->
+<A HREF="pkg_android.util.html#Rational" class="hiddenlink" target="rightframe"><b>Rational</b></A><br>
+<!-- Field RAW10 -->
+<nobr><A HREF="android.graphics.ImageFormat.html#android.graphics.ImageFormat.RAW10" class="hiddenlink" target="rightframe">RAW10</A>
+</nobr><br>
+<!-- Field RAW_SENSOR -->
+<nobr><A HREF="android.graphics.ImageFormat.html#android.graphics.ImageFormat.RAW_SENSOR" class="hiddenlink" target="rightframe">RAW_SENSOR</A>
+</nobr><br>
+<!-- Field READ_VOICEMAIL -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.READ_VOICEMAIL" class="hiddenlink" target="rightframe">READ_VOICEMAIL</A>
+</nobr><br>
+<!-- Method readPersistableBundle -->
+<i>readPersistableBundle</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readPersistableBundle_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.os.Parcel
+</A></nobr><br>
+<!-- Method readPersistableBundle -->
+&nbsp;&nbsp;<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readPersistableBundle_added(java.lang.ClassLoader)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ClassLoader</code>)</b>&nbsp;in&nbsp;android.os.Parcel
+</A></nobr><br>
+<!-- Method readSize -->
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readSize_added()" class="hiddenlink" target="rightframe"><b>readSize</b>
+()</A></nobr><br>
+<!-- Method readSizeF -->
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readSizeF_added()" class="hiddenlink" target="rightframe"><b>readSizeF</b>
+()</A></nobr><br>
+<!-- Field recognitionService -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.recognitionService" class="hiddenlink" target="rightframe">recognitionService</A>
+</nobr><br>
+<!-- Constructor RectEvaluator -->
+<nobr><A HREF="android.animation.RectEvaluator.html#android.animation.RectEvaluator.ctor_added(android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>RectEvaluator</b>
+(<code>Rect</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class RecursiveAction -->
+<A HREF="pkg_java.util.concurrent.html#RecursiveAction" class="hiddenlink" target="rightframe"><b>RecursiveAction</b></A><br>
+<!-- Class RecursiveTask -->
+<A HREF="pkg_java.util.concurrent.html#RecursiveTask" class="hiddenlink" target="rightframe"><b>RecursiveTask</b></A><br>
+<!-- Method registerAidsForService -->
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.registerAidsForService_added(android.content.ComponentName, java.lang.String, java.util.List<java.lang.String>)" class="hiddenlink" target="rightframe"><b>registerAidsForService</b>
+(<code>ComponentName, String, List&lt;String&gt;</code>)</A></nobr><br>
+<!-- Method registerNetworkCallback -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.registerNetworkCallback_added(android.net.NetworkRequest, android.net.ConnectivityManager.NetworkCallback)" class="hiddenlink" target="rightframe"><b>registerNetworkCallback</b>
+(<code>NetworkRequest, NetworkCallback</code>)</A></nobr><br>
+<!-- Field REGULAR_CODECS -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.REGULAR_CODECS" class="hiddenlink" target="rightframe">REGULAR_CODECS</A>
+</nobr><br>
+<!-- Constructor RelativeLayout -->
+<nobr><A HREF="android.widget.RelativeLayout.html#android.widget.RelativeLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>RelativeLayout</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Method release -->
+<nobr><A HREF="android.os.PowerManager.WakeLock.html#android.os.PowerManager.WakeLock.release_added(int)" class="hiddenlink" target="rightframe"><b>release</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Field RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY -->
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY" class="hiddenlink" target="rightframe">RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY</A>
+</nobr><br>
+<!-- Method releaseInstance -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.releaseInstance_added()" class="hiddenlink" target="rightframe"><b>releaseInstance</b>
+()</A></nobr><br>
+<!-- Method releaseOutputBuffer -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.releaseOutputBuffer_added(int, long)" class="hiddenlink" target="rightframe"><b>releaseOutputBuffer</b>
+(<code>int, long</code>)</A></nobr><br>
+<!-- Field relinquishTaskIdentity -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.relinquishTaskIdentity" class="hiddenlink" target="rightframe">relinquishTaskIdentity</A>
+</nobr><br>
+<!-- Field REMOVE_DUPLICATE_ENTRIES -->
+<nobr><A HREF="android.provider.ContactsContract.html#android.provider.ContactsContract.REMOVE_DUPLICATE_ENTRIES" class="hiddenlink" target="rightframe">REMOVE_DUPLICATE_ENTRIES</A>
+</nobr><br>
+<!-- Method removeAction -->
+<i>removeAction</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.removeAction_added(android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AccessibilityAction</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo
+</A></nobr><br>
+<!-- Method removeAction -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.removeAction_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo
+</A></nobr><br>
+<!-- Method removeAidsForService -->
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.removeAidsForService_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>removeAidsForService</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method removeAllCookies -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeAllCookies_added(android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>removeAllCookies</b>
+(<code>ValueCallback&lt;Boolean&gt;</code>)</A></nobr><br>
+<!-- Method removeAttribute -->
+<nobr><A HREF="android.net.nsd.NsdServiceInfo.html#android.net.nsd.NsdServiceInfo.removeAttribute_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>removeAttribute</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method removeChild -->
+<i>removeChild</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.removeChild_added(android.view.View)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo
+</A></nobr><br>
+<!-- Method removeChild -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.removeChild_added(android.view.View, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, int</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo
+</A></nobr><br>
+<!-- Method removeCrossProfileWidgetProvider -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.removeCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>removeCrossProfileWidgetProvider</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method removeDefaultNetworkActiveListener -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.removeDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><b>removeDefaultNetworkActiveListener</b>
+(<code>OnNetworkActiveListener</code>)</A></nobr><br>
+<!-- Method removeSessionCookies -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeSessionCookies_added(android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>removeSessionCookies</b>
+(<code>ValueCallback&lt;Boolean&gt;</code>)</A></nobr><br>
+<!-- Method removeTarget -->
+<i>removeTarget</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.removeTarget_added(java.lang.Class)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Class</code>)</b>&nbsp;in&nbsp;android.transition.Transition
+</A></nobr><br>
+<!-- Method removeTarget -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.removeTarget_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.transition.Transition
+</A></nobr><br>
+<!-- Method removeUser -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.removeUser_added(android.content.ComponentName, android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>removeUser</b>
+(<code>ComponentName, UserHandle</code>)</A></nobr><br>
+<!-- Method renameAccount -->
+<nobr><A HREF="android.accounts.AccountManager.html#android.accounts.AccountManager.renameAccount_added(android.accounts.Account, java.lang.String, android.accounts.AccountManagerCallback<android.accounts.Account>, android.os.Handler)" class="hiddenlink" target="rightframe"><b>renameAccount</b>
+(<code>Account, String, AccountManagerCallback&lt;Account&gt;, Handler</code>)</A></nobr><br>
+<!-- Method renameDocument -->
+<i>renameDocument</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.renameDocument_added(android.content.ContentResolver, android.net.Uri, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ContentResolver, Uri, String</code>)</b>&nbsp;in&nbsp;android.provider.DocumentsContract
+</A></nobr><br>
+<!-- Method renameDocument -->
+&nbsp;&nbsp;<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.renameDocument_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, String</code>)</b>&nbsp;in&nbsp;android.provider.DocumentsProvider
+</A></nobr><br>
+<!-- Field reparent -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.reparent" class="hiddenlink" target="rightframe">reparent</A>
+</nobr><br>
+<!-- Field reparentWithOverlay -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.reparentWithOverlay" class="hiddenlink" target="rightframe">reparentWithOverlay</A>
+</nobr><br>
+<!-- Method replaceSystemWindowInsets -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.replaceSystemWindowInsets_added(android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>replaceSystemWindowInsets</b>
+(<code>Rect</code>)</A></nobr><br>
+<!-- Method replaceUnicodeDigits -->
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.replaceUnicodeDigits_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>replaceUnicodeDigits</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method reportBadNetwork -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.reportBadNetwork_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>reportBadNetwork</b>
+(<code>Network</code>)</A></nobr><br>
+<!-- Field REPORTING_MODE_CONTINUOUS -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_CONTINUOUS" class="hiddenlink" target="rightframe">REPORTING_MODE_CONTINUOUS</A>
+</nobr><br>
+<!-- Field REPORTING_MODE_ON_CHANGE -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_ON_CHANGE" class="hiddenlink" target="rightframe">REPORTING_MODE_ON_CHANGE</A>
+</nobr><br>
+<!-- Field REPORTING_MODE_ONE_SHOT -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_ONE_SHOT" class="hiddenlink" target="rightframe">REPORTING_MODE_ONE_SHOT</A>
+</nobr><br>
+<!-- Field REPORTING_MODE_SPECIAL_TRIGGER -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_SPECIAL_TRIGGER" class="hiddenlink" target="rightframe">REPORTING_MODE_SPECIAL_TRIGGER</A>
+</nobr><br>
+<!-- Method requestConnectionPriority -->
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.requestConnectionPriority_added(int)" class="hiddenlink" target="rightframe"><b>requestConnectionPriority</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method requestCursorUpdates -->
+<i>requestCursorUpdates</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.BaseInputConnection.html#android.view.inputmethod.BaseInputConnection.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.BaseInputConnection
+</A></nobr><br>
+<!-- Method requestCursorUpdates -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.InputConnection
+</A></nobr><br>
+<!-- Method requestCursorUpdates -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.InputConnectionWrapper.html#android.view.inputmethod.InputConnectionWrapper.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.InputConnectionWrapper
+</A></nobr><br>
+<!-- Method requestInterruptionFilter -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.requestInterruptionFilter_added(int)" class="hiddenlink" target="rightframe"><b>requestInterruptionFilter</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method requestListenerHints -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.requestListenerHints_added(int)" class="hiddenlink" target="rightframe"><b>requestListenerHints</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method requestMtu -->
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.requestMtu_added(int)" class="hiddenlink" target="rightframe"><b>requestMtu</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method requestNetwork -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.requestNetwork_added(android.net.NetworkRequest, android.net.ConnectivityManager.NetworkCallback)" class="hiddenlink" target="rightframe"><b>requestNetwork</b>
+(<code>NetworkRequest, NetworkCallback</code>)</A></nobr><br>
+<!-- Method requestUnbufferedDispatch -->
+<nobr><A HREF="android.view.View.html#android.view.View.requestUnbufferedDispatch_added(android.view.MotionEvent)" class="hiddenlink" target="rightframe"><b>requestUnbufferedDispatch</b>
+(<code>MotionEvent</code>)</A></nobr><br>
+<!-- Method requestVisibleBehind -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.requestVisibleBehind_added(boolean)" class="hiddenlink" target="rightframe"><b>requestVisibleBehind</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Field RES_PACKAGE -->
+<i>RES_PACKAGE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.DataColumns.html#android.provider.ContactsContract.DataColumns.RES_PACKAGE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.DataColumns</A>
+</nobr><br>
+<!-- Field RES_PACKAGE -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.GroupsColumns.html#android.provider.ContactsContract.GroupsColumns.RES_PACKAGE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.GroupsColumns</A>
+</nobr><br>
+<!-- Method reset -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.reset_added()" class="hiddenlink" target="rightframe"><b>reset</b>
+()</A></nobr><br>
+<!-- Method resize -->
+<i>resize</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.display.VirtualDisplay.html#android.hardware.display.VirtualDisplay.resize_added(int, int, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, int</code>)</b>&nbsp;in&nbsp;android.hardware.display.VirtualDisplay
+</A></nobr><br>
+<!-- Method resize -->
+&nbsp;&nbsp;<nobr><A HREF="android.util.LruCache.html#android.util.LruCache.resize_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.util.LruCache
+</A></nobr><br>
+<!-- Constructor RestrictionEntry -->
+<i>RestrictionEntry</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.ctor_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>RestrictionEntry</b>
+(<code>int, String</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor RestrictionEntry -->
+&nbsp;&nbsp;<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.ctor_added(java.lang.String, int)" class="hiddenlink" target="rightframe"><b>RestrictionEntry</b>
+(<code>String, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field RESTRICTIONS_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.RESTRICTIONS_SERVICE" class="hiddenlink" target="rightframe">RESTRICTIONS_SERVICE</A>
+</nobr><br>
+<!-- Class RestrictionsManager -->
+<A HREF="pkg_android.content.html#RestrictionsManager" class="hiddenlink" target="rightframe"><b>RestrictionsManager</b></A><br>
+<!-- Field restrictionType -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.restrictionType" class="hiddenlink" target="rightframe">restrictionType</A>
+</nobr><br>
+<!-- Field resumeWhilePausing -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.resumeWhilePausing" class="hiddenlink" target="rightframe">resumeWhilePausing</A>
+</nobr><br>
+<!-- Field reversible -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.reversible" class="hiddenlink" target="rightframe">reversible</A>
+</nobr><br>
+<!-- Method revokeDocumentPermission -->
+<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.revokeDocumentPermission_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>revokeDocumentPermission</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Constructor RingtonePreference -->
+<nobr><A HREF="android.preference.RingtonePreference.html#android.preference.RingtonePreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>RingtonePreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class RippleDrawable -->
+<A HREF="pkg_android.graphics.drawable.html#RippleDrawable" class="hiddenlink" target="rightframe"><b>RippleDrawable</b></A><br>
+<!-- Class RouteInfo -->
+<A HREF="pkg_android.net.html#RouteInfo" class="hiddenlink" target="rightframe"><b>RouteInfo</b></A><br>
+<!-- Method saveLayer -->
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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">
+<i>saveLayer</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.saveLayer_added(android.graphics.RectF, android.graphics.Paint)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>RectF, Paint</code>)</b>&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<!-- Method saveLayer -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.saveLayer_added(float, float, float, float, android.graphics.Paint)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float, float, float, float, Paint</code>)</b>&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<!-- Method saveLayerAlpha -->
+<i>saveLayerAlpha</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.saveLayerAlpha_added(android.graphics.RectF, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>RectF, int</code>)</b>&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<!-- Method saveLayerAlpha -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.saveLayerAlpha_added(float, float, float, float, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float, float, float, float, int</code>)</b>&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<!-- Constructor Scene -->
+<nobr><A HREF="android.transition.Scene.html#android.transition.Scene.ctor_added(android.view.ViewGroup, android.view.View)" class="hiddenlink" target="rightframe"><b>Scene</b>
+(<code>ViewGroup, View</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor ScriptC -->
+<i>ScriptC</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptC.html#android.renderscript.ScriptC.ctor_added(android.renderscript.RenderScript, java.lang.String, byte[], byte[])" class="hiddenlink" target="rightframe"><b>ScriptC</b>
+(<code>RenderScript, String, byte[], byte[]</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor ScriptC -->
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptC.html#android.renderscript.ScriptC.ctor_added(long, android.renderscript.RenderScript)" class="hiddenlink" target="rightframe"><b>ScriptC</b>
+(<code>long, RenderScript</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field SCROLL_AXIS_HORIZONTAL -->
+<nobr><A HREF="android.view.View.html#android.view.View.SCROLL_AXIS_HORIZONTAL" class="hiddenlink" target="rightframe">SCROLL_AXIS_HORIZONTAL</A>
+</nobr><br>
+<!-- Field SCROLL_AXIS_NONE -->
+<nobr><A HREF="android.view.View.html#android.view.View.SCROLL_AXIS_NONE" class="hiddenlink" target="rightframe">SCROLL_AXIS_NONE</A>
+</nobr><br>
+<!-- Field SCROLL_AXIS_VERTICAL -->
+<nobr><A HREF="android.view.View.html#android.view.View.SCROLL_AXIS_VERTICAL" class="hiddenlink" target="rightframe">SCROLL_AXIS_VERTICAL</A>
+</nobr><br>
+<!-- Constructor ScrollView -->
+<nobr><A HREF="android.widget.ScrollView.html#android.widget.ScrollView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ScrollView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field searchIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.searchIcon" class="hiddenlink" target="rightframe">searchIcon</A>
+</nobr><br>
+<!-- Constructor SearchView -->
+<i>SearchView</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.SearchView.html#android.widget.SearchView.ctor_added(android.content.Context, android.util.AttributeSet, int)" class="hiddenlink" target="rightframe"><b>SearchView</b>
+(<code>Context, AttributeSet, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor SearchView -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.SearchView.html#android.widget.SearchView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>SearchView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field searchViewStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.searchViewStyle" class="hiddenlink" target="rightframe">searchViewStyle</A>
+</nobr><br>
+<!-- Field secondaryProgressTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.secondaryProgressTint" class="hiddenlink" target="rightframe">secondaryProgressTint</A>
+</nobr><br>
+<!-- Field secondaryProgressTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.secondaryProgressTintMode" class="hiddenlink" target="rightframe">secondaryProgressTintMode</A>
+</nobr><br>
+<!-- Constructor SeekBar -->
+<nobr><A HREF="android.widget.SeekBar.html#android.widget.SeekBar.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>SeekBar</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field selectableItemBackgroundBorderless -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.selectableItemBackgroundBorderless" class="hiddenlink" target="rightframe">selectableItemBackgroundBorderless</A>
+</nobr><br>
+<!-- Field SELECTION_MODE_MULTIPLE -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.SELECTION_MODE_MULTIPLE" class="hiddenlink" target="rightframe">SELECTION_MODE_MULTIPLE</A>
+</nobr><br>
+<!-- Field SELECTION_MODE_NONE -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.SELECTION_MODE_NONE" class="hiddenlink" target="rightframe">SELECTION_MODE_NONE</A>
+</nobr><br>
+<!-- Field SELECTION_MODE_SINGLE -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.SELECTION_MODE_SINGLE" class="hiddenlink" target="rightframe">SELECTION_MODE_SINGLE</A>
+</nobr><br>
+<!-- Method sendEnvelopeWithStatus -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.sendEnvelopeWithStatus_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>sendEnvelopeWithStatus</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Field sendingUid -->
+<nobr><A HREF="android.os.Message.html#android.os.Message.sendingUid" class="hiddenlink" target="rightframe">sendingUid</A>
+</nobr><br>
+<!-- Method sendMultimediaMessage -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.sendMultimediaMessage_added(android.content.Context, android.net.Uri, java.lang.String, android.os.Bundle, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>sendMultimediaMessage</b>
+(<code>Context, Uri, String, Bundle, PendingIntent</code>)</A></nobr><br>
+<!-- Field sessionService -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.sessionService" class="hiddenlink" target="rightframe">sessionService</A>
+</nobr><br>
+<!-- Method setAcceptThirdPartyCookies -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.setAcceptThirdPartyCookies_added(android.webkit.WebView, boolean)" class="hiddenlink" target="rightframe"><b>setAcceptThirdPartyCookies</b>
+(<code>WebView, boolean</code>)</A></nobr><br>
+<!-- Method setAccountManagementDisabled -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setAccountManagementDisabled_added(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setAccountManagementDisabled</b>
+(<code>ComponentName, String, boolean</code>)</A></nobr><br>
+<!-- Method setActionBar -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.setActionBar_added(android.widget.Toolbar)" class="hiddenlink" target="rightframe"><b>setActionBar</b>
+(<code>Toolbar</code>)</A></nobr><br>
+<!-- Method setAlarmClock -->
+<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.setAlarmClock_added(android.app.AlarmManager.AlarmClockInfo, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>setAlarmClock</b>
+(<code>AlarmClockInfo, PendingIntent</code>)</A></nobr><br>
+<!-- Method setAllowEnterTransitionOverlap -->
+<i>setAllowEnterTransitionOverlap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setAllowEnterTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setAllowEnterTransitionOverlap -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setAllowEnterTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setAllowReturnTransitionOverlap -->
+<i>setAllowReturnTransitionOverlap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setAllowReturnTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setAllowReturnTransitionOverlap -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setAllowReturnTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setApplicationHidden -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setApplicationHidden_added(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setApplicationHidden</b>
+(<code>ComponentName, String, boolean</code>)</A></nobr><br>
+<!-- Method setApplicationRestrictions -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setApplicationRestrictions_added(android.content.ComponentName, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>setApplicationRestrictions</b>
+(<code>ComponentName, String, Bundle</code>)</A></nobr><br>
+<!-- Method setAttribute -->
+<nobr><A HREF="android.net.nsd.NsdServiceInfo.html#android.net.nsd.NsdServiceInfo.setAttribute_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>setAttribute</b>
+(<code>String, String</code>)</A></nobr><br>
+<!-- Method setAudioAttributes -->
+<i>setAudioAttributes</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AudioAttributes</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+<!-- Method setAudioAttributes -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AudioAttributes</code>)</b>&nbsp;in&nbsp;android.media.Ringtone
+</A></nobr><br>
+<!-- Method setAudioAttributes -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AudioAttributes</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method setAutoTimeRequired -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setAutoTimeRequired_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setAutoTimeRequired</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<!-- Method setBackgroundTintList -->
+<nobr><A HREF="android.view.View.html#android.view.View.setBackgroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setBackgroundTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setBackgroundTintMode -->
+<nobr><A HREF="android.view.View.html#android.view.View.setBackgroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setBackgroundTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setBlocking -->
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.setBlocking_added(boolean)" class="hiddenlink" target="rightframe"><b>setBlocking</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setButtonTintList -->
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.setButtonTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setButtonTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setButtonTintMode -->
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.setButtonTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setButtonTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setCallback -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.setCallback_added(android.media.MediaCodec.Callback)" class="hiddenlink" target="rightframe"><b>setCallback</b>
+(<code>Callback</code>)</A></nobr><br>
+<!-- Method setCategory -->
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setCategory_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setCategory</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setCheckMarkTintList -->
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.setCheckMarkTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setCheckMarkTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setCheckMarkTintMode -->
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.setCheckMarkTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setCheckMarkTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setClipToOutline -->
+<nobr><A HREF="android.view.View.html#android.view.View.setClipToOutline_added(boolean)" class="hiddenlink" target="rightframe"><b>setClipToOutline</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setColor -->
+<i>setColor</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setColor_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.app.Notification.Builder
+</A></nobr><br>
+<!-- Method setColor -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.GradientDrawable.html#android.graphics.drawable.GradientDrawable.setColor_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ColorStateList</code>)</b>&nbsp;in&nbsp;android.graphics.drawable.GradientDrawable
+</A></nobr><br>
+<!-- Method setColor -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.setColor_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.widget.EdgeEffect
+</A></nobr><br>
+<!-- Method setConfiguration -->
+<nobr><A HREF="android.hardware.usb.UsbDeviceConnection.html#android.hardware.usb.UsbDeviceConnection.setConfiguration_added(android.hardware.usb.UsbConfiguration)" class="hiddenlink" target="rightframe"><b>setConfiguration</b>
+(<code>UsbConfiguration</code>)</A></nobr><br>
+<!-- Method setContentTransitionManager -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.setContentTransitionManager_added(android.transition.TransitionManager)" class="hiddenlink" target="rightframe"><b>setContentTransitionManager</b>
+(<code>TransitionManager</code>)</A></nobr><br>
+<!-- Method setConverter -->
+<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.setConverter_added(android.animation.TypeConverter)" class="hiddenlink" target="rightframe"><b>setConverter</b>
+(<code>TypeConverter</code>)</A></nobr><br>
+<!-- Method setCookie -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.setCookie_added(java.lang.String, java.lang.String, android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>setCookie</b>
+(<code>String, String, ValueCallback&lt;Boolean&gt;</code>)</A></nobr><br>
+<!-- Method setCropRect -->
+<nobr><A HREF="android.media.Image.html#android.media.Image.setCropRect_added(android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>setCropRect</b>
+(<code>Rect</code>)</A></nobr><br>
+<!-- Method setCrossProfileCallerIdDisabled -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setCrossProfileCallerIdDisabled_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setCrossProfileCallerIdDisabled</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<!-- Method setDrawable -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setDrawable_added(android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe"><b>setDrawable</b>
+(<code>Drawable</code>)</A></nobr><br>
+<!-- Method setElegantTextHeight -->
+<i>setElegantTextHeight</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setElegantTextHeight_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+<!-- Method setElegantTextHeight -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setElegantTextHeight_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<!-- Method setElevation -->
+<i>setElevation</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setElevation_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+<!-- Method setElevation -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.View.html#android.view.View.setElevation_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.view.View
+</A></nobr><br>
+<!-- Method setElevation -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.PopupWindow.html#android.widget.PopupWindow.setElevation_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.widget.PopupWindow
+</A></nobr><br>
+<!-- Method setEnterSharedElementCallback -->
+<i>setEnterSharedElementCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setEnterSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+<!-- Method setEnterSharedElementCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setEnterSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setEnterTransition -->
+<i>setEnterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setEnterTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setEpicenterCallback -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.setEpicenterCallback_added(android.transition.Transition.EpicenterCallback)" class="hiddenlink" target="rightframe"><b>setEpicenterCallback</b>
+(<code>EpicenterCallback</code>)</A></nobr><br>
+<!-- Method setError -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.setError_added(java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>setError</b>
+(<code>CharSequence</code>)</A></nobr><br>
+<!-- Method setExitSharedElementCallback -->
+<i>setExitSharedElementCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setExitSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+<!-- Method setExitSharedElementCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setExitSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setExitTransition -->
+<i>setExitTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setExitTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setExitTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setExitTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setFastScrollStyle -->
+<nobr><A HREF="android.widget.AbsListView.html#android.widget.AbsListView.setFastScrollStyle_added(int)" class="hiddenlink" target="rightframe"><b>setFastScrollStyle</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setFeatureEnabled -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.setFeatureEnabled_added(java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setFeatureEnabled</b>
+(<code>String, boolean</code>)</A></nobr><br>
+<!-- Method setFirstDayOfWeek -->
+<nobr><A HREF="android.widget.DatePicker.html#android.widget.DatePicker.setFirstDayOfWeek_added(int)" class="hiddenlink" target="rightframe"><b>setFirstDayOfWeek</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setFontFeatureSettings -->
+<i>setFontFeatureSettings</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setFontFeatureSettings_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+<!-- Method setFontFeatureSettings -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setFontFeatureSettings_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<!-- Method setForegroundTintList -->
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.setForegroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setForegroundTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setForegroundTintMode -->
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.setForegroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setForegroundTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setFromDegrees -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setFromDegrees_added(float)" class="hiddenlink" target="rightframe"><b>setFromDegrees</b>
+(<code>float</code>)</A></nobr><br>
+<!-- Method setGlobalSetting -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setGlobalSetting_added(android.content.ComponentName, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>setGlobalSetting</b>
+(<code>ComponentName, String, String</code>)</A></nobr><br>
+<!-- Method setHideOffset -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setHideOffset_added(int)" class="hiddenlink" target="rightframe"><b>setHideOffset</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setHideOnContentScrollEnabled -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setHideOnContentScrollEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setHideOnContentScrollEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setHotspot -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setHotspot_added(float, float)" class="hiddenlink" target="rightframe"><b>setHotspot</b>
+(<code>float, float</code>)</A></nobr><br>
+<!-- Method setHotspotBounds -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setHotspotBounds_added(int, int, int, int)" class="hiddenlink" target="rightframe"><b>setHotspotBounds</b>
+(<code>int, int, int, int</code>)</A></nobr><br>
+<!-- Method setImageTintList -->
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.setImageTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setImageTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setImageTintMode -->
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.setImageTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setImageTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setIndeterminateDrawableTiled -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setIndeterminateDrawableTiled_added(android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe"><b>setIndeterminateDrawableTiled</b>
+(<code>Drawable</code>)</A></nobr><br>
+<!-- Method setIndeterminateTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setIndeterminateTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setIndeterminateTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setIndeterminateTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setIndeterminateTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setIndeterminateTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setInterface -->
+<nobr><A HREF="android.hardware.usb.UsbDeviceConnection.html#android.hardware.usb.UsbDeviceConnection.setInterface_added(android.hardware.usb.UsbInterface)" class="hiddenlink" target="rightframe"><b>setInterface</b>
+(<code>UsbInterface</code>)</A></nobr><br>
+<!-- Method setIntValue -->
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.setIntValue_added(int)" class="hiddenlink" target="rightframe"><b>setIntValue</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setLetterSpacing -->
+<i>setLetterSpacing</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setLetterSpacing_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+<!-- Method setLetterSpacing -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setLetterSpacing_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<!-- Method setLockTaskPackages -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setLockTaskPackages_added(android.content.ComponentName, java.lang.String[])" class="hiddenlink" target="rightframe"><b>setLockTaskPackages</b>
+(<code>ComponentName, String[]</code>)</A></nobr><br>
+<!-- Method setMasterVolumeMuted -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setMasterVolumeMuted_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setMasterVolumeMuted</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<!-- Method setMatchOrder -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.setMatchOrder_added(int...)" class="hiddenlink" target="rightframe"><b>setMatchOrder</b>
+()</A></nobr><br>
+<!-- Method setMaxTextLength -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.setMaxTextLength_added(int)" class="hiddenlink" target="rightframe"><b>setMaxTextLength</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setMediaController -->
+<i>setMediaController</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setMediaController_added(android.media.session.MediaController)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>MediaController</code>)</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+<!-- Method setMediaController -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setMediaController_added(android.media.session.MediaController)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>MediaController</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setMixedContentMode -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setMixedContentMode_added(int)" class="hiddenlink" target="rightframe"><b>setMixedContentMode</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setMode -->
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.setMode_added(int)" class="hiddenlink" target="rightframe"><b>setMode</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setNavigationBarColor -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.setNavigationBarColor_added(int)" class="hiddenlink" target="rightframe"><b>setNavigationBarColor</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setNestedScrollingEnabled -->
+<nobr><A HREF="android.view.View.html#android.view.View.setNestedScrollingEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setNestedScrollingEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setOnFrameAvailableListener -->
+<nobr><A HREF="android.graphics.SurfaceTexture.html#android.graphics.SurfaceTexture.setOnFrameAvailableListener_added(android.graphics.SurfaceTexture.OnFrameAvailableListener, android.os.Handler)" class="hiddenlink" target="rightframe"><b>setOnFrameAvailableListener</b>
+(<code>OnFrameAvailableListener, Handler</code>)</A></nobr><br>
+<!-- Method setOutlineProvider -->
+<nobr><A HREF="android.view.View.html#android.view.View.setOutlineProvider_added(android.view.ViewOutlineProvider)" class="hiddenlink" target="rightframe"><b>setOutlineProvider</b>
+(<code>ViewOutlineProvider</code>)</A></nobr><br>
+<!-- Method setOverlay -->
+<nobr><A HREF="android.widget.QuickContactBadge.html#android.widget.QuickContactBadge.setOverlay_added(android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe"><b>setOverlay</b>
+(<code>Drawable</code>)</A></nobr><br>
+<!-- Method setPaddingMode -->
+<nobr><A HREF="android.graphics.drawable.LayerDrawable.html#android.graphics.drawable.LayerDrawable.setPaddingMode_added(int)" class="hiddenlink" target="rightframe"><b>setPaddingMode</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setPathMotion -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.setPathMotion_added(android.transition.PathMotion)" class="hiddenlink" target="rightframe"><b>setPathMotion</b>
+(<code>PathMotion</code>)</A></nobr><br>
+<!-- Method setPermittedAccessibilityServices -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setPermittedAccessibilityServices_added(android.content.ComponentName, java.util.List<java.lang.String>)" class="hiddenlink" target="rightframe"><b>setPermittedAccessibilityServices</b>
+(<code>ComponentName, List&lt;String&gt;</code>)</A></nobr><br>
+<!-- Method setPermittedInputMethods -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setPermittedInputMethods_added(android.content.ComponentName, java.util.List<java.lang.String>)" class="hiddenlink" target="rightframe"><b>setPermittedInputMethods</b>
+(<code>ComponentName, List&lt;String&gt;</code>)</A></nobr><br>
+<!-- Method setPivotX -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setPivotX_added(float)" class="hiddenlink" target="rightframe"><b>setPivotX</b>
+(<code>float</code>)</A></nobr><br>
+<!-- Method setPivotXRelative -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setPivotXRelative_added(boolean)" class="hiddenlink" target="rightframe"><b>setPivotXRelative</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setPivotY -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setPivotY_added(float)" class="hiddenlink" target="rightframe"><b>setPivotY</b>
+(<code>float</code>)</A></nobr><br>
+<!-- Method setPivotYRelative -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setPivotYRelative_added(boolean)" class="hiddenlink" target="rightframe"><b>setPivotYRelative</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setPreferredService -->
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.setPreferredService_added(android.app.Activity, android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>setPreferredService</b>
+(<code>Activity, ComponentName</code>)</A></nobr><br>
+<!-- Method setProcessDefaultNetwork -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.setProcessDefaultNetwork_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>setProcessDefaultNetwork</b>
+(<code>Network</code>)</A></nobr><br>
+<!-- Method setProfileEnabled -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setProfileEnabled_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>setProfileEnabled</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method setProfileName -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setProfileName_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>setProfileName</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method setProgressBackgroundTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressBackgroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setProgressBackgroundTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setProgressBackgroundTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressBackgroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setProgressBackgroundTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setProgressDrawableTiled -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressDrawableTiled_added(android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe"><b>setProgressDrawableTiled</b>
+(<code>Drawable</code>)</A></nobr><br>
+<!-- Method setProgressTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setProgressTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setProgressTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setProgressTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setPropagation -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.setPropagation_added(android.transition.TransitionPropagation)" class="hiddenlink" target="rightframe"><b>setPropagation</b>
+(<code>TransitionPropagation</code>)</A></nobr><br>
+<!-- Method setPublicVersion -->
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setPublicVersion_added(android.app.Notification)" class="hiddenlink" target="rightframe"><b>setPublicVersion</b>
+(<code>Notification</code>)</A></nobr><br>
+<!-- Method setRecommendedGlobalProxy -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setRecommendedGlobalProxy_added(android.content.ComponentName, android.net.ProxyInfo)" class="hiddenlink" target="rightframe"><b>setRecommendedGlobalProxy</b>
+(<code>ComponentName, ProxyInfo</code>)</A></nobr><br>
+<!-- Method setReenterTransition -->
+<i>setReenterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setReenterTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setRemoveOnCancelPolicy -->
+<nobr><A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html#java.util.concurrent.ScheduledThreadPoolExecutor.setRemoveOnCancelPolicy_added(boolean)" class="hiddenlink" target="rightframe"><b>setRemoveOnCancelPolicy</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setResponseHeaders -->
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.setResponseHeaders_added(java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe"><b>setResponseHeaders</b>
+(<code>Map&lt;String, String&gt;</code>)</A></nobr><br>
+<!-- Method setRestrictionsProvider -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setRestrictionsProvider_added(android.content.ComponentName, android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>setRestrictionsProvider</b>
+(<code>ComponentName, ComponentName</code>)</A></nobr><br>
+<!-- Method setReturnTransition -->
+<i>setReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setReturnTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setScreenCaptureDisabled -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setScreenCaptureDisabled_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setScreenCaptureDisabled</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<!-- Method setSecondaryProgressTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setSecondaryProgressTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setSecondaryProgressTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setSecondaryProgressTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setSecondaryProgressTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setSecondaryProgressTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setSecureSetting -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setSecureSetting_added(android.content.ComponentName, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>setSecureSetting</b>
+(<code>ComponentName, String, String</code>)</A></nobr><br>
+<!-- Method setSelectionFromTop -->
+<nobr><A HREF="android.widget.AbsListView.html#android.widget.AbsListView.setSelectionFromTop_added(int, int)" class="hiddenlink" target="rightframe"><b>setSelectionFromTop</b>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Method setSharedElementEnterTransition -->
+<i>setSharedElementEnterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setSharedElementEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setSharedElementEnterTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setSharedElementExitTransition -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementExitTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setSharedElementExitTransition</b>
+(<code>Transition</code>)</A></nobr><br>
+<!-- Method setSharedElementReenterTransition -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setSharedElementReenterTransition</b>
+(<code>Transition</code>)</A></nobr><br>
+<!-- Method setSharedElementReturnTransition -->
+<i>setSharedElementReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setSharedElementReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setSharedElementReturnTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setSharedElementsUseOverlay -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementsUseOverlay_added(boolean)" class="hiddenlink" target="rightframe"><b>setSharedElementsUseOverlay</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setShowSoftInputOnFocus -->
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setShowSoftInputOnFocus_added(boolean)" class="hiddenlink" target="rightframe"><b>setShowSoftInputOnFocus</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setShowText -->
+<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.setShowText_added(boolean)" class="hiddenlink" target="rightframe"><b>setShowText</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setSound -->
+<i>setSound</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_added(android.net.Uri, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Uri, AudioAttributes</code>)</b>&nbsp;in&nbsp;android.app.Notification.Builder
+</A></nobr><br>
+<!-- Method setSound -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_added(android.net.Uri, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Uri, int</code>)</b>&nbsp;in&nbsp;android.app.Notification.Builder
+</A></nobr><br>
+<!-- Method setSplitTrack -->
+<i>setSplitTrack</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.setSplitTrack_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.widget.AbsSeekBar
+</A></nobr><br>
+<!-- Method setSplitTrack -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.setSplitTrack_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.widget.Switch
+</A></nobr><br>
+<!-- Method setStateListAnimator -->
+<nobr><A HREF="android.view.View.html#android.view.View.setStateListAnimator_added(android.animation.StateListAnimator)" class="hiddenlink" target="rightframe"><b>setStateListAnimator</b>
+(<code>StateListAnimator</code>)</A></nobr><br>
+<!-- Method setStatusBarColor -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.setStatusBarColor_added(int)" class="hiddenlink" target="rightframe"><b>setStatusBarColor</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setStatusCodeAndReasonPhrase -->
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.setStatusCodeAndReasonPhrase_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>setStatusCodeAndReasonPhrase</b>
+(<code>int, String</code>)</A></nobr><br>
+<!-- Method setStroke -->
+<i>setStroke</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.GradientDrawable.html#android.graphics.drawable.GradientDrawable.setStroke_added(int, android.content.res.ColorStateList)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, ColorStateList</code>)</b>&nbsp;in&nbsp;android.graphics.drawable.GradientDrawable
+</A></nobr><br>
+<!-- Method setStroke -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.GradientDrawable.html#android.graphics.drawable.GradientDrawable.setStroke_added(int, android.content.res.ColorStateList, float, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, ColorStateList, float, float</code>)</b>&nbsp;in&nbsp;android.graphics.drawable.GradientDrawable
+</A></nobr><br>
+<!-- Method setTaskDescription -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.setTaskDescription_added(android.app.ActivityManager.TaskDescription)" class="hiddenlink" target="rightframe"><b>setTaskDescription</b>
+(<code>TaskDescription</code>)</A></nobr><br>
+<!-- Method setThumbTintList -->
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.setThumbTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setThumbTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setThumbTintMode -->
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.setThumbTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setThumbTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setTint -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTint_added(int)" class="hiddenlink" target="rightframe"><b>setTint</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setTintList -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setTintMode -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setToDegrees -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setToDegrees_added(float)" class="hiddenlink" target="rightframe"><b>setToDegrees</b>
+(<code>float</code>)</A></nobr><br>
+<!-- Method setTouchscreenBlocksFocus -->
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.setTouchscreenBlocksFocus_added(boolean)" class="hiddenlink" target="rightframe"><b>setTouchscreenBlocksFocus</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setTransitionBackgroundFadeDuration -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.setTransitionBackgroundFadeDuration_added(long)" class="hiddenlink" target="rightframe"><b>setTransitionBackgroundFadeDuration</b>
+(<code>long</code>)</A></nobr><br>
+<!-- Method setTransitionGroup -->
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.setTransitionGroup_added(boolean)" class="hiddenlink" target="rightframe"><b>setTransitionGroup</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setTransitionManager -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.setTransitionManager_added(android.transition.TransitionManager)" class="hiddenlink" target="rightframe"><b>setTransitionManager</b>
+(<code>TransitionManager</code>)</A></nobr><br>
+<!-- Method setTransitionName -->
+<nobr><A HREF="android.view.View.html#android.view.View.setTransitionName_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setTransitionName</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setTranslationZ -->
+<nobr><A HREF="android.view.View.html#android.view.View.setTranslationZ_added(float)" class="hiddenlink" target="rightframe"><b>setTranslationZ</b>
+(<code>float</code>)</A></nobr><br>
+<!-- Method setUninstallBlocked -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setUninstallBlocked_added(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setUninstallBlocked</b>
+(<code>ComponentName, String, boolean</code>)</A></nobr><br>
+<!-- Field setupActivity -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.setupActivity" class="hiddenlink" target="rightframe">setupActivity</A>
+</nobr><br>
+<!-- Method setVideoURI -->
+<nobr><A HREF="android.widget.VideoView.html#android.widget.VideoView.setVideoURI_added(android.net.Uri, java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe"><b>setVideoURI</b>
+(<code>Uri, Map&lt;String, String&gt;</code>)</A></nobr><br>
+<!-- Method setView -->
+<nobr><A HREF="android.app.AlertDialog.Builder.html#android.app.AlertDialog.Builder.setView_added(int)" class="hiddenlink" target="rightframe"><b>setView</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setVisibility -->
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setVisibility_added(int)" class="hiddenlink" target="rightframe"><b>setVisibility</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setVoice -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.setVoice_added(android.speech.tts.Voice)" class="hiddenlink" target="rightframe"><b>setVoice</b>
+(<code>Voice</code>)</A></nobr><br>
+<!-- Method setVolume -->
+<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.setVolume_added(float)" class="hiddenlink" target="rightframe"><b>setVolume</b>
+(<code>float</code>)</A></nobr><br>
+<!-- Method setZ -->
+<nobr><A HREF="android.view.View.html#android.view.View.setZ_added(float)" class="hiddenlink" target="rightframe"><b>setZ</b>
+(<code>float</code>)</A></nobr><br>
+<!-- Class SharedElementCallback -->
+<A HREF="pkg_android.app.html#SharedElementCallback" class="hiddenlink" target="rightframe"><b>SharedElementCallback</b></A><br>
+<!-- Method shouldInterceptRequest -->
+<i>shouldInterceptRequest</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, android.webkit.WebResourceRequest)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>WebView, WebResourceRequest</code>)</b>&nbsp;in&nbsp;android.webkit.WebViewClient
+</A></nobr><br>
+<!-- Method shouldInterceptRequest -->
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>WebView, String</code>)</b>&nbsp;in&nbsp;android.webkit.WebViewClient
+</A></nobr><br>
+<!-- Field showText -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.showText" class="hiddenlink" target="rightframe">showText</A>
+</nobr><br>
+<!-- Class SidePropagation -->
+<A HREF="pkg_android.transition.html#SidePropagation" class="hiddenlink" target="rightframe"><b>SidePropagation</b></A><br>
+<!-- Field SIM -->
+<nobr><A HREF="android.net.wifi.WifiEnterpriseConfig.Eap.html#android.net.wifi.WifiEnterpriseConfig.Eap.SIM" class="hiddenlink" target="rightframe">SIM</A>
+</nobr><br>
+<!-- Class Size -->
+<A HREF="pkg_android.util.html#Size" class="hiddenlink" target="rightframe"><b>Size</b></A><br>
+<!-- Class SizeF -->
+<A HREF="pkg_android.util.html#SizeF" class="hiddenlink" target="rightframe"><b>SizeF</b></A><br>
+<!-- Field SKIP_FIRST_USE_HINTS -->
+<nobr><A HREF="android.provider.Settings.Secure.html#android.provider.Settings.Secure.SKIP_FIRST_USE_HINTS" class="hiddenlink" target="rightframe">SKIP_FIRST_USE_HINTS</A>
+</nobr><br>
+<!-- Class Slide -->
+<A HREF="pkg_android.transition.html#Slide" class="hiddenlink" target="rightframe"><b>Slide</b></A><br>
+<!-- Field slideEdge -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.slideEdge" class="hiddenlink" target="rightframe">slideEdge</A>
+</nobr><br>
+<!-- Constructor SlidingDrawer -->
+<nobr><A HREF="android.widget.SlidingDrawer.html#android.widget.SlidingDrawer.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>SlidingDrawer</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class SoundPool.Builder -->
+<A HREF="pkg_android.media.html#SoundPool.Builder" class="hiddenlink" target="rightframe"><b>SoundPool.Builder</b></A><br>
+<!-- Field SOURCE_HDMI -->
+<nobr><A HREF="android.view.InputDevice.html#android.view.InputDevice.SOURCE_HDMI" class="hiddenlink" target="rightframe">SOURCE_HDMI</A>
+</nobr><br>
+<!-- Constructor Space -->
+<nobr><A HREF="android.widget.Space.html#android.widget.Space.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>Space</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Method speak -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.speak_added(java.lang.CharSequence, int, android.os.Bundle, java.lang.String)" class="hiddenlink" target="rightframe"><b>speak</b>
+(<code>CharSequence, int, Bundle, String</code>)</A></nobr><br>
+<!-- Method spec -->
+<i>spec</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, android.widget.GridLayout.Alignment, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, Alignment, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+<!-- Method spec -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+<!-- Method spec -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, int, android.widget.GridLayout.Alignment, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, Alignment, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+<!-- Method spec -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, int, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+<!-- Constructor Spinner -->
+<nobr><A HREF="android.widget.Spinner.html#android.widget.Spinner.ctor_added(android.content.Context, android.util.AttributeSet, int, int, int)" class="hiddenlink" target="rightframe"><b>Spinner</b>
+(<code>Context, AttributeSet, int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field splitNames -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.splitNames" class="hiddenlink" target="rightframe">splitNames</A>
+</nobr><br>
+<!-- Field splitPublicSourceDirs -->
+<i>splitPublicSourceDirs</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.splitPublicSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.ApplicationInfo</A>
+</nobr><br>
+<!-- Field splitPublicSourceDirs -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.InstrumentationInfo.html#android.content.pm.InstrumentationInfo.splitPublicSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.InstrumentationInfo</A>
+</nobr><br>
+<!-- Field splitSourceDirs -->
+<i>splitSourceDirs</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.splitSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.ApplicationInfo</A>
+</nobr><br>
+<!-- Field splitSourceDirs -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.InstrumentationInfo.html#android.content.pm.InstrumentationInfo.splitSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.InstrumentationInfo</A>
+</nobr><br>
+<!-- Field splitTrack -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.splitTrack" class="hiddenlink" target="rightframe">splitTrack</A>
+</nobr><br>
+<!-- Field spotShadowAlpha -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.spotShadowAlpha" class="hiddenlink" target="rightframe">spotShadowAlpha</A>
+</nobr><br>
+<!-- Constructor StackView -->
+<nobr><A HREF="android.widget.StackView.html#android.widget.StackView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>StackView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field stackViewStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.stackViewStyle" class="hiddenlink" target="rightframe">stackViewStyle</A>
+</nobr><br>
+<!-- Method startAppWidgetConfigureActivityForResult -->
+<nobr><A HREF="android.appwidget.AppWidgetHost.html#android.appwidget.AppWidgetHost.startAppWidgetConfigureActivityForResult_added(android.app.Activity, int, int, int, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>startAppWidgetConfigureActivityForResult</b>
+(<code>Activity, int, int, int, Bundle</code>)</A></nobr><br>
+<!-- Method startLockTask -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.startLockTask_added()" class="hiddenlink" target="rightframe"><b>startLockTask</b>
+()</A></nobr><br>
+<!-- Method startMethodTracingSampling -->
+<nobr><A HREF="android.os.Debug.html#android.os.Debug.startMethodTracingSampling_added(java.lang.String, int, int)" class="hiddenlink" target="rightframe"><b>startMethodTracingSampling</b>
+(<code>String, int, int</code>)</A></nobr><br>
+<!-- Method startNestedScroll -->
+<nobr><A HREF="android.view.View.html#android.view.View.startNestedScroll_added(int)" class="hiddenlink" target="rightframe"><b>startNestedScroll</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method startPostponedEnterTransition -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.startPostponedEnterTransition_added()" class="hiddenlink" target="rightframe"><b>startPostponedEnterTransition</b>
+()</A></nobr><br>
+<!-- Method startWps -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.startWps_added(android.net.wifi.WpsInfo, android.net.wifi.WifiManager.WpsCallback)" class="hiddenlink" target="rightframe"><b>startWps</b>
+(<code>WpsInfo, WpsCallback</code>)</A></nobr><br>
+<!-- Field STATE_DOZE -->
+<nobr><A HREF="android.view.Display.html#android.view.Display.STATE_DOZE" class="hiddenlink" target="rightframe">STATE_DOZE</A>
+</nobr><br>
+<!-- Field STATE_DOZE_SUSPEND -->
+<nobr><A HREF="android.view.Display.html#android.view.Display.STATE_DOZE_SUSPEND" class="hiddenlink" target="rightframe">STATE_DOZE_SUSPEND</A>
+</nobr><br>
+<!-- Class StateListAnimator -->
+<A HREF="pkg_android.animation.html#StateListAnimator" class="hiddenlink" target="rightframe"><b>StateListAnimator</b></A><br>
+<!-- Field stateListAnimator -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.stateListAnimator" class="hiddenlink" target="rightframe">stateListAnimator</A>
+</nobr><br>
+<!-- Field STATUS_BAR_BACKGROUND_TRANSITION_NAME -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.STATUS_BAR_BACKGROUND_TRANSITION_NAME" class="hiddenlink" target="rightframe">STATUS_BAR_BACKGROUND_TRANSITION_NAME</A>
+</nobr><br>
+<!-- Field statusBarBackground -->
+<nobr><A HREF="android.R.id.html#android.R.id.statusBarBackground" class="hiddenlink" target="rightframe">statusBarBackground</A>
+</nobr><br>
+<!-- Field statusBarColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.statusBarColor" class="hiddenlink" target="rightframe">statusBarColor</A>
+</nobr><br>
+<!-- Method stopLockTask -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.stopLockTask_added()" class="hiddenlink" target="rightframe"><b>stopLockTask</b>
+()</A></nobr><br>
+<!-- Method stopNestedScroll -->
+<nobr><A HREF="android.view.View.html#android.view.View.stopNestedScroll_added()" class="hiddenlink" target="rightframe"><b>stopNestedScroll</b>
+()</A></nobr><br>
+<!-- Field STOPPED -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.STOPPED" class="hiddenlink" target="rightframe">STOPPED</A>
+</nobr><br>
+<!-- Field STREQUENT_PHONE_ONLY -->
+<nobr><A HREF="android.provider.ContactsContract.html#android.provider.ContactsContract.STREQUENT_PHONE_ONLY" class="hiddenlink" target="rightframe">STREQUENT_PHONE_ONLY</A>
+</nobr><br>
+<!-- Field strokeAlpha -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeAlpha" class="hiddenlink" target="rightframe">strokeAlpha</A>
+</nobr><br>
+<!-- Field strokeColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeColor" class="hiddenlink" target="rightframe">strokeColor</A>
+</nobr><br>
+<!-- Field strokeLineCap -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeLineCap" class="hiddenlink" target="rightframe">strokeLineCap</A>
+</nobr><br>
+<!-- Field strokeLineJoin -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeLineJoin" class="hiddenlink" target="rightframe">strokeLineJoin</A>
+</nobr><br>
+<!-- Field strokeMiterLimit -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeMiterLimit" class="hiddenlink" target="rightframe">strokeMiterLimit</A>
+</nobr><br>
+<!-- Field strokeWidth -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeWidth" class="hiddenlink" target="rightframe">strokeWidth</A>
+</nobr><br>
+<!-- Field submitBackground -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.submitBackground" class="hiddenlink" target="rightframe">submitBackground</A>
+</nobr><br>
+<!-- Field subtitleTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.subtitleTextAppearance" class="hiddenlink" target="rightframe">subtitleTextAppearance</A>
+</nobr><br>
+<!-- Field SUGGEST_COLUMN_AUDIO_CHANNEL_CONFIG -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_AUDIO_CHANNEL_CONFIG" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_AUDIO_CHANNEL_CONFIG</A>
+</nobr><br>
+<!-- Field SUGGEST_COLUMN_CONTENT_TYPE -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_CONTENT_TYPE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_CONTENT_TYPE</A>
+</nobr><br>
+<!-- Field SUGGEST_COLUMN_DURATION -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_DURATION" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_DURATION</A>
+</nobr><br>
+<!-- Field SUGGEST_COLUMN_IS_LIVE -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_IS_LIVE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_IS_LIVE</A>
+</nobr><br>
+<!-- Field SUGGEST_COLUMN_PRODUCTION_YEAR -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_PRODUCTION_YEAR" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_PRODUCTION_YEAR</A>
+</nobr><br>
+<!-- Field SUGGEST_COLUMN_PURCHASE_PRICE -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_PURCHASE_PRICE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_PURCHASE_PRICE</A>
+</nobr><br>
+<!-- Field SUGGEST_COLUMN_RATING_SCORE -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_RATING_SCORE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_RATING_SCORE</A>
+</nobr><br>
+<!-- Field SUGGEST_COLUMN_RATING_STYLE -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_RATING_STYLE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_RATING_STYLE</A>
+</nobr><br>
+<!-- Field SUGGEST_COLUMN_RENTAL_PRICE -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_RENTAL_PRICE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_RENTAL_PRICE</A>
+</nobr><br>
+<!-- Field SUGGEST_COLUMN_RESULT_CARD_IMAGE -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_RESULT_CARD_IMAGE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_RESULT_CARD_IMAGE</A>
+</nobr><br>
+<!-- Field SUGGEST_COLUMN_VIDEO_HEIGHT -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_VIDEO_HEIGHT" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_VIDEO_HEIGHT</A>
+</nobr><br>
+<!-- Field SUGGEST_COLUMN_VIDEO_WIDTH -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_VIDEO_WIDTH" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_VIDEO_WIDTH</A>
+</nobr><br>
+<!-- Field suggestionRowLayout -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.suggestionRowLayout" class="hiddenlink" target="rightframe">suggestionRowLayout</A>
+</nobr><br>
+<!-- Field SUPPORTED_32_BIT_ABIS -->
+<nobr><A HREF="android.os.Build.html#android.os.Build.SUPPORTED_32_BIT_ABIS" class="hiddenlink" target="rightframe">SUPPORTED_32_BIT_ABIS</A>
+</nobr><br>
+<!-- Field SUPPORTED_64_BIT_ABIS -->
+<nobr><A HREF="android.os.Build.html#android.os.Build.SUPPORTED_64_BIT_ABIS" class="hiddenlink" target="rightframe">SUPPORTED_64_BIT_ABIS</A>
+</nobr><br>
+<!-- Field SUPPORTED_ABIS -->
+<nobr><A HREF="android.os.Build.html#android.os.Build.SUPPORTED_ABIS" class="hiddenlink" target="rightframe">SUPPORTED_ABIS</A>
+</nobr><br>
+<!-- Method supportsAidPrefixRegistration -->
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.supportsAidPrefixRegistration_added()" class="hiddenlink" target="rightframe"><b>supportsAidPrefixRegistration</b>
+()</A></nobr><br>
+<!-- Method supportsSource -->
+<nobr><A HREF="android.view.InputDevice.html#android.view.InputDevice.supportsSource_added(int)" class="hiddenlink" target="rightframe"><b>supportsSource</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Field SURFACE -->
+<nobr><A HREF="android.media.MediaRecorder.VideoSource.html#android.media.MediaRecorder.VideoSource.SURFACE" class="hiddenlink" target="rightframe">SURFACE</A>
+</nobr><br>
+<!-- Constructor SurfaceView -->
+<nobr><A HREF="android.view.SurfaceView.html#android.view.SurfaceView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>SurfaceView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor Switch -->
+<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>Switch</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor SwitchPreference -->
+<nobr><A HREF="android.preference.SwitchPreference.html#android.preference.SwitchPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>SwitchPreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field switchStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.switchStyle" class="hiddenlink" target="rightframe">switchStyle</A>
+</nobr><br>
+<!-- Method switchUser -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.switchUser_added(android.content.ComponentName, android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>switchUser</b>
+(<code>ComponentName, UserHandle</code>)</A></nobr><br>
+<!-- Constructor SynthesisRequest -->
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.ctor_added(java.lang.CharSequence, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>SynthesisRequest</b>
+(<code>CharSequence, Bundle</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Method synthesizeToFile -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.synthesizeToFile_added(java.lang.CharSequence, android.os.Bundle, java.io.File, java.lang.String)" class="hiddenlink" target="rightframe"><b>synthesizeToFile</b>
+(<code>CharSequence, Bundle, File, String</code>)</A></nobr><br>
+<!-- Constructor TabHost -->
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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">
+<i>TabHost</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TabHost.html#android.widget.TabHost.ctor_added(android.content.Context, android.util.AttributeSet, int)" class="hiddenlink" target="rightframe"><b>TabHost</b>
+(<code>Context, AttributeSet, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor TabHost -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TabHost.html#android.widget.TabHost.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TabHost</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor TabWidget -->
+<nobr><A HREF="android.widget.TabWidget.html#android.widget.TabWidget.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TabWidget</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field targetName -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.targetName" class="hiddenlink" target="rightframe">targetName</A>
+</nobr><br>
+<!-- Field taskDescription -->
+<nobr><A HREF="android.app.ActivityManager.RecentTaskInfo.html#android.app.ActivityManager.RecentTaskInfo.taskDescription" class="hiddenlink" target="rightframe">taskDescription</A>
+</nobr><br>
+<!-- Field TELECOM_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.TELECOM_SERVICE" class="hiddenlink" target="rightframe">TELECOM_SERVICE</A>
+</nobr><br>
+<!-- Field TextAppearance_Material -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material" class="hiddenlink" target="rightframe">TextAppearance_Material</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Body1 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Body1" class="hiddenlink" target="rightframe">TextAppearance_Material_Body1</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Body2 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Body2" class="hiddenlink" target="rightframe">TextAppearance_Material_Body2</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Button -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Button" class="hiddenlink" target="rightframe">TextAppearance_Material_Button</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Caption -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Caption" class="hiddenlink" target="rightframe">TextAppearance_Material_Caption</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_DialogWindowTitle -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_DialogWindowTitle" class="hiddenlink" target="rightframe">TextAppearance_Material_DialogWindowTitle</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Display1 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display1" class="hiddenlink" target="rightframe">TextAppearance_Material_Display1</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Display2 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display2" class="hiddenlink" target="rightframe">TextAppearance_Material_Display2</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Display3 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display3" class="hiddenlink" target="rightframe">TextAppearance_Material_Display3</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Display4 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display4" class="hiddenlink" target="rightframe">TextAppearance_Material_Display4</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Headline -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Headline" class="hiddenlink" target="rightframe">TextAppearance_Material_Headline</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Large -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Large" class="hiddenlink" target="rightframe">TextAppearance_Material_Large</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Large_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Large_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Large_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Medium -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Medium" class="hiddenlink" target="rightframe">TextAppearance_Material_Medium</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Medium_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Medium_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Medium_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Menu -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Menu" class="hiddenlink" target="rightframe">TextAppearance_Material_Menu</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Notification -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Notification_Emphasis -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Emphasis" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Emphasis</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Notification_Info -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Info" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Info</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Notification_Line2 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Line2" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Line2</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Notification_Time -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Time" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Time</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Notification_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Title</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_SearchResult_Subtitle -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_SearchResult_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_SearchResult_Subtitle</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_SearchResult_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_SearchResult_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_SearchResult_Title</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Small" class="hiddenlink" target="rightframe">TextAppearance_Material_Small</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Small_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Small_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Small_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Subhead -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Subhead" class="hiddenlink" target="rightframe">TextAppearance_Material_Subhead</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Title</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionBar_Menu -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Menu" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Menu</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionBar_Subtitle -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Subtitle</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionBar_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Title</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionBar_Title_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Title_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Title_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionMode_Subtitle -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Subtitle</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionMode_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Title</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionMode_Title_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Title_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Title_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_Button -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_Button" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_Button</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_DropDownHint -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_DropDownHint" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_DropDownHint</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_DropDownItem -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_DropDownItem" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_DropDownItem</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_EditText -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_EditText" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_EditText</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_IconMenu_Item -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_IconMenu_Item" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_IconMenu_Item</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_PopupMenu -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_PopupMenu" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_PopupMenu</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_PopupMenu_Large -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_PopupMenu_Large" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_PopupMenu_Large</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_PopupMenu_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_PopupMenu_Small" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_PopupMenu_Small</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_TabWidget -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TabWidget" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TabWidget</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_TextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TextView" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TextView</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_TextView_PopupMenu -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TextView_PopupMenu" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TextView_PopupMenu</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_TextView_SpinnerItem -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TextView_SpinnerItem" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TextView_SpinnerItem</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_Toolbar_Subtitle -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_Toolbar_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_Toolbar_Subtitle</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_Toolbar_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_Toolbar_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_Toolbar_Title</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_WindowTitle -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_WindowTitle" class="hiddenlink" target="rightframe">TextAppearance_Material_WindowTitle</A>
+</nobr><br>
+<!-- Field textAppearanceListItemSecondary -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.textAppearanceListItemSecondary" class="hiddenlink" target="rightframe">textAppearanceListItemSecondary</A>
+</nobr><br>
+<!-- Constructor TextClock -->
+<nobr><A HREF="android.widget.TextClock.html#android.widget.TextClock.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TextClock</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor TextInfo -->
+<nobr><A HREF="android.view.textservice.TextInfo.html#android.view.textservice.TextInfo.ctor_added(java.lang.CharSequence, int, int, int, int)" class="hiddenlink" target="rightframe"><b>TextInfo</b>
+(<code>CharSequence, int, int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor TextureView -->
+<nobr><A HREF="android.view.TextureView.html#android.view.TextureView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TextureView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor TextView -->
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TextView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field Theme_DeviceDefault_Settings -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_DeviceDefault_Settings" class="hiddenlink" target="rightframe">Theme_DeviceDefault_Settings</A>
+</nobr><br>
+<!-- Field Theme_Material -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material" class="hiddenlink" target="rightframe">Theme_Material</A>
+</nobr><br>
+<!-- Field Theme_Material_Dialog -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog" class="hiddenlink" target="rightframe">Theme_Material_Dialog</A>
+</nobr><br>
+<!-- Field Theme_Material_Dialog_Alert -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_Alert" class="hiddenlink" target="rightframe">Theme_Material_Dialog_Alert</A>
+</nobr><br>
+<!-- Field Theme_Material_Dialog_MinWidth -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Dialog_MinWidth</A>
+</nobr><br>
+<!-- Field Theme_Material_Dialog_NoActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Dialog_NoActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_Dialog_NoActionBar_MinWidth -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_NoActionBar_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Dialog_NoActionBar_MinWidth</A>
+</nobr><br>
+<!-- Field Theme_Material_Dialog_Presentation -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_Presentation" class="hiddenlink" target="rightframe">Theme_Material_Dialog_Presentation</A>
+</nobr><br>
+<!-- Field Theme_Material_DialogWhenLarge -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_DialogWhenLarge" class="hiddenlink" target="rightframe">Theme_Material_DialogWhenLarge</A>
+</nobr><br>
+<!-- Field Theme_Material_DialogWhenLarge_NoActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_DialogWhenLarge_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_DialogWhenLarge_NoActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_InputMethod -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_InputMethod" class="hiddenlink" target="rightframe">Theme_Material_InputMethod</A>
+</nobr><br>
+<!-- Field Theme_Material_Light -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light" class="hiddenlink" target="rightframe">Theme_Material_Light</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_DarkActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_DarkActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_DarkActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Dialog -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Dialog_Alert -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_Alert" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_Alert</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Dialog_MinWidth -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_MinWidth</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Dialog_NoActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_NoActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Dialog_NoActionBar_MinWidth -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_NoActionBar_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_NoActionBar_MinWidth</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Dialog_Presentation -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_Presentation" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_Presentation</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_DialogWhenLarge -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_DialogWhenLarge" class="hiddenlink" target="rightframe">Theme_Material_Light_DialogWhenLarge</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_DialogWhenLarge_NoActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_DialogWhenLarge_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_DialogWhenLarge_NoActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_NoActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_NoActionBar_Fullscreen -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar_Fullscreen" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar_Fullscreen</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_NoActionBar_Overscan -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar_Overscan" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar_Overscan</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_NoActionBar_TranslucentDecor -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar_TranslucentDecor" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar_TranslucentDecor</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Panel -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Panel" class="hiddenlink" target="rightframe">Theme_Material_Light_Panel</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Voice -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Voice" class="hiddenlink" target="rightframe">Theme_Material_Light_Voice</A>
+</nobr><br>
+<!-- Field Theme_Material_NoActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_NoActionBar_Fullscreen -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar_Fullscreen" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar_Fullscreen</A>
+</nobr><br>
+<!-- Field Theme_Material_NoActionBar_Overscan -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar_Overscan" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar_Overscan</A>
+</nobr><br>
+<!-- Field Theme_Material_NoActionBar_TranslucentDecor -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar_TranslucentDecor" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar_TranslucentDecor</A>
+</nobr><br>
+<!-- Field Theme_Material_Panel -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Panel" class="hiddenlink" target="rightframe">Theme_Material_Panel</A>
+</nobr><br>
+<!-- Field Theme_Material_Settings -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Settings" class="hiddenlink" target="rightframe">Theme_Material_Settings</A>
+</nobr><br>
+<!-- Field Theme_Material_Voice -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Voice" class="hiddenlink" target="rightframe">Theme_Material_Voice</A>
+</nobr><br>
+<!-- Field Theme_Material_Wallpaper -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Wallpaper" class="hiddenlink" target="rightframe">Theme_Material_Wallpaper</A>
+</nobr><br>
+<!-- Field Theme_Material_Wallpaper_NoTitleBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Wallpaper_NoTitleBar" class="hiddenlink" target="rightframe">Theme_Material_Wallpaper_NoTitleBar</A>
+</nobr><br>
+<!-- Field ThemeOverlay -->
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay" class="hiddenlink" target="rightframe">ThemeOverlay</A>
+</nobr><br>
+<!-- Field ThemeOverlay_Material -->
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material" class="hiddenlink" target="rightframe">ThemeOverlay_Material</A>
+</nobr><br>
+<!-- Field ThemeOverlay_Material_ActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_ActionBar" class="hiddenlink" target="rightframe">ThemeOverlay_Material_ActionBar</A>
+</nobr><br>
+<!-- Field ThemeOverlay_Material_Dark -->
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_Dark" class="hiddenlink" target="rightframe">ThemeOverlay_Material_Dark</A>
+</nobr><br>
+<!-- Field ThemeOverlay_Material_Dark_ActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_Dark_ActionBar" class="hiddenlink" target="rightframe">ThemeOverlay_Material_Dark_ActionBar</A>
+</nobr><br>
+<!-- Field ThemeOverlay_Material_Light -->
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_Light" class="hiddenlink" target="rightframe">ThemeOverlay_Material_Light</A>
+</nobr><br>
+<!-- Class ThreadLocalRandom -->
+<A HREF="pkg_java.util.concurrent.html#ThreadLocalRandom" class="hiddenlink" target="rightframe"><b>ThreadLocalRandom</b></A><br>
+<!-- Field thumbTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.thumbTint" class="hiddenlink" target="rightframe">thumbTint</A>
+</nobr><br>
+<!-- Field thumbTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.thumbTintMode" class="hiddenlink" target="rightframe">thumbTintMode</A>
+</nobr><br>
+<!-- Field tileModeX -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.tileModeX" class="hiddenlink" target="rightframe">tileModeX</A>
+</nobr><br>
+<!-- Field tileModeY -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.tileModeY" class="hiddenlink" target="rightframe">tileModeY</A>
+</nobr><br>
+<!-- Constructor TimePicker -->
+<nobr><A HREF="android.widget.TimePicker.html#android.widget.TimePicker.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TimePicker</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field timePickerDialogTheme -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.timePickerDialogTheme" class="hiddenlink" target="rightframe">timePickerDialogTheme</A>
+</nobr><br>
+<!-- Field timePickerMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.timePickerMode" class="hiddenlink" target="rightframe">timePickerMode</A>
+</nobr><br>
+<!-- Field timePickerStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.timePickerStyle" class="hiddenlink" target="rightframe">timePickerStyle</A>
+</nobr><br>
+<!-- Field tintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.tintMode" class="hiddenlink" target="rightframe">tintMode</A>
+</nobr><br>
+<!-- Field TITLE_RES -->
+<nobr><A HREF="android.provider.ContactsContract.GroupsColumns.html#android.provider.ContactsContract.GroupsColumns.TITLE_RES" class="hiddenlink" target="rightframe">TITLE_RES</A>
+</nobr><br>
+<!-- Field titleTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.titleTextAppearance" class="hiddenlink" target="rightframe">titleTextAppearance</A>
+</nobr><br>
+<!-- Constructor ToggleButton -->
+<nobr><A HREF="android.widget.ToggleButton.html#android.widget.ToggleButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ToggleButton</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field toId -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.toId" class="hiddenlink" target="rightframe">toId</A>
+</nobr><br>
+<!-- Method toLanguageTag -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.toLanguageTag_added()" class="hiddenlink" target="rightframe"><b>toLanguageTag</b>
+()</A></nobr><br>
+<!-- Class Toolbar -->
+<A HREF="pkg_android.widget.html#Toolbar" class="hiddenlink" target="rightframe"><b>Toolbar</b></A><br>
+<!-- Class Toolbar.LayoutParams -->
+<A HREF="pkg_android.widget.html#Toolbar.LayoutParams" class="hiddenlink" target="rightframe"><b>Toolbar.LayoutParams</b></A><br>
+<!-- Class Toolbar.OnMenuItemClickListener -->
+<A HREF="pkg_android.widget.html#Toolbar.OnMenuItemClickListener" class="hiddenlink" target="rightframe"><b><i>Toolbar.OnMenuItemClickListener</i></b></A><br>
+<!-- Field toolbarStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.toolbarStyle" class="hiddenlink" target="rightframe">toolbarStyle</A>
+</nobr><br>
+<!-- Field touchscreenBlocksFocus -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.touchscreenBlocksFocus" class="hiddenlink" target="rightframe">touchscreenBlocksFocus</A>
+</nobr><br>
+<!-- Field TRANSCRIPTION -->
+<i>TRANSCRIPTION</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.TRANSCRIPTION" class="hiddenlink" target="rightframe">android.provider.CallLog.Calls</A>
+</nobr><br>
+<!-- Field TRANSCRIPTION -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.VoicemailContract.Voicemails.html#android.provider.VoicemailContract.Voicemails.TRANSCRIPTION" class="hiddenlink" target="rightframe">android.provider.VoicemailContract.Voicemails</A>
+</nobr><br>
+<!-- Class TransferQueue -->
+<A HREF="pkg_java.util.concurrent.html#TransferQueue" class="hiddenlink" target="rightframe"><b><i>TransferQueue</i></b></A><br>
+<!-- Constructor Transition -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Transition</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class Transition.EpicenterCallback -->
+<A HREF="pkg_android.transition.html#Transition.EpicenterCallback" class="hiddenlink" target="rightframe"><b>Transition.EpicenterCallback</b></A><br>
+<!-- Field transitionGroup -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.transitionGroup" class="hiddenlink" target="rightframe">transitionGroup</A>
+</nobr><br>
+<!-- Field transitionName -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.transitionName" class="hiddenlink" target="rightframe">transitionName</A>
+</nobr><br>
+<!-- Class TransitionPropagation -->
+<A HREF="pkg_android.transition.html#TransitionPropagation" class="hiddenlink" target="rightframe"><b>TransitionPropagation</b></A><br>
+<!-- Constructor TransitionSet -->
+<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>TransitionSet</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field transitionVisibilityMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.transitionVisibilityMode" class="hiddenlink" target="rightframe">transitionVisibilityMode</A>
+</nobr><br>
+<!-- Field translateX -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.translateX" class="hiddenlink" target="rightframe">translateX</A>
+</nobr><br>
+<!-- Field translateY -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.translateY" class="hiddenlink" target="rightframe">translateY</A>
+</nobr><br>
+<!-- Field TRANSLATION_Z -->
+<nobr><A HREF="android.view.View.html#android.view.View.TRANSLATION_Z" class="hiddenlink" target="rightframe">TRANSLATION_Z</A>
+</nobr><br>
+<!-- Method translationZ -->
+<i>translationZ</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewPropertyAnimator.html#android.view.ViewPropertyAnimator.translationZ_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.view.ViewPropertyAnimator
+</A></nobr><br>
+<!-- Field translationZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.translationZ" class="hiddenlink" target="rightframe">android.R.attr</A>
+</nobr><br>
+<!-- Method translationZBy -->
+<nobr><A HREF="android.view.ViewPropertyAnimator.html#android.view.ViewPropertyAnimator.translationZBy_added(float)" class="hiddenlink" target="rightframe"><b>translationZBy</b>
+(<code>float</code>)</A></nobr><br>
+<!-- Field trimPathEnd -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.trimPathEnd" class="hiddenlink" target="rightframe">trimPathEnd</A>
+</nobr><br>
+<!-- Field trimPathOffset -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.trimPathOffset" class="hiddenlink" target="rightframe">trimPathOffset</A>
+</nobr><br>
+<!-- Field trimPathStart -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.trimPathStart" class="hiddenlink" target="rightframe">trimPathStart</A>
+</nobr><br>
+<!-- Class TtsSpan -->
+<A HREF="pkg_android.text.style.html#TtsSpan" class="hiddenlink" target="rightframe"><b>TtsSpan</b></A><br>
+<!-- Class TtsSpan.Builder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.Builder" class="hiddenlink" target="rightframe"><b>TtsSpan.Builder</b></A><br>
+<!-- Class TtsSpan.CardinalBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.CardinalBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.CardinalBuilder</b></A><br>
+<!-- Class TtsSpan.DateBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.DateBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.DateBuilder</b></A><br>
+<!-- Class TtsSpan.DecimalBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.DecimalBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.DecimalBuilder</b></A><br>
+<!-- Class TtsSpan.DigitsBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.DigitsBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.DigitsBuilder</b></A><br>
+<!-- Class TtsSpan.ElectronicBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.ElectronicBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.ElectronicBuilder</b></A><br>
+<!-- Class TtsSpan.FractionBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.FractionBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.FractionBuilder</b></A><br>
+<!-- Class TtsSpan.MeasureBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.MeasureBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.MeasureBuilder</b></A><br>
+<!-- Class TtsSpan.MoneyBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.MoneyBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.MoneyBuilder</b></A><br>
+<!-- Class TtsSpan.OrdinalBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.OrdinalBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.OrdinalBuilder</b></A><br>
+<!-- Class TtsSpan.SemioticClassBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.SemioticClassBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.SemioticClassBuilder</b></A><br>
+<!-- Class TtsSpan.TelephoneBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.TelephoneBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.TelephoneBuilder</b></A><br>
+<!-- Class TtsSpan.TextBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.TextBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.TextBuilder</b></A><br>
+<!-- Class TtsSpan.TimeBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.TimeBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.TimeBuilder</b></A><br>
+<!-- Class TtsSpan.VerbatimBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.VerbatimBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.VerbatimBuilder</b></A><br>
+<!-- Field TV_INPUT_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.TV_INPUT_SERVICE" class="hiddenlink" target="rightframe">TV_INPUT_SERVICE</A>
+</nobr><br>
+<!-- Constructor TwoLineListItem -->
+<nobr><A HREF="android.widget.TwoLineListItem.html#android.widget.TwoLineListItem.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TwoLineListItem</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor TwoStatePreference -->
+<nobr><A HREF="android.preference.TwoStatePreference.html#android.preference.TwoStatePreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TwoStatePreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field TYPE_INTEGER -->
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.TYPE_INTEGER" class="hiddenlink" target="rightframe">TYPE_INTEGER</A>
+</nobr><br>
+<!-- Field TYPE_STRING -->
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.TYPE_STRING" class="hiddenlink" target="rightframe">TYPE_STRING</A>
+</nobr><br>
+<!-- Field TYPE_VPN -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.TYPE_VPN" class="hiddenlink" target="rightframe">TYPE_VPN</A>
+</nobr><br>
+<!-- Field TYPE_WINDOWS_CHANGED -->
+<nobr><A HREF="android.view.accessibility.AccessibilityEvent.html#android.view.accessibility.AccessibilityEvent.TYPE_WINDOWS_CHANGED" class="hiddenlink" target="rightframe">TYPE_WINDOWS_CHANGED</A>
+</nobr><br>
+<!-- Class TypeConverter -->
+<A HREF="pkg_android.animation.html#TypeConverter" class="hiddenlink" target="rightframe"><b>TypeConverter</b></A><br>
+<!-- Field UNICODE_LOCALE_EXTENSION -->
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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">
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.UNICODE_LOCALE_EXTENSION" class="hiddenlink" target="rightframe">UNICODE_LOCALE_EXTENSION</A>
+</nobr><br>
+<!-- Method uninstallAllUserCaCerts -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.uninstallAllUserCaCerts_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>uninstallAllUserCaCerts</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method uninstallCaCert -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.uninstallCaCert_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>uninstallCaCert</b>
+(<code>ComponentName, byte[]</code>)</A></nobr><br>
+<!-- Method unregisterNetworkCallback -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.unregisterNetworkCallback_added(android.net.ConnectivityManager.NetworkCallback)" class="hiddenlink" target="rightframe"><b>unregisterNetworkCallback</b>
+(<code>NetworkCallback</code>)</A></nobr><br>
+<!-- Method unsetPreferredService -->
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.unsetPreferredService_added(android.app.Activity)" class="hiddenlink" target="rightframe"><b>unsetPreferredService</b>
+(<code>Activity</code>)</A></nobr><br>
+<!-- Method updateCursorAnchorInfo -->
+<i>updateCursorAnchorInfo</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.inputmethodservice.InputMethodService.InputMethodSessionImpl.html#android.inputmethodservice.InputMethodService.InputMethodSessionImpl.updateCursorAnchorInfo_added(android.view.inputmethod.CursorAnchorInfo)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CursorAnchorInfo</code>)</b>&nbsp;in&nbsp;android.inputmethodservice.InputMethodService.InputMethodSessionImpl
+</A></nobr><br>
+<!-- Method updateCursorAnchorInfo -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.InputMethodManager.html#android.view.inputmethod.InputMethodManager.updateCursorAnchorInfo_added(android.view.View, android.view.inputmethod.CursorAnchorInfo)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, CursorAnchorInfo</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.InputMethodManager
+</A></nobr><br>
+<!-- Method updateCursorAnchorInfo -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.InputMethodSession.html#android.view.inputmethod.InputMethodSession.updateCursorAnchorInfo_added(android.view.inputmethod.CursorAnchorInfo)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CursorAnchorInfo</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.InputMethodSession
+</A></nobr><br>
+<!-- Class UsbConfiguration -->
+<A HREF="pkg_android.hardware.usb.html#UsbConfiguration" class="hiddenlink" target="rightframe"><b>UsbConfiguration</b></A><br>
+<!-- Class VectorDrawable -->
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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">
+<A HREF="pkg_android.graphics.drawable.html#VectorDrawable" class="hiddenlink" target="rightframe"><b>VectorDrawable</b></A><br>
+<!-- Method vibrate -->
+<i>vibrate</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_added(long, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long, AudioAttributes</code>)</b>&nbsp;in&nbsp;android.os.Vibrator
+</A></nobr><br>
+<!-- Method vibrate -->
+&nbsp;&nbsp;<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_added(long[], int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long[], int</code>)</b>&nbsp;in&nbsp;android.os.Vibrator
+</A></nobr><br>
+<!-- Method vibrate -->
+&nbsp;&nbsp;<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_added(long[], int, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long[], int, AudioAttributes</code>)</b>&nbsp;in&nbsp;android.os.Vibrator
+</A></nobr><br>
+<!-- Constructor VideoView -->
+<nobr><A HREF="android.widget.VideoView.html#android.widget.VideoView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>VideoView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor View -->
+<nobr><A HREF="android.view.View.html#android.view.View.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>View</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class ViewAnimationUtils -->
+<A HREF="pkg_android.view.html#ViewAnimationUtils" class="hiddenlink" target="rightframe"><b>ViewAnimationUtils</b></A><br>
+<!-- Constructor ViewGroup -->
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ViewGroup</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class ViewOutlineProvider -->
+<A HREF="pkg_android.view.html#ViewOutlineProvider" class="hiddenlink" target="rightframe"><b>ViewOutlineProvider</b></A><br>
+<!-- Field viewportHeight -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.viewportHeight" class="hiddenlink" target="rightframe">viewportHeight</A>
+</nobr><br>
+<!-- Field viewportWidth -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.viewportWidth" class="hiddenlink" target="rightframe">viewportWidth</A>
+</nobr><br>
+<!-- Constructor ViewStub -->
+<nobr><A HREF="android.view.ViewStub.html#android.view.ViewStub.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ViewStub</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR -->
+<nobr><A HREF="android.hardware.display.DisplayManager.html#android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR" class="hiddenlink" target="rightframe">VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR</A>
+</nobr><br>
+<!-- Class VirtualDisplay.Callback -->
+<A HREF="pkg_android.hardware.display.html#VirtualDisplay.Callback" class="hiddenlink" target="rightframe"><b>VirtualDisplay.Callback</b></A><br>
+<!-- Field VIRTUALIZATION_MODE_AUTO -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_AUTO" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_AUTO</A>
+</nobr><br>
+<!-- Field VIRTUALIZATION_MODE_BINAURAL -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_BINAURAL" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_BINAURAL</A>
+</nobr><br>
+<!-- Field VIRTUALIZATION_MODE_OFF -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_OFF" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_OFF</A>
+</nobr><br>
+<!-- Field VIRTUALIZATION_MODE_TRANSAURAL -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_TRANSAURAL" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_TRANSAURAL</A>
+</nobr><br>
+<!-- Constructor Visibility -->
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Visibility</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field visibility -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.visibility" class="hiddenlink" target="rightframe">visibility</A>
+</nobr><br>
+<!-- Field VISIBILITY_PRIVATE -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.VISIBILITY_PRIVATE" class="hiddenlink" target="rightframe">VISIBILITY_PRIVATE</A>
+</nobr><br>
+<!-- Field VISIBILITY_PUBLIC -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.VISIBILITY_PUBLIC" class="hiddenlink" target="rightframe">VISIBILITY_PUBLIC</A>
+</nobr><br>
+<!-- Field VISIBILITY_SECRET -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.VISIBILITY_SECRET" class="hiddenlink" target="rightframe">VISIBILITY_SECRET</A>
+</nobr><br>
+<!-- Class VisibilityPropagation -->
+<A HREF="pkg_android.transition.html#VisibilityPropagation" class="hiddenlink" target="rightframe"><b>VisibilityPropagation</b></A><br>
+<!-- Class Voice -->
+<A HREF="pkg_android.speech.tts.html#Voice" class="hiddenlink" target="rightframe"><b>Voice</b></A><br>
+<!-- Field voiceIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.voiceIcon" class="hiddenlink" target="rightframe">voiceIcon</A>
+</nobr><br>
+<!-- Field VOICEMAIL_TYPE -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.VOICEMAIL_TYPE" class="hiddenlink" target="rightframe">VOICEMAIL_TYPE</A>
+</nobr><br>
+<!-- Field VOICEMAIL_URI -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.VOICEMAIL_URI" class="hiddenlink" target="rightframe">VOICEMAIL_URI</A>
+</nobr><br>
+<!-- Class VolumeProvider -->
+<A HREF="pkg_android.media.html#VolumeProvider" class="hiddenlink" target="rightframe"><b>VolumeProvider</b></A><br>
+<!-- Field VORBIS -->
+<nobr><A HREF="android.media.MediaRecorder.AudioEncoder.html#android.media.MediaRecorder.AudioEncoder.VORBIS" class="hiddenlink" target="rightframe">VORBIS</A>
+</nobr><br>
+<!-- Field VP8 -->
+<nobr><A HREF="android.media.MediaRecorder.VideoEncoder.html#android.media.MediaRecorder.VideoEncoder.VP8" class="hiddenlink" target="rightframe">VP8</A>
+</nobr><br>
+<!-- Method wakeUp -->
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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.service.dreams.DreamService.html#android.service.dreams.DreamService.wakeUp_added()" class="hiddenlink" target="rightframe"><b>wakeUp</b>
+()</A></nobr><br>
+<!-- Class WebChromeClient.FileChooserParams -->
+<A HREF="pkg_android.webkit.html#WebChromeClient.FileChooserParams" class="hiddenlink" target="rightframe"><b>WebChromeClient.FileChooserParams</b></A><br>
+<!-- Field WEBM -->
+<nobr><A HREF="android.media.MediaRecorder.OutputFormat.html#android.media.MediaRecorder.OutputFormat.WEBM" class="hiddenlink" target="rightframe">WEBM</A>
+</nobr><br>
+<!-- Class WebResourceRequest -->
+<A HREF="pkg_android.webkit.html#WebResourceRequest" class="hiddenlink" target="rightframe"><b><i>WebResourceRequest</i></b></A><br>
+<!-- Constructor WebResourceResponse -->
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.ctor_added(java.lang.String, java.lang.String, int, java.lang.String, java.util.Map<java.lang.String, java.lang.String>, java.io.InputStream)" class="hiddenlink" target="rightframe"><b>WebResourceResponse</b>
+(<code>String, String, int, String, Map&lt;String, String&gt;, InputStream</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor WebView -->
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>WebView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field WIDGET_CATEGORY_SEARCHBOX -->
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX" class="hiddenlink" target="rightframe">WIDGET_CATEGORY_SEARCHBOX</A>
+</nobr><br>
+<!-- Field Widget_DeviceDefault_FastScroll -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_FastScroll" class="hiddenlink" target="rightframe">Widget_DeviceDefault_FastScroll</A>
+</nobr><br>
+<!-- Field Widget_DeviceDefault_Light_FastScroll -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_FastScroll" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_FastScroll</A>
+</nobr><br>
+<!-- Field Widget_DeviceDefault_Light_StackView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_StackView" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_StackView</A>
+</nobr><br>
+<!-- Field Widget_DeviceDefault_StackView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_StackView" class="hiddenlink" target="rightframe">Widget_DeviceDefault_StackView</A>
+</nobr><br>
+<!-- Field Widget_FastScroll -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_FastScroll" class="hiddenlink" target="rightframe">Widget_FastScroll</A>
+</nobr><br>
+<!-- Field Widget_Material -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material" class="hiddenlink" target="rightframe">Widget_Material</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar" class="hiddenlink" target="rightframe">Widget_Material_ActionBar</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionBar_Solid -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_Solid" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_Solid</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionBar_TabBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_TabBar" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_TabBar</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionBar_TabText -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_TabText" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_TabText</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionBar_TabView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_TabView" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_TabView</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionButton" class="hiddenlink" target="rightframe">Widget_Material_ActionButton</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionButton_CloseMode -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionButton_CloseMode" class="hiddenlink" target="rightframe">Widget_Material_ActionButton_CloseMode</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionButton_Overflow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionButton_Overflow" class="hiddenlink" target="rightframe">Widget_Material_ActionButton_Overflow</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionMode -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionMode" class="hiddenlink" target="rightframe">Widget_Material_ActionMode</A>
+</nobr><br>
+<!-- Field Widget_Material_AutoCompleteTextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_AutoCompleteTextView" class="hiddenlink" target="rightframe">Widget_Material_AutoCompleteTextView</A>
+</nobr><br>
+<!-- Field Widget_Material_Button -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button" class="hiddenlink" target="rightframe">Widget_Material_Button</A>
+</nobr><br>
+<!-- Field Widget_Material_Button_Borderless -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Borderless" class="hiddenlink" target="rightframe">Widget_Material_Button_Borderless</A>
+</nobr><br>
+<!-- Field Widget_Material_Button_Borderless_Colored -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Borderless_Colored" class="hiddenlink" target="rightframe">Widget_Material_Button_Borderless_Colored</A>
+</nobr><br>
+<!-- Field Widget_Material_Button_Borderless_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Borderless_Small" class="hiddenlink" target="rightframe">Widget_Material_Button_Borderless_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_Button_Inset -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Inset" class="hiddenlink" target="rightframe">Widget_Material_Button_Inset</A>
+</nobr><br>
+<!-- Field Widget_Material_Button_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Small" class="hiddenlink" target="rightframe">Widget_Material_Button_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_Button_Toggle -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Toggle" class="hiddenlink" target="rightframe">Widget_Material_Button_Toggle</A>
+</nobr><br>
+<!-- Field Widget_Material_ButtonBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ButtonBar" class="hiddenlink" target="rightframe">Widget_Material_ButtonBar</A>
+</nobr><br>
+<!-- Field Widget_Material_ButtonBar_AlertDialog -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ButtonBar_AlertDialog" class="hiddenlink" target="rightframe">Widget_Material_ButtonBar_AlertDialog</A>
+</nobr><br>
+<!-- Field Widget_Material_CalendarView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CalendarView" class="hiddenlink" target="rightframe">Widget_Material_CalendarView</A>
+</nobr><br>
+<!-- Field Widget_Material_CheckedTextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CheckedTextView" class="hiddenlink" target="rightframe">Widget_Material_CheckedTextView</A>
+</nobr><br>
+<!-- Field Widget_Material_CompoundButton_CheckBox -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CompoundButton_CheckBox" class="hiddenlink" target="rightframe">Widget_Material_CompoundButton_CheckBox</A>
+</nobr><br>
+<!-- Field Widget_Material_CompoundButton_RadioButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CompoundButton_RadioButton" class="hiddenlink" target="rightframe">Widget_Material_CompoundButton_RadioButton</A>
+</nobr><br>
+<!-- Field Widget_Material_CompoundButton_Star -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CompoundButton_Star" class="hiddenlink" target="rightframe">Widget_Material_CompoundButton_Star</A>
+</nobr><br>
+<!-- Field Widget_Material_DatePicker -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_DatePicker" class="hiddenlink" target="rightframe">Widget_Material_DatePicker</A>
+</nobr><br>
+<!-- Field Widget_Material_DropDownItem -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_DropDownItem" class="hiddenlink" target="rightframe">Widget_Material_DropDownItem</A>
+</nobr><br>
+<!-- Field Widget_Material_DropDownItem_Spinner -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_DropDownItem_Spinner" class="hiddenlink" target="rightframe">Widget_Material_DropDownItem_Spinner</A>
+</nobr><br>
+<!-- Field Widget_Material_EditText -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_EditText" class="hiddenlink" target="rightframe">Widget_Material_EditText</A>
+</nobr><br>
+<!-- Field Widget_Material_ExpandableListView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ExpandableListView" class="hiddenlink" target="rightframe">Widget_Material_ExpandableListView</A>
+</nobr><br>
+<!-- Field Widget_Material_FastScroll -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_FastScroll" class="hiddenlink" target="rightframe">Widget_Material_FastScroll</A>
+</nobr><br>
+<!-- Field Widget_Material_GridView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_GridView" class="hiddenlink" target="rightframe">Widget_Material_GridView</A>
+</nobr><br>
+<!-- Field Widget_Material_HorizontalScrollView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_HorizontalScrollView" class="hiddenlink" target="rightframe">Widget_Material_HorizontalScrollView</A>
+</nobr><br>
+<!-- Field Widget_Material_ImageButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ImageButton" class="hiddenlink" target="rightframe">Widget_Material_ImageButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Light -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light" class="hiddenlink" target="rightframe">Widget_Material_Light</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionBar_Solid -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_Solid" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_Solid</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionBar_TabBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_TabBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_TabBar</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionBar_TabText -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_TabText" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_TabText</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionBar_TabView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_TabView" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_TabView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionButton" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionButton_CloseMode -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionButton_CloseMode" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionButton_CloseMode</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionButton_Overflow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionButton_Overflow" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionButton_Overflow</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionMode -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionMode" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionMode</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_AutoCompleteTextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_AutoCompleteTextView" class="hiddenlink" target="rightframe">Widget_Material_Light_AutoCompleteTextView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button" class="hiddenlink" target="rightframe">Widget_Material_Light_Button</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button_Borderless -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Borderless" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Borderless</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button_Borderless_Colored -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Borderless_Colored" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Borderless_Colored</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button_Borderless_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Borderless_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Borderless_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button_Inset -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Inset" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Inset</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button_Toggle -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Toggle" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Toggle</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ButtonBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ButtonBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ButtonBar</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ButtonBar_AlertDialog -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ButtonBar_AlertDialog" class="hiddenlink" target="rightframe">Widget_Material_Light_ButtonBar_AlertDialog</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_CalendarView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CalendarView" class="hiddenlink" target="rightframe">Widget_Material_Light_CalendarView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_CheckedTextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CheckedTextView" class="hiddenlink" target="rightframe">Widget_Material_Light_CheckedTextView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_CompoundButton_CheckBox -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CompoundButton_CheckBox" class="hiddenlink" target="rightframe">Widget_Material_Light_CompoundButton_CheckBox</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_CompoundButton_RadioButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CompoundButton_RadioButton" class="hiddenlink" target="rightframe">Widget_Material_Light_CompoundButton_RadioButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_CompoundButton_Star -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CompoundButton_Star" class="hiddenlink" target="rightframe">Widget_Material_Light_CompoundButton_Star</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_DatePicker -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_DatePicker" class="hiddenlink" target="rightframe">Widget_Material_Light_DatePicker</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_DropDownItem -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_DropDownItem" class="hiddenlink" target="rightframe">Widget_Material_Light_DropDownItem</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_DropDownItem_Spinner -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_DropDownItem_Spinner" class="hiddenlink" target="rightframe">Widget_Material_Light_DropDownItem_Spinner</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_EditText -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_EditText" class="hiddenlink" target="rightframe">Widget_Material_Light_EditText</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ExpandableListView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ExpandableListView" class="hiddenlink" target="rightframe">Widget_Material_Light_ExpandableListView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_FastScroll -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_FastScroll" class="hiddenlink" target="rightframe">Widget_Material_Light_FastScroll</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_GridView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_GridView" class="hiddenlink" target="rightframe">Widget_Material_Light_GridView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_HorizontalScrollView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_HorizontalScrollView" class="hiddenlink" target="rightframe">Widget_Material_Light_HorizontalScrollView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ImageButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ImageButton" class="hiddenlink" target="rightframe">Widget_Material_Light_ImageButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ListPopupWindow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ListPopupWindow" class="hiddenlink" target="rightframe">Widget_Material_Light_ListPopupWindow</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ListView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ListView" class="hiddenlink" target="rightframe">Widget_Material_Light_ListView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ListView_DropDown -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ListView_DropDown" class="hiddenlink" target="rightframe">Widget_Material_Light_ListView_DropDown</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_MediaRouteButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_MediaRouteButton" class="hiddenlink" target="rightframe">Widget_Material_Light_MediaRouteButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_PopupMenu -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_PopupMenu" class="hiddenlink" target="rightframe">Widget_Material_Light_PopupMenu</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_PopupMenu_Overflow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_PopupMenu_Overflow" class="hiddenlink" target="rightframe">Widget_Material_Light_PopupMenu_Overflow</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_PopupWindow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_PopupWindow" class="hiddenlink" target="rightframe">Widget_Material_Light_PopupWindow</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Horizontal -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Horizontal" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Horizontal</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Inverse" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Inverse</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Large -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Large" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Large</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Large_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Large_Inverse" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Large_Inverse</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Small_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Small_Inverse" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Small_Inverse</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Small_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Small_Title" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Small_Title</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_RatingBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_RatingBar" class="hiddenlink" target="rightframe">Widget_Material_Light_RatingBar</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_RatingBar_Indicator -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_RatingBar_Indicator" class="hiddenlink" target="rightframe">Widget_Material_Light_RatingBar_Indicator</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_RatingBar_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_RatingBar_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_RatingBar_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ScrollView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ScrollView" class="hiddenlink" target="rightframe">Widget_Material_Light_ScrollView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_SearchView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_SearchView" class="hiddenlink" target="rightframe">Widget_Material_Light_SearchView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_SeekBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_SeekBar" class="hiddenlink" target="rightframe">Widget_Material_Light_SeekBar</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_SegmentedButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_SegmentedButton" class="hiddenlink" target="rightframe">Widget_Material_Light_SegmentedButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Spinner -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Spinner" class="hiddenlink" target="rightframe">Widget_Material_Light_Spinner</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Spinner_Underlined -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Spinner_Underlined" class="hiddenlink" target="rightframe">Widget_Material_Light_Spinner_Underlined</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_StackView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_StackView" class="hiddenlink" target="rightframe">Widget_Material_Light_StackView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Tab -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Tab" class="hiddenlink" target="rightframe">Widget_Material_Light_Tab</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_TabWidget -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TabWidget" class="hiddenlink" target="rightframe">Widget_Material_Light_TabWidget</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_TextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TextView" class="hiddenlink" target="rightframe">Widget_Material_Light_TextView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_TextView_SpinnerItem -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TextView_SpinnerItem" class="hiddenlink" target="rightframe">Widget_Material_Light_TextView_SpinnerItem</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_TimePicker -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TimePicker" class="hiddenlink" target="rightframe">Widget_Material_Light_TimePicker</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_WebTextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_WebTextView" class="hiddenlink" target="rightframe">Widget_Material_Light_WebTextView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_WebView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_WebView" class="hiddenlink" target="rightframe">Widget_Material_Light_WebView</A>
+</nobr><br>
+<!-- Field Widget_Material_ListPopupWindow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ListPopupWindow" class="hiddenlink" target="rightframe">Widget_Material_ListPopupWindow</A>
+</nobr><br>
+<!-- Field Widget_Material_ListView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ListView" class="hiddenlink" target="rightframe">Widget_Material_ListView</A>
+</nobr><br>
+<!-- Field Widget_Material_ListView_DropDown -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ListView_DropDown" class="hiddenlink" target="rightframe">Widget_Material_ListView_DropDown</A>
+</nobr><br>
+<!-- Field Widget_Material_MediaRouteButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_MediaRouteButton" class="hiddenlink" target="rightframe">Widget_Material_MediaRouteButton</A>
+</nobr><br>
+<!-- Field Widget_Material_PopupMenu -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_PopupMenu" class="hiddenlink" target="rightframe">Widget_Material_PopupMenu</A>
+</nobr><br>
+<!-- Field Widget_Material_PopupMenu_Overflow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_PopupMenu_Overflow" class="hiddenlink" target="rightframe">Widget_Material_PopupMenu_Overflow</A>
+</nobr><br>
+<!-- Field Widget_Material_PopupWindow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_PopupWindow" class="hiddenlink" target="rightframe">Widget_Material_PopupWindow</A>
+</nobr><br>
+<!-- Field Widget_Material_ProgressBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar</A>
+</nobr><br>
+<!-- Field Widget_Material_ProgressBar_Horizontal -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Horizontal" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Horizontal</A>
+</nobr><br>
+<!-- Field Widget_Material_ProgressBar_Large -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Large" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Large</A>
+</nobr><br>
+<!-- Field Widget_Material_ProgressBar_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Small" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_ProgressBar_Small_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Small_Title" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Small_Title</A>
+</nobr><br>
+<!-- Field Widget_Material_RatingBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_RatingBar" class="hiddenlink" target="rightframe">Widget_Material_RatingBar</A>
+</nobr><br>
+<!-- Field Widget_Material_RatingBar_Indicator -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_RatingBar_Indicator" class="hiddenlink" target="rightframe">Widget_Material_RatingBar_Indicator</A>
+</nobr><br>
+<!-- Field Widget_Material_RatingBar_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_RatingBar_Small" class="hiddenlink" target="rightframe">Widget_Material_RatingBar_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_ScrollView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ScrollView" class="hiddenlink" target="rightframe">Widget_Material_ScrollView</A>
+</nobr><br>
+<!-- Field Widget_Material_SearchView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_SearchView" class="hiddenlink" target="rightframe">Widget_Material_SearchView</A>
+</nobr><br>
+<!-- Field Widget_Material_SeekBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_SeekBar" class="hiddenlink" target="rightframe">Widget_Material_SeekBar</A>
+</nobr><br>
+<!-- Field Widget_Material_SegmentedButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_SegmentedButton" class="hiddenlink" target="rightframe">Widget_Material_SegmentedButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Spinner -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Spinner" class="hiddenlink" target="rightframe">Widget_Material_Spinner</A>
+</nobr><br>
+<!-- Field Widget_Material_Spinner_Underlined -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Spinner_Underlined" class="hiddenlink" target="rightframe">Widget_Material_Spinner_Underlined</A>
+</nobr><br>
+<!-- Field Widget_Material_StackView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_StackView" class="hiddenlink" target="rightframe">Widget_Material_StackView</A>
+</nobr><br>
+<!-- Field Widget_Material_Tab -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Tab" class="hiddenlink" target="rightframe">Widget_Material_Tab</A>
+</nobr><br>
+<!-- Field Widget_Material_TabWidget -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TabWidget" class="hiddenlink" target="rightframe">Widget_Material_TabWidget</A>
+</nobr><br>
+<!-- Field Widget_Material_TextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TextView" class="hiddenlink" target="rightframe">Widget_Material_TextView</A>
+</nobr><br>
+<!-- Field Widget_Material_TextView_SpinnerItem -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TextView_SpinnerItem" class="hiddenlink" target="rightframe">Widget_Material_TextView_SpinnerItem</A>
+</nobr><br>
+<!-- Field Widget_Material_TimePicker -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TimePicker" class="hiddenlink" target="rightframe">Widget_Material_TimePicker</A>
+</nobr><br>
+<!-- Field Widget_Material_Toolbar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Toolbar" class="hiddenlink" target="rightframe">Widget_Material_Toolbar</A>
+</nobr><br>
+<!-- Field Widget_Material_Toolbar_Button_Navigation -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Toolbar_Button_Navigation" class="hiddenlink" target="rightframe">Widget_Material_Toolbar_Button_Navigation</A>
+</nobr><br>
+<!-- Field Widget_Material_WebTextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_WebTextView" class="hiddenlink" target="rightframe">Widget_Material_WebTextView</A>
+</nobr><br>
+<!-- Field Widget_Material_WebView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_WebView" class="hiddenlink" target="rightframe">Widget_Material_WebView</A>
+</nobr><br>
+<!-- Field Widget_StackView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_StackView" class="hiddenlink" target="rightframe">Widget_StackView</A>
+</nobr><br>
+<!-- Field Widget_Toolbar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Toolbar" class="hiddenlink" target="rightframe">Widget_Toolbar</A>
+</nobr><br>
+<!-- Field Widget_Toolbar_Button_Navigation -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Toolbar_Button_Navigation" class="hiddenlink" target="rightframe">Widget_Toolbar_Button_Navigation</A>
+</nobr><br>
+<!-- Class WifiManager.WpsCallback -->
+<A HREF="pkg_android.net.wifi.html#WifiManager.WpsCallback" class="hiddenlink" target="rightframe"><b>WifiManager.WpsCallback</b></A><br>
+<!-- Field windowActivityTransitions -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowActivityTransitions" class="hiddenlink" target="rightframe">windowActivityTransitions</A>
+</nobr><br>
+<!-- Field windowAllowEnterTransitionOverlap -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowAllowEnterTransitionOverlap" class="hiddenlink" target="rightframe">windowAllowEnterTransitionOverlap</A>
+</nobr><br>
+<!-- Field windowAllowReturnTransitionOverlap -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowAllowReturnTransitionOverlap" class="hiddenlink" target="rightframe">windowAllowReturnTransitionOverlap</A>
+</nobr><br>
+<!-- Class WindowAnimationFrameStats -->
+<A HREF="pkg_android.view.html#WindowAnimationFrameStats" class="hiddenlink" target="rightframe"><b>WindowAnimationFrameStats</b></A><br>
+<!-- Field windowClipToOutline -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowClipToOutline" class="hiddenlink" target="rightframe">windowClipToOutline</A>
+</nobr><br>
+<!-- Field windowColor -->
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.windowColor" class="hiddenlink" target="rightframe">windowColor</A>
+</nobr><br>
+<!-- Class WindowContentFrameStats -->
+<A HREF="pkg_android.view.html#WindowContentFrameStats" class="hiddenlink" target="rightframe"><b>WindowContentFrameStats</b></A><br>
+<!-- Field windowContentTransitionManager -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowContentTransitionManager" class="hiddenlink" target="rightframe">windowContentTransitionManager</A>
+</nobr><br>
+<!-- Field windowContentTransitions -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowContentTransitions" class="hiddenlink" target="rightframe">windowContentTransitions</A>
+</nobr><br>
+<!-- Field windowDrawsSystemBarBackgrounds -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowDrawsSystemBarBackgrounds" class="hiddenlink" target="rightframe">windowDrawsSystemBarBackgrounds</A>
+</nobr><br>
+<!-- Field windowElevation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowElevation" class="hiddenlink" target="rightframe">windowElevation</A>
+</nobr><br>
+<!-- Field windowEnterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowEnterTransition" class="hiddenlink" target="rightframe">windowEnterTransition</A>
+</nobr><br>
+<!-- Field windowExitTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowExitTransition" class="hiddenlink" target="rightframe">windowExitTransition</A>
+</nobr><br>
+<!-- Field windowReenterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowReenterTransition" class="hiddenlink" target="rightframe">windowReenterTransition</A>
+</nobr><br>
+<!-- Field windowReturnTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowReturnTransition" class="hiddenlink" target="rightframe">windowReturnTransition</A>
+</nobr><br>
+<!-- Field windowSharedElementEnterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementEnterTransition" class="hiddenlink" target="rightframe">windowSharedElementEnterTransition</A>
+</nobr><br>
+<!-- Field windowSharedElementExitTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementExitTransition" class="hiddenlink" target="rightframe">windowSharedElementExitTransition</A>
+</nobr><br>
+<!-- Field windowSharedElementReenterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementReenterTransition" class="hiddenlink" target="rightframe">windowSharedElementReenterTransition</A>
+</nobr><br>
+<!-- Field windowSharedElementReturnTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementReturnTransition" class="hiddenlink" target="rightframe">windowSharedElementReturnTransition</A>
+</nobr><br>
+<!-- Field windowSharedElementsUseOverlay -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementsUseOverlay" class="hiddenlink" target="rightframe">windowSharedElementsUseOverlay</A>
+</nobr><br>
+<!-- Field windowTransitionBackgroundFadeDuration -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowTransitionBackgroundFadeDuration" class="hiddenlink" target="rightframe">windowTransitionBackgroundFadeDuration</A>
+</nobr><br>
+<!-- Field WPS_AUTH_FAILURE -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_AUTH_FAILURE" class="hiddenlink" target="rightframe">WPS_AUTH_FAILURE</A>
+</nobr><br>
+<!-- Field WPS_OVERLAP_ERROR -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_OVERLAP_ERROR" class="hiddenlink" target="rightframe">WPS_OVERLAP_ERROR</A>
+</nobr><br>
+<!-- Field WPS_TIMED_OUT -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_TIMED_OUT" class="hiddenlink" target="rightframe">WPS_TIMED_OUT</A>
+</nobr><br>
+<!-- Field WPS_TKIP_ONLY_PROHIBITED -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_TKIP_ONLY_PROHIBITED" class="hiddenlink" target="rightframe">WPS_TKIP_ONLY_PROHIBITED</A>
+</nobr><br>
+<!-- Field WPS_WEP_PROHIBITED -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_WEP_PROHIBITED" class="hiddenlink" target="rightframe">WPS_WEP_PROHIBITED</A>
+</nobr><br>
+<!-- Method write -->
+<i>write</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.write_added(float[], int, int, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float[], int, int, int</code>)</b>&nbsp;in&nbsp;android.media.AudioTrack
+</A></nobr><br>
+<!-- Method write -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.write_added(java.nio.ByteBuffer, int, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ByteBuffer, int, int</code>)</b>&nbsp;in&nbsp;android.media.AudioTrack
+</A></nobr><br>
+<!-- Field WRITE_BLOCKING -->
+<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.WRITE_BLOCKING" class="hiddenlink" target="rightframe">WRITE_BLOCKING</A>
+</nobr><br>
+<!-- Field WRITE_NON_BLOCKING -->
+<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.WRITE_NON_BLOCKING" class="hiddenlink" target="rightframe">WRITE_NON_BLOCKING</A>
+</nobr><br>
+<!-- Field WRITE_VOICEMAIL -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.WRITE_VOICEMAIL" class="hiddenlink" target="rightframe">WRITE_VOICEMAIL</A>
+</nobr><br>
+<!-- Method writePersistableBundle -->
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.writePersistableBundle_added(android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>writePersistableBundle</b>
+(<code>PersistableBundle</code>)</A></nobr><br>
+<!-- Method writeSize -->
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.writeSize_added(android.util.Size)" class="hiddenlink" target="rightframe"><b>writeSize</b>
+(<code>Size</code>)</A></nobr><br>
+<!-- Method writeSizeF -->
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.writeSizeF_added(android.util.SizeF)" class="hiddenlink" target="rightframe"><b>writeSizeF</b>
+(<code>SizeF</code>)</A></nobr><br>
+<!-- Field yearListItemTextAppearance -->
+<A NAME="Y"></A>
+<br><font size="+2">Y</font>&nbsp;
+<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.R.attr.html#android.R.attr.yearListItemTextAppearance" class="hiddenlink" target="rightframe">yearListItemTextAppearance</A>
+</nobr><br>
+<!-- Field yearListSelectorColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.yearListSelectorColor" class="hiddenlink" target="rightframe">yearListSelectorColor</A>
+</nobr><br>
+<!-- Method z -->
+<A NAME="Z"></A>
+<br><font size="+2">Z</font>&nbsp;
+<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">
+<nobr><A HREF="android.view.ViewPropertyAnimator.html#android.view.ViewPropertyAnimator.z_added(float)" class="hiddenlink" target="rightframe"><b>z</b>
+(<code>float</code>)</A></nobr><br>
+<!-- Field Z -->
+<nobr><A HREF="android.view.View.html#android.view.View.Z" class="hiddenlink" target="rightframe">Z</A>
+</nobr><br>
+<!-- Method zBy -->
+<nobr><A HREF="android.view.ViewPropertyAnimator.html#android.view.ViewPropertyAnimator.zBy_added(float)" class="hiddenlink" target="rightframe"><b>zBy</b>
+(<code>float</code>)</A></nobr><br>
+<!-- Constructor ZoomButton -->
+<nobr><A HREF="android.widget.ZoomButton.html#android.widget.ZoomButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ZoomButton</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Method zoomBy -->
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.zoomBy_added(float)" class="hiddenlink" target="rightframe"><b>zoomBy</b>
+(<code>float</code>)</A></nobr><br>
+<script src="//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/21/changes/alldiffs_index_all.html b/docs/html/sdk/api_diff/21/changes/alldiffs_index_all.html
new file mode 100644
index 0000000..a6b947f
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/alldiffs_index_all.html
@@ -0,0 +1,9462 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<!-- Class AbsListView -->
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#X"><font size="-2">X</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>AbsListView</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.AbsListView.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor AbsListView -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AbsListView.html#android.widget.AbsListView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AbsListView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class AbsoluteLayout -->
+<i>AbsoluteLayout</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.AbsoluteLayout.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor AbsoluteLayout -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AbsoluteLayout.html#android.widget.AbsoluteLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AbsoluteLayout</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class AbsSeekBar -->
+<i>AbsSeekBar</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.AbsSeekBar.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor AbsSeekBar -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AbsSeekBar</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class AbsSpinner -->
+<i>AbsSpinner</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.AbsSpinner.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor AbsSpinner -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AbsSpinner.html#android.widget.AbsSpinner.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AbsSpinner</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class AbstractQueuedLongSynchronizer -->
+<A HREF="java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html" class="hiddenlink" target="rightframe">AbstractQueuedLongSynchronizer</A><br>
+<!-- Class AbstractQueuedSynchronizer -->
+<A HREF="java.util.concurrent.locks.AbstractQueuedSynchronizer.html" class="hiddenlink" target="rightframe">AbstractQueuedSynchronizer</A><br>
+<!-- Method acceptThirdPartyCookies -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.acceptThirdPartyCookies_added(android.webkit.WebView)" class="hiddenlink" target="rightframe"><b>acceptThirdPartyCookies</b>
+(<code>WebView</code>)</A></nobr><br>
+<!-- Field ACCESSIBILITY_DISPLAY_INVERSION_ENABLED -->
+<nobr><A HREF="android.provider.Settings.Secure.html#android.provider.Settings.Secure.ACCESSIBILITY_DISPLAY_INVERSION_ENABLED" class="hiddenlink" target="rightframe">ACCESSIBILITY_DISPLAY_INVERSION_ENABLED</A>
+</nobr><br>
+<!-- Class AccessibilityEvent -->
+<A HREF="android.view.accessibility.AccessibilityEvent.html" class="hiddenlink" target="rightframe">AccessibilityEvent</A><br>
+<!-- Class AccessibilityNodeInfo -->
+<A HREF="android.view.accessibility.AccessibilityNodeInfo.html" class="hiddenlink" target="rightframe">AccessibilityNodeInfo</A><br>
+<!-- Class AccessibilityNodeInfo.AccessibilityAction -->
+<A HREF="pkg_android.view.accessibility.html#AccessibilityNodeInfo.AccessibilityAction" class="hiddenlink" target="rightframe"><b>AccessibilityNodeInfo.AccessibilityAction</b></A><br>
+<!-- Class AccessibilityNodeInfo.CollectionInfo -->
+<A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html" class="hiddenlink" target="rightframe">AccessibilityNodeInfo.CollectionInfo</A><br>
+<!-- Class AccessibilityNodeInfo.CollectionItemInfo -->
+<A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.html" class="hiddenlink" target="rightframe">AccessibilityNodeInfo.CollectionItemInfo</A><br>
+<!-- Class AccessibilityNodeProvider -->
+<A HREF="android.view.accessibility.AccessibilityNodeProvider.html" class="hiddenlink" target="rightframe">AccessibilityNodeProvider</A><br>
+<!-- Class AccessibilityService -->
+<A HREF="android.accessibilityservice.AccessibilityService.html" class="hiddenlink" target="rightframe">AccessibilityService</A><br>
+<!-- Class AccessibilityServiceInfo -->
+<A HREF="android.accessibilityservice.AccessibilityServiceInfo.html" class="hiddenlink" target="rightframe">AccessibilityServiceInfo</A><br>
+<!-- Class AccessibilityWindowInfo -->
+<A HREF="pkg_android.view.accessibility.html#AccessibilityWindowInfo" class="hiddenlink" target="rightframe"><b>AccessibilityWindowInfo</b></A><br>
+<!-- Field ACCOUNT_NAME -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.ACCOUNT_NAME" class="hiddenlink" target="rightframe">ACCOUNT_NAME</A>
+</nobr><br>
+<!-- Field ACCOUNT_TYPE -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.ACCOUNT_TYPE" class="hiddenlink" target="rightframe">ACCOUNT_TYPE</A>
+</nobr><br>
+<!-- Field ACCOUNT_TYPE_AND_DATA_SET -->
+<nobr><A HREF="android.provider.ContactsContract.RawContactsColumns.html#android.provider.ContactsContract.RawContactsColumns.ACCOUNT_TYPE_AND_DATA_SET" class="hiddenlink" target="rightframe">ACCOUNT_TYPE_AND_DATA_SET</A>
+</nobr><br>
+<!-- Class AccountManager -->
+<A HREF="android.accounts.AccountManager.html" class="hiddenlink" target="rightframe">AccountManager</A><br>
+<!-- Field ACTION_APPLICATION_RESTRICTIONS_CHANGED -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.ACTION_APPLICATION_RESTRICTIONS_CHANGED" class="hiddenlink" target="rightframe">ACTION_APPLICATION_RESTRICTIONS_CHANGED</A>
+</nobr><br>
+<!-- Field ACTION_APPWIDGET_HOST_RESTORED -->
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.ACTION_APPWIDGET_HOST_RESTORED" class="hiddenlink" target="rightframe">ACTION_APPWIDGET_HOST_RESTORED</A>
+</nobr><br>
+<!-- Field ACTION_APPWIDGET_RESTORED -->
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.ACTION_APPWIDGET_RESTORED" class="hiddenlink" target="rightframe">ACTION_APPWIDGET_RESTORED</A>
+</nobr><br>
+<!-- Field ACTION_ARGUMENT_SET_TEXT_CHARSEQUENCE -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.ACTION_ARGUMENT_SET_TEXT_CHARSEQUENCE" class="hiddenlink" target="rightframe">ACTION_ARGUMENT_SET_TEXT_CHARSEQUENCE</A>
+</nobr><br>
+<!-- Field ACTION_CAST_SETTINGS -->
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_CAST_SETTINGS" class="hiddenlink" target="rightframe">ACTION_CAST_SETTINGS</A>
+</nobr><br>
+<!-- Field ACTION_HDMI_AUDIO_PLUG -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ACTION_HDMI_AUDIO_PLUG" class="hiddenlink" target="rightframe">ACTION_HDMI_AUDIO_PLUG</A>
+</nobr><br>
+<!-- Field ACTION_HEADSET_PLUG -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ACTION_HEADSET_PLUG" class="hiddenlink" target="rightframe">ACTION_HEADSET_PLUG</A>
+</nobr><br>
+<!-- Field ACTION_HOME_SETTINGS -->
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_HOME_SETTINGS" class="hiddenlink" target="rightframe">ACTION_HOME_SETTINGS</A>
+</nobr><br>
+<!-- Field ACTION_LOCK_TASK_ENTERING -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.ACTION_LOCK_TASK_ENTERING" class="hiddenlink" target="rightframe">ACTION_LOCK_TASK_ENTERING</A>
+</nobr><br>
+<!-- Field ACTION_LOCK_TASK_EXITING -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.ACTION_LOCK_TASK_EXITING" class="hiddenlink" target="rightframe">ACTION_LOCK_TASK_EXITING</A>
+</nobr><br>
+<!-- Field ACTION_MANAGED_PROFILE_ADDED -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.ACTION_MANAGED_PROFILE_ADDED" class="hiddenlink" target="rightframe">ACTION_MANAGED_PROFILE_ADDED</A>
+</nobr><br>
+<!-- Field ACTION_MANAGED_PROFILE_REMOVED -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.ACTION_MANAGED_PROFILE_REMOVED" class="hiddenlink" target="rightframe">ACTION_MANAGED_PROFILE_REMOVED</A>
+</nobr><br>
+<!-- Field ACTION_NEXT_ALARM_CLOCK_CHANGED -->
+<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.ACTION_NEXT_ALARM_CLOCK_CHANGED" class="hiddenlink" target="rightframe">ACTION_NEXT_ALARM_CLOCK_CHANGED</A>
+</nobr><br>
+<!-- Field ACTION_OPEN_DOCUMENT_TREE -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.ACTION_OPEN_DOCUMENT_TREE" class="hiddenlink" target="rightframe">ACTION_OPEN_DOCUMENT_TREE</A>
+</nobr><br>
+<!-- Field ACTION_POWER_SAVE_MODE_CHANGED -->
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.ACTION_POWER_SAVE_MODE_CHANGED" class="hiddenlink" target="rightframe">ACTION_POWER_SAVE_MODE_CHANGED</A>
+</nobr><br>
+<!-- Field ACTION_PROFILE_PROVISIONING_COMPLETE -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.ACTION_PROFILE_PROVISIONING_COMPLETE" class="hiddenlink" target="rightframe">ACTION_PROFILE_PROVISIONING_COMPLETE</A>
+</nobr><br>
+<!-- Field ACTION_PROVISION_MANAGED_PROFILE -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.ACTION_PROVISION_MANAGED_PROFILE" class="hiddenlink" target="rightframe">ACTION_PROVISION_MANAGED_PROFILE</A>
+</nobr><br>
+<!-- Field ACTION_QUICK_CONTACT -->
+<nobr><A HREF="android.provider.ContactsContract.QuickContact.html#android.provider.ContactsContract.QuickContact.ACTION_QUICK_CONTACT" class="hiddenlink" target="rightframe">ACTION_QUICK_CONTACT</A>
+</nobr><br>
+<!-- Field ACTION_SET_TEXT -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.ACTION_SET_TEXT" class="hiddenlink" target="rightframe">ACTION_SET_TEXT</A>
+</nobr><br>
+<!-- Field ACTION_SHOW_REGULATORY_INFO -->
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_SHOW_REGULATORY_INFO" class="hiddenlink" target="rightframe">ACTION_SHOW_REGULATORY_INFO</A>
+</nobr><br>
+<!-- Field ACTION_USAGE_ACCESS_SETTINGS -->
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_USAGE_ACCESS_SETTINGS" class="hiddenlink" target="rightframe">ACTION_USAGE_ACCESS_SETTINGS</A>
+</nobr><br>
+<!-- Field ACTION_VOICE_INPUT_SETTINGS -->
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_VOICE_INPUT_SETTINGS" class="hiddenlink" target="rightframe">ACTION_VOICE_INPUT_SETTINGS</A>
+</nobr><br>
+<!-- Class ActionBar -->
+<A HREF="android.app.ActionBar.html" class="hiddenlink" target="rightframe">ActionBar</A><br>
+<!-- Class ActionBar.OnNavigationListener -->
+<A HREF="android.app.ActionBar.OnNavigationListener.html" class="hiddenlink" target="rightframe"><i>ActionBar.OnNavigationListener</i></A><br>
+<!-- Class ActionBar.Tab -->
+<A HREF="android.app.ActionBar.Tab.html" class="hiddenlink" target="rightframe">ActionBar.Tab</A><br>
+<!-- Class ActionBar.TabListener -->
+<A HREF="android.app.ActionBar.TabListener.html" class="hiddenlink" target="rightframe"><i>ActionBar.TabListener</i></A><br>
+<!-- Field actionBarPopupTheme -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionBarPopupTheme" class="hiddenlink" target="rightframe">actionBarPopupTheme</A>
+</nobr><br>
+<!-- Field actionBarTheme -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionBarTheme" class="hiddenlink" target="rightframe">actionBarTheme</A>
+</nobr><br>
+<!-- Class ActionMenuView -->
+<A HREF="pkg_android.widget.html#ActionMenuView" class="hiddenlink" target="rightframe"><b>ActionMenuView</b></A><br>
+<!-- Class ActionMenuView.LayoutParams -->
+<A HREF="pkg_android.widget.html#ActionMenuView.LayoutParams" class="hiddenlink" target="rightframe"><b>ActionMenuView.LayoutParams</b></A><br>
+<!-- Class ActionMenuView.OnMenuItemClickListener -->
+<A HREF="pkg_android.widget.html#ActionMenuView.OnMenuItemClickListener" class="hiddenlink" target="rightframe"><b><i>ActionMenuView.OnMenuItemClickListener</i></b></A><br>
+<!-- Field actionModeFindDrawable -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionModeFindDrawable" class="hiddenlink" target="rightframe">actionModeFindDrawable</A>
+</nobr><br>
+<!-- Field actionModeShareDrawable -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionModeShareDrawable" class="hiddenlink" target="rightframe">actionModeShareDrawable</A>
+</nobr><br>
+<!-- Field actionModeWebSearchDrawable -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionModeWebSearchDrawable" class="hiddenlink" target="rightframe">actionModeWebSearchDrawable</A>
+</nobr><br>
+<!-- Field actionOverflowMenuStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionOverflowMenuStyle" class="hiddenlink" target="rightframe">actionOverflowMenuStyle</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.AppTask -->
+<A HREF="pkg_android.app.html#ActivityManager.AppTask" class="hiddenlink" target="rightframe"><b>ActivityManager.AppTask</b></A><br>
+<!-- Class ActivityManager.RecentTaskInfo -->
+<A HREF="android.app.ActivityManager.RecentTaskInfo.html" class="hiddenlink" target="rightframe">ActivityManager.RecentTaskInfo</A><br>
+<!-- Class ActivityManager.RunningAppProcessInfo -->
+<A HREF="android.app.ActivityManager.RunningAppProcessInfo.html" class="hiddenlink" target="rightframe">ActivityManager.RunningAppProcessInfo</A><br>
+<!-- Class ActivityManager.TaskDescription -->
+<A HREF="pkg_android.app.html#ActivityManager.TaskDescription" class="hiddenlink" target="rightframe"><b>ActivityManager.TaskDescription</b></A><br>
+<!-- Class ActivityOptions -->
+<A HREF="android.app.ActivityOptions.html" class="hiddenlink" target="rightframe">ActivityOptions</A><br>
+<!-- Class AdapterView -->
+<i>AdapterView</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.AdapterView.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor AdapterView -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AdapterView.html#android.widget.AdapterView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AdapterView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class AdapterViewAnimator -->
+<i>AdapterViewAnimator</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.AdapterViewAnimator.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor AdapterViewAnimator -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AdapterViewAnimator.html#android.widget.AdapterViewAnimator.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AdapterViewAnimator</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class AdapterViewFlipper -->
+<i>AdapterViewFlipper</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.AdapterViewFlipper.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor AdapterViewFlipper -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AdapterViewFlipper.html#android.widget.AdapterViewFlipper.ctor_added(android.content.Context, android.util.AttributeSet, int)" class="hiddenlink" target="rightframe"><b>AdapterViewFlipper</b>
+(<code>Context, AttributeSet, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor AdapterViewFlipper -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AdapterViewFlipper.html#android.widget.AdapterViewFlipper.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AdapterViewFlipper</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Method addAction -->
+<i>addAction</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.addAction_added(android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AccessibilityAction</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo
+</A></nobr><br>
+<!-- Method addAction -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.addAction_changed(int)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>int</code>)&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo
+</A></nobr><br>
+<!-- Method addAllowedApplication -->
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.addAllowedApplication_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>addAllowedApplication</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method addAppTask -->
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.addAppTask_added(android.app.Activity, android.content.Intent, android.app.ActivityManager.TaskDescription, android.graphics.Bitmap)" class="hiddenlink" target="rightframe"><b>addAppTask</b>
+(<code>Activity, Intent, TaskDescription, Bitmap</code>)</A></nobr><br>
+<!-- Method addArc -->
+<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addArc_added(float, float, float, float, float, float)" class="hiddenlink" target="rightframe"><b>addArc</b>
+(<code>float, float, float, float, float, float</code>)</A></nobr><br>
+<!-- Method addCrossProfileIntentFilter -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addCrossProfileIntentFilter_added(android.content.ComponentName, android.content.IntentFilter, int)" class="hiddenlink" target="rightframe"><b>addCrossProfileIntentFilter</b>
+(<code>ComponentName, IntentFilter, int</code>)</A></nobr><br>
+<!-- Method addCrossProfileWidgetProvider -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>addCrossProfileWidgetProvider</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method addDefaultNetworkActiveListener -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.addDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><b>addDefaultNetworkActiveListener</b>
+(<code>OnNetworkActiveListener</code>)</A></nobr><br>
+<!-- Method addDisallowedApplication -->
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.addDisallowedApplication_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>addDisallowedApplication</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method addEarcon -->
+<i>addEarcon</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_removed(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String, String</code>)</strike>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method addEarcon -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.io.File)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, File</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method addEarcon -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, String</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method addOval -->
+<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addOval_added(float, float, float, float, android.graphics.Path.Direction)" class="hiddenlink" target="rightframe"><b>addOval</b>
+(<code>float, float, float, float, Direction</code>)</A></nobr><br>
+<!-- Method addPersistentPreferredActivity -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addPersistentPreferredActivity_added(android.content.ComponentName, android.content.IntentFilter, android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>addPersistentPreferredActivity</b>
+(<code>ComponentName, IntentFilter, ComponentName</code>)</A></nobr><br>
+<!-- Method addPerson -->
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.addPerson_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>addPerson</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method addRoundRect -->
+<i>addRoundRect</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addRoundRect_added(float, float, float, float, float, float, android.graphics.Path.Direction)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float, float, float, float, float, float, Direction</code>)</b>&nbsp;in&nbsp;android.graphics.Path
+</A></nobr><br>
+<!-- Method addRoundRect -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addRoundRect_added(float, float, float, float, float[], android.graphics.Path.Direction)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float, float, float, float, float[], Direction</code>)</b>&nbsp;in&nbsp;android.graphics.Path
+</A></nobr><br>
+<!-- Method addSharedElement -->
+<nobr><A HREF="android.app.FragmentTransaction.html#android.app.FragmentTransaction.addSharedElement_added(android.view.View, java.lang.String)" class="hiddenlink" target="rightframe"><b>addSharedElement</b>
+(<code>View, String</code>)</A></nobr><br>
+<!-- Method addSpeech -->
+<i>addSpeech</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.io.File)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, File</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method addSpeech -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, String, int</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method addTab -->
+<i>addTab</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Tab</code>)&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+<!-- Method addTab -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab, boolean)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Tab, boolean</code>)&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+<!-- Method addTab -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab, int)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Tab, int</code>)&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+<!-- Method addTab -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab, int, boolean)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Tab, int, boolean</code>)&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+<!-- Method addTarget -->
+<i>addTarget</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.addTarget_added(java.lang.Class)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Class</code>)</b>&nbsp;in&nbsp;android.transition.Transition
+</A></nobr><br>
+<!-- Method addTarget -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.addTarget_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.transition.Transition
+</A></nobr><br>
+<!-- Method addUserRestriction -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addUserRestriction_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>addUserRestriction</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Field affiliatedTaskId -->
+<nobr><A HREF="android.app.ActivityManager.RecentTaskInfo.html#android.app.ActivityManager.RecentTaskInfo.affiliatedTaskId" class="hiddenlink" target="rightframe">affiliatedTaskId</A>
+</nobr><br>
+<!-- Field AKA -->
+<nobr><A HREF="android.net.wifi.WifiEnterpriseConfig.Eap.html#android.net.wifi.WifiEnterpriseConfig.Eap.AKA" class="hiddenlink" target="rightframe">AKA</A>
+</nobr><br>
+<!-- Class AlarmManager -->
+<A HREF="android.app.AlarmManager.html" class="hiddenlink" target="rightframe">AlarmManager</A><br>
+<!-- Class AlarmManager.AlarmClockInfo -->
+<A HREF="pkg_android.app.html#AlarmManager.AlarmClockInfo" class="hiddenlink" target="rightframe"><b>AlarmManager.AlarmClockInfo</b></A><br>
+<!-- Class AlertDialog.Builder -->
+<A HREF="android.app.AlertDialog.Builder.html" class="hiddenlink" target="rightframe">AlertDialog.Builder</A><br>
+<!-- Field ALL_CODECS -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.ALL_CODECS" class="hiddenlink" target="rightframe">ALL_CODECS</A>
+</nobr><br>
+<!-- Class Allocation -->
+<A HREF="android.renderscript.Allocation.html" class="hiddenlink" target="rightframe">Allocation</A><br>
+<!-- Method allowBypass -->
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.allowBypass_added()" class="hiddenlink" target="rightframe"><b>allowBypass</b>
+()</A></nobr><br>
+<!-- Method allowFamily -->
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.allowFamily_added(int)" class="hiddenlink" target="rightframe"><b>allowFamily</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Field ambientShadowAlpha -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.ambientShadowAlpha" class="hiddenlink" target="rightframe">ambientShadowAlpha</A>
+</nobr><br>
+<!-- Field amPmBackgroundColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.amPmBackgroundColor" class="hiddenlink" target="rightframe">amPmBackgroundColor</A>
+</nobr><br>
+<!-- Field amPmTextColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.amPmTextColor" class="hiddenlink" target="rightframe">amPmTextColor</A>
+</nobr><br>
+<!-- Class AnalogClock -->
+<i>AnalogClock</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.AnalogClock.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor AnalogClock -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AnalogClock.html#android.widget.AnalogClock.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AnalogClock</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Package android -->
+<A HREF="pkg_android.html" class="hiddenlink" target="rightframe">android</A><br>
+<!-- Package android.accessibilityservice -->
+<A HREF="pkg_android.accessibilityservice.html" class="hiddenlink" target="rightframe">android.accessibilityservice</A><br>
+<!-- Package android.accounts -->
+<A HREF="pkg_android.accounts.html" class="hiddenlink" target="rightframe">android.accounts</A><br>
+<!-- Package android.animation -->
+<A HREF="pkg_android.animation.html" class="hiddenlink" target="rightframe">android.animation</A><br>
+<!-- Package android.app -->
+<A HREF="pkg_android.app.html" class="hiddenlink" target="rightframe">android.app</A><br>
+<!-- Package android.app.admin -->
+<A HREF="pkg_android.app.admin.html" class="hiddenlink" target="rightframe">android.app.admin</A><br>
+<!-- Package android.app.backup -->
+<A HREF="pkg_android.app.backup.html" class="hiddenlink" target="rightframe">android.app.backup</A><br>
+<!-- Package android.app.job -->
+<A HREF="changes-summary.html#android.app.job" class="hiddenlink" target="rightframe"><b>android.app.job</b></A><br>
+<!-- Package android.app.usage -->
+<A HREF="changes-summary.html#android.app.usage" class="hiddenlink" target="rightframe"><b>android.app.usage</b></A><br>
+<!-- Package android.appwidget -->
+<A HREF="pkg_android.appwidget.html" class="hiddenlink" target="rightframe">android.appwidget</A><br>
+<!-- Package android.bluetooth -->
+<A HREF="pkg_android.bluetooth.html" class="hiddenlink" target="rightframe">android.bluetooth</A><br>
+<!-- Package android.bluetooth.le -->
+<A HREF="changes-summary.html#android.bluetooth.le" class="hiddenlink" target="rightframe"><b>android.bluetooth.le</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.gesture -->
+<A HREF="pkg_android.gesture.html" class="hiddenlink" target="rightframe">android.gesture</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.graphics.drawable.shapes -->
+<A HREF="pkg_android.graphics.drawable.shapes.html" class="hiddenlink" target="rightframe">android.graphics.drawable.shapes</A><br>
+<!-- Package android.graphics.pdf -->
+<A HREF="pkg_android.graphics.pdf.html" class="hiddenlink" target="rightframe">android.graphics.pdf</A><br>
+<!-- Package android.hardware -->
+<A HREF="pkg_android.hardware.html" class="hiddenlink" target="rightframe">android.hardware</A><br>
+<!-- Package android.hardware.camera2 -->
+<A HREF="changes-summary.html#android.hardware.camera2" class="hiddenlink" target="rightframe"><b>android.hardware.camera2</b></A><br>
+<!-- Package android.hardware.camera2.params -->
+<A HREF="changes-summary.html#android.hardware.camera2.params" class="hiddenlink" target="rightframe"><b>android.hardware.camera2.params</b></A><br>
+<!-- Package android.hardware.display -->
+<A HREF="pkg_android.hardware.display.html" class="hiddenlink" target="rightframe">android.hardware.display</A><br>
+<!-- Package android.hardware.location -->
+<A HREF="changes-summary.html#android.hardware.location" class="hiddenlink" target="rightframe"><strike>android.hardware.location</strike></A><br>
+<!-- Package android.hardware.usb -->
+<A HREF="pkg_android.hardware.usb.html" class="hiddenlink" target="rightframe">android.hardware.usb</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.media.audiofx -->
+<A HREF="pkg_android.media.audiofx.html" class="hiddenlink" target="rightframe">android.media.audiofx</A><br>
+<!-- Package android.media.browse -->
+<A HREF="changes-summary.html#android.media.browse" class="hiddenlink" target="rightframe"><b>android.media.browse</b></A><br>
+<!-- Package android.media.projection -->
+<A HREF="changes-summary.html#android.media.projection" class="hiddenlink" target="rightframe"><b>android.media.projection</b></A><br>
+<!-- Package android.media.session -->
+<A HREF="changes-summary.html#android.media.session" class="hiddenlink" target="rightframe"><b>android.media.session</b></A><br>
+<!-- Package android.media.tv -->
+<A HREF="changes-summary.html#android.media.tv" class="hiddenlink" target="rightframe"><b>android.media.tv</b></A><br>
+<!-- Package android.net -->
+<A HREF="pkg_android.net.html" class="hiddenlink" target="rightframe">android.net</A><br>
+<!-- Package android.net.http -->
+<A HREF="pkg_android.net.http.html" class="hiddenlink" target="rightframe">android.net.http</A><br>
+<!-- Package android.net.nsd -->
+<A HREF="pkg_android.net.nsd.html" class="hiddenlink" target="rightframe">android.net.nsd</A><br>
+<!-- Package android.net.wifi -->
+<A HREF="pkg_android.net.wifi.html" class="hiddenlink" target="rightframe">android.net.wifi</A><br>
+<!-- Package android.nfc -->
+<A HREF="pkg_android.nfc.html" class="hiddenlink" target="rightframe">android.nfc</A><br>
+<!-- Package android.nfc.cardemulation -->
+<A HREF="pkg_android.nfc.cardemulation.html" class="hiddenlink" target="rightframe">android.nfc.cardemulation</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.preference -->
+<A HREF="pkg_android.preference.html" class="hiddenlink" target="rightframe">android.preference</A><br>
+<!-- Package android.printservice -->
+<A HREF="pkg_android.printservice.html" class="hiddenlink" target="rightframe">android.printservice</A><br>
+<!-- Package android.provider -->
+<A HREF="pkg_android.provider.html" class="hiddenlink" target="rightframe">android.provider</A><br>
+<!-- Package android.renderscript -->
+<A HREF="pkg_android.renderscript.html" class="hiddenlink" target="rightframe">android.renderscript</A><br>
+<!-- Package android.service.dreams -->
+<A HREF="pkg_android.service.dreams.html" class="hiddenlink" target="rightframe">android.service.dreams</A><br>
+<!-- Package android.service.media -->
+<A HREF="changes-summary.html#android.service.media" class="hiddenlink" target="rightframe"><b>android.service.media</b></A><br>
+<!-- Package android.service.notification -->
+<A HREF="pkg_android.service.notification.html" class="hiddenlink" target="rightframe">android.service.notification</A><br>
+<!-- Package android.service.restrictions -->
+<A HREF="changes-summary.html#android.service.restrictions" class="hiddenlink" target="rightframe"><b>android.service.restrictions</b></A><br>
+<!-- Package android.service.voice -->
+<A HREF="changes-summary.html#android.service.voice" class="hiddenlink" target="rightframe"><b>android.service.voice</b></A><br>
+<!-- Package android.service.wallpaper -->
+<A HREF="pkg_android.service.wallpaper.html" class="hiddenlink" target="rightframe">android.service.wallpaper</A><br>
+<!-- Package android.speech.tts -->
+<A HREF="pkg_android.speech.tts.html" class="hiddenlink" target="rightframe">android.speech.tts</A><br>
+<!-- Package android.system -->
+<A HREF="changes-summary.html#android.system" class="hiddenlink" target="rightframe"><b>android.system</b></A><br>
+<!-- Package android.telecom -->
+<A HREF="changes-summary.html#android.telecom" class="hiddenlink" target="rightframe"><b>android.telecom</b></A><br>
+<!-- Package android.telephony -->
+<A HREF="pkg_android.telephony.html" class="hiddenlink" target="rightframe">android.telephony</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.style -->
+<A HREF="pkg_android.text.style.html" class="hiddenlink" target="rightframe">android.text.style</A><br>
+<!-- Package android.transition -->
+<A HREF="pkg_android.transition.html" class="hiddenlink" target="rightframe">android.transition</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.accessibility -->
+<A HREF="pkg_android.view.accessibility.html" class="hiddenlink" target="rightframe">android.view.accessibility</A><br>
+<!-- Package android.view.animation -->
+<A HREF="pkg_android.view.animation.html" class="hiddenlink" target="rightframe">android.view.animation</A><br>
+<!-- Package android.view.inputmethod -->
+<A HREF="pkg_android.view.inputmethod.html" class="hiddenlink" target="rightframe">android.view.inputmethod</A><br>
+<!-- Package android.view.textservice -->
+<A HREF="pkg_android.view.textservice.html" class="hiddenlink" target="rightframe">android.view.textservice</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 AnimatedStateListDrawable -->
+<A HREF="pkg_android.graphics.drawable.html#AnimatedStateListDrawable" class="hiddenlink" target="rightframe"><b>AnimatedStateListDrawable</b></A><br>
+<!-- Class AnimatedVectorDrawable -->
+<A HREF="pkg_android.graphics.drawable.html#AnimatedVectorDrawable" class="hiddenlink" target="rightframe"><b>AnimatedVectorDrawable</b></A><br>
+<!-- Class AnimatorInflater -->
+<A HREF="android.animation.AnimatorInflater.html" class="hiddenlink" target="rightframe">AnimatorInflater</A><br>
+<!-- Field ANY_CURSOR_ITEM_TYPE -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.ANY_CURSOR_ITEM_TYPE" class="hiddenlink" target="rightframe">ANY_CURSOR_ITEM_TYPE</A>
+</nobr><br>
+<!-- Method append -->
+<nobr><A HREF="android.text.SpannableStringBuilder.html#android.text.SpannableStringBuilder.append_added(java.lang.CharSequence, java.lang.Object, int)" class="hiddenlink" target="rightframe"><b>append</b>
+(<code>CharSequence, Object, int</code>)</A></nobr><br>
+<!-- Class ApplicationInfo -->
+<A HREF="android.content.pm.ApplicationInfo.html" class="hiddenlink" target="rightframe">ApplicationInfo</A><br>
+<!-- Method applyTheme -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.applyTheme_added(android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>applyTheme</b>
+(<code>Theme</code>)</A></nobr><br>
+<!-- Class AppOpsManager -->
+<A HREF="android.app.AppOpsManager.html" class="hiddenlink" target="rightframe">AppOpsManager</A><br>
+<!-- Field APPWIDGET_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.APPWIDGET_SERVICE" class="hiddenlink" target="rightframe">APPWIDGET_SERVICE</A>
+</nobr><br>
+<!-- Class AppWidgetHost -->
+<A HREF="android.appwidget.AppWidgetHost.html" class="hiddenlink" target="rightframe">AppWidgetHost</A><br>
+<!-- Class AppWidgetManager -->
+<A HREF="android.appwidget.AppWidgetManager.html" class="hiddenlink" target="rightframe">AppWidgetManager</A><br>
+<!-- Class AppWidgetProvider -->
+<A HREF="android.appwidget.AppWidgetProvider.html" class="hiddenlink" target="rightframe">AppWidgetProvider</A><br>
+<!-- Class AppWidgetProviderInfo -->
+<A HREF="android.appwidget.AppWidgetProviderInfo.html" class="hiddenlink" target="rightframe">AppWidgetProviderInfo</A><br>
+<!-- Field ARCHIVED -->
+<nobr><A HREF="android.provider.Telephony.ThreadsColumns.html#android.provider.Telephony.ThreadsColumns.ARCHIVED" class="hiddenlink" target="rightframe">ARCHIVED</A>
+</nobr><br>
+<!-- Class ArcMotion -->
+<A HREF="pkg_android.transition.html#ArcMotion" class="hiddenlink" target="rightframe"><b>ArcMotion</b></A><br>
+<!-- Method arcTo -->
+<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.arcTo_added(float, float, float, float, float, float, boolean)" class="hiddenlink" target="rightframe"><b>arcTo</b>
+(<code>float, float, float, float, float, float, boolean</code>)</A></nobr><br>
+<!-- Method areDefaultsEnforced -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.areDefaultsEnforced_changed()" class="hiddenlink" target="rightframe">areDefaultsEnforced
+()</A></nobr><br>
+<!-- Class ArrayMap -->
+<A HREF="android.util.ArrayMap.html" class="hiddenlink" target="rightframe">ArrayMap</A><br>
+<!-- Class AssetManager -->
+<A HREF="android.content.res.AssetManager.html" class="hiddenlink" target="rightframe">AssetManager</A><br>
+<!-- Class AssetManager.AssetInputStream -->
+<A HREF="android.content.res.AssetManager.AssetInputStream.html" class="hiddenlink" target="rightframe">AssetManager.AssetInputStream</A><br>
+<!-- Field AUDIO_ATTRIBUTES_DEFAULT -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.AUDIO_ATTRIBUTES_DEFAULT" class="hiddenlink" target="rightframe">AUDIO_ATTRIBUTES_DEFAULT</A>
+</nobr><br>
+<!-- Field AUDIO_SESSION_ID_GENERATE -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.AUDIO_SESSION_ID_GENERATE" class="hiddenlink" target="rightframe">AUDIO_SESSION_ID_GENERATE</A>
+</nobr><br>
+<!-- Class AudioAttributes -->
+<A HREF="pkg_android.media.html#AudioAttributes" class="hiddenlink" target="rightframe"><b>AudioAttributes</b></A><br>
+<!-- Field audioAttributes -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.audioAttributes" class="hiddenlink" target="rightframe">audioAttributes</A>
+</nobr><br>
+<!-- Class AudioAttributes.Builder -->
+<A HREF="pkg_android.media.html#AudioAttributes.Builder" class="hiddenlink" target="rightframe"><b>AudioAttributes.Builder</b></A><br>
+<!-- Class AudioFormat -->
+<i>AudioFormat</i><br>
+&nbsp;&nbsp;<A HREF="android.media.AudioFormat.html" class="hiddenlink" target="rightframe">android.media</A><br>
+<!-- Constructor AudioFormat -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ctor_removed()" class="hiddenlink" target="rightframe"><strike>AudioFormat</strike>
+()</A></nobr>&nbsp;constructor<br>
+<!-- Class AudioFormat.Builder -->
+<A HREF="pkg_android.media.html#AudioFormat.Builder" class="hiddenlink" target="rightframe"><b>AudioFormat.Builder</b></A><br>
+<!-- Class AudioManager -->
+<A HREF="android.media.AudioManager.html" class="hiddenlink" target="rightframe">AudioManager</A><br>
+<!-- Field audioStreamType -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.audioStreamType" class="hiddenlink" target="rightframe">audioStreamType</A>
+</nobr><br>
+<!-- Class AudioTrack -->
+<i>AudioTrack</i><br>
+&nbsp;&nbsp;<A HREF="android.media.AudioTrack.html" class="hiddenlink" target="rightframe">android.media</A><br>
+<!-- Constructor AudioTrack -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.ctor_added(android.media.AudioAttributes, android.media.AudioFormat, int, int, int)" class="hiddenlink" target="rightframe"><b>AudioTrack</b>
+(<code>AudioAttributes, AudioFormat, int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class AutoCompleteTextView -->
+<i>AutoCompleteTextView</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.AutoCompleteTextView.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor AutoCompleteTextView -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AutoCompleteTextView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field autoRemoveFromRecents -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.autoRemoveFromRecents" class="hiddenlink" target="rightframe">autoRemoveFromRecents</A>
+</nobr><br>
+<!-- Class AutoTransition -->
+<i>AutoTransition</i><br>
+&nbsp;&nbsp;<A HREF="android.transition.AutoTransition.html" class="hiddenlink" target="rightframe">android.transition</A><br>
+<!-- Constructor AutoTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.AutoTransition.html#android.transition.AutoTransition.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>AutoTransition</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field AVCLevel52 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.AVCLevel52" class="hiddenlink" target="rightframe">AVCLevel52</A>
+</nobr><br>
+<!-- Field backgroundTint -->
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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="#X"><font size="-2">X</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.backgroundTint" class="hiddenlink" target="rightframe">backgroundTint</A>
+</nobr><br>
+<!-- Field backgroundTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.backgroundTintMode" class="hiddenlink" target="rightframe">backgroundTintMode</A>
+</nobr><br>
+<!-- Class BackupAgent -->
+<A HREF="android.app.backup.BackupAgent.html" class="hiddenlink" target="rightframe">BackupAgent</A><br>
+<!-- Field banner -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.banner" class="hiddenlink" target="rightframe">banner</A>
+</nobr><br>
+<!-- Class BaseBundle -->
+<A HREF="pkg_android.os.html#BaseBundle" class="hiddenlink" target="rightframe"><b>BaseBundle</b></A><br>
+<!-- Class BaseInputConnection -->
+<A HREF="android.view.inputmethod.BaseInputConnection.html" class="hiddenlink" target="rightframe">BaseInputConnection</A><br>
+<!-- Field BATTERY_PROPERTY_CAPACITY -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.BATTERY_PROPERTY_CAPACITY" class="hiddenlink" target="rightframe">BATTERY_PROPERTY_CAPACITY</A>
+</nobr><br>
+<!-- Field BATTERY_PROPERTY_CHARGE_COUNTER -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.BATTERY_PROPERTY_CHARGE_COUNTER" class="hiddenlink" target="rightframe">BATTERY_PROPERTY_CHARGE_COUNTER</A>
+</nobr><br>
+<!-- Field BATTERY_PROPERTY_CURRENT_AVERAGE -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.BATTERY_PROPERTY_CURRENT_AVERAGE" class="hiddenlink" target="rightframe">BATTERY_PROPERTY_CURRENT_AVERAGE</A>
+</nobr><br>
+<!-- Field BATTERY_PROPERTY_CURRENT_NOW -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.BATTERY_PROPERTY_CURRENT_NOW" class="hiddenlink" target="rightframe">BATTERY_PROPERTY_CURRENT_NOW</A>
+</nobr><br>
+<!-- Field BATTERY_PROPERTY_ENERGY_COUNTER -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.BATTERY_PROPERTY_ENERGY_COUNTER" class="hiddenlink" target="rightframe">BATTERY_PROPERTY_ENERGY_COUNTER</A>
+</nobr><br>
+<!-- Field BATTERY_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.BATTERY_SERVICE" class="hiddenlink" target="rightframe">BATTERY_SERVICE</A>
+</nobr><br>
+<!-- Class BatteryManager -->
+<A HREF="android.os.BatteryManager.html" class="hiddenlink" target="rightframe">BatteryManager</A><br>
+<!-- Class BidirectionalTypeConverter -->
+<A HREF="pkg_android.animation.html#BidirectionalTypeConverter" class="hiddenlink" target="rightframe"><b>BidirectionalTypeConverter</b></A><br>
+<!-- Field BIND_DREAM_SERVICE -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.BIND_DREAM_SERVICE" class="hiddenlink" target="rightframe">BIND_DREAM_SERVICE</A>
+</nobr><br>
+<!-- Field BIND_TV_INPUT -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.BIND_TV_INPUT" class="hiddenlink" target="rightframe">BIND_TV_INPUT</A>
+</nobr><br>
+<!-- Field BIND_VOICE_INTERACTION -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.BIND_VOICE_INTERACTION" class="hiddenlink" target="rightframe">BIND_VOICE_INTERACTION</A>
+</nobr><br>
+<!-- Method bindAppWidgetIdIfAllowed -->
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.bindAppWidgetIdIfAllowed_added(int, android.os.UserHandle, android.content.ComponentName, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>bindAppWidgetIdIfAllowed</b>
+(<code>int, UserHandle, ComponentName, Bundle</code>)</A></nobr><br>
+<!-- Class BitmapFactory.Options -->
+<A HREF="android.graphics.BitmapFactory.Options.html" class="hiddenlink" target="rightframe">BitmapFactory.Options</A><br>
+<!-- Class BluetoothAdapter -->
+<A HREF="android.bluetooth.BluetoothAdapter.html" class="hiddenlink" target="rightframe">BluetoothAdapter</A><br>
+<!-- Class BluetoothGatt -->
+<A HREF="android.bluetooth.BluetoothGatt.html" class="hiddenlink" target="rightframe">BluetoothGatt</A><br>
+<!-- Class BluetoothGattCallback -->
+<A HREF="android.bluetooth.BluetoothGattCallback.html" class="hiddenlink" target="rightframe">BluetoothGattCallback</A><br>
+<!-- Class BluetoothGattServerCallback -->
+<A HREF="android.bluetooth.BluetoothGattServerCallback.html" class="hiddenlink" target="rightframe">BluetoothGattServerCallback</A><br>
+<!-- Field BSSID -->
+<nobr><A HREF="android.net.wifi.WpsInfo.html#android.net.wifi.WpsInfo.BSSID" class="hiddenlink" target="rightframe">BSSID</A>
+</nobr><br>
+<!-- Field BUFFER_FLAG_KEY_FRAME -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.BUFFER_FLAG_KEY_FRAME" class="hiddenlink" target="rightframe">BUFFER_FLAG_KEY_FRAME</A>
+</nobr><br>
+<!-- Field BUFFER_FLAG_SYNC_FRAME -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.BUFFER_FLAG_SYNC_FRAME" class="hiddenlink" target="rightframe">BUFFER_FLAG_SYNC_FRAME</A>
+</nobr><br>
+<!-- Class Build -->
+<A HREF="android.os.Build.html" class="hiddenlink" target="rightframe">Build</A><br>
+<!-- Class Build.VERSION_CODES -->
+<A HREF="android.os.Build.VERSION_CODES.html" class="hiddenlink" target="rightframe">Build.VERSION_CODES</A><br>
+<!-- Method buildChildDocumentsUriUsingTree -->
+<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.buildChildDocumentsUriUsingTree_added(android.net.Uri, java.lang.String)" class="hiddenlink" target="rightframe"><b>buildChildDocumentsUriUsingTree</b>
+(<code>Uri, String</code>)</A></nobr><br>
+<!-- Method buildDocumentUriUsingTree -->
+<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.buildDocumentUriUsingTree_added(android.net.Uri, java.lang.String)" class="hiddenlink" target="rightframe"><b>buildDocumentUriUsingTree</b>
+(<code>Uri, String</code>)</A></nobr><br>
+<!-- Method buildTreeDocumentUri -->
+<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.buildTreeDocumentUri_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>buildTreeDocumentUri</b>
+(<code>String, String</code>)</A></nobr><br>
+<!-- Class Bundle -->
+<i>Bundle</i><br>
+&nbsp;&nbsp;<A HREF="android.os.Bundle.html" class="hiddenlink" target="rightframe">android.os</A><br>
+<!-- Constructor Bundle -->
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.ctor_added(android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>Bundle</b>
+(<code>PersistableBundle</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class Button -->
+<i>Button</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.Button.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor Button -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Button.html#android.widget.Button.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>Button</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field buttonBarNegativeButtonStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonBarNegativeButtonStyle" class="hiddenlink" target="rightframe">buttonBarNegativeButtonStyle</A>
+</nobr><br>
+<!-- Field buttonBarNeutralButtonStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonBarNeutralButtonStyle" class="hiddenlink" target="rightframe">buttonBarNeutralButtonStyle</A>
+</nobr><br>
+<!-- Field buttonBarPositiveButtonStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonBarPositiveButtonStyle" class="hiddenlink" target="rightframe">buttonBarPositiveButtonStyle</A>
+</nobr><br>
+<!-- Field buttonTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonTint" class="hiddenlink" target="rightframe">buttonTint</A>
+</nobr><br>
+<!-- Field buttonTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonTintMode" class="hiddenlink" target="rightframe">buttonTintMode</A>
+</nobr><br>
+<!-- Field CACHED_FORMATTED_NUMBER -->
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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="#X"><font size="-2">X</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.CallLog.Calls.html#android.provider.CallLog.Calls.CACHED_FORMATTED_NUMBER" class="hiddenlink" target="rightframe">CACHED_FORMATTED_NUMBER</A>
+</nobr><br>
+<!-- Field CACHED_LOOKUP_URI -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.CACHED_LOOKUP_URI" class="hiddenlink" target="rightframe">CACHED_LOOKUP_URI</A>
+</nobr><br>
+<!-- Field CACHED_MATCHED_NUMBER -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.CACHED_MATCHED_NUMBER" class="hiddenlink" target="rightframe">CACHED_MATCHED_NUMBER</A>
+</nobr><br>
+<!-- Field CACHED_NORMALIZED_NUMBER -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.CACHED_NORMALIZED_NUMBER" class="hiddenlink" target="rightframe">CACHED_NORMALIZED_NUMBER</A>
+</nobr><br>
+<!-- Field CACHED_PHOTO_ID -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.CACHED_PHOTO_ID" class="hiddenlink" target="rightframe">CACHED_PHOTO_ID</A>
+</nobr><br>
+<!-- Field calendarTextColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.calendarTextColor" class="hiddenlink" target="rightframe">calendarTextColor</A>
+</nobr><br>
+<!-- Class CalendarView -->
+<i>CalendarView</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.CalendarView.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor CalendarView -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.CalendarView.html#android.widget.CalendarView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>CalendarView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Method callActivityOnCreate -->
+<nobr><A HREF="android.app.Instrumentation.html#android.app.Instrumentation.callActivityOnCreate_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>callActivityOnCreate</b>
+(<code>Activity, Bundle, PersistableBundle</code>)</A></nobr><br>
+<!-- Method callActivityOnPostCreate -->
+<nobr><A HREF="android.app.Instrumentation.html#android.app.Instrumentation.callActivityOnPostCreate_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>callActivityOnPostCreate</b>
+(<code>Activity, Bundle, PersistableBundle</code>)</A></nobr><br>
+<!-- Method callActivityOnRestoreInstanceState -->
+<nobr><A HREF="android.app.Instrumentation.html#android.app.Instrumentation.callActivityOnRestoreInstanceState_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>callActivityOnRestoreInstanceState</b>
+(<code>Activity, Bundle, PersistableBundle</code>)</A></nobr><br>
+<!-- Method callActivityOnSaveInstanceState -->
+<nobr><A HREF="android.app.Instrumentation.html#android.app.Instrumentation.callActivityOnSaveInstanceState_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>callActivityOnSaveInstanceState</b>
+(<code>Activity, Bundle, PersistableBundle</code>)</A></nobr><br>
+<!-- Class CallLog.Calls -->
+<A HREF="android.provider.CallLog.Calls.html" class="hiddenlink" target="rightframe">CallLog.Calls</A><br>
+<!-- Class CamcorderProfile -->
+<A HREF="android.media.CamcorderProfile.html" class="hiddenlink" target="rightframe">CamcorderProfile</A><br>
+<!-- Class Camera -->
+<A HREF="android.hardware.Camera.html" class="hiddenlink" target="rightframe">Camera</A><br>
+<!-- Class Camera.Area -->
+<A HREF="android.hardware.Camera.Area.html" class="hiddenlink" target="rightframe">Camera.Area</A><br>
+<!-- Class Camera.AutoFocusCallback -->
+<A HREF="android.hardware.Camera.AutoFocusCallback.html" class="hiddenlink" target="rightframe"><i>Camera.AutoFocusCallback</i></A><br>
+<!-- Class Camera.AutoFocusMoveCallback -->
+<A HREF="android.hardware.Camera.AutoFocusMoveCallback.html" class="hiddenlink" target="rightframe"><i>Camera.AutoFocusMoveCallback</i></A><br>
+<!-- Class Camera.CameraInfo -->
+<A HREF="android.hardware.Camera.CameraInfo.html" class="hiddenlink" target="rightframe">Camera.CameraInfo</A><br>
+<!-- Class Camera.ErrorCallback -->
+<A HREF="android.hardware.Camera.ErrorCallback.html" class="hiddenlink" target="rightframe"><i>Camera.ErrorCallback</i></A><br>
+<!-- Class Camera.Face -->
+<A HREF="android.hardware.Camera.Face.html" class="hiddenlink" target="rightframe">Camera.Face</A><br>
+<!-- Class Camera.FaceDetectionListener -->
+<A HREF="android.hardware.Camera.FaceDetectionListener.html" class="hiddenlink" target="rightframe"><i>Camera.FaceDetectionListener</i></A><br>
+<!-- Class Camera.OnZoomChangeListener -->
+<A HREF="android.hardware.Camera.OnZoomChangeListener.html" class="hiddenlink" target="rightframe"><i>Camera.OnZoomChangeListener</i></A><br>
+<!-- Class Camera.Parameters -->
+<A HREF="android.hardware.Camera.Parameters.html" class="hiddenlink" target="rightframe">Camera.Parameters</A><br>
+<!-- Class Camera.PictureCallback -->
+<A HREF="android.hardware.Camera.PictureCallback.html" class="hiddenlink" target="rightframe"><i>Camera.PictureCallback</i></A><br>
+<!-- Class Camera.PreviewCallback -->
+<A HREF="android.hardware.Camera.PreviewCallback.html" class="hiddenlink" target="rightframe"><i>Camera.PreviewCallback</i></A><br>
+<!-- Class Camera.ShutterCallback -->
+<A HREF="android.hardware.Camera.ShutterCallback.html" class="hiddenlink" target="rightframe"><i>Camera.ShutterCallback</i></A><br>
+<!-- Class Camera.Size -->
+<A HREF="android.hardware.Camera.Size.html" class="hiddenlink" target="rightframe">Camera.Size</A><br>
+<!-- Field CAMERA_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.CAMERA_SERVICE" class="hiddenlink" target="rightframe">CAMERA_SERVICE</A>
+</nobr><br>
+<!-- Method canApplyTheme -->
+<i>canApplyTheme</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.canApplyTheme_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.graphics.drawable.Drawable
+</A></nobr><br>
+<!-- Method canApplyTheme -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.Drawable.ConstantState.html#android.graphics.drawable.Drawable.ConstantState.canApplyTheme_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.graphics.drawable.Drawable.ConstantState
+</A></nobr><br>
+<!-- Method cancelNotification -->
+<i>cancelNotification</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.cancelNotification_removed(java.lang.String, java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String, String, int</code>)</strike>&nbsp;in&nbsp;android.service.notification.NotificationListenerService
+</A></nobr><br>
+<!-- Method cancelNotification -->
+&nbsp;&nbsp;<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.cancelNotification_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.service.notification.NotificationListenerService
+</A></nobr><br>
+<!-- Method cancelNotification -->
+&nbsp;&nbsp;<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.cancelNotification_added(java.lang.String, java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, String, int</code>)</b>&nbsp;in&nbsp;android.service.notification.NotificationListenerService
+</A></nobr><br>
+<!-- Method cancelNotifications -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.cancelNotifications_added(java.lang.String[])" class="hiddenlink" target="rightframe"><b>cancelNotifications</b>
+(<code>String[]</code>)</A></nobr><br>
+<!-- Method cancelSync -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.cancelSync_added(android.content.SyncRequest)" class="hiddenlink" target="rightframe"><b>cancelSync</b>
+(<code>SyncRequest</code>)</A></nobr><br>
+<!-- Method cancelWps -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.cancelWps_added(android.net.wifi.WifiManager.WpsCallback)" class="hiddenlink" target="rightframe"><b>cancelWps</b>
+(<code>WpsCallback</code>)</A></nobr><br>
+<!-- Method canRemoveViews -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.canRemoveViews_added()" class="hiddenlink" target="rightframe"><b>canRemoveViews</b>
+()</A></nobr><br>
+<!-- Class Canvas -->
+<A HREF="android.graphics.Canvas.html" class="hiddenlink" target="rightframe">Canvas</A><br>
+<!-- Method canVirtualize -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.canVirtualize_added(int, int)" class="hiddenlink" target="rightframe"><b>canVirtualize</b>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Class CaptioningManager.CaptionStyle -->
+<A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html" class="hiddenlink" target="rightframe">CaptioningManager.CaptionStyle</A><br>
+<!-- Class CardEmulation -->
+<A HREF="android.nfc.cardemulation.CardEmulation.html" class="hiddenlink" target="rightframe">CardEmulation</A><br>
+<!-- Field category -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.category" class="hiddenlink" target="rightframe">category</A>
+</nobr><br>
+<!-- Field CATEGORY_ALARM -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_ALARM" class="hiddenlink" target="rightframe">CATEGORY_ALARM</A>
+</nobr><br>
+<!-- Field CATEGORY_CALL -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_CALL" class="hiddenlink" target="rightframe">CATEGORY_CALL</A>
+</nobr><br>
+<!-- Field CATEGORY_EMAIL -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_EMAIL" class="hiddenlink" target="rightframe">CATEGORY_EMAIL</A>
+</nobr><br>
+<!-- Field CATEGORY_ERROR -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_ERROR" class="hiddenlink" target="rightframe">CATEGORY_ERROR</A>
+</nobr><br>
+<!-- Field CATEGORY_EVENT -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_EVENT" class="hiddenlink" target="rightframe">CATEGORY_EVENT</A>
+</nobr><br>
+<!-- Field CATEGORY_LEANBACK_LAUNCHER -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.CATEGORY_LEANBACK_LAUNCHER" class="hiddenlink" target="rightframe">CATEGORY_LEANBACK_LAUNCHER</A>
+</nobr><br>
+<!-- Field CATEGORY_MESSAGE -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_MESSAGE" class="hiddenlink" target="rightframe">CATEGORY_MESSAGE</A>
+</nobr><br>
+<!-- Field CATEGORY_PROGRESS -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_PROGRESS" class="hiddenlink" target="rightframe">CATEGORY_PROGRESS</A>
+</nobr><br>
+<!-- Field CATEGORY_PROMO -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_PROMO" class="hiddenlink" target="rightframe">CATEGORY_PROMO</A>
+</nobr><br>
+<!-- Field CATEGORY_RECOMMENDATION -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_RECOMMENDATION" class="hiddenlink" target="rightframe">CATEGORY_RECOMMENDATION</A>
+</nobr><br>
+<!-- Field CATEGORY_SERVICE -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_SERVICE" class="hiddenlink" target="rightframe">CATEGORY_SERVICE</A>
+</nobr><br>
+<!-- Field CATEGORY_SOCIAL -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_SOCIAL" class="hiddenlink" target="rightframe">CATEGORY_SOCIAL</A>
+</nobr><br>
+<!-- Field CATEGORY_STATUS -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_STATUS" class="hiddenlink" target="rightframe">CATEGORY_STATUS</A>
+</nobr><br>
+<!-- Field CATEGORY_SYSTEM -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_SYSTEM" class="hiddenlink" target="rightframe">CATEGORY_SYSTEM</A>
+</nobr><br>
+<!-- Field CATEGORY_TRANSPORT -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_TRANSPORT" class="hiddenlink" target="rightframe">CATEGORY_TRANSPORT</A>
+</nobr><br>
+<!-- Method categoryAllowsForegroundPreference -->
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.categoryAllowsForegroundPreference_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>categoryAllowsForegroundPreference</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Field CENATT -->
+<i>CENATT</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENATT" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENATT -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENATT" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENATT -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENATT" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENATT -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENATT" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENATX -->
+<i>CENATX</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENATX" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENATX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENATX" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENATX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENATX" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENATX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENATX" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENCOM -->
+<i>CENCOM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENCOM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENCOM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENCOM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENCRC -->
+<i>CENCRC</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENCRC -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENCRC -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENCRC -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENDSK -->
+<i>CENDSK</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENDSK" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENDSK -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENDSK" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENDSK -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENDSK" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENDSK -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENDSK" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENEXT -->
+<i>CENEXT</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENEXT -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENEXT -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENEXT -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENFLG -->
+<i>CENFLG</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENFLG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENFLG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENFLG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENHDR -->
+<i>CENHDR</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENHDR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENHDR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENHDR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENHOW -->
+<i>CENHOW</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENHOW -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENHOW -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENHOW -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENLEN -->
+<i>CENLEN</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENLEN -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENLEN -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENLEN -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENNAM -->
+<i>CENNAM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENNAM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENNAM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENNAM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENOFF -->
+<i>CENOFF</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENOFF -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENOFF -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENOFF -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENSIG -->
+<i>CENSIG</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENSIG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENSIG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENSIG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENSIZ -->
+<i>CENSIZ</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENSIZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENSIZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENSIZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENTIM -->
+<i>CENTIM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENTIM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENTIM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENTIM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENVEM -->
+<i>CENVEM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENVEM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENVEM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENVEM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENVEM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENVEM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENVEM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENVEM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field CENVER -->
+<i>CENVER</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENVER" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field CENVER -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENVER" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field CENVER -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENVER" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field CENVER -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENVER" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Class ChangeBounds -->
+<i>ChangeBounds</i><br>
+&nbsp;&nbsp;<A HREF="android.transition.ChangeBounds.html" class="hiddenlink" target="rightframe">android.transition</A><br>
+<!-- Constructor ChangeBounds -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.ChangeBounds.html#android.transition.ChangeBounds.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>ChangeBounds</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class ChangeClipBounds -->
+<A HREF="pkg_android.transition.html#ChangeClipBounds" class="hiddenlink" target="rightframe"><b>ChangeClipBounds</b></A><br>
+<!-- Class ChangeImageTransform -->
+<A HREF="pkg_android.transition.html#ChangeImageTransform" class="hiddenlink" target="rightframe"><b>ChangeImageTransform</b></A><br>
+<!-- Class ChangeTransform -->
+<A HREF="pkg_android.transition.html#ChangeTransform" class="hiddenlink" target="rightframe"><b>ChangeTransform</b></A><br>
+<!-- Field CHANNEL_OUT_SIDE_LEFT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_SIDE_LEFT" class="hiddenlink" target="rightframe">CHANNEL_OUT_SIDE_LEFT</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_SIDE_RIGHT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_SIDE_RIGHT" class="hiddenlink" target="rightframe">CHANNEL_OUT_SIDE_RIGHT</A>
+</nobr><br>
+<!-- Class CheckBox -->
+<i>CheckBox</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.CheckBox.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor CheckBox -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.CheckBox.html#android.widget.CheckBox.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>CheckBox</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class CheckBoxPreference -->
+<i>CheckBoxPreference</i><br>
+&nbsp;&nbsp;<A HREF="android.preference.CheckBoxPreference.html" class="hiddenlink" target="rightframe">android.preference</A><br>
+<!-- Constructor CheckBoxPreference -->
+&nbsp;&nbsp;<nobr><A HREF="android.preference.CheckBoxPreference.html#android.preference.CheckBoxPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>CheckBoxPreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class CheckedTextView -->
+<i>CheckedTextView</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.CheckedTextView.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor CheckedTextView -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>CheckedTextView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field checkMarkTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.checkMarkTint" class="hiddenlink" target="rightframe">checkMarkTint</A>
+</nobr><br>
+<!-- Field checkMarkTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.checkMarkTintMode" class="hiddenlink" target="rightframe">checkMarkTintMode</A>
+</nobr><br>
+<!-- Class Chronometer -->
+<i>Chronometer</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.Chronometer.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor Chronometer -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Chronometer.html#android.widget.Chronometer.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>Chronometer</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class CircularPropagation -->
+<A HREF="pkg_android.transition.html#CircularPropagation" class="hiddenlink" target="rightframe"><b>CircularPropagation</b></A><br>
+<!-- Method clear -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.clear_changed()" class="hiddenlink" target="rightframe">clear
+()</A></nobr><br>
+<!-- Method clearClientCertPreferences -->
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.clearClientCertPreferences_added(java.lang.Runnable)" class="hiddenlink" target="rightframe"><b>clearClientCertPreferences</b>
+(<code>Runnable</code>)</A></nobr><br>
+<!-- Method clearCrossProfileIntentFilters -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearCrossProfileIntentFilters_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>clearCrossProfileIntentFilters</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method clearDeviceOwnerApp -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearDeviceOwnerApp_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>clearDeviceOwnerApp</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method clearPackagePersistentPreferredActivities -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearPackagePersistentPreferredActivities_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>clearPackagePersistentPreferredActivities</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method clearUserRestriction -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearUserRestriction_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>clearUserRestriction</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method clearWindowAnimationFrameStats -->
+<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.clearWindowAnimationFrameStats_added()" class="hiddenlink" target="rightframe"><b>clearWindowAnimationFrameStats</b>
+()</A></nobr><br>
+<!-- Method clearWindowContentFrameStats -->
+<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.clearWindowContentFrameStats_added(int)" class="hiddenlink" target="rightframe"><b>clearWindowContentFrameStats</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Class ClientCertRequest -->
+<A HREF="pkg_android.webkit.html#ClientCertRequest" class="hiddenlink" target="rightframe"><b>ClientCertRequest</b></A><br>
+<!-- Method clipRegion -->
+<i>clipRegion</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.clipRegion_changed(android.graphics.Region)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Region</code>)&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<!-- Method clipRegion -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.clipRegion_changed(android.graphics.Region, android.graphics.Region.Op)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Region, Op</code>)&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<!-- Field CLOCK_TICK -->
+<nobr><A HREF="android.view.HapticFeedbackConstants.html#android.view.HapticFeedbackConstants.CLOCK_TICK" class="hiddenlink" target="rightframe">CLOCK_TICK</A>
+</nobr><br>
+<!-- Field closeIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.closeIcon" class="hiddenlink" target="rightframe">closeIcon</A>
+</nobr><br>
+<!-- Field color -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.color" class="hiddenlink" target="rightframe">color</A>
+</nobr><br>
+<!-- Field COLOR_DEFAULT -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.COLOR_DEFAULT" class="hiddenlink" target="rightframe">COLOR_DEFAULT</A>
+</nobr><br>
+<!-- Field COLOR_FormatYUV420Flexible -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.COLOR_FormatYUV420Flexible" class="hiddenlink" target="rightframe">COLOR_FormatYUV420Flexible</A>
+</nobr><br>
+<!-- Field colorAccent -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorAccent" class="hiddenlink" target="rightframe">colorAccent</A>
+</nobr><br>
+<!-- Field colorButtonNormal -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorButtonNormal" class="hiddenlink" target="rightframe">colorButtonNormal</A>
+</nobr><br>
+<!-- Field colorControlActivated -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorControlActivated" class="hiddenlink" target="rightframe">colorControlActivated</A>
+</nobr><br>
+<!-- Field colorControlHighlight -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorControlHighlight" class="hiddenlink" target="rightframe">colorControlHighlight</A>
+</nobr><br>
+<!-- Field colorControlNormal -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorControlNormal" class="hiddenlink" target="rightframe">colorControlNormal</A>
+</nobr><br>
+<!-- Field colorEdgeEffect -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorEdgeEffect" class="hiddenlink" target="rightframe">colorEdgeEffect</A>
+</nobr><br>
+<!-- Field colorPrimary -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorPrimary" class="hiddenlink" target="rightframe">colorPrimary</A>
+</nobr><br>
+<!-- Field colorPrimaryDark -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorPrimaryDark" class="hiddenlink" target="rightframe">colorPrimaryDark</A>
+</nobr><br>
+<!-- Class ColorStateList -->
+<A HREF="android.content.res.ColorStateList.html" class="hiddenlink" target="rightframe">ColorStateList</A><br>
+<!-- Field COMMENTS -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.COMMENTS" class="hiddenlink" target="rightframe">COMMENTS</A>
+</nobr><br>
+<!-- Field commitIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.commitIcon" class="hiddenlink" target="rightframe">commitIcon</A>
+</nobr><br>
+<!-- Class CompoundButton -->
+<i>CompoundButton</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.CompoundButton.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor CompoundButton -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>CompoundButton</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Method computeSystemWindowInsets -->
+<nobr><A HREF="android.view.View.html#android.view.View.computeSystemWindowInsets_added(android.view.WindowInsets, android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>computeSystemWindowInsets</b>
+(<code>WindowInsets, Rect</code>)</A></nobr><br>
+<!-- Class ConcurrentLinkedDeque -->
+<A HREF="pkg_java.util.concurrent.html#ConcurrentLinkedDeque" class="hiddenlink" target="rightframe"><b>ConcurrentLinkedDeque</b></A><br>
+<!-- Field CONNECTION_PRIORITY_BALANCED -->
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_BALANCED" class="hiddenlink" target="rightframe">CONNECTION_PRIORITY_BALANCED</A>
+</nobr><br>
+<!-- Field CONNECTION_PRIORITY_HIGH -->
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_HIGH" class="hiddenlink" target="rightframe">CONNECTION_PRIORITY_HIGH</A>
+</nobr><br>
+<!-- Field CONNECTION_PRIORITY_LOW_POWER -->
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_LOW_POWER" class="hiddenlink" target="rightframe">CONNECTION_PRIORITY_LOW_POWER</A>
+</nobr><br>
+<!-- Class ConnectivityManager -->
+<A HREF="android.net.ConnectivityManager.html" class="hiddenlink" target="rightframe">ConnectivityManager</A><br>
+<!-- Class ConnectivityManager.NetworkCallback -->
+<A HREF="pkg_android.net.html#ConnectivityManager.NetworkCallback" class="hiddenlink" target="rightframe"><b>ConnectivityManager.NetworkCallback</b></A><br>
+<!-- Class ConnectivityManager.OnNetworkActiveListener -->
+<A HREF="pkg_android.net.html#ConnectivityManager.OnNetworkActiveListener" class="hiddenlink" target="rightframe"><b><i>ConnectivityManager.OnNetworkActiveListener</i></b></A><br>
+<!-- Method consumeStableInsets -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.consumeStableInsets_added()" class="hiddenlink" target="rightframe"><b>consumeStableInsets</b>
+()</A></nobr><br>
+<!-- Field CONTACT_ID -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.CONTACT_ID" class="hiddenlink" target="rightframe">CONTACT_ID</A>
+</nobr><br>
+<!-- Field CONTACT_LOOKUP_KEY -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.CONTACT_LOOKUP_KEY" class="hiddenlink" target="rightframe">CONTACT_LOOKUP_KEY</A>
+</nobr><br>
+<!-- Class ContactsContract -->
+<A HREF="android.provider.ContactsContract.html" class="hiddenlink" target="rightframe">ContactsContract</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Callable -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Callable" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Callable</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.Contactables -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Contactables</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Email -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Email</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Event -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Event</A><br>
+<!-- Class ContactsContract.CommonDataKinds.GroupMembership -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.GroupMembership</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Identity -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Identity</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Im -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Im</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Nickname -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Nickname</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Note -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Note</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Organization -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Organization</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Phone -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Phone</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Photo -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Photo</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Relation -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Relation</A><br>
+<!-- Class ContactsContract.CommonDataKinds.SipAddress -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.SipAddress</A><br>
+<!-- Class ContactsContract.CommonDataKinds.StructuredName -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.StructuredName</A><br>
+<!-- Class ContactsContract.CommonDataKinds.StructuredPostal -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.StructuredPostal</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Website -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Website</A><br>
+<!-- Class ContactsContract.ContactOptionsColumns -->
+<A HREF="android.provider.ContactsContract.ContactOptionsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.ContactOptionsColumns</i></A><br>
+<!-- Class ContactsContract.Contacts -->
+<A HREF="android.provider.ContactsContract.Contacts.html" class="hiddenlink" target="rightframe">ContactsContract.Contacts</A><br>
+<!-- Class ContactsContract.Contacts.Entity -->
+<A HREF="android.provider.ContactsContract.Contacts.Entity.html" class="hiddenlink" target="rightframe">ContactsContract.Contacts.Entity</A><br>
+<!-- Class ContactsContract.Contacts.StreamItems -->
+<A HREF="android.provider.ContactsContract.Contacts.StreamItems.html" class="hiddenlink" target="rightframe">ContactsContract.Contacts.StreamItems</A><br>
+<!-- Class ContactsContract.ContactsColumns -->
+<A HREF="android.provider.ContactsContract.ContactsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.ContactsColumns</i></A><br>
+<!-- Class ContactsContract.Data -->
+<A HREF="android.provider.ContactsContract.Data.html" class="hiddenlink" target="rightframe">ContactsContract.Data</A><br>
+<!-- Class ContactsContract.DataColumns -->
+<A HREF="android.provider.ContactsContract.DataColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.DataColumns</i></A><br>
+<!-- Class ContactsContract.GroupsColumns -->
+<A HREF="android.provider.ContactsContract.GroupsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.GroupsColumns</i></A><br>
+<!-- Class ContactsContract.PhoneLookup -->
+<A HREF="android.provider.ContactsContract.PhoneLookup.html" class="hiddenlink" target="rightframe">ContactsContract.PhoneLookup</A><br>
+<!-- Class ContactsContract.PinnedPositions -->
+<A HREF="pkg_android.provider.html#ContactsContract.PinnedPositions" class="hiddenlink" target="rightframe"><b>ContactsContract.PinnedPositions</b></A><br>
+<!-- Class ContactsContract.QuickContact -->
+<A HREF="android.provider.ContactsContract.QuickContact.html" class="hiddenlink" target="rightframe">ContactsContract.QuickContact</A><br>
+<!-- Class ContactsContract.RawContacts.StreamItems -->
+<A HREF="android.provider.ContactsContract.RawContacts.StreamItems.html" class="hiddenlink" target="rightframe">ContactsContract.RawContacts.StreamItems</A><br>
+<!-- Class ContactsContract.RawContactsColumns -->
+<A HREF="android.provider.ContactsContract.RawContactsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.RawContactsColumns</i></A><br>
+<!-- Class ContactsContract.SearchSnippets -->
+<A HREF="pkg_android.provider.html#ContactsContract.SearchSnippets" class="hiddenlink" target="rightframe"><b>ContactsContract.SearchSnippets</b></A><br>
+<!-- Class ContactsContract.StreamItemPhotos -->
+<A HREF="android.provider.ContactsContract.StreamItemPhotos.html" class="hiddenlink" target="rightframe">ContactsContract.StreamItemPhotos</A><br>
+<!-- Class ContactsContract.StreamItemPhotosColumns -->
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.StreamItemPhotosColumns</i></A><br>
+<!-- Class ContactsContract.StreamItems -->
+<A HREF="android.provider.ContactsContract.StreamItems.html" class="hiddenlink" target="rightframe">ContactsContract.StreamItems</A><br>
+<!-- Class ContactsContract.StreamItems.StreamItemPhotos -->
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html" class="hiddenlink" target="rightframe">ContactsContract.StreamItems.StreamItemPhotos</A><br>
+<!-- Class ContactsContract.StreamItemsColumns -->
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.StreamItemsColumns</i></A><br>
+<!-- Method containsKey -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.containsKey_changed(java.lang.String)" class="hiddenlink" target="rightframe">containsKey
+(<code>String</code>)</A></nobr><br>
+<!-- Field CONTENT_DIRECTORY -->
+<i>CONTENT_DIRECTORY</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.StreamItems.html#android.provider.ContactsContract.Contacts.StreamItems.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts.StreamItems</A>
+</nobr><br>
+<!-- Field CONTENT_DIRECTORY -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.RawContacts.StreamItems.html#android.provider.ContactsContract.RawContacts.StreamItems.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.ContactsContract.RawContacts.StreamItems</A>
+</nobr><br>
+<!-- Field CONTENT_DIRECTORY -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html#android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems.StreamItemPhotos</A>
+</nobr><br>
+<!-- Field CONTENT_FREQUENT_URI -->
+<nobr><A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.CONTENT_FREQUENT_URI" class="hiddenlink" target="rightframe">CONTENT_FREQUENT_URI</A>
+</nobr><br>
+<!-- Field CONTENT_ITEM_TYPE -->
+<i>CONTENT_ITEM_TYPE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems</A>
+</nobr><br>
+<!-- Field CONTENT_ITEM_TYPE -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html#android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems.StreamItemPhotos</A>
+</nobr><br>
+<!-- Field CONTENT_LIMIT_URI -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_LIMIT_URI" class="hiddenlink" target="rightframe">CONTENT_LIMIT_URI</A>
+</nobr><br>
+<!-- Field CONTENT_MULTI_VCARD_URI -->
+<nobr><A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.CONTENT_MULTI_VCARD_URI" class="hiddenlink" target="rightframe">CONTENT_MULTI_VCARD_URI</A>
+</nobr><br>
+<!-- Field CONTENT_PHOTO_URI -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_PHOTO_URI" class="hiddenlink" target="rightframe">CONTENT_PHOTO_URI</A>
+</nobr><br>
+<!-- Field CONTENT_TYPE -->
+<i>CONTENT_TYPE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems</A>
+</nobr><br>
+<!-- Field CONTENT_TYPE -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html#android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems.StreamItemPhotos</A>
+</nobr><br>
+<!-- Field CONTENT_URI -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_URI" class="hiddenlink" target="rightframe">CONTENT_URI</A>
+</nobr><br>
+<!-- Field CONTENT_URI_WITH_VOICEMAIL -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.CONTENT_URI_WITH_VOICEMAIL" class="hiddenlink" target="rightframe">CONTENT_URI_WITH_VOICEMAIL</A>
+</nobr><br>
+<!-- Field contentAgeHint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentAgeHint" class="hiddenlink" target="rightframe">contentAgeHint</A>
+</nobr><br>
+<!-- Field contentInsetEnd -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetEnd" class="hiddenlink" target="rightframe">contentInsetEnd</A>
+</nobr><br>
+<!-- Field contentInsetLeft -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetLeft" class="hiddenlink" target="rightframe">contentInsetLeft</A>
+</nobr><br>
+<!-- Field contentInsetRight -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetRight" class="hiddenlink" target="rightframe">contentInsetRight</A>
+</nobr><br>
+<!-- Field contentInsetStart -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetStart" class="hiddenlink" target="rightframe">contentInsetStart</A>
+</nobr><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>
+<!-- Field controlX1 -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlX1" class="hiddenlink" target="rightframe">controlX1</A>
+</nobr><br>
+<!-- Field controlX2 -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlX2" class="hiddenlink" target="rightframe">controlX2</A>
+</nobr><br>
+<!-- Field controlY1 -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlY1" class="hiddenlink" target="rightframe">controlY1</A>
+</nobr><br>
+<!-- Field controlY2 -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlY2" class="hiddenlink" target="rightframe">controlY2</A>
+</nobr><br>
+<!-- Class CookieManager -->
+<A HREF="android.webkit.CookieManager.html" class="hiddenlink" target="rightframe">CookieManager</A><br>
+<!-- Class CookieSyncManager -->
+<A HREF="android.webkit.CookieSyncManager.html" class="hiddenlink" target="rightframe">CookieSyncManager</A><br>
+<!-- Method copy1DRangeFrom -->
+<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copy1DRangeFrom_added(int, int, java.lang.Object)" class="hiddenlink" target="rightframe"><b>copy1DRangeFrom</b>
+(<code>int, int, Object</code>)</A></nobr><br>
+<!-- Method copy1DRangeFromUnchecked -->
+<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copy1DRangeFromUnchecked_added(int, int, java.lang.Object)" class="hiddenlink" target="rightframe"><b>copy1DRangeFromUnchecked</b>
+(<code>int, int, Object</code>)</A></nobr><br>
+<!-- Method copy2DRangeFrom -->
+<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copy2DRangeFrom_added(int, int, int, int, java.lang.Object)" class="hiddenlink" target="rightframe"><b>copy2DRangeFrom</b>
+(<code>int, int, int, int, Object</code>)</A></nobr><br>
+<!-- Method copyFrom -->
+<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copyFrom_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>copyFrom</b>
+(<code>Object</code>)</A></nobr><br>
+<!-- Method copyFromUnchecked -->
+<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copyFromUnchecked_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>copyFromUnchecked</b>
+(<code>Object</code>)</A></nobr><br>
+<!-- Method copyTo -->
+<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copyTo_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>copyTo</b>
+(<code>Object</code>)</A></nobr><br>
+<!-- Field country -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.country" class="hiddenlink" target="rightframe">country</A>
+</nobr><br>
+<!-- Field COUNTRY_ISO -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.COUNTRY_ISO" class="hiddenlink" target="rightframe">COUNTRY_ISO</A>
+</nobr><br>
+<!-- Field CPU_ABI -->
+<nobr><A HREF="android.os.Build.html#android.os.Build.CPU_ABI" class="hiddenlink" target="rightframe">CPU_ABI</A>
+</nobr><br>
+<!-- Field CPU_ABI2 -->
+<nobr><A HREF="android.os.Build.html#android.os.Build.CPU_ABI2" class="hiddenlink" target="rightframe">CPU_ABI2</A>
+</nobr><br>
+<!-- Method create -->
+<i>create</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Dialog.html#android.app.Dialog.create_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Dialog
+</A></nobr><br>
+<!-- Method create -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.create_added(android.content.Context, android.net.Uri, android.view.SurfaceHolder, android.media.AudioAttributes, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context, Uri, SurfaceHolder, AudioAttributes, int</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+<!-- Method create -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.create_added(android.content.Context, int, android.media.AudioAttributes, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context, int, AudioAttributes, int</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+<!-- Method create -->
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.RenderScript.html#android.renderscript.RenderScript.create_added(android.content.Context, android.renderscript.RenderScript.ContextType, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context, ContextType, int</code>)</b>&nbsp;in&nbsp;android.renderscript.RenderScript
+</A></nobr><br>
+<!-- Field CREATE_FLAG_LOW_LATENCY -->
+<nobr><A HREF="android.renderscript.RenderScript.html#android.renderscript.RenderScript.CREATE_FLAG_LOW_LATENCY" class="hiddenlink" target="rightframe">CREATE_FLAG_LOW_LATENCY</A>
+</nobr><br>
+<!-- Field CREATE_FLAG_LOW_POWER -->
+<nobr><A HREF="android.renderscript.RenderScript.html#android.renderscript.RenderScript.CREATE_FLAG_LOW_POWER" class="hiddenlink" target="rightframe">CREATE_FLAG_LOW_POWER</A>
+</nobr><br>
+<!-- Field CREATE_FLAG_NONE -->
+<nobr><A HREF="android.renderscript.RenderScript.html#android.renderscript.RenderScript.CREATE_FLAG_NONE" class="hiddenlink" target="rightframe">CREATE_FLAG_NONE</A>
+</nobr><br>
+<!-- Method createAndInitializeUser -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.createAndInitializeUser_added(android.content.ComponentName, java.lang.String, java.lang.String, android.content.ComponentName, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>createAndInitializeUser</b>
+(<code>ComponentName, String, String, ComponentName, Bundle</code>)</A></nobr><br>
+<!-- Method createByCodecName -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.createByCodecName_changed(java.lang.String)" class="hiddenlink" target="rightframe">createByCodecName
+(<code>String</code>)</A></nobr><br>
+<!-- Method createConfirmDeviceCredentialIntent -->
+<nobr><A HREF="android.app.KeyguardManager.html#android.app.KeyguardManager.createConfirmDeviceCredentialIntent_added(java.lang.CharSequence, java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>createConfirmDeviceCredentialIntent</b>
+(<code>CharSequence, CharSequence</code>)</A></nobr><br>
+<!-- Method createDecoderByType -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.createDecoderByType_changed(java.lang.String)" class="hiddenlink" target="rightframe">createDecoderByType
+(<code>String</code>)</A></nobr><br>
+<!-- Method createDocument -->
+<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.createDocument_added(android.content.ContentResolver, android.net.Uri, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>createDocument</b>
+(<code>ContentResolver, Uri, String, String</code>)</A></nobr><br>
+<!-- Method createEncoderByType -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.createEncoderByType_changed(java.lang.String)" class="hiddenlink" target="rightframe">createEncoderByType
+(<code>String</code>)</A></nobr><br>
+<!-- Method createFromProfileLevel -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.createFromProfileLevel_added(java.lang.String, int, int)" class="hiddenlink" target="rightframe"><b>createFromProfileLevel</b>
+(<code>String, int, int</code>)</A></nobr><br>
+<!-- Method createFromXml -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.createFromXml_added(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>createFromXml</b>
+(<code>Resources, XmlPullParser, Theme</code>)</A></nobr><br>
+<!-- Method createFromXmlInner -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.createFromXmlInner_added(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.util.AttributeSet, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>createFromXmlInner</b>
+(<code>Resources, XmlPullParser, AttributeSet, Theme</code>)</A></nobr><br>
+<!-- Method createPrintDocumentAdapter -->
+<i>createPrintDocumentAdapter</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.createPrintDocumentAdapter_removed()" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+()</strike>&nbsp;in&nbsp;android.webkit.WebView
+</A></nobr><br>
+<!-- Method createPrintDocumentAdapter -->
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.createPrintDocumentAdapter_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.webkit.WebView
+</A></nobr><br>
+<!-- Method createPrintDocumentAdapter -->
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.createPrintDocumentAdapter_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.webkit.WebView
+</A></nobr><br>
+<!-- Method createTextRecord -->
+<nobr><A HREF="android.nfc.NdefRecord.html#android.nfc.NdefRecord.createTextRecord_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>createTextRecord</b>
+(<code>String, String</code>)</A></nobr><br>
+<!-- Method createUser -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.createUser_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>createUser</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method createVirtualDisplay -->
+<nobr><A HREF="android.hardware.display.DisplayManager.html#android.hardware.display.DisplayManager.createVirtualDisplay_added(java.lang.String, int, int, int, android.view.Surface, int, android.hardware.display.VirtualDisplay.Callback, android.os.Handler)" class="hiddenlink" target="rightframe"><b>createVirtualDisplay</b>
+(<code>String, int, int, int, Surface, int, Callback, Handler</code>)</A></nobr><br>
+<!-- Method createX -->
+<nobr><A HREF="android.renderscript.Type.html#android.renderscript.Type.createX_added(android.renderscript.RenderScript, android.renderscript.Element, int)" class="hiddenlink" target="rightframe"><b>createX</b>
+(<code>RenderScript, Element, int</code>)</A></nobr><br>
+<!-- Method createXY -->
+<nobr><A HREF="android.renderscript.Type.html#android.renderscript.Type.createXY_added(android.renderscript.RenderScript, android.renderscript.Element, int, int)" class="hiddenlink" target="rightframe"><b>createXY</b>
+(<code>RenderScript, Element, int, int</code>)</A></nobr><br>
+<!-- Method createXYZ -->
+<nobr><A HREF="android.renderscript.Type.html#android.renderscript.Type.createXYZ_added(android.renderscript.RenderScript, android.renderscript.Element, int, int, int)" class="hiddenlink" target="rightframe"><b>createXYZ</b>
+(<code>RenderScript, Element, int, int, int</code>)</A></nobr><br>
+<!-- Field CREATOR -->
+<i>CREATOR</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.Telephony.BaseMmsColumns.html#android.provider.Telephony.BaseMmsColumns.CREATOR" class="hiddenlink" target="rightframe">android.provider.Telephony.BaseMmsColumns</A>
+</nobr><br>
+<!-- Field CREATOR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.Telephony.TextBasedSmsColumns.html#android.provider.Telephony.TextBasedSmsColumns.CREATOR" class="hiddenlink" target="rightframe">android.provider.Telephony.TextBasedSmsColumns</A>
+</nobr><br>
+<!-- Field CURSOR_UPDATE_IMMEDIATE -->
+<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.CURSOR_UPDATE_IMMEDIATE" class="hiddenlink" target="rightframe">CURSOR_UPDATE_IMMEDIATE</A>
+</nobr><br>
+<!-- Field CURSOR_UPDATE_MONITOR -->
+<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.CURSOR_UPDATE_MONITOR" class="hiddenlink" target="rightframe">CURSOR_UPDATE_MONITOR</A>
+</nobr><br>
+<!-- Class CursorAnchorInfo -->
+<A HREF="pkg_android.view.inputmethod.html#CursorAnchorInfo" class="hiddenlink" target="rightframe"><b>CursorAnchorInfo</b></A><br>
+<!-- Class CursorAnchorInfo.Builder -->
+<A HREF="pkg_android.view.inputmethod.html#CursorAnchorInfo.Builder" class="hiddenlink" target="rightframe"><b>CursorAnchorInfo.Builder</b></A><br>
+<!-- Field DATA_SET -->
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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="#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="#X"><font size="-2">X</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.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.DATA_SET" class="hiddenlink" target="rightframe">DATA_SET</A>
+</nobr><br>
+<!-- Field DATA_USAGE -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.DATA_USAGE" class="hiddenlink" target="rightframe">DATA_USAGE</A>
+</nobr><br>
+<!-- Class DatePicker -->
+<i>DatePicker</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.DatePicker.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor DatePicker -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.DatePicker.html#android.widget.DatePicker.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>DatePicker</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field datePickerDialogTheme -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.datePickerDialogTheme" class="hiddenlink" target="rightframe">datePickerDialogTheme</A>
+</nobr><br>
+<!-- Field datePickerMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.datePickerMode" class="hiddenlink" target="rightframe">datePickerMode</A>
+</nobr><br>
+<!-- Field dayOfWeekBackground -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.dayOfWeekBackground" class="hiddenlink" target="rightframe">dayOfWeekBackground</A>
+</nobr><br>
+<!-- Field dayOfWeekTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.dayOfWeekTextAppearance" class="hiddenlink" target="rightframe">dayOfWeekTextAppearance</A>
+</nobr><br>
+<!-- Class Debug -->
+<A HREF="android.os.Debug.html" class="hiddenlink" target="rightframe">Debug</A><br>
+<!-- Field DEFERRED_SNIPPETING -->
+<nobr><A HREF="android.provider.ContactsContract.html#android.provider.ContactsContract.DEFERRED_SNIPPETING" class="hiddenlink" target="rightframe">DEFERRED_SNIPPETING</A>
+</nobr><br>
+<!-- Field DEFERRED_SNIPPETING_QUERY -->
+<nobr><A HREF="android.provider.ContactsContract.html#android.provider.ContactsContract.DEFERRED_SNIPPETING_QUERY" class="hiddenlink" target="rightframe">DEFERRED_SNIPPETING_QUERY</A>
+</nobr><br>
+<!-- Field DENSITY_560 -->
+<nobr><A HREF="android.util.DisplayMetrics.html#android.util.DisplayMetrics.DENSITY_560" class="hiddenlink" target="rightframe">DENSITY_560</A>
+</nobr><br>
+<!-- Class DeviceAdminReceiver -->
+<A HREF="android.app.admin.DeviceAdminReceiver.html" class="hiddenlink" target="rightframe">DeviceAdminReceiver</A><br>
+<!-- Class DevicePolicyManager -->
+<A HREF="android.app.admin.DevicePolicyManager.html" class="hiddenlink" target="rightframe">DevicePolicyManager</A><br>
+<!-- Class Dialog -->
+<A HREF="android.app.Dialog.html" class="hiddenlink" target="rightframe">Dialog</A><br>
+<!-- Class DialogPreference -->
+<i>DialogPreference</i><br>
+&nbsp;&nbsp;<A HREF="android.preference.DialogPreference.html" class="hiddenlink" target="rightframe">android.preference</A><br>
+<!-- Constructor DialogPreference -->
+&nbsp;&nbsp;<nobr><A HREF="android.preference.DialogPreference.html#android.preference.DialogPreference.ctor_added(android.content.Context)" class="hiddenlink" target="rightframe"><b>DialogPreference</b>
+(<code>Context</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor DialogPreference -->
+&nbsp;&nbsp;<nobr><A HREF="android.preference.DialogPreference.html#android.preference.DialogPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>DialogPreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field DISALLOW_ADD_USER -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_ADD_USER" class="hiddenlink" target="rightframe">DISALLOW_ADD_USER</A>
+</nobr><br>
+<!-- Field DISALLOW_ADJUST_VOLUME -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_ADJUST_VOLUME" class="hiddenlink" target="rightframe">DISALLOW_ADJUST_VOLUME</A>
+</nobr><br>
+<!-- Field DISALLOW_APPS_CONTROL -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_APPS_CONTROL" class="hiddenlink" target="rightframe">DISALLOW_APPS_CONTROL</A>
+</nobr><br>
+<!-- Field DISALLOW_CONFIG_CELL_BROADCASTS -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CONFIG_CELL_BROADCASTS" class="hiddenlink" target="rightframe">DISALLOW_CONFIG_CELL_BROADCASTS</A>
+</nobr><br>
+<!-- Field DISALLOW_CONFIG_MOBILE_NETWORKS -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS" class="hiddenlink" target="rightframe">DISALLOW_CONFIG_MOBILE_NETWORKS</A>
+</nobr><br>
+<!-- Field DISALLOW_CONFIG_TETHERING -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CONFIG_TETHERING" class="hiddenlink" target="rightframe">DISALLOW_CONFIG_TETHERING</A>
+</nobr><br>
+<!-- Field DISALLOW_CONFIG_VPN -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CONFIG_VPN" class="hiddenlink" target="rightframe">DISALLOW_CONFIG_VPN</A>
+</nobr><br>
+<!-- Field DISALLOW_CREATE_WINDOWS -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CREATE_WINDOWS" class="hiddenlink" target="rightframe">DISALLOW_CREATE_WINDOWS</A>
+</nobr><br>
+<!-- Field DISALLOW_CROSS_PROFILE_COPY_PASTE -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CROSS_PROFILE_COPY_PASTE" class="hiddenlink" target="rightframe">DISALLOW_CROSS_PROFILE_COPY_PASTE</A>
+</nobr><br>
+<!-- Field DISALLOW_DEBUGGING_FEATURES -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_DEBUGGING_FEATURES" class="hiddenlink" target="rightframe">DISALLOW_DEBUGGING_FEATURES</A>
+</nobr><br>
+<!-- Field DISALLOW_FACTORY_RESET -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_FACTORY_RESET" class="hiddenlink" target="rightframe">DISALLOW_FACTORY_RESET</A>
+</nobr><br>
+<!-- Field DISALLOW_MOUNT_PHYSICAL_MEDIA -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_MOUNT_PHYSICAL_MEDIA" class="hiddenlink" target="rightframe">DISALLOW_MOUNT_PHYSICAL_MEDIA</A>
+</nobr><br>
+<!-- Field DISALLOW_OUTGOING_CALLS -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_OUTGOING_CALLS" class="hiddenlink" target="rightframe">DISALLOW_OUTGOING_CALLS</A>
+</nobr><br>
+<!-- Field DISALLOW_SMS -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_SMS" class="hiddenlink" target="rightframe">DISALLOW_SMS</A>
+</nobr><br>
+<!-- Field DISALLOW_UNMUTE_MICROPHONE -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_UNMUTE_MICROPHONE" class="hiddenlink" target="rightframe">DISALLOW_UNMUTE_MICROPHONE</A>
+</nobr><br>
+<!-- Method dispatchNestedFling -->
+<nobr><A HREF="android.view.View.html#android.view.View.dispatchNestedFling_added(float, float, boolean)" class="hiddenlink" target="rightframe"><b>dispatchNestedFling</b>
+(<code>float, float, boolean</code>)</A></nobr><br>
+<!-- Method dispatchNestedPreFling -->
+<nobr><A HREF="android.view.View.html#android.view.View.dispatchNestedPreFling_added(float, float)" class="hiddenlink" target="rightframe"><b>dispatchNestedPreFling</b>
+(<code>float, float</code>)</A></nobr><br>
+<!-- Method dispatchNestedPreScroll -->
+<nobr><A HREF="android.view.View.html#android.view.View.dispatchNestedPreScroll_added(int, int, int[], int[])" class="hiddenlink" target="rightframe"><b>dispatchNestedPreScroll</b>
+(<code>int, int, int[], int[]</code>)</A></nobr><br>
+<!-- Method dispatchNestedScroll -->
+<nobr><A HREF="android.view.View.html#android.view.View.dispatchNestedScroll_added(int, int, int, int, int[])" class="hiddenlink" target="rightframe"><b>dispatchNestedScroll</b>
+(<code>int, int, int, int, int[]</code>)</A></nobr><br>
+<!-- Class Display -->
+<A HREF="android.view.Display.html" class="hiddenlink" target="rightframe">Display</A><br>
+<!-- Class DisplayManager -->
+<A HREF="android.hardware.display.DisplayManager.html" class="hiddenlink" target="rightframe">DisplayManager</A><br>
+<!-- Class DisplayMetrics -->
+<A HREF="android.util.DisplayMetrics.html" class="hiddenlink" target="rightframe">DisplayMetrics</A><br>
+<!-- Field DOCUMENT_LAUNCH_ALWAYS -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.DOCUMENT_LAUNCH_ALWAYS" class="hiddenlink" target="rightframe">DOCUMENT_LAUNCH_ALWAYS</A>
+</nobr><br>
+<!-- Field DOCUMENT_LAUNCH_INTO_EXISTING -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.DOCUMENT_LAUNCH_INTO_EXISTING" class="hiddenlink" target="rightframe">DOCUMENT_LAUNCH_INTO_EXISTING</A>
+</nobr><br>
+<!-- Field DOCUMENT_LAUNCH_NEVER -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.DOCUMENT_LAUNCH_NEVER" class="hiddenlink" target="rightframe">DOCUMENT_LAUNCH_NEVER</A>
+</nobr><br>
+<!-- Field DOCUMENT_LAUNCH_NONE -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.DOCUMENT_LAUNCH_NONE" class="hiddenlink" target="rightframe">DOCUMENT_LAUNCH_NONE</A>
+</nobr><br>
+<!-- Field documentLaunchMode -->
+<i>documentLaunchMode</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.documentLaunchMode" class="hiddenlink" target="rightframe">android.R.attr</A>
+</nobr><br>
+<!-- Field documentLaunchMode -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.documentLaunchMode" class="hiddenlink" target="rightframe">android.content.pm.ActivityInfo</A>
+</nobr><br>
+<!-- Class DocumentsContract -->
+<A HREF="android.provider.DocumentsContract.html" class="hiddenlink" target="rightframe">DocumentsContract</A><br>
+<!-- Class DocumentsContract.Document -->
+<A HREF="android.provider.DocumentsContract.Document.html" class="hiddenlink" target="rightframe">DocumentsContract.Document</A><br>
+<!-- Class DocumentsContract.Root -->
+<A HREF="android.provider.DocumentsContract.Root.html" class="hiddenlink" target="rightframe">DocumentsContract.Root</A><br>
+<!-- Class DocumentsProvider -->
+<A HREF="android.provider.DocumentsProvider.html" class="hiddenlink" target="rightframe">DocumentsProvider</A><br>
+<!-- Method downloadMultimediaMessage -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.downloadMultimediaMessage_added(android.content.Context, java.lang.String, android.net.Uri, android.os.Bundle, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>downloadMultimediaMessage</b>
+(<code>Context, String, Uri, Bundle, PendingIntent</code>)</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>
+<!-- Method drawableHotspotChanged -->
+<nobr><A HREF="android.view.View.html#android.view.View.drawableHotspotChanged_added(float, float)" class="hiddenlink" target="rightframe"><b>drawableHotspotChanged</b>
+(<code>float, float</code>)</A></nobr><br>
+<!-- Method drawArc -->
+<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawArc_added(float, float, float, float, float, float, boolean, android.graphics.Paint)" class="hiddenlink" target="rightframe"><b>drawArc</b>
+(<code>float, float, float, float, float, float, boolean, Paint</code>)</A></nobr><br>
+<!-- Method drawBitmap -->
+<i>drawBitmap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawBitmap_changed(int[], int, int, float, float, int, int, boolean, android.graphics.Paint)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>int[], int, int, float, float, int, int, boolean, Paint</code>)&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<!-- Method drawBitmap -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawBitmap_changed(int[], int, int, int, int, int, int, boolean, android.graphics.Paint)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>int[], int, int, int, int, int, int, boolean, Paint</code>)&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<!-- Method drawOval -->
+<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawOval_added(float, float, float, float, android.graphics.Paint)" class="hiddenlink" target="rightframe"><b>drawOval</b>
+(<code>float, float, float, float, Paint</code>)</A></nobr><br>
+<!-- Method drawRoundRect -->
+<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawRoundRect_added(float, float, float, float, float, float, android.graphics.Paint)" class="hiddenlink" target="rightframe"><b>drawRoundRect</b>
+(<code>float, float, float, float, float, float, Paint</code>)</A></nobr><br>
+<!-- Class DreamService -->
+<A HREF="android.service.dreams.DreamService.html" class="hiddenlink" target="rightframe">DreamService</A><br>
+<!-- Field EDGE_TYPE_DEPRESSED -->
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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="#X"><font size="-2">X</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.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.EDGE_TYPE_DEPRESSED" class="hiddenlink" target="rightframe">EDGE_TYPE_DEPRESSED</A>
+</nobr><br>
+<!-- Field EDGE_TYPE_RAISED -->
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.EDGE_TYPE_RAISED" class="hiddenlink" target="rightframe">EDGE_TYPE_RAISED</A>
+</nobr><br>
+<!-- Field EDGE_TYPE_UNSPECIFIED -->
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.EDGE_TYPE_UNSPECIFIED" class="hiddenlink" target="rightframe">EDGE_TYPE_UNSPECIFIED</A>
+</nobr><br>
+<!-- Class EdgeEffect -->
+<A HREF="android.widget.EdgeEffect.html" class="hiddenlink" target="rightframe">EdgeEffect</A><br>
+<!-- Class EditText -->
+<i>EditText</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.EditText.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor EditText -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.EditText.html#android.widget.EditText.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>EditText</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class EditTextPreference -->
+<i>EditTextPreference</i><br>
+&nbsp;&nbsp;<A HREF="android.preference.EditTextPreference.html" class="hiddenlink" target="rightframe">android.preference</A><br>
+<!-- Constructor EditTextPreference -->
+&nbsp;&nbsp;<nobr><A HREF="android.preference.EditTextPreference.html#android.preference.EditTextPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>EditTextPreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class EGLObjectHandle -->
+<i>EGLObjectHandle</i><br>
+&nbsp;&nbsp;<A HREF="android.opengl.EGLObjectHandle.html" class="hiddenlink" target="rightframe">android.opengl</A><br>
+<!-- Constructor EGLObjectHandle -->
+&nbsp;&nbsp;<nobr><A HREF="android.opengl.EGLObjectHandle.html#android.opengl.EGLObjectHandle.ctor_added(long)" class="hiddenlink" target="rightframe"><b>EGLObjectHandle</b>
+(<code>long</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor EGLObjectHandle -->
+&nbsp;&nbsp;<nobr><A HREF="android.opengl.EGLObjectHandle.html#android.opengl.EGLObjectHandle.ctor_changed(int)" class="hiddenlink" target="rightframe">EGLObjectHandle
+(<code>int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field elegantTextHeight -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.elegantTextHeight" class="hiddenlink" target="rightframe">elegantTextHeight</A>
+</nobr><br>
+<!-- Field elevation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.elevation" class="hiddenlink" target="rightframe">elevation</A>
+</nobr><br>
+<!-- Field ENABLE_CAR_MODE_ALLOW_SLEEP -->
+<nobr><A HREF="android.app.UiModeManager.html#android.app.UiModeManager.ENABLE_CAR_MODE_ALLOW_SLEEP" class="hiddenlink" target="rightframe">ENABLE_CAR_MODE_ALLOW_SLEEP</A>
+</nobr><br>
+<!-- Method enableHardwareAcceleration -->
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.enableHardwareAcceleration_changed()" class="hiddenlink" target="rightframe">enableHardwareAcceleration
+()</A></nobr><br>
+<!-- Method enableSlowWholeDocumentDraw -->
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.enableSlowWholeDocumentDraw_added()" class="hiddenlink" target="rightframe"><b>enableSlowWholeDocumentDraw</b>
+()</A></nobr><br>
+<!-- Method enableSystemApp -->
+<i>enableSystemApp</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.enableSystemApp_added(android.content.ComponentName, android.content.Intent)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ComponentName, Intent</code>)</b>&nbsp;in&nbsp;android.app.admin.DevicePolicyManager
+</A></nobr><br>
+<!-- Method enableSystemApp -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.enableSystemApp_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ComponentName, String</code>)</b>&nbsp;in&nbsp;android.app.admin.DevicePolicyManager
+</A></nobr><br>
+<!-- Field ENCODING_AC3 -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ENCODING_AC3" class="hiddenlink" target="rightframe">ENCODING_AC3</A>
+</nobr><br>
+<!-- Field ENCODING_E_AC3 -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ENCODING_E_AC3" class="hiddenlink" target="rightframe">ENCODING_E_AC3</A>
+</nobr><br>
+<!-- Field ENCODING_PCM_FLOAT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ENCODING_PCM_FLOAT" class="hiddenlink" target="rightframe">ENCODING_PCM_FLOAT</A>
+</nobr><br>
+<!-- Field ENDCOM -->
+<i>ENDCOM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field ENDCOM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field ENDCOM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field ENDCOM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field ENDHDR -->
+<i>ENDHDR</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field ENDHDR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field ENDHDR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field ENDHDR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field ENDOFF -->
+<i>ENDOFF</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field ENDOFF -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field ENDOFF -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field ENDOFF -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field ENDSIG -->
+<i>ENDSIG</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field ENDSIG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field ENDSIG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field ENDSIG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field ENDSIZ -->
+<i>ENDSIZ</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field ENDSIZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field ENDSIZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field ENDSIZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field ENDSUB -->
+<i>ENDSUB</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDSUB" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field ENDSUB -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDSUB" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field ENDSUB -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDSUB" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field ENDSUB -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDSUB" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field ENDTOT -->
+<i>ENDTOT</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDTOT" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field ENDTOT -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDTOT" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field ENDTOT -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDTOT" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field ENDTOT -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDTOT" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field ENSURE_VERIFY_APPS -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.ENSURE_VERIFY_APPS" class="hiddenlink" target="rightframe">ENSURE_VERIFY_APPS</A>
+</nobr><br>
+<!-- Field ENTERPRISE_CONTENT_FILTER_URI -->
+<nobr><A HREF="android.provider.ContactsContract.PhoneLookup.html#android.provider.ContactsContract.PhoneLookup.ENTERPRISE_CONTENT_FILTER_URI" class="hiddenlink" target="rightframe">ENTERPRISE_CONTENT_FILTER_URI</A>
+</nobr><br>
+<!-- Field ENTRY_CONTENT_TYPE -->
+<nobr><A HREF="android.provider.MediaStore.Audio.Media.html#android.provider.MediaStore.Audio.Media.ENTRY_CONTENT_TYPE" class="hiddenlink" target="rightframe">ENTRY_CONTENT_TYPE</A>
+</nobr><br>
+<!-- Class Environment -->
+<A HREF="android.os.Environment.html" class="hiddenlink" target="rightframe">Environment</A><br>
+<!-- Method error -->
+<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.error_added(int)" class="hiddenlink" target="rightframe"><b>error</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Field ERROR -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ERROR" class="hiddenlink" target="rightframe">ERROR</A>
+</nobr><br>
+<!-- Field ERROR_DEAD_OBJECT -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ERROR_DEAD_OBJECT" class="hiddenlink" target="rightframe">ERROR_DEAD_OBJECT</A>
+</nobr><br>
+<!-- Field ERROR_INSUFFICIENT_OUTPUT_PROTECTION -->
+<nobr><A HREF="android.media.MediaCodec.CryptoException.html#android.media.MediaCodec.CryptoException.ERROR_INSUFFICIENT_OUTPUT_PROTECTION" class="hiddenlink" target="rightframe">ERROR_INSUFFICIENT_OUTPUT_PROTECTION</A>
+</nobr><br>
+<!-- Field ERROR_INVALID_REQUEST -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_INVALID_REQUEST" class="hiddenlink" target="rightframe">ERROR_INVALID_REQUEST</A>
+</nobr><br>
+<!-- Field ERROR_NETWORK -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_NETWORK" class="hiddenlink" target="rightframe">ERROR_NETWORK</A>
+</nobr><br>
+<!-- Field ERROR_NETWORK_TIMEOUT -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_NETWORK_TIMEOUT" class="hiddenlink" target="rightframe">ERROR_NETWORK_TIMEOUT</A>
+</nobr><br>
+<!-- Field ERROR_NOT_INSTALLED_YET -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_NOT_INSTALLED_YET" class="hiddenlink" target="rightframe">ERROR_NOT_INSTALLED_YET</A>
+</nobr><br>
+<!-- Field ERROR_OUTPUT -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_OUTPUT" class="hiddenlink" target="rightframe">ERROR_OUTPUT</A>
+</nobr><br>
+<!-- Field ERROR_SERVICE -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_SERVICE" class="hiddenlink" target="rightframe">ERROR_SERVICE</A>
+</nobr><br>
+<!-- Field ERROR_SYNTHESIS -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_SYNTHESIS" class="hiddenlink" target="rightframe">ERROR_SYNTHESIS</A>
+</nobr><br>
+<!-- Field excludeClass -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeClass" class="hiddenlink" target="rightframe">excludeClass</A>
+</nobr><br>
+<!-- Field excludeId -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeId" class="hiddenlink" target="rightframe">excludeId</A>
+</nobr><br>
+<!-- Field excludeName -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeName" class="hiddenlink" target="rightframe">excludeName</A>
+</nobr><br>
+<!-- Method excludeTarget -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.excludeTarget_added(java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>excludeTarget</b>
+(<code>String, boolean</code>)</A></nobr><br>
+<!-- Method executeShellCommand -->
+<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.executeShellCommand_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>executeShellCommand</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Class ExpandableListView -->
+<i>ExpandableListView</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.ExpandableListView.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor ExpandableListView -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.ExpandableListView.html#android.widget.ExpandableListView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ExpandableListView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class Explode -->
+<A HREF="pkg_android.transition.html#Explode" class="hiddenlink" target="rightframe"><b>Explode</b></A><br>
+<!-- Field EXTCRC -->
+<i>EXTCRC</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.EXTCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field EXTCRC -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.EXTCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field EXTCRC -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.EXTCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field EXTCRC -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.EXTCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field EXTHDR -->
+<i>EXTHDR</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.EXTHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field EXTHDR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.EXTHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field EXTHDR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.EXTHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field EXTHDR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.EXTHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field EXTLEN -->
+<i>EXTLEN</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.EXTLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field EXTLEN -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.EXTLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field EXTLEN -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.EXTLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field EXTLEN -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.EXTLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<i>EXTRA_ADDRESS_BOOK_INDEX</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html#android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Contactables</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html#android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Email</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Event</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html#android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.GroupMembership</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html#android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Identity</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html#android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Im</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html#android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Nickname</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html#android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Note</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html#android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Organization</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html#android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Phone</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html#android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Photo</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html#android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Relation</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html#android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.SipAddress</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredName</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html#android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html#android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Website</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Data.html#android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Data</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<i>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html#android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Contactables</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html#android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Email</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Event</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html#android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.GroupMembership</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html#android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Identity</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html#android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Im</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html#android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Nickname</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html#android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Note</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html#android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Organization</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html#android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Phone</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html#android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Photo</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html#android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Relation</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html#android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.SipAddress</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredName</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html#android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html#android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Website</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Data.html#android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Data</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<i>EXTRA_ADDRESS_BOOK_INDEX_TITLES</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html#android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Contactables</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html#android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Email</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Event</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html#android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.GroupMembership</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html#android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Identity</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html#android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Im</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html#android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Nickname</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html#android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Note</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html#android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Organization</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html#android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Phone</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html#android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Photo</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html#android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Relation</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html#android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.SipAddress</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredName</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html#android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html#android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Website</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Data.html#android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Data</A>
+</nobr><br>
+<!-- Field EXTRA_APPWIDGET_OLD_IDS -->
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.EXTRA_APPWIDGET_OLD_IDS" class="hiddenlink" target="rightframe">EXTRA_APPWIDGET_OLD_IDS</A>
+</nobr><br>
+<!-- Field EXTRA_APPWIDGET_PROVIDER_PROFILE -->
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE" class="hiddenlink" target="rightframe">EXTRA_APPWIDGET_PROVIDER_PROFILE</A>
+</nobr><br>
+<!-- Field EXTRA_ASSIST_INPUT_HINT_KEYBOARD -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD" class="hiddenlink" target="rightframe">EXTRA_ASSIST_INPUT_HINT_KEYBOARD</A>
+</nobr><br>
+<!-- Field EXTRA_AUDIO_PLUG_STATE -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.EXTRA_AUDIO_PLUG_STATE" class="hiddenlink" target="rightframe">EXTRA_AUDIO_PLUG_STATE</A>
+</nobr><br>
+<!-- Field EXTRA_BACKGROUND_IMAGE_URI -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_BACKGROUND_IMAGE_URI" class="hiddenlink" target="rightframe">EXTRA_BACKGROUND_IMAGE_URI</A>
+</nobr><br>
+<!-- Field EXTRA_BIG_TEXT -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_BIG_TEXT" class="hiddenlink" target="rightframe">EXTRA_BIG_TEXT</A>
+</nobr><br>
+<!-- Field EXTRA_CALL_TYPE_FILTER -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.EXTRA_CALL_TYPE_FILTER" class="hiddenlink" target="rightframe">EXTRA_CALL_TYPE_FILTER</A>
+</nobr><br>
+<!-- Field EXTRA_COMPACT_ACTIONS -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_COMPACT_ACTIONS" class="hiddenlink" target="rightframe">EXTRA_COMPACT_ACTIONS</A>
+</nobr><br>
+<!-- Field EXTRA_ENCODINGS -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.EXTRA_ENCODINGS" class="hiddenlink" target="rightframe">EXTRA_ENCODINGS</A>
+</nobr><br>
+<!-- Field EXTRA_EXCLUDE_MIMES -->
+<nobr><A HREF="android.provider.ContactsContract.QuickContact.html#android.provider.ContactsContract.QuickContact.EXTRA_EXCLUDE_MIMES" class="hiddenlink" target="rightframe">EXTRA_EXCLUDE_MIMES</A>
+</nobr><br>
+<!-- Field EXTRA_HOST_ID -->
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.EXTRA_HOST_ID" class="hiddenlink" target="rightframe">EXTRA_HOST_ID</A>
+</nobr><br>
+<!-- Field EXTRA_LOCK_TASK_PACKAGE -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.EXTRA_LOCK_TASK_PACKAGE" class="hiddenlink" target="rightframe">EXTRA_LOCK_TASK_PACKAGE</A>
+</nobr><br>
+<!-- Field EXTRA_MAX_CHANNEL_COUNT -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.EXTRA_MAX_CHANNEL_COUNT" class="hiddenlink" target="rightframe">EXTRA_MAX_CHANNEL_COUNT</A>
+</nobr><br>
+<!-- Field EXTRA_MEDIA_GENRE -->
+<nobr><A HREF="android.provider.MediaStore.html#android.provider.MediaStore.EXTRA_MEDIA_GENRE" class="hiddenlink" target="rightframe">EXTRA_MEDIA_GENRE</A>
+</nobr><br>
+<!-- Field EXTRA_MEDIA_PLAYLIST -->
+<nobr><A HREF="android.provider.MediaStore.html#android.provider.MediaStore.EXTRA_MEDIA_PLAYLIST" class="hiddenlink" target="rightframe">EXTRA_MEDIA_PLAYLIST</A>
+</nobr><br>
+<!-- Field EXTRA_MEDIA_RADIO_CHANNEL -->
+<nobr><A HREF="android.provider.MediaStore.html#android.provider.MediaStore.EXTRA_MEDIA_RADIO_CHANNEL" class="hiddenlink" target="rightframe">EXTRA_MEDIA_RADIO_CHANNEL</A>
+</nobr><br>
+<!-- Field EXTRA_MEDIA_SESSION -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_MEDIA_SESSION" class="hiddenlink" target="rightframe">EXTRA_MEDIA_SESSION</A>
+</nobr><br>
+<!-- Field EXTRA_MMS_DATA -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.EXTRA_MMS_DATA" class="hiddenlink" target="rightframe">EXTRA_MMS_DATA</A>
+</nobr><br>
+<!-- Field EXTRA_PRINTER_INFO -->
+<nobr><A HREF="android.printservice.PrintService.html#android.printservice.PrintService.EXTRA_PRINTER_INFO" class="hiddenlink" target="rightframe">EXTRA_PRINTER_INFO</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_EMAIL_ADDRESS -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_EMAIL_ADDRESS" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_EMAIL_ADDRESS</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_LOCAL_TIME -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_LOCAL_TIME" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_LOCAL_TIME</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_LOCALE -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_LOCALE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_LOCALE</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_TIME_ZONE -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_TIME_ZONE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_TIME_ZONE</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_HIDDEN -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_HIDDEN" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_HIDDEN</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_PAC_URL -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PAC_URL" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PAC_URL</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_PASSWORD -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PASSWORD" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PASSWORD</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_PROXY_BYPASS -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_BYPASS" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PROXY_BYPASS</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_PROXY_HOST -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_HOST" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PROXY_HOST</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_PROXY_PORT -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_PORT" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PROXY_PORT</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_SECURITY_TYPE -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_SECURITY_TYPE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_SECURITY_TYPE</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_SSID -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_SSID" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_SSID</A>
+</nobr><br>
+<!-- Field EXTRA_PROXY_INFO -->
+<nobr><A HREF="android.net.Proxy.html#android.net.Proxy.EXTRA_PROXY_INFO" class="hiddenlink" target="rightframe">EXTRA_PROXY_INFO</A>
+</nobr><br>
+<!-- Field EXTRA_REPLACEMENT_EXTRAS -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_REPLACEMENT_EXTRAS" class="hiddenlink" target="rightframe">EXTRA_REPLACEMENT_EXTRAS</A>
+</nobr><br>
+<!-- Field EXTRA_SIZE -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.EXTRA_SIZE" class="hiddenlink" target="rightframe">EXTRA_SIZE</A>
+</nobr><br>
+<!-- Field EXTRA_TEMPLATE -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_TEMPLATE" class="hiddenlink" target="rightframe">EXTRA_TEMPLATE</A>
+</nobr><br>
+<!-- Field EXTRA_USER -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_USER" class="hiddenlink" target="rightframe">EXTRA_USER</A>
+</nobr><br>
+<!-- Class ExtractEditText -->
+<i>ExtractEditText</i><br>
+&nbsp;&nbsp;<A HREF="android.inputmethodservice.ExtractEditText.html" class="hiddenlink" target="rightframe">android.inputmethodservice</A><br>
+<!-- Constructor ExtractEditText -->
+&nbsp;&nbsp;<nobr><A HREF="android.inputmethodservice.ExtractEditText.html#android.inputmethodservice.ExtractEditText.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ExtractEditText</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field EXTSIG -->
+<i>EXTSIG</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.EXTSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field EXTSIG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.EXTSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field EXTSIG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.EXTSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field EXTSIG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.EXTSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field EXTSIZ -->
+<i>EXTSIZ</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.EXTSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field EXTSIZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.EXTSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field EXTSIZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.EXTSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field EXTSIZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.EXTSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Class Fade -->
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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="#X"><font size="-2">X</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>Fade</i><br>
+&nbsp;&nbsp;<A HREF="android.transition.Fade.html" class="hiddenlink" target="rightframe">android.transition</A><br>
+<!-- Constructor Fade -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Fade.html#android.transition.Fade.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Fade</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field fast_out_linear_in -->
+<nobr><A HREF="android.R.interpolator.html#android.R.interpolator.fast_out_linear_in" class="hiddenlink" target="rightframe">fast_out_linear_in</A>
+</nobr><br>
+<!-- Field fast_out_slow_in -->
+<nobr><A HREF="android.R.interpolator.html#android.R.interpolator.fast_out_slow_in" class="hiddenlink" target="rightframe">fast_out_slow_in</A>
+</nobr><br>
+<!-- Field fastScrollStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fastScrollStyle" class="hiddenlink" target="rightframe">fastScrollStyle</A>
+</nobr><br>
+<!-- Field FEATURE_ACTIVITY_TRANSITIONS -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.FEATURE_ACTIVITY_TRANSITIONS" class="hiddenlink" target="rightframe">FEATURE_ACTIVITY_TRANSITIONS</A>
+</nobr><br>
+<!-- Field FEATURE_AUDIO_OUTPUT -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_AUDIO_OUTPUT" class="hiddenlink" target="rightframe">FEATURE_AUDIO_OUTPUT</A>
+</nobr><br>
+<!-- Field FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING" class="hiddenlink" target="rightframe">FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING</A>
+</nobr><br>
+<!-- Field FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR" class="hiddenlink" target="rightframe">FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR</A>
+</nobr><br>
+<!-- Field FEATURE_CAMERA_CAPABILITY_RAW -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_RAW" class="hiddenlink" target="rightframe">FEATURE_CAMERA_CAPABILITY_RAW</A>
+</nobr><br>
+<!-- Field FEATURE_CAMERA_LEVEL_FULL -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_LEVEL_FULL" class="hiddenlink" target="rightframe">FEATURE_CAMERA_LEVEL_FULL</A>
+</nobr><br>
+<!-- Field FEATURE_CONNECTION_SERVICE -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CONNECTION_SERVICE" class="hiddenlink" target="rightframe">FEATURE_CONNECTION_SERVICE</A>
+</nobr><br>
+<!-- Field FEATURE_CONTENT_TRANSITIONS -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.FEATURE_CONTENT_TRANSITIONS" class="hiddenlink" target="rightframe">FEATURE_CONTENT_TRANSITIONS</A>
+</nobr><br>
+<!-- Field FEATURE_GAMEPAD -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_GAMEPAD" class="hiddenlink" target="rightframe">FEATURE_GAMEPAD</A>
+</nobr><br>
+<!-- Field FEATURE_LEANBACK -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_LEANBACK" class="hiddenlink" target="rightframe">FEATURE_LEANBACK</A>
+</nobr><br>
+<!-- Field FEATURE_LIVE_TV -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_LIVE_TV" class="hiddenlink" target="rightframe">FEATURE_LIVE_TV</A>
+</nobr><br>
+<!-- Field FEATURE_MANAGED_USERS -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_MANAGED_USERS" class="hiddenlink" target="rightframe">FEATURE_MANAGED_USERS</A>
+</nobr><br>
+<!-- Field FEATURE_OPENGLES_EXTENSION_PACK -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_OPENGLES_EXTENSION_PACK" class="hiddenlink" target="rightframe">FEATURE_OPENGLES_EXTENSION_PACK</A>
+</nobr><br>
+<!-- Field FEATURE_SECURELY_REMOVES_USERS -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SECURELY_REMOVES_USERS" class="hiddenlink" target="rightframe">FEATURE_SECURELY_REMOVES_USERS</A>
+</nobr><br>
+<!-- Field FEATURE_SecurePlayback -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.FEATURE_SecurePlayback" class="hiddenlink" target="rightframe">FEATURE_SecurePlayback</A>
+</nobr><br>
+<!-- Field FEATURE_SENSOR_AMBIENT_TEMPERATURE -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SENSOR_AMBIENT_TEMPERATURE" class="hiddenlink" target="rightframe">FEATURE_SENSOR_AMBIENT_TEMPERATURE</A>
+</nobr><br>
+<!-- Field FEATURE_SENSOR_HEART_RATE_ECG -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SENSOR_HEART_RATE_ECG" class="hiddenlink" target="rightframe">FEATURE_SENSOR_HEART_RATE_ECG</A>
+</nobr><br>
+<!-- Field FEATURE_SENSOR_RELATIVE_HUMIDITY -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SENSOR_RELATIVE_HUMIDITY" class="hiddenlink" target="rightframe">FEATURE_SENSOR_RELATIVE_HUMIDITY</A>
+</nobr><br>
+<!-- Field FEATURE_TELEVISION -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_TELEVISION" class="hiddenlink" target="rightframe">FEATURE_TELEVISION</A>
+</nobr><br>
+<!-- Field FEATURE_TunneledPlayback -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.FEATURE_TunneledPlayback" class="hiddenlink" target="rightframe">FEATURE_TunneledPlayback</A>
+</nobr><br>
+<!-- Field FEATURE_VERIFIED_BOOT -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_VERIFIED_BOOT" class="hiddenlink" target="rightframe">FEATURE_VERIFIED_BOOT</A>
+</nobr><br>
+<!-- Class FeatureGroupInfo -->
+<A HREF="pkg_android.content.pm.html#FeatureGroupInfo" class="hiddenlink" target="rightframe"><b>FeatureGroupInfo</b></A><br>
+<!-- Field featureGroups -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.featureGroups" class="hiddenlink" target="rightframe">featureGroups</A>
+</nobr><br>
+<!-- Field FEATURES -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.FEATURES" class="hiddenlink" target="rightframe">FEATURES</A>
+</nobr><br>
+<!-- Field FEATURES_VIDEO -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.FEATURES_VIDEO" class="hiddenlink" target="rightframe">FEATURES_VIDEO</A>
+</nobr><br>
+<!-- Field fillAlpha -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fillAlpha" class="hiddenlink" target="rightframe">fillAlpha</A>
+</nobr><br>
+<!-- Field fillColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fillColor" class="hiddenlink" target="rightframe">fillColor</A>
+</nobr><br>
+<!-- Method findDecoderForFormat -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.findDecoderForFormat_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>findDecoderForFormat</b>
+(<code>MediaFormat</code>)</A></nobr><br>
+<!-- Method findEncoderForFormat -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.findEncoderForFormat_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>findEncoderForFormat</b>
+(<code>MediaFormat</code>)</A></nobr><br>
+<!-- Method findFocus -->
+<i>findFocus</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.accessibilityservice.AccessibilityService.html#android.accessibilityservice.AccessibilityService.findFocus_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.accessibilityservice.AccessibilityService
+</A></nobr><br>
+<!-- Method findFocus -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.findFocus_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.app.UiAutomation
+</A></nobr><br>
+<!-- Method finishAfterTransition -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.finishAfterTransition_added()" class="hiddenlink" target="rightframe"><b>finishAfterTransition</b>
+()</A></nobr><br>
+<!-- Method finishAndRemoveTask -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.finishAndRemoveTask_added()" class="hiddenlink" target="rightframe"><b>finishAndRemoveTask</b>
+()</A></nobr><br>
+<!-- Field FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET" class="hiddenlink" target="rightframe">FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET</A>
+</nobr><br>
+<!-- Field FLAG_ACTIVITY_NEW_DOCUMENT -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_ACTIVITY_NEW_DOCUMENT" class="hiddenlink" target="rightframe">FLAG_ACTIVITY_NEW_DOCUMENT</A>
+</nobr><br>
+<!-- Field FLAG_ACTIVITY_RETAIN_IN_RECENTS -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS" class="hiddenlink" target="rightframe">FLAG_ACTIVITY_RETAIN_IN_RECENTS</A>
+</nobr><br>
+<!-- Field FLAG_AUTO_REMOVE_FROM_RECENTS -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_AUTO_REMOVE_FROM_RECENTS" class="hiddenlink" target="rightframe">FLAG_AUTO_REMOVE_FROM_RECENTS</A>
+</nobr><br>
+<!-- Field FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS -->
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS" class="hiddenlink" target="rightframe">FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS</A>
+</nobr><br>
+<!-- Field FLAG_FULL_BACKUP_ONLY -->
+<nobr><A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.FLAG_FULL_BACKUP_ONLY" class="hiddenlink" target="rightframe">FLAG_FULL_BACKUP_ONLY</A>
+</nobr><br>
+<!-- Field FLAG_GRANT_PREFIX_URI_PERMISSION -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_GRANT_PREFIX_URI_PERMISSION" class="hiddenlink" target="rightframe">FLAG_GRANT_PREFIX_URI_PERMISSION</A>
+</nobr><br>
+<!-- Field FLAG_IS_GAME -->
+<nobr><A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.FLAG_IS_GAME" class="hiddenlink" target="rightframe">FLAG_IS_GAME</A>
+</nobr><br>
+<!-- Field FLAG_MANAGED_CAN_ACCESS_PARENT -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.FLAG_MANAGED_CAN_ACCESS_PARENT" class="hiddenlink" target="rightframe">FLAG_MANAGED_CAN_ACCESS_PARENT</A>
+</nobr><br>
+<!-- Field FLAG_MULTIARCH -->
+<nobr><A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.FLAG_MULTIARCH" class="hiddenlink" target="rightframe">FLAG_MULTIARCH</A>
+</nobr><br>
+<!-- Field FLAG_PARENT_CAN_ACCESS_MANAGED -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.FLAG_PARENT_CAN_ACCESS_MANAGED" class="hiddenlink" target="rightframe">FLAG_PARENT_CAN_ACCESS_MANAGED</A>
+</nobr><br>
+<!-- Field FLAG_RELINQUISH_TASK_IDENTITY -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY" class="hiddenlink" target="rightframe">FLAG_RELINQUISH_TASK_IDENTITY</A>
+</nobr><br>
+<!-- Field FLAG_RESUME_WHILE_PAUSING -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_RESUME_WHILE_PAUSING" class="hiddenlink" target="rightframe">FLAG_RESUME_WHILE_PAUSING</A>
+</nobr><br>
+<!-- Field FLAG_RETRIEVE_INTERACTIVE_WINDOWS -->
+<nobr><A HREF="android.accessibilityservice.AccessibilityServiceInfo.html#android.accessibilityservice.AccessibilityServiceInfo.FLAG_RETRIEVE_INTERACTIVE_WINDOWS" class="hiddenlink" target="rightframe">FLAG_RETRIEVE_INTERACTIVE_WINDOWS</A>
+</nobr><br>
+<!-- Field FLAG_SUPPORTS_IS_CHILD -->
+<nobr><A HREF="android.provider.DocumentsContract.Root.html#android.provider.DocumentsContract.Root.FLAG_SUPPORTS_IS_CHILD" class="hiddenlink" target="rightframe">FLAG_SUPPORTS_IS_CHILD</A>
+</nobr><br>
+<!-- Field FLAG_SUPPORTS_RENAME -->
+<nobr><A HREF="android.provider.DocumentsContract.Document.html#android.provider.DocumentsContract.Document.FLAG_SUPPORTS_RENAME" class="hiddenlink" target="rightframe">FLAG_SUPPORTS_RENAME</A>
+</nobr><br>
+<!-- Method fling -->
+<nobr><A HREF="android.widget.AbsListView.html#android.widget.AbsListView.fling_added(int)" class="hiddenlink" target="rightframe"><b>fling</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Class FloatArrayEvaluator -->
+<A HREF="pkg_android.animation.html#FloatArrayEvaluator" class="hiddenlink" target="rightframe"><b>FloatArrayEvaluator</b></A><br>
+<!-- Method flush -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.flush_added()" class="hiddenlink" target="rightframe"><b>flush</b>
+()</A></nobr><br>
+<!-- Field fontFeatureSettings -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fontFeatureSettings" class="hiddenlink" target="rightframe">fontFeatureSettings</A>
+</nobr><br>
+<!-- Method forceVirtualizationMode -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.forceVirtualizationMode_added(int)" class="hiddenlink" target="rightframe"><b>forceVirtualizationMode</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method forEach -->
+<i>forEach</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsic3DLUT.html#android.renderscript.ScriptIntrinsic3DLUT.forEach_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsic3DLUT
+</A></nobr><br>
+<!-- Method forEach -->
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsicBlur.html#android.renderscript.ScriptIntrinsicBlur.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsicBlur
+</A></nobr><br>
+<!-- Method forEach -->
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsicColorMatrix.html#android.renderscript.ScriptIntrinsicColorMatrix.forEach_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsicColorMatrix
+</A></nobr><br>
+<!-- Method forEach -->
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsicConvolve3x3.html#android.renderscript.ScriptIntrinsicConvolve3x3.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsicConvolve3x3
+</A></nobr><br>
+<!-- Method forEach -->
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsicConvolve5x5.html#android.renderscript.ScriptIntrinsicConvolve5x5.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsicConvolve5x5
+</A></nobr><br>
+<!-- Method forEach -->
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsicHistogram.html#android.renderscript.ScriptIntrinsicHistogram.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsicHistogram
+</A></nobr><br>
+<!-- Method forEach -->
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsicLUT.html#android.renderscript.ScriptIntrinsicLUT.forEach_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsicLUT
+</A></nobr><br>
+<!-- Method forEach_Dot -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicHistogram.html#android.renderscript.ScriptIntrinsicHistogram.forEach_Dot_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEach_Dot</b>
+(<code>Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachAdd -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachAdd_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachAdd</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachClear -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachClear_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachClear</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachDst -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDst_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDst</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachDstAtop -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDstAtop_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDstAtop</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachDstIn -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDstIn_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDstIn</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachDstOut -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDstOut_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDstOut</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachDstOver -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDstOver_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDstOver</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachMultiply -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachMultiply_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachMultiply</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachSrc -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrc_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrc</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachSrcAtop -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrcAtop_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrcAtop</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachSrcIn -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrcIn_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrcIn</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachSrcOut -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrcOut_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrcOut</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachSrcOver -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrcOver_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrcOver</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachSubtract -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSubtract_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSubtract</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Method forEachXor -->
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachXor_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachXor</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<!-- Field foregroundTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.foregroundTint" class="hiddenlink" target="rightframe">foregroundTint</A>
+</nobr><br>
+<!-- Field foregroundTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.foregroundTintMode" class="hiddenlink" target="rightframe">foregroundTintMode</A>
+</nobr><br>
+<!-- Class ForkJoinPool -->
+<A HREF="pkg_java.util.concurrent.html#ForkJoinPool" class="hiddenlink" target="rightframe"><b>ForkJoinPool</b></A><br>
+<!-- Class ForkJoinPool.ForkJoinWorkerThreadFactory -->
+<A HREF="pkg_java.util.concurrent.html#ForkJoinPool.ForkJoinWorkerThreadFactory" class="hiddenlink" target="rightframe"><b><i>ForkJoinPool.ForkJoinWorkerThreadFactory</i></b></A><br>
+<!-- Class ForkJoinPool.ManagedBlocker -->
+<A HREF="pkg_java.util.concurrent.html#ForkJoinPool.ManagedBlocker" class="hiddenlink" target="rightframe"><b><i>ForkJoinPool.ManagedBlocker</i></b></A><br>
+<!-- Class ForkJoinTask -->
+<A HREF="pkg_java.util.concurrent.html#ForkJoinTask" class="hiddenlink" target="rightframe"><b>ForkJoinTask</b></A><br>
+<!-- Class ForkJoinWorkerThread -->
+<A HREF="pkg_java.util.concurrent.html#ForkJoinWorkerThread" class="hiddenlink" target="rightframe"><b>ForkJoinWorkerThread</b></A><br>
+<!-- Method forLanguageTag -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.forLanguageTag_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>forLanguageTag</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method formatJapaneseNumber -->
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatJapaneseNumber_changed(android.text.Editable)" class="hiddenlink" target="rightframe">formatJapaneseNumber
+(<code>Editable</code>)</A></nobr><br>
+<!-- Method formatNanpNumber -->
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNanpNumber_changed(android.text.Editable)" class="hiddenlink" target="rightframe">formatNanpNumber
+(<code>Editable</code>)</A></nobr><br>
+<!-- Method formatNumber -->
+<i>formatNumber</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_removed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String</code>)</strike>&nbsp;in&nbsp;android.telephony.PhoneNumberUtils
+</A></nobr><br>
+<!-- Method formatNumber -->
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_removed(android.text.Editable, int)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Editable, int</code>)</strike>&nbsp;in&nbsp;android.telephony.PhoneNumberUtils
+</A></nobr><br>
+<!-- Method formatNumber -->
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, String</code>)</b>&nbsp;in&nbsp;android.telephony.PhoneNumberUtils
+</A></nobr><br>
+<!-- Method formatNumber -->
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_added(java.lang.String, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, String, String</code>)</b>&nbsp;in&nbsp;android.telephony.PhoneNumberUtils
+</A></nobr><br>
+<!-- Method formatNumber -->
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.telephony.PhoneNumberUtils
+</A></nobr><br>
+<!-- Method formatNumber -->
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_added(android.text.Editable, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Editable, int</code>)</b>&nbsp;in&nbsp;android.telephony.PhoneNumberUtils
+</A></nobr><br>
+<!-- Method formatNumberToE164 -->
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumberToE164_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>formatNumberToE164</b>
+(<code>String, String</code>)</A></nobr><br>
+<!-- Field FQDN -->
+<nobr><A HREF="android.net.wifi.WifiConfiguration.html#android.net.wifi.WifiConfiguration.FQDN" class="hiddenlink" target="rightframe">FQDN</A>
+</nobr><br>
+<!-- Class Fragment -->
+<A HREF="android.app.Fragment.html" class="hiddenlink" target="rightframe">Fragment</A><br>
+<!-- Field fragmentAllowEnterTransitionOverlap -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentAllowEnterTransitionOverlap" class="hiddenlink" target="rightframe">fragmentAllowEnterTransitionOverlap</A>
+</nobr><br>
+<!-- Field fragmentAllowReturnTransitionOverlap -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentAllowReturnTransitionOverlap" class="hiddenlink" target="rightframe">fragmentAllowReturnTransitionOverlap</A>
+</nobr><br>
+<!-- Class FragmentBreadCrumbs -->
+<A HREF="android.app.FragmentBreadCrumbs.html" class="hiddenlink" target="rightframe">FragmentBreadCrumbs</A><br>
+<!-- Field fragmentEnterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentEnterTransition" class="hiddenlink" target="rightframe">fragmentEnterTransition</A>
+</nobr><br>
+<!-- Field fragmentExitTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentExitTransition" class="hiddenlink" target="rightframe">fragmentExitTransition</A>
+</nobr><br>
+<!-- Field fragmentReenterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentReenterTransition" class="hiddenlink" target="rightframe">fragmentReenterTransition</A>
+</nobr><br>
+<!-- Field fragmentReturnTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentReturnTransition" class="hiddenlink" target="rightframe">fragmentReturnTransition</A>
+</nobr><br>
+<!-- Field fragmentSharedElementEnterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentSharedElementEnterTransition" class="hiddenlink" target="rightframe">fragmentSharedElementEnterTransition</A>
+</nobr><br>
+<!-- Field fragmentSharedElementReturnTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentSharedElementReturnTransition" class="hiddenlink" target="rightframe">fragmentSharedElementReturnTransition</A>
+</nobr><br>
+<!-- Class FragmentTransaction -->
+<A HREF="android.app.FragmentTransaction.html" class="hiddenlink" target="rightframe">FragmentTransaction</A><br>
+<!-- Class FrameLayout -->
+<i>FrameLayout</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.FrameLayout.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor FrameLayout -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>FrameLayout</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class FrameStats -->
+<A HREF="pkg_android.view.html#FrameStats" class="hiddenlink" target="rightframe"><b>FrameStats</b></A><br>
+<!-- Field FREQUENCY_UNITS -->
+<nobr><A HREF="android.net.wifi.WifiInfo.html#android.net.wifi.WifiInfo.FREQUENCY_UNITS" class="hiddenlink" target="rightframe">FREQUENCY_UNITS</A>
+</nobr><br>
+<!-- Field fromId -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fromId" class="hiddenlink" target="rightframe">fromId</A>
+</nobr><br>
+<!-- Field FULL_NAME_STYLE -->
+<nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.FULL_NAME_STYLE" class="hiddenlink" target="rightframe">FULL_NAME_STYLE</A>
+</nobr><br>
+<!-- Field fullBackupOnly -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fullBackupOnly" class="hiddenlink" target="rightframe">fullBackupOnly</A>
+</nobr><br>
+<!-- Class Gallery -->
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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="#X"><font size="-2">X</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>Gallery</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.Gallery.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor Gallery -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Gallery.html#android.widget.Gallery.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>Gallery</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field GATT_CONNECTION_CONGESTED -->
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.GATT_CONNECTION_CONGESTED" class="hiddenlink" target="rightframe">GATT_CONNECTION_CONGESTED</A>
+</nobr><br>
+<!-- Method generateAudioSessionId -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.generateAudioSessionId_added()" class="hiddenlink" target="rightframe"><b>generateAudioSessionId</b>
+()</A></nobr><br>
+<!-- Field GEOCODED_LOCATION -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.GEOCODED_LOCATION" class="hiddenlink" target="rightframe">GEOCODED_LOCATION</A>
+</nobr><br>
+<!-- Class GestureOverlayView -->
+<i>GestureOverlayView</i><br>
+&nbsp;&nbsp;<A HREF="android.gesture.GestureOverlayView.html" class="hiddenlink" target="rightframe">android.gesture</A><br>
+<!-- Constructor GestureOverlayView -->
+&nbsp;&nbsp;<nobr><A HREF="android.gesture.GestureOverlayView.html#android.gesture.GestureOverlayView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>GestureOverlayView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Method get -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.get_changed(java.lang.String)" class="hiddenlink" target="rightframe">get
+(<code>String</code>)</A></nobr><br>
+<!-- Field GET_TASKS -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.GET_TASKS" class="hiddenlink" target="rightframe">GET_TASKS</A>
+</nobr><br>
+<!-- Method getAccountTypesWithManagementDisabled -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getAccountTypesWithManagementDisabled_added()" class="hiddenlink" target="rightframe"><b>getAccountTypesWithManagementDisabled</b>
+()</A></nobr><br>
+<!-- Method getActionList -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getActionList_added()" class="hiddenlink" target="rightframe"><b>getActionList</b>
+()</A></nobr><br>
+<!-- Method getActions -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getActions_changed()" class="hiddenlink" target="rightframe">getActions
+()</A></nobr><br>
+<!-- Method getActiveNotifications -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getActiveNotifications_added(java.lang.String[])" class="hiddenlink" target="rightframe"><b>getActiveNotifications</b>
+(<code>String[]</code>)</A></nobr><br>
+<!-- Method getAidsForService -->
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.getAidsForService_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>getAidsForService</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method getAllNetworks -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getAllNetworks_added()" class="hiddenlink" target="rightframe"><b>getAllNetworks</b>
+()</A></nobr><br>
+<!-- Method getAllowEnterTransitionOverlap -->
+<i>getAllowEnterTransitionOverlap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getAllowEnterTransitionOverlap_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method getAllowEnterTransitionOverlap -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getAllowEnterTransitionOverlap_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getAllowReturnTransitionOverlap -->
+<i>getAllowReturnTransitionOverlap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getAllowReturnTransitionOverlap_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method getAllowReturnTransitionOverlap -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getAllowReturnTransitionOverlap_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getAlternateSetting -->
+<nobr><A HREF="android.hardware.usb.UsbInterface.html#android.hardware.usb.UsbInterface.getAlternateSetting_added()" class="hiddenlink" target="rightframe"><b>getAlternateSetting</b>
+()</A></nobr><br>
+<!-- Method getApplicationRestrictions -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getApplicationRestrictions_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>getApplicationRestrictions</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method getAppTasks -->
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getAppTasks_added()" class="hiddenlink" target="rightframe"><b>getAppTasks</b>
+()</A></nobr><br>
+<!-- Method getAppTaskThumbnailSize -->
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getAppTaskThumbnailSize_added()" class="hiddenlink" target="rightframe"><b>getAppTaskThumbnailSize</b>
+()</A></nobr><br>
+<!-- Method getAppVsyncOffsetNanos -->
+<nobr><A HREF="android.view.Display.html#android.view.Display.getAppVsyncOffsetNanos_added()" class="hiddenlink" target="rightframe"><b>getAppVsyncOffsetNanos</b>
+()</A></nobr><br>
+<!-- Method getAssetInt -->
+<nobr><A HREF="android.content.res.AssetManager.AssetInputStream.html#android.content.res.AssetManager.AssetInputStream.getAssetInt_removed()" class="hiddenlink" target="rightframe"><strike>getAssetInt</strike>
+()</A></nobr><br>
+<!-- Method getAttributes -->
+<nobr><A HREF="android.net.nsd.NsdServiceInfo.html#android.net.nsd.NsdServiceInfo.getAttributes_added()" class="hiddenlink" target="rightframe"><b>getAttributes</b>
+()</A></nobr><br>
+<!-- Method getAudioAttributes -->
+<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.getAudioAttributes_added()" class="hiddenlink" target="rightframe"><b>getAudioAttributes</b>
+()</A></nobr><br>
+<!-- Method getAudioCapabilities -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getAudioCapabilities_added()" class="hiddenlink" target="rightframe"><b>getAudioCapabilities</b>
+()</A></nobr><br>
+<!-- Method getAutoTimeRequired -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getAutoTimeRequired_added()" class="hiddenlink" target="rightframe"><b>getAutoTimeRequired</b>
+()</A></nobr><br>
+<!-- Method getAvailableLanguages -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getAvailableLanguages_added()" class="hiddenlink" target="rightframe"><b>getAvailableLanguages</b>
+()</A></nobr><br>
+<!-- Method getBackgroundTintList -->
+<nobr><A HREF="android.view.View.html#android.view.View.getBackgroundTintList_added()" class="hiddenlink" target="rightframe"><b>getBackgroundTintList</b>
+()</A></nobr><br>
+<!-- Method getBackgroundTintMode -->
+<nobr><A HREF="android.view.View.html#android.view.View.getBackgroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getBackgroundTintMode</b>
+()</A></nobr><br>
+<!-- Method getBluetoothLeAdvertiser -->
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.getBluetoothLeAdvertiser_added()" class="hiddenlink" target="rightframe"><b>getBluetoothLeAdvertiser</b>
+()</A></nobr><br>
+<!-- Method getBluetoothLeScanner -->
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.getBluetoothLeScanner_added()" class="hiddenlink" target="rightframe"><b>getBluetoothLeScanner</b>
+()</A></nobr><br>
+<!-- Method getButtonTintList -->
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.getButtonTintList_added()" class="hiddenlink" target="rightframe"><b>getButtonTintList</b>
+()</A></nobr><br>
+<!-- Method getButtonTintMode -->
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.getButtonTintMode_added()" class="hiddenlink" target="rightframe"><b>getButtonTintMode</b>
+()</A></nobr><br>
+<!-- Method getCarrierConfigValues -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.getCarrierConfigValues_added()" class="hiddenlink" target="rightframe"><b>getCarrierConfigValues</b>
+()</A></nobr><br>
+<!-- Method getChangingConfigurations -->
+<nobr><A HREF="android.content.res.TypedArray.html#android.content.res.TypedArray.getChangingConfigurations_added()" class="hiddenlink" target="rightframe"><b>getChangingConfigurations</b>
+()</A></nobr><br>
+<!-- Method getChannelMask -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getChannelMask_added()" class="hiddenlink" target="rightframe"><b>getChannelMask</b>
+()</A></nobr><br>
+<!-- Method getCharSequence -->
+<nobr><A HREF="android.view.textservice.TextInfo.html#android.view.textservice.TextInfo.getCharSequence_added()" class="hiddenlink" target="rightframe"><b>getCharSequence</b>
+()</A></nobr><br>
+<!-- Method getCharSequenceText -->
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getCharSequenceText_added()" class="hiddenlink" target="rightframe"><b>getCharSequenceText</b>
+()</A></nobr><br>
+<!-- Method getCheckMarkTintList -->
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.getCheckMarkTintList_added()" class="hiddenlink" target="rightframe"><b>getCheckMarkTintList</b>
+()</A></nobr><br>
+<!-- Method getCheckMarkTintMode -->
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.getCheckMarkTintMode_added()" class="hiddenlink" target="rightframe"><b>getCheckMarkTintMode</b>
+()</A></nobr><br>
+<!-- Method getClipToOutline -->
+<nobr><A HREF="android.view.View.html#android.view.View.getClipToOutline_added()" class="hiddenlink" target="rightframe"><b>getClipToOutline</b>
+()</A></nobr><br>
+<!-- Method getClipToPadding -->
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.getClipToPadding_added()" class="hiddenlink" target="rightframe"><b>getClipToPadding</b>
+()</A></nobr><br>
+<!-- Method getCodeCacheDir -->
+<i>getCodeCacheDir</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.Context.html#android.content.Context.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.Context
+</A></nobr><br>
+<!-- Method getCodeCacheDir -->
+&nbsp;&nbsp;<nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.ContextWrapper
+</A></nobr><br>
+<!-- Method getCodeCacheDir -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockContext
+</A></nobr><br>
+<!-- Method getCodecCount -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecCount_changed()" class="hiddenlink" target="rightframe">getCodecCount
+()</A></nobr><br>
+<!-- Method getCodecInfoAt -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecInfoAt_changed(int)" class="hiddenlink" target="rightframe">getCodecInfoAt
+(<code>int</code>)</A></nobr><br>
+<!-- Method getCodecInfos -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecInfos_added()" class="hiddenlink" target="rightframe"><b>getCodecInfos</b>
+()</A></nobr><br>
+<!-- Method getColor -->
+<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.getColor_added()" class="hiddenlink" target="rightframe"><b>getColor</b>
+()</A></nobr><br>
+<!-- Method getColorFilter -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.getColorFilter_added()" class="hiddenlink" target="rightframe"><b>getColorFilter</b>
+()</A></nobr><br>
+<!-- Method getConfiguration -->
+<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getConfiguration_added(int)" class="hiddenlink" target="rightframe"><b>getConfiguration</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getConfigurationCount -->
+<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getConfigurationCount_added()" class="hiddenlink" target="rightframe"><b>getConfigurationCount</b>
+()</A></nobr><br>
+<!-- Method getContentScene -->
+<i>getContentScene</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.getContentScene_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+<!-- Method getContentScene -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getContentScene_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getContentTransitionManager -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.getContentTransitionManager_added()" class="hiddenlink" target="rightframe"><b>getContentTransitionManager</b>
+()</A></nobr><br>
+<!-- Method getCropRect -->
+<nobr><A HREF="android.media.Image.html#android.media.Image.getCropRect_added()" class="hiddenlink" target="rightframe"><b>getCropRect</b>
+()</A></nobr><br>
+<!-- Method getCrossProfileCallerIdDisabled -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getCrossProfileCallerIdDisabled_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getCrossProfileCallerIdDisabled</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getCrossProfileWidgetProviders -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getCrossProfileWidgetProviders_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getCrossProfileWidgetProviders</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getCurrentInterruptionFilter -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getCurrentInterruptionFilter_added()" class="hiddenlink" target="rightframe"><b>getCurrentInterruptionFilter</b>
+()</A></nobr><br>
+<!-- Method getCurrentListenerHints -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getCurrentListenerHints_added()" class="hiddenlink" target="rightframe"><b>getCurrentListenerHints</b>
+()</A></nobr><br>
+<!-- Method getCurrentRanking -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getCurrentRanking_added()" class="hiddenlink" target="rightframe"><b>getCurrentRanking</b>
+()</A></nobr><br>
+<!-- Method getDefaultFormat -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getDefaultFormat_added()" class="hiddenlink" target="rightframe"><b>getDefaultFormat</b>
+()</A></nobr><br>
+<!-- Method getDefaultLanguage -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getDefaultLanguage_changed()" class="hiddenlink" target="rightframe">getDefaultLanguage
+()</A></nobr><br>
+<!-- Method getDefaultSensor -->
+<nobr><A HREF="android.hardware.SensorManager.html#android.hardware.SensorManager.getDefaultSensor_added(int, boolean)" class="hiddenlink" target="rightframe"><b>getDefaultSensor</b>
+(<code>int, boolean</code>)</A></nobr><br>
+<!-- Method getDefaultVoice -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getDefaultVoice_added()" class="hiddenlink" target="rightframe"><b>getDefaultVoice</b>
+()</A></nobr><br>
+<!-- Method getDirtyBounds -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.getDirtyBounds_added()" class="hiddenlink" target="rightframe"><b>getDirtyBounds</b>
+()</A></nobr><br>
+<!-- Method getDisplayScript -->
+<i>getDisplayScript</i><br>
+&nbsp;&nbsp;<nobr><A HREF="java.util.Locale.html#java.util.Locale.getDisplayScript_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;java.util.Locale
+</A></nobr><br>
+<!-- Method getDisplayScript -->
+&nbsp;&nbsp;<nobr><A HREF="java.util.Locale.html#java.util.Locale.getDisplayScript_added(java.util.Locale)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Locale</code>)</b>&nbsp;in&nbsp;java.util.Locale
+</A></nobr><br>
+<!-- Method getDouble -->
+<i>getDouble</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getDouble_removed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+<!-- Method getDouble -->
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getDouble_removed(java.lang.String, double)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String, double</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+<!-- Method getDoubleArray -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getDoubleArray_changed(java.lang.String)" class="hiddenlink" target="rightframe">getDoubleArray
+(<code>String</code>)</A></nobr><br>
+<!-- Method getDrawable -->
+<i>getDrawable</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.Context.html#android.content.Context.getDrawable_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.content.Context
+</A></nobr><br>
+<!-- Method getDrawable -->
+&nbsp;&nbsp;<nobr><A HREF="android.content.res.Resources.html#android.content.res.Resources.getDrawable_added(int, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, Theme</code>)</b>&nbsp;in&nbsp;android.content.res.Resources
+</A></nobr><br>
+<!-- Method getDrawable -->
+&nbsp;&nbsp;<nobr><A HREF="android.content.res.Resources.Theme.html#android.content.res.Resources.Theme.getDrawable_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.content.res.Resources.Theme
+</A></nobr><br>
+<!-- Method getDrawableForDensity -->
+<nobr><A HREF="android.content.res.Resources.html#android.content.res.Resources.getDrawableForDensity_added(int, int, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>getDrawableForDensity</b>
+(<code>int, int, Theme</code>)</A></nobr><br>
+<!-- Method getElevation -->
+<i>getElevation</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getElevation_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+<!-- Method getElevation -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.View.html#android.view.View.getElevation_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.View
+</A></nobr><br>
+<!-- Method getElevation -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.PopupWindow.html#android.widget.PopupWindow.getElevation_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.PopupWindow
+</A></nobr><br>
+<!-- Method getEncoderCapabilities -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getEncoderCapabilities_added()" class="hiddenlink" target="rightframe"><b>getEncoderCapabilities</b>
+()</A></nobr><br>
+<!-- Method getEncoding -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getEncoding_added()" class="hiddenlink" target="rightframe"><b>getEncoding</b>
+()</A></nobr><br>
+<!-- Method getEnterTransition -->
+<i>getEnterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getEnterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method getEnterTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getEnterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getEpicenter -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getEpicenter_added()" class="hiddenlink" target="rightframe"><b>getEpicenter</b>
+()</A></nobr><br>
+<!-- Method getEpicenterCallback -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getEpicenterCallback_added()" class="hiddenlink" target="rightframe"><b>getEpicenterCallback</b>
+()</A></nobr><br>
+<!-- Method getError -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getError_added()" class="hiddenlink" target="rightframe"><b>getError</b>
+()</A></nobr><br>
+<!-- Method getExitTransition -->
+<i>getExitTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getExitTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method getExitTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getExitTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getExtension -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getExtension_added(char)" class="hiddenlink" target="rightframe"><b>getExtension</b>
+(<code>char</code>)</A></nobr><br>
+<!-- Method getExtensionKeys -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getExtensionKeys_added()" class="hiddenlink" target="rightframe"><b>getExtensionKeys</b>
+()</A></nobr><br>
+<!-- Method getExternalMediaDirs -->
+<i>getExternalMediaDirs</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.Context.html#android.content.Context.getExternalMediaDirs_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.Context
+</A></nobr><br>
+<!-- Method getExternalMediaDirs -->
+&nbsp;&nbsp;<nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.getExternalMediaDirs_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.ContextWrapper
+</A></nobr><br>
+<!-- Method getExternalMediaDirs -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.getExternalMediaDirs_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockContext
+</A></nobr><br>
+<!-- Method getExternalStorageState -->
+<nobr><A HREF="android.os.Environment.html#android.os.Environment.getExternalStorageState_added(java.io.File)" class="hiddenlink" target="rightframe"><b>getExternalStorageState</b>
+(<code>File</code>)</A></nobr><br>
+<!-- Method getFeatureEnabled -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.getFeatureEnabled_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getFeatureEnabled</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getFeatures -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getFeatures_changed(java.util.Locale)" class="hiddenlink" target="rightframe">getFeatures
+(<code>Locale</code>)</A></nobr><br>
+<!-- Method getFirstDayOfWeek -->
+<nobr><A HREF="android.widget.DatePicker.html#android.widget.DatePicker.getFirstDayOfWeek_added()" class="hiddenlink" target="rightframe"><b>getFirstDayOfWeek</b>
+()</A></nobr><br>
+<!-- Method getFontFeatureSettings -->
+<i>getFontFeatureSettings</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.getFontFeatureSettings_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+<!-- Method getFontFeatureSettings -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getFontFeatureSettings_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<!-- Method getForegroundTintList -->
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.getForegroundTintList_added()" class="hiddenlink" target="rightframe"><b>getForegroundTintList</b>
+()</A></nobr><br>
+<!-- Method getForegroundTintMode -->
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.getForegroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getForegroundTintMode</b>
+()</A></nobr><br>
+<!-- Method getFormatTypeForLocale -->
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.getFormatTypeForLocale_changed(java.util.Locale)" class="hiddenlink" target="rightframe">getFormatTypeForLocale
+(<code>Locale</code>)</A></nobr><br>
+<!-- Method getFrequency -->
+<nobr><A HREF="android.net.wifi.WifiInfo.html#android.net.wifi.WifiInfo.getFrequency_added()" class="hiddenlink" target="rightframe"><b>getFrequency</b>
+()</A></nobr><br>
+<!-- Method getFromDegrees -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.getFromDegrees_added()" class="hiddenlink" target="rightframe"><b>getFromDegrees</b>
+()</A></nobr><br>
+<!-- Method getGradientRadius -->
+<nobr><A HREF="android.graphics.drawable.GradientDrawable.html#android.graphics.drawable.GradientDrawable.getGradientRadius_added()" class="hiddenlink" target="rightframe"><b>getGradientRadius</b>
+()</A></nobr><br>
+<!-- Method getGroupKey -->
+<nobr><A HREF="android.service.notification.StatusBarNotification.html#android.service.notification.StatusBarNotification.getGroupKey_added()" class="hiddenlink" target="rightframe"><b>getGroupKey</b>
+()</A></nobr><br>
+<!-- Method getHandle -->
+<nobr><A HREF="android.opengl.EGLObjectHandle.html#android.opengl.EGLObjectHandle.getHandle_changed()" class="hiddenlink" target="rightframe">getHandle
+()</A></nobr><br>
+<!-- Method getHideOffset -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getHideOffset_added()" class="hiddenlink" target="rightframe"><b>getHideOffset</b>
+()</A></nobr><br>
+<!-- Method getImageTintList -->
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.getImageTintList_added()" class="hiddenlink" target="rightframe"><b>getImageTintList</b>
+()</A></nobr><br>
+<!-- Method getImageTintMode -->
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.getImageTintMode_added()" class="hiddenlink" target="rightframe"><b>getImageTintMode</b>
+()</A></nobr><br>
+<!-- Method getIndeterminateTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getIndeterminateTintList_added()" class="hiddenlink" target="rightframe"><b>getIndeterminateTintList</b>
+()</A></nobr><br>
+<!-- Method getIndeterminateTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getIndeterminateTintMode_added()" class="hiddenlink" target="rightframe"><b>getIndeterminateTintMode</b>
+()</A></nobr><br>
+<!-- Method getInputBuffer -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputBuffer_added(int)" class="hiddenlink" target="rightframe"><b>getInputBuffer</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getInputBuffers -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputBuffers_changed()" class="hiddenlink" target="rightframe">getInputBuffers
+()</A></nobr><br>
+<!-- Method getInputFormat -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputFormat_added()" class="hiddenlink" target="rightframe"><b>getInputFormat</b>
+()</A></nobr><br>
+<!-- Method getInputImage -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputImage_added(int)" class="hiddenlink" target="rightframe"><b>getInputImage</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getInputMethodWindowRecommendedHeight -->
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.getInputMethodWindowRecommendedHeight_added()" class="hiddenlink" target="rightframe"><b>getInputMethodWindowRecommendedHeight</b>
+()</A></nobr><br>
+<!-- Method getInstalledCaCerts -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getInstalledCaCerts_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getInstalledCaCerts</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getInstalledProvidersForProfile -->
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.getInstalledProvidersForProfile_added(android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>getInstalledProvidersForProfile</b>
+(<code>UserHandle</code>)</A></nobr><br>
+<!-- Method getInt -->
+<i>getInt</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getInt_removed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+<!-- Method getInt -->
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getInt_removed(java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String, int</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+<!-- Method getIntArray -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getIntArray_changed(java.lang.String)" class="hiddenlink" target="rightframe">getIntArray
+(<code>String</code>)</A></nobr><br>
+<!-- Method getIntProperty -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.getIntProperty_added(int)" class="hiddenlink" target="rightframe"><b>getIntProperty</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getIntValue -->
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.getIntValue_added()" class="hiddenlink" target="rightframe"><b>getIntValue</b>
+()</A></nobr><br>
+<!-- Method getLanguage -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getLanguage_changed()" class="hiddenlink" target="rightframe">getLanguage
+()</A></nobr><br>
+<!-- Method getLeanbackLaunchIntentForPackage -->
+<i>getLeanbackLaunchIntentForPackage</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getLeanbackLaunchIntentForPackage_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method getLeanbackLaunchIntentForPackage -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getLeanbackLaunchIntentForPackage_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Method getLetterSpacing -->
+<i>getLetterSpacing</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.getLetterSpacing_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+<!-- Method getLetterSpacing -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getLetterSpacing_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<!-- Method getLinkProperties -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getLinkProperties_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>getLinkProperties</b>
+(<code>Network</code>)</A></nobr><br>
+<!-- Method getLong -->
+<i>getLong</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getLong_removed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+<!-- Method getLong -->
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getLong_removed(java.lang.String, long)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String, long</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+<!-- Method getLongArray -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getLongArray_changed(java.lang.String)" class="hiddenlink" target="rightframe">getLongArray
+(<code>String</code>)</A></nobr><br>
+<!-- Method getLongProperty -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.getLongProperty_added(int)" class="hiddenlink" target="rightframe"><b>getLongProperty</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getManufacturerName -->
+<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getManufacturerName_added()" class="hiddenlink" target="rightframe"><b>getManufacturerName</b>
+()</A></nobr><br>
+<!-- Method getMax -->
+<nobr><A HREF="android.text.InputFilter.LengthFilter.html#android.text.InputFilter.LengthFilter.getMax_added()" class="hiddenlink" target="rightframe"><b>getMax</b>
+()</A></nobr><br>
+<!-- Method getMaxDelay -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.getMaxDelay_added()" class="hiddenlink" target="rightframe"><b>getMaxDelay</b>
+()</A></nobr><br>
+<!-- Method getMaxHeight -->
+<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.getMaxHeight_added()" class="hiddenlink" target="rightframe"><b>getMaxHeight</b>
+()</A></nobr><br>
+<!-- Method getMaxTextLength -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getMaxTextLength_added()" class="hiddenlink" target="rightframe"><b>getMaxTextLength</b>
+()</A></nobr><br>
+<!-- Method getMediaController -->
+<i>getMediaController</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.getMediaController_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+<!-- Method getMediaController -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getMediaController_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getMediaSession -->
+<nobr><A HREF="android.media.RemoteControlClient.html#android.media.RemoteControlClient.getMediaSession_added()" class="hiddenlink" target="rightframe"><b>getMediaSession</b>
+()</A></nobr><br>
+<!-- Method getMimeType -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getMimeType_added()" class="hiddenlink" target="rightframe"><b>getMimeType</b>
+()</A></nobr><br>
+<!-- Method getMixedContentMode -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.getMixedContentMode_added()" class="hiddenlink" target="rightframe"><b>getMixedContentMode</b>
+()</A></nobr><br>
+<!-- Method getMode -->
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.getMode_added()" class="hiddenlink" target="rightframe"><b>getMode</b>
+()</A></nobr><br>
+<!-- Method getName -->
+<nobr><A HREF="android.hardware.usb.UsbInterface.html#android.hardware.usb.UsbInterface.getName_added()" class="hiddenlink" target="rightframe"><b>getName</b>
+()</A></nobr><br>
+<!-- Method getNativeHandle -->
+<nobr><A HREF="android.opengl.EGLObjectHandle.html#android.opengl.EGLObjectHandle.getNativeHandle_added()" class="hiddenlink" target="rightframe"><b>getNativeHandle</b>
+()</A></nobr><br>
+<!-- Method getNavigationBarColor -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.getNavigationBarColor_added()" class="hiddenlink" target="rightframe"><b>getNavigationBarColor</b>
+()</A></nobr><br>
+<!-- Method getNavigationItemCount -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getNavigationItemCount_changed()" class="hiddenlink" target="rightframe">getNavigationItemCount
+()</A></nobr><br>
+<!-- Method getNavigationMode -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getNavigationMode_changed()" class="hiddenlink" target="rightframe">getNavigationMode
+()</A></nobr><br>
+<!-- Method getNestedScrollAxes -->
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.getNestedScrollAxes_added()" class="hiddenlink" target="rightframe"><b>getNestedScrollAxes</b>
+()</A></nobr><br>
+<!-- Method getNetworkCapabilities -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getNetworkCapabilities_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>getNetworkCapabilities</b>
+(<code>Network</code>)</A></nobr><br>
+<!-- Method getNetworkInfo -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getNetworkInfo_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>getNetworkInfo</b>
+(<code>Network</code>)</A></nobr><br>
+<!-- Method getNetworkPreference -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getNetworkPreference_changed()" class="hiddenlink" target="rightframe">getNetworkPreference
+()</A></nobr><br>
+<!-- Method getNextAlarmClock -->
+<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.getNextAlarmClock_added()" class="hiddenlink" target="rightframe"><b>getNextAlarmClock</b>
+()</A></nobr><br>
+<!-- Method getNoBackupFilesDir -->
+<i>getNoBackupFilesDir</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.Context.html#android.content.Context.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.Context
+</A></nobr><br>
+<!-- Method getNoBackupFilesDir -->
+&nbsp;&nbsp;<nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.ContextWrapper
+</A></nobr><br>
+<!-- Method getNoBackupFilesDir -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockContext
+</A></nobr><br>
+<!-- Method getOutline -->
+<i>getOutline</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.getOutline_added(android.graphics.Outline)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Outline</code>)</b>&nbsp;in&nbsp;android.graphics.drawable.Drawable
+</A></nobr><br>
+<!-- Method getOutline -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.shapes.Shape.html#android.graphics.drawable.shapes.Shape.getOutline_added(android.graphics.Outline)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Outline</code>)</b>&nbsp;in&nbsp;android.graphics.drawable.shapes.Shape
+</A></nobr><br>
+<!-- Method getOutlineProvider -->
+<nobr><A HREF="android.view.View.html#android.view.View.getOutlineProvider_added()" class="hiddenlink" target="rightframe"><b>getOutlineProvider</b>
+()</A></nobr><br>
+<!-- Method getOutputBuffer -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputBuffer_added(int)" class="hiddenlink" target="rightframe"><b>getOutputBuffer</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getOutputBuffers -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputBuffers_changed()" class="hiddenlink" target="rightframe">getOutputBuffers
+()</A></nobr><br>
+<!-- Method getOutputFormat -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputFormat_added(int)" class="hiddenlink" target="rightframe"><b>getOutputFormat</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getOutputImage -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputImage_added(int)" class="hiddenlink" target="rightframe"><b>getOutputImage</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getPackageInstaller -->
+<i>getPackageInstaller</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getPackageInstaller_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method getPackageInstaller -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getPackageInstaller_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Method getPaddingMode -->
+<nobr><A HREF="android.graphics.drawable.LayerDrawable.html#android.graphics.drawable.LayerDrawable.getPaddingMode_added()" class="hiddenlink" target="rightframe"><b>getPaddingMode</b>
+()</A></nobr><br>
+<!-- Method getPathMotion -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getPathMotion_added()" class="hiddenlink" target="rightframe"><b>getPathMotion</b>
+()</A></nobr><br>
+<!-- Method getPermittedAccessibilityServices -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getPermittedAccessibilityServices_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getPermittedAccessibilityServices</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getPermittedInputMethods -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getPermittedInputMethods_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getPermittedInputMethods</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getPivotX -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.getPivotX_added()" class="hiddenlink" target="rightframe"><b>getPivotX</b>
+()</A></nobr><br>
+<!-- Method getPivotY -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.getPivotY_added()" class="hiddenlink" target="rightframe"><b>getPivotY</b>
+()</A></nobr><br>
+<!-- Method getPresentationDeadlineNanos -->
+<nobr><A HREF="android.view.Display.html#android.view.Display.getPresentationDeadlineNanos_added()" class="hiddenlink" target="rightframe"><b>getPresentationDeadlineNanos</b>
+()</A></nobr><br>
+<!-- Method getPreviousName -->
+<nobr><A HREF="android.accounts.AccountManager.html#android.accounts.AccountManager.getPreviousName_added(android.accounts.Account)" class="hiddenlink" target="rightframe"><b>getPreviousName</b>
+(<code>Account</code>)</A></nobr><br>
+<!-- Method getProcessDefaultNetwork -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getProcessDefaultNetwork_added()" class="hiddenlink" target="rightframe"><b>getProcessDefaultNetwork</b>
+()</A></nobr><br>
+<!-- Method getProductName -->
+<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getProductName_added()" class="hiddenlink" target="rightframe"><b>getProductName</b>
+()</A></nobr><br>
+<!-- Method getProfile -->
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.getProfile_added()" class="hiddenlink" target="rightframe"><b>getProfile</b>
+()</A></nobr><br>
+<!-- Method getProgressBackgroundTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressBackgroundTintList_added()" class="hiddenlink" target="rightframe"><b>getProgressBackgroundTintList</b>
+()</A></nobr><br>
+<!-- Method getProgressBackgroundTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressBackgroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getProgressBackgroundTintMode</b>
+()</A></nobr><br>
+<!-- Method getProgressTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressTintList_added()" class="hiddenlink" target="rightframe"><b>getProgressTintList</b>
+()</A></nobr><br>
+<!-- Method getProgressTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressTintMode_added()" class="hiddenlink" target="rightframe"><b>getProgressTintMode</b>
+()</A></nobr><br>
+<!-- Method getPropagation -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getPropagation_added()" class="hiddenlink" target="rightframe"><b>getPropagation</b>
+()</A></nobr><br>
+<!-- Method getRasterizer -->
+<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.getRasterizer_changed()" class="hiddenlink" target="rightframe">getRasterizer
+()</A></nobr><br>
+<!-- Method getReasonPhrase -->
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getReasonPhrase_added()" class="hiddenlink" target="rightframe"><b>getReasonPhrase</b>
+()</A></nobr><br>
+<!-- Method getRecentTasks -->
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getRecentTasks_changed(int, int)" class="hiddenlink" target="rightframe">getRecentTasks
+(<code>int, int</code>)</A></nobr><br>
+<!-- Method getReenterTransition -->
+<i>getReenterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getReenterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method getReenterTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getReenterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getRemoveOnCancelPolicy -->
+<nobr><A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html#java.util.concurrent.ScheduledThreadPoolExecutor.getRemoveOnCancelPolicy_added()" class="hiddenlink" target="rightframe"><b>getRemoveOnCancelPolicy</b>
+()</A></nobr><br>
+<!-- Method getReportingMode -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.getReportingMode_added()" class="hiddenlink" target="rightframe"><b>getReportingMode</b>
+()</A></nobr><br>
+<!-- Method getResources -->
+<nobr><A HREF="android.content.res.Resources.Theme.html#android.content.res.Resources.Theme.getResources_added()" class="hiddenlink" target="rightframe"><b>getResources</b>
+()</A></nobr><br>
+<!-- Method getResponseHeaders -->
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getResponseHeaders_added()" class="hiddenlink" target="rightframe"><b>getResponseHeaders</b>
+()</A></nobr><br>
+<!-- Method getReturnTransition -->
+<i>getReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method getReturnTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getRunningTasks -->
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getRunningTasks_changed(int)" class="hiddenlink" target="rightframe">getRunningTasks
+(<code>int</code>)</A></nobr><br>
+<!-- Method getSampleRate -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getSampleRate_added()" class="hiddenlink" target="rightframe"><b>getSampleRate</b>
+()</A></nobr><br>
+<!-- Method getScreenCaptureDisabled -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getScreenCaptureDisabled_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getScreenCaptureDisabled</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getScript -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getScript_added()" class="hiddenlink" target="rightframe"><b>getScript</b>
+()</A></nobr><br>
+<!-- Method getSecondaryProgressTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getSecondaryProgressTintList_added()" class="hiddenlink" target="rightframe"><b>getSecondaryProgressTintList</b>
+()</A></nobr><br>
+<!-- Method getSecondaryProgressTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getSecondaryProgressTintMode_added()" class="hiddenlink" target="rightframe"><b>getSecondaryProgressTintMode</b>
+()</A></nobr><br>
+<!-- Method getSelectedNavigationIndex -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getSelectedNavigationIndex_changed()" class="hiddenlink" target="rightframe">getSelectedNavigationIndex
+()</A></nobr><br>
+<!-- Method getSelectedTab -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getSelectedTab_changed()" class="hiddenlink" target="rightframe">getSelectedTab
+()</A></nobr><br>
+<!-- Method getSelectedTrack -->
+<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.getSelectedTrack_added(int)" class="hiddenlink" target="rightframe"><b>getSelectedTrack</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getSelectionMode -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.getSelectionMode_added()" class="hiddenlink" target="rightframe"><b>getSelectionMode</b>
+()</A></nobr><br>
+<!-- Method getSerialNumber -->
+<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getSerialNumber_added()" class="hiddenlink" target="rightframe"><b>getSerialNumber</b>
+()</A></nobr><br>
+<!-- Method getSharedElementEnterTransition -->
+<i>getSharedElementEnterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getSharedElementEnterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method getSharedElementEnterTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementEnterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getSharedElementExitTransition -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementExitTransition_added()" class="hiddenlink" target="rightframe"><b>getSharedElementExitTransition</b>
+()</A></nobr><br>
+<!-- Method getSharedElementReenterTransition -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementReenterTransition_added()" class="hiddenlink" target="rightframe"><b>getSharedElementReenterTransition</b>
+()</A></nobr><br>
+<!-- Method getSharedElementReturnTransition -->
+<i>getSharedElementReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getSharedElementReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method getSharedElementReturnTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getSharedElementsUseOverlay -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementsUseOverlay_added()" class="hiddenlink" target="rightframe"><b>getSharedElementsUseOverlay</b>
+()</A></nobr><br>
+<!-- Method getShowSoftInputOnFocus -->
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getShowSoftInputOnFocus_added()" class="hiddenlink" target="rightframe"><b>getShowSoftInputOnFocus</b>
+()</A></nobr><br>
+<!-- Method getShowText -->
+<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.getShowText_added()" class="hiddenlink" target="rightframe"><b>getShowText</b>
+()</A></nobr><br>
+<!-- Method getSize -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getSize_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getSize</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getSizeF -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getSizeF_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getSizeF</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getSpeakerAngles -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.getSpeakerAngles_added(int, int, int[])" class="hiddenlink" target="rightframe"><b>getSpeakerAngles</b>
+(<code>int, int, int[]</code>)</A></nobr><br>
+<!-- Method getSplitTrack -->
+<i>getSplitTrack</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.getSplitTrack_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.AbsSeekBar
+</A></nobr><br>
+<!-- Method getSplitTrack -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.getSplitTrack_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.Switch
+</A></nobr><br>
+<!-- Method getStableInsetBottom -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetBottom_added()" class="hiddenlink" target="rightframe"><b>getStableInsetBottom</b>
+()</A></nobr><br>
+<!-- Method getStableInsetLeft -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetLeft_added()" class="hiddenlink" target="rightframe"><b>getStableInsetLeft</b>
+()</A></nobr><br>
+<!-- Method getStableInsetRight -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetRight_added()" class="hiddenlink" target="rightframe"><b>getStableInsetRight</b>
+()</A></nobr><br>
+<!-- Method getStableInsetTop -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetTop_added()" class="hiddenlink" target="rightframe"><b>getStableInsetTop</b>
+()</A></nobr><br>
+<!-- Method getStateListAnimator -->
+<nobr><A HREF="android.view.View.html#android.view.View.getStateListAnimator_added()" class="hiddenlink" target="rightframe"><b>getStateListAnimator</b>
+()</A></nobr><br>
+<!-- Method getStatusBarColor -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.getStatusBarColor_added()" class="hiddenlink" target="rightframe"><b>getStatusBarColor</b>
+()</A></nobr><br>
+<!-- Method getStatusCode -->
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getStatusCode_added()" class="hiddenlink" target="rightframe"><b>getStatusCode</b>
+()</A></nobr><br>
+<!-- Method getStorageState -->
+<nobr><A HREF="android.os.Environment.html#android.os.Environment.getStorageState_changed(java.io.File)" class="hiddenlink" target="rightframe">getStorageState
+(<code>File</code>)</A></nobr><br>
+<!-- Method getStreamType -->
+<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.getStreamType_changed()" class="hiddenlink" target="rightframe">getStreamType
+()</A></nobr><br>
+<!-- Method getString -->
+<i>getString</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getString_removed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+<!-- Method getString -->
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getString_removed(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String, String</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+<!-- Method getStringArray -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getStringArray_changed(java.lang.String)" class="hiddenlink" target="rightframe">getStringArray
+(<code>String</code>)</A></nobr><br>
+<!-- Method getSupportedRefreshRates -->
+<nobr><A HREF="android.view.Display.html#android.view.Display.getSupportedRefreshRates_added()" class="hiddenlink" target="rightframe"><b>getSupportedRefreshRates</b>
+()</A></nobr><br>
+<!-- Method getSurface -->
+<nobr><A HREF="android.media.MediaRecorder.html#android.media.MediaRecorder.getSurface_added()" class="hiddenlink" target="rightframe"><b>getSurface</b>
+()</A></nobr><br>
+<!-- Method getTabAt -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getTabAt_changed(int)" class="hiddenlink" target="rightframe">getTabAt
+(<code>int</code>)</A></nobr><br>
+<!-- Method getTabCount -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getTabCount_changed()" class="hiddenlink" target="rightframe">getTabCount
+()</A></nobr><br>
+<!-- Method getTargetNames -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getTargetNames_added()" class="hiddenlink" target="rightframe"><b>getTargetNames</b>
+()</A></nobr><br>
+<!-- Method getTargetTypes -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getTargetTypes_added()" class="hiddenlink" target="rightframe"><b>getTargetTypes</b>
+()</A></nobr><br>
+<!-- Method getText -->
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getText_changed()" class="hiddenlink" target="rightframe">getText
+()</A></nobr><br>
+<!-- Method getTextColor -->
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getTextColor_removed(android.content.Context, android.content.res.TypedArray, int)" class="hiddenlink" target="rightframe"><strike>getTextColor</strike>
+(<code>Context, TypedArray, int</code>)</A></nobr><br>
+<!-- Method getTextColors -->
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getTextColors_removed(android.content.Context, android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>getTextColors</strike>
+(<code>Context, TypedArray</code>)</A></nobr><br>
+<!-- Method getThumbTintList -->
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.getThumbTintList_added()" class="hiddenlink" target="rightframe"><b>getThumbTintList</b>
+()</A></nobr><br>
+<!-- Method getThumbTintMode -->
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.getThumbTintMode_added()" class="hiddenlink" target="rightframe"><b>getThumbTintMode</b>
+()</A></nobr><br>
+<!-- Method getToDegrees -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.getToDegrees_added()" class="hiddenlink" target="rightframe"><b>getToDegrees</b>
+()</A></nobr><br>
+<!-- Method getTouchscreenBlocksFocus -->
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.getTouchscreenBlocksFocus_added()" class="hiddenlink" target="rightframe"><b>getTouchscreenBlocksFocus</b>
+()</A></nobr><br>
+<!-- Method getTransitionAt -->
+<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.getTransitionAt_added(int)" class="hiddenlink" target="rightframe"><b>getTransitionAt</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getTransitionBackgroundFadeDuration -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.getTransitionBackgroundFadeDuration_added()" class="hiddenlink" target="rightframe"><b>getTransitionBackgroundFadeDuration</b>
+()</A></nobr><br>
+<!-- Method getTransitionCount -->
+<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.getTransitionCount_added()" class="hiddenlink" target="rightframe"><b>getTransitionCount</b>
+()</A></nobr><br>
+<!-- Method getTransitionManager -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.getTransitionManager_added()" class="hiddenlink" target="rightframe"><b>getTransitionManager</b>
+()</A></nobr><br>
+<!-- Method getTransitionName -->
+<nobr><A HREF="android.view.View.html#android.view.View.getTransitionName_added()" class="hiddenlink" target="rightframe"><b>getTransitionName</b>
+()</A></nobr><br>
+<!-- Method getTranslationZ -->
+<nobr><A HREF="android.view.View.html#android.view.View.getTranslationZ_added()" class="hiddenlink" target="rightframe"><b>getTranslationZ</b>
+()</A></nobr><br>
+<!-- Method getTreeDocumentId -->
+<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.getTreeDocumentId_added(android.net.Uri)" class="hiddenlink" target="rightframe"><b>getTreeDocumentId</b>
+(<code>Uri</code>)</A></nobr><br>
+<!-- Method getType -->
+<nobr><A HREF="android.content.res.TypedArray.html#android.content.res.TypedArray.getType_added(int)" class="hiddenlink" target="rightframe"><b>getType</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getTypeLabel -->
+<nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.getTypeLabel_added(android.content.res.Resources, int, java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>getTypeLabel</b>
+(<code>Resources, int, CharSequence</code>)</A></nobr><br>
+<!-- Method getUnicodeLocaleAttributes -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleAttributes_added()" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleAttributes</b>
+()</A></nobr><br>
+<!-- Method getUnicodeLocaleKeys -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleKeys_added()" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleKeys</b>
+()</A></nobr><br>
+<!-- Method getUnicodeLocaleType -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleType_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleType</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getUser -->
+<nobr><A HREF="android.service.notification.StatusBarNotification.html#android.service.notification.StatusBarNotification.getUser_added()" class="hiddenlink" target="rightframe"><b>getUser</b>
+()</A></nobr><br>
+<!-- Method getUserBadgedDrawableForDensity -->
+<i>getUserBadgedDrawableForDensity</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle, Rect, int</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method getUserBadgedDrawableForDensity -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle, Rect, int</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Method getUserBadgedIcon -->
+<i>getUserBadgedIcon</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method getUserBadgedIcon -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Method getUserBadgedLabel -->
+<i>getUserBadgedLabel</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, UserHandle</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method getUserBadgedLabel -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, UserHandle</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Method getUserId -->
+<nobr><A HREF="android.service.notification.StatusBarNotification.html#android.service.notification.StatusBarNotification.getUserId_changed()" class="hiddenlink" target="rightframe">getUserId
+()</A></nobr><br>
+<!-- Method getUserProfiles -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.getUserProfiles_added()" class="hiddenlink" target="rightframe"><b>getUserProfiles</b>
+()</A></nobr><br>
+<!-- Method getVideoCapabilities -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getVideoCapabilities_added()" class="hiddenlink" target="rightframe"><b>getVideoCapabilities</b>
+()</A></nobr><br>
+<!-- Method getVirtualizationMode -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.getVirtualizationMode_added()" class="hiddenlink" target="rightframe"><b>getVirtualizationMode</b>
+()</A></nobr><br>
+<!-- Method getVoice -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getVoice_added()" class="hiddenlink" target="rightframe"><b>getVoice</b>
+()</A></nobr><br>
+<!-- Method getVoiceName -->
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getVoiceName_added()" class="hiddenlink" target="rightframe"><b>getVoiceName</b>
+()</A></nobr><br>
+<!-- Method getVoices -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getVoices_added()" class="hiddenlink" target="rightframe"><b>getVoices</b>
+()</A></nobr><br>
+<!-- Method getWindow -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getWindow_added()" class="hiddenlink" target="rightframe"><b>getWindow</b>
+()</A></nobr><br>
+<!-- Method getWindowAnimationFrameStats -->
+<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.getWindowAnimationFrameStats_added()" class="hiddenlink" target="rightframe"><b>getWindowAnimationFrameStats</b>
+()</A></nobr><br>
+<!-- Method getWindowContentFrameStats -->
+<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.getWindowContentFrameStats_added(int)" class="hiddenlink" target="rightframe"><b>getWindowContentFrameStats</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getWindows -->
+<i>getWindows</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.accessibilityservice.AccessibilityService.html#android.accessibilityservice.AccessibilityService.getWindows_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.accessibilityservice.AccessibilityService
+</A></nobr><br>
+<!-- Method getWindows -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.getWindows_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.UiAutomation
+</A></nobr><br>
+<!-- Method getZ -->
+<nobr><A HREF="android.view.View.html#android.view.View.getZ_added()" class="hiddenlink" target="rightframe"><b>getZ</b>
+()</A></nobr><br>
+<!-- Class GLES20 -->
+<A HREF="android.opengl.GLES20.html" class="hiddenlink" target="rightframe">GLES20</A><br>
+<!-- Class GLES31 -->
+<A HREF="pkg_android.opengl.html#GLES31" class="hiddenlink" target="rightframe"><b>GLES31</b></A><br>
+<!-- Class GLES31Ext -->
+<A HREF="pkg_android.opengl.html#GLES31Ext" class="hiddenlink" target="rightframe"><b>GLES31Ext</b></A><br>
+<!-- Class GLES31Ext.DebugProcKHR -->
+<A HREF="pkg_android.opengl.html#GLES31Ext.DebugProcKHR" class="hiddenlink" target="rightframe"><b><i>GLES31Ext.DebugProcKHR</i></b></A><br>
+<!-- Method glGetActiveAttrib -->
+<nobr><A HREF="android.opengl.GLES20.html#android.opengl.GLES20.glGetActiveAttrib_removed(int, int, int, java.nio.IntBuffer, java.nio.IntBuffer, java.nio.IntBuffer, byte)" class="hiddenlink" target="rightframe"><strike>glGetActiveAttrib</strike>
+(<code>int, int, int, IntBuffer, IntBuffer, IntBuffer, byte</code>)</A></nobr><br>
+<!-- Method glGetActiveUniform -->
+<nobr><A HREF="android.opengl.GLES20.html#android.opengl.GLES20.glGetActiveUniform_removed(int, int, int, java.nio.IntBuffer, java.nio.IntBuffer, java.nio.IntBuffer, byte)" class="hiddenlink" target="rightframe"><strike>glGetActiveUniform</strike>
+(<code>int, int, int, IntBuffer, IntBuffer, IntBuffer, byte</code>)</A></nobr><br>
+<!-- Method glGetShaderSource -->
+<nobr><A HREF="android.opengl.GLES20.html#android.opengl.GLES20.glGetShaderSource_removed(int, int, java.nio.IntBuffer, byte)" class="hiddenlink" target="rightframe"><strike>glGetShaderSource</strike>
+(<code>int, int, IntBuffer, byte</code>)</A></nobr><br>
+<!-- Field GLOBAL_ACTION_POWER_DIALOG -->
+<nobr><A HREF="android.accessibilityservice.AccessibilityService.html#android.accessibilityservice.AccessibilityService.GLOBAL_ACTION_POWER_DIALOG" class="hiddenlink" target="rightframe">GLOBAL_ACTION_POWER_DIALOG</A>
+</nobr><br>
+<!-- Field goIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.goIcon" class="hiddenlink" target="rightframe">goIcon</A>
+</nobr><br>
+<!-- Method goToSleep -->
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.goToSleep_removed(long)" class="hiddenlink" target="rightframe"><strike>goToSleep</strike>
+(<code>long</code>)</A></nobr><br>
+<!-- Class GradientDrawable -->
+<A HREF="android.graphics.drawable.GradientDrawable.html" class="hiddenlink" target="rightframe">GradientDrawable</A><br>
+<!-- Class GridLayout -->
+<i>GridLayout</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.GridLayout.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor GridLayout -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>GridLayout</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class GridView -->
+<i>GridView</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.GridView.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor GridView -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridView.html#android.widget.GridView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>GridView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class HapticFeedbackConstants -->
+<A NAME="H"></A>
+<br><font size="+2">H</font>&nbsp;
+<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="#X"><font size="-2">X</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.view.HapticFeedbackConstants.html" class="hiddenlink" target="rightframe">HapticFeedbackConstants</A><br>
+<!-- Method hasBackgroundColor -->
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasBackgroundColor_added()" class="hiddenlink" target="rightframe"><b>hasBackgroundColor</b>
+()</A></nobr><br>
+<!-- Method hasCaCertInstalled -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.hasCaCertInstalled_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>hasCaCertInstalled</b>
+(<code>ComponentName, byte[]</code>)</A></nobr><br>
+<!-- Method hasEdgeColor -->
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasEdgeColor_added()" class="hiddenlink" target="rightframe"><b>hasEdgeColor</b>
+()</A></nobr><br>
+<!-- Method hasEdgeType -->
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasEdgeType_added()" class="hiddenlink" target="rightframe"><b>hasEdgeType</b>
+()</A></nobr><br>
+<!-- Method hasFinished -->
+<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.hasFinished_added()" class="hiddenlink" target="rightframe"><b>hasFinished</b>
+()</A></nobr><br>
+<!-- Method hasForegroundColor -->
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasForegroundColor_added()" class="hiddenlink" target="rightframe"><b>hasForegroundColor</b>
+()</A></nobr><br>
+<!-- Method hasNestedScrollingParent -->
+<nobr><A HREF="android.view.View.html#android.view.View.hasNestedScrollingParent_added()" class="hiddenlink" target="rightframe"><b>hasNestedScrollingParent</b>
+()</A></nobr><br>
+<!-- Method hasQueuedPredecessors -->
+<i>hasQueuedPredecessors</i><br>
+&nbsp;&nbsp;<nobr><A HREF="java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html#java.util.concurrent.locks.AbstractQueuedLongSynchronizer.hasQueuedPredecessors_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;java.util.concurrent.locks.AbstractQueuedLongSynchronizer
+</A></nobr><br>
+<!-- Method hasQueuedPredecessors -->
+&nbsp;&nbsp;<nobr><A HREF="java.util.concurrent.locks.AbstractQueuedSynchronizer.html#java.util.concurrent.locks.AbstractQueuedSynchronizer.hasQueuedPredecessors_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;java.util.concurrent.locks.AbstractQueuedSynchronizer
+</A></nobr><br>
+<!-- Method hasStableInsets -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.hasStableInsets_added()" class="hiddenlink" target="rightframe"><b>hasStableInsets</b>
+()</A></nobr><br>
+<!-- Method hasStarted -->
+<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.hasStarted_added()" class="hiddenlink" target="rightframe"><b>hasStarted</b>
+()</A></nobr><br>
+<!-- Method hasUserRestriction -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.hasUserRestriction_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>hasUserRestriction</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method hasWindowColor -->
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasWindowColor_added()" class="hiddenlink" target="rightframe"><b>hasWindowColor</b>
+()</A></nobr><br>
+<!-- Field headerAmPmTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerAmPmTextAppearance" class="hiddenlink" target="rightframe">headerAmPmTextAppearance</A>
+</nobr><br>
+<!-- Field headerDayOfMonthTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerDayOfMonthTextAppearance" class="hiddenlink" target="rightframe">headerDayOfMonthTextAppearance</A>
+</nobr><br>
+<!-- Field headerMonthTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerMonthTextAppearance" class="hiddenlink" target="rightframe">headerMonthTextAppearance</A>
+</nobr><br>
+<!-- Field headerTimeTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerTimeTextAppearance" class="hiddenlink" target="rightframe">headerTimeTextAppearance</A>
+</nobr><br>
+<!-- Field headerYearTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerYearTextAppearance" class="hiddenlink" target="rightframe">headerYearTextAppearance</A>
+</nobr><br>
+<!-- Field headsUpContentView -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.headsUpContentView" class="hiddenlink" target="rightframe">headsUpContentView</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel1 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel1" class="hiddenlink" target="rightframe">HEVCHighTierLevel1</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel2 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel2" class="hiddenlink" target="rightframe">HEVCHighTierLevel2</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel21 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel21" class="hiddenlink" target="rightframe">HEVCHighTierLevel21</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel3 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel3" class="hiddenlink" target="rightframe">HEVCHighTierLevel3</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel31 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel31" class="hiddenlink" target="rightframe">HEVCHighTierLevel31</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel4 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel4" class="hiddenlink" target="rightframe">HEVCHighTierLevel4</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel41 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel41" class="hiddenlink" target="rightframe">HEVCHighTierLevel41</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel5 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel5" class="hiddenlink" target="rightframe">HEVCHighTierLevel5</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel51 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel51" class="hiddenlink" target="rightframe">HEVCHighTierLevel51</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel52 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel52" class="hiddenlink" target="rightframe">HEVCHighTierLevel52</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel6 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel6" class="hiddenlink" target="rightframe">HEVCHighTierLevel6</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel61 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel61" class="hiddenlink" target="rightframe">HEVCHighTierLevel61</A>
+</nobr><br>
+<!-- Field HEVCHighTierLevel62 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel62" class="hiddenlink" target="rightframe">HEVCHighTierLevel62</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel1 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel1" class="hiddenlink" target="rightframe">HEVCMainTierLevel1</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel2 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel2" class="hiddenlink" target="rightframe">HEVCMainTierLevel2</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel21 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel21" class="hiddenlink" target="rightframe">HEVCMainTierLevel21</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel3 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel3" class="hiddenlink" target="rightframe">HEVCMainTierLevel3</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel31 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel31" class="hiddenlink" target="rightframe">HEVCMainTierLevel31</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel4 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel4" class="hiddenlink" target="rightframe">HEVCMainTierLevel4</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel41 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel41" class="hiddenlink" target="rightframe">HEVCMainTierLevel41</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel5 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel5" class="hiddenlink" target="rightframe">HEVCMainTierLevel5</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel51 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel51" class="hiddenlink" target="rightframe">HEVCMainTierLevel51</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel52 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel52" class="hiddenlink" target="rightframe">HEVCMainTierLevel52</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel6 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel6" class="hiddenlink" target="rightframe">HEVCMainTierLevel6</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel61 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel61" class="hiddenlink" target="rightframe">HEVCMainTierLevel61</A>
+</nobr><br>
+<!-- Field HEVCMainTierLevel62 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel62" class="hiddenlink" target="rightframe">HEVCMainTierLevel62</A>
+</nobr><br>
+<!-- Field HEVCProfileMain -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCProfileMain" class="hiddenlink" target="rightframe">HEVCProfileMain</A>
+</nobr><br>
+<!-- Field HEVCProfileMain10 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCProfileMain10" class="hiddenlink" target="rightframe">HEVCProfileMain10</A>
+</nobr><br>
+<!-- Field hideOnContentScroll -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.hideOnContentScroll" class="hiddenlink" target="rightframe">hideOnContentScroll</A>
+</nobr><br>
+<!-- Field HINT_HOST_DISABLE_EFFECTS -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.HINT_HOST_DISABLE_EFFECTS" class="hiddenlink" target="rightframe">HINT_HOST_DISABLE_EFFECTS</A>
+</nobr><br>
+<!-- Class HorizontalScrollView -->
+<i>HorizontalScrollView</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.HorizontalScrollView.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor HorizontalScrollView -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.HorizontalScrollView.html#android.widget.HorizontalScrollView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>HorizontalScrollView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field HOST_VIEW_ID -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeProvider.html#android.view.accessibility.AccessibilityNodeProvider.HOST_VIEW_ID" class="hiddenlink" target="rightframe">HOST_VIEW_ID</A>
+</nobr><br>
+<!-- Method iccCloseLogicalChannel -->
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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="#X"><font size="-2">X</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.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccCloseLogicalChannel_added(int)" class="hiddenlink" target="rightframe"><b>iccCloseLogicalChannel</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method iccExchangeSimIO -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccExchangeSimIO_added(int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccExchangeSimIO</b>
+(<code>int, int, int, int, int, String</code>)</A></nobr><br>
+<!-- Method iccOpenLogicalChannel -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccOpenLogicalChannel_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>iccOpenLogicalChannel</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Class IccOpenLogicalChannelResponse -->
+<A HREF="pkg_android.telephony.html#IccOpenLogicalChannelResponse" class="hiddenlink" target="rightframe"><b>IccOpenLogicalChannelResponse</b></A><br>
+<!-- Method iccTransmitApduBasicChannel -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccTransmitApduBasicChannel_added(int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccTransmitApduBasicChannel</b>
+(<code>int, int, int, int, int, String</code>)</A></nobr><br>
+<!-- Method iccTransmitApduLogicalChannel -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccTransmitApduLogicalChannel_added(int, int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccTransmitApduLogicalChannel</b>
+(<code>int, int, int, int, int, int, String</code>)</A></nobr><br>
+<!-- Class IllformedLocaleException -->
+<A HREF="pkg_java.util.html#IllformedLocaleException" class="hiddenlink" target="rightframe"><b>IllformedLocaleException</b></A><br>
+<!-- Class Image -->
+<A HREF="android.media.Image.html" class="hiddenlink" target="rightframe">Image</A><br>
+<!-- Class ImageButton -->
+<i>ImageButton</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.ImageButton.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor ImageButton -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.ImageButton.html#android.widget.ImageButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ImageButton</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class ImageFormat -->
+<A HREF="android.graphics.ImageFormat.html" class="hiddenlink" target="rightframe">ImageFormat</A><br>
+<!-- Class ImageView -->
+<i>ImageView</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.ImageView.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor ImageView -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ImageView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field IMPORTANCE_GONE -->
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.IMPORTANCE_GONE" class="hiddenlink" target="rightframe">IMPORTANCE_GONE</A>
+</nobr><br>
+<!-- Field IN_DEFAULT_DIRECTORY -->
+<nobr><A HREF="android.provider.ContactsContract.ContactsColumns.html#android.provider.ContactsContract.ContactsColumns.IN_DEFAULT_DIRECTORY" class="hiddenlink" target="rightframe">IN_DEFAULT_DIRECTORY</A>
+</nobr><br>
+<!-- Field indeterminateTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.indeterminateTint" class="hiddenlink" target="rightframe">indeterminateTint</A>
+</nobr><br>
+<!-- Field indeterminateTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.indeterminateTintMode" class="hiddenlink" target="rightframe">indeterminateTintMode</A>
+</nobr><br>
+<!-- Method indexOfKey -->
+<nobr><A HREF="android.util.ArrayMap.html#android.util.ArrayMap.indexOfKey_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>indexOfKey</b>
+(<code>Object</code>)</A></nobr><br>
+<!-- Method inflate -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.inflate_added(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.util.AttributeSet, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>inflate</b>
+(<code>Resources, XmlPullParser, AttributeSet, Theme</code>)</A></nobr><br>
+<!-- Field INFO_OUTPUT_BUFFERS_CHANGED -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.INFO_OUTPUT_BUFFERS_CHANGED" class="hiddenlink" target="rightframe">INFO_OUTPUT_BUFFERS_CHANGED</A>
+</nobr><br>
+<!-- Field inInputShareable -->
+<nobr><A HREF="android.graphics.BitmapFactory.Options.html#android.graphics.BitmapFactory.Options.inInputShareable" class="hiddenlink" target="rightframe">inInputShareable</A>
+</nobr><br>
+<!-- Method initializeFadingEdge -->
+<nobr><A HREF="android.view.View.html#android.view.View.initializeFadingEdge_removed(android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>initializeFadingEdge</strike>
+(<code>TypedArray</code>)</A></nobr><br>
+<!-- Method initializeScrollbars -->
+<nobr><A HREF="android.view.View.html#android.view.View.initializeScrollbars_removed(android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>initializeScrollbars</strike>
+(<code>TypedArray</code>)</A></nobr><br>
+<!-- Field inPurgeable -->
+<nobr><A HREF="android.graphics.BitmapFactory.Options.html#android.graphics.BitmapFactory.Options.inPurgeable" class="hiddenlink" target="rightframe">inPurgeable</A>
+</nobr><br>
+<!-- Class InputConnection -->
+<A HREF="android.view.inputmethod.InputConnection.html" class="hiddenlink" target="rightframe"><i>InputConnection</i></A><br>
+<!-- Class InputConnectionWrapper -->
+<A HREF="android.view.inputmethod.InputConnectionWrapper.html" class="hiddenlink" target="rightframe">InputConnectionWrapper</A><br>
+<!-- Class InputDevice -->
+<A HREF="android.view.InputDevice.html" class="hiddenlink" target="rightframe">InputDevice</A><br>
+<!-- Class InputFilter.LengthFilter -->
+<A HREF="android.text.InputFilter.LengthFilter.html" class="hiddenlink" target="rightframe">InputFilter.LengthFilter</A><br>
+<!-- Class InputMethodManager -->
+<A HREF="android.view.inputmethod.InputMethodManager.html" class="hiddenlink" target="rightframe">InputMethodManager</A><br>
+<!-- Class InputMethodService -->
+<A HREF="android.inputmethodservice.InputMethodService.html" class="hiddenlink" target="rightframe">InputMethodService</A><br>
+<!-- Class InputMethodService.InputMethodSessionImpl -->
+<A HREF="android.inputmethodservice.InputMethodService.InputMethodSessionImpl.html" class="hiddenlink" target="rightframe">InputMethodService.InputMethodSessionImpl</A><br>
+<!-- Class InputMethodSession -->
+<A HREF="android.view.inputmethod.InputMethodSession.html" class="hiddenlink" target="rightframe"><i>InputMethodSession</i></A><br>
+<!-- Field inset -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.inset" class="hiddenlink" target="rightframe">inset</A>
+</nobr><br>
+<!-- Field INSTALL_LOCATION_AUTO -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.INSTALL_LOCATION_AUTO" class="hiddenlink" target="rightframe">INSTALL_LOCATION_AUTO</A>
+</nobr><br>
+<!-- Field INSTALL_LOCATION_INTERNAL_ONLY -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY" class="hiddenlink" target="rightframe">INSTALL_LOCATION_INTERNAL_ONLY</A>
+</nobr><br>
+<!-- Field INSTALL_LOCATION_PREFER_EXTERNAL -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.INSTALL_LOCATION_PREFER_EXTERNAL" class="hiddenlink" target="rightframe">INSTALL_LOCATION_PREFER_EXTERNAL</A>
+</nobr><br>
+<!-- Field INSTALL_NON_MARKET_APPS -->
+<i>INSTALL_NON_MARKET_APPS</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.Settings.Global.html#android.provider.Settings.Global.INSTALL_NON_MARKET_APPS" class="hiddenlink" target="rightframe">android.provider.Settings.Global</A>
+</nobr><br>
+<!-- Field INSTALL_NON_MARKET_APPS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.Settings.Secure.html#android.provider.Settings.Secure.INSTALL_NON_MARKET_APPS" class="hiddenlink" target="rightframe">android.provider.Settings.Secure</A>
+</nobr><br>
+<!-- Method installCaCert -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.installCaCert_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>installCaCert</b>
+(<code>ComponentName, byte[]</code>)</A></nobr><br>
+<!-- Method installKeyPair -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.installKeyPair_added(android.content.ComponentName, java.security.PrivateKey, java.security.cert.Certificate, java.lang.String)" class="hiddenlink" target="rightframe"><b>installKeyPair</b>
+(<code>ComponentName, PrivateKey, Certificate, String</code>)</A></nobr><br>
+<!-- Field installLocation -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.installLocation" class="hiddenlink" target="rightframe">installLocation</A>
+</nobr><br>
+<!-- Class Instrumentation -->
+<A HREF="android.app.Instrumentation.html" class="hiddenlink" target="rightframe">Instrumentation</A><br>
+<!-- Class InstrumentationInfo -->
+<A HREF="android.content.pm.InstrumentationInfo.html" class="hiddenlink" target="rightframe">InstrumentationInfo</A><br>
+<!-- Class IntArrayEvaluator -->
+<A HREF="pkg_android.animation.html#IntArrayEvaluator" class="hiddenlink" target="rightframe"><b>IntArrayEvaluator</b></A><br>
+<!-- Class Intent -->
+<A HREF="android.content.Intent.html" class="hiddenlink" target="rightframe">Intent</A><br>
+<!-- Field INTENT_CATEGORY_NOTIFICATION_PREFERENCES -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.INTENT_CATEGORY_NOTIFICATION_PREFERENCES" class="hiddenlink" target="rightframe">INTENT_CATEGORY_NOTIFICATION_PREFERENCES</A>
+</nobr><br>
+<!-- Field INTERRUPTION_FILTER_ALL -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_ALL" class="hiddenlink" target="rightframe">INTERRUPTION_FILTER_ALL</A>
+</nobr><br>
+<!-- Field INTERRUPTION_FILTER_NONE -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_NONE" class="hiddenlink" target="rightframe">INTERRUPTION_FILTER_NONE</A>
+</nobr><br>
+<!-- Field INTERRUPTION_FILTER_PRIORITY -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_PRIORITY" class="hiddenlink" target="rightframe">INTERRUPTION_FILTER_PRIORITY</A>
+</nobr><br>
+<!-- Method invalidateOutline -->
+<nobr><A HREF="android.view.View.html#android.view.View.invalidateOutline_added()" class="hiddenlink" target="rightframe"><b>invalidateOutline</b>
+()</A></nobr><br>
+<!-- Method invokeBeam -->
+<nobr><A HREF="android.nfc.NfcAdapter.html#android.nfc.NfcAdapter.invokeBeam_added(android.app.Activity)" class="hiddenlink" target="rightframe"><b>invokeBeam</b>
+(<code>Activity</code>)</A></nobr><br>
+<!-- Class IpPrefix -->
+<A HREF="pkg_android.net.html#IpPrefix" class="hiddenlink" target="rightframe"><b>IpPrefix</b></A><br>
+<!-- Method is5GHzBandSupported -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.is5GHzBandSupported_added()" class="hiddenlink" target="rightframe"><b>is5GHzBandSupported</b>
+()</A></nobr><br>
+<!-- Method isAccessibilityFocused -->
+<nobr><A HREF="android.view.View.html#android.view.View.isAccessibilityFocused_added()" class="hiddenlink" target="rightframe"><b>isAccessibilityFocused</b>
+()</A></nobr><br>
+<!-- Method isAffine -->
+<nobr><A HREF="android.graphics.Matrix.html#android.graphics.Matrix.isAffine_added()" class="hiddenlink" target="rightframe"><b>isAffine</b>
+()</A></nobr><br>
+<!-- Method isApplicationHidden -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isApplicationHidden_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>isApplicationHidden</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method isButtonPressed -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.isButtonPressed_added(int)" class="hiddenlink" target="rightframe"><b>isButtonPressed</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method isChildDocument -->
+<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.isChildDocument_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>isChildDocument</b>
+(<code>String, String</code>)</A></nobr><br>
+<!-- Method isConsumed -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.isConsumed_added()" class="hiddenlink" target="rightframe"><b>isConsumed</b>
+()</A></nobr><br>
+<!-- Method isConvex -->
+<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.isConvex_added()" class="hiddenlink" target="rightframe"><b>isConvex</b>
+()</A></nobr><br>
+<!-- Method isDefaultNetworkActive -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.isDefaultNetworkActive_added()" class="hiddenlink" target="rightframe"><b>isDefaultNetworkActive</b>
+()</A></nobr><br>
+<!-- Method isDeviceToApRttSupported -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isDeviceToApRttSupported_added()" class="hiddenlink" target="rightframe"><b>isDeviceToApRttSupported</b>
+()</A></nobr><br>
+<!-- Method isElegantTextHeight -->
+<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.isElegantTextHeight_added()" class="hiddenlink" target="rightframe"><b>isElegantTextHeight</b>
+()</A></nobr><br>
+<!-- Method isEmpty -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.isEmpty_changed()" class="hiddenlink" target="rightframe">isEmpty
+()</A></nobr><br>
+<!-- Method isEnhancedPowerReportingSupported -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isEnhancedPowerReportingSupported_added()" class="hiddenlink" target="rightframe"><b>isEnhancedPowerReportingSupported</b>
+()</A></nobr><br>
+<!-- Method isEnterpriseContactId -->
+<nobr><A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.isEnterpriseContactId_added(long)" class="hiddenlink" target="rightframe"><b>isEnterpriseContactId</b>
+(<code>long</code>)</A></nobr><br>
+<!-- Method isExternalStorageEmulated -->
+<nobr><A HREF="android.os.Environment.html#android.os.Environment.isExternalStorageEmulated_added(java.io.File)" class="hiddenlink" target="rightframe"><b>isExternalStorageEmulated</b>
+(<code>File</code>)</A></nobr><br>
+<!-- Method isExternalStorageRemovable -->
+<nobr><A HREF="android.os.Environment.html#android.os.Environment.isExternalStorageRemovable_added(java.io.File)" class="hiddenlink" target="rightframe"><b>isExternalStorageRemovable</b>
+(<code>File</code>)</A></nobr><br>
+<!-- Method isFeatureRequired -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.isFeatureRequired_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>isFeatureRequired</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method isFormatSupported -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.isFormatSupported_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>isFormatSupported</b>
+(<code>MediaFormat</code>)</A></nobr><br>
+<!-- Field isGame -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.isGame" class="hiddenlink" target="rightframe">isGame</A>
+</nobr><br>
+<!-- Method isHideOnContentScrollEnabled -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.isHideOnContentScrollEnabled_added()" class="hiddenlink" target="rightframe"><b>isHideOnContentScrollEnabled</b>
+()</A></nobr><br>
+<!-- Method isImportantForAccessibility -->
+<nobr><A HREF="android.view.View.html#android.view.View.isImportantForAccessibility_added()" class="hiddenlink" target="rightframe"><b>isImportantForAccessibility</b>
+()</A></nobr><br>
+<!-- Method isInLockTaskMode -->
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.isInLockTaskMode_added()" class="hiddenlink" target="rightframe"><b>isInLockTaskMode</b>
+()</A></nobr><br>
+<!-- Method isLocalEmergencyNumber -->
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.isLocalEmergencyNumber_added(android.content.Context, java.lang.String)" class="hiddenlink" target="rightframe"><b>isLocalEmergencyNumber</b>
+(<code>Context, String</code>)</A></nobr><br>
+<!-- Method isLockTaskPermitted -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isLockTaskPermitted_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>isLockTaskPermitted</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method isMasterVolumeMuted -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isMasterVolumeMuted_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>isMasterVolumeMuted</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method isMultipleAdvertisementSupported -->
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isMultipleAdvertisementSupported_added()" class="hiddenlink" target="rightframe"><b>isMultipleAdvertisementSupported</b>
+()</A></nobr><br>
+<!-- Method isNestedScrollingEnabled -->
+<nobr><A HREF="android.view.View.html#android.view.View.isNestedScrollingEnabled_added()" class="hiddenlink" target="rightframe"><b>isNestedScrollingEnabled</b>
+()</A></nobr><br>
+<!-- Method isOffloadedFilteringSupported -->
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isOffloadedFilteringSupported_added()" class="hiddenlink" target="rightframe"><b>isOffloadedFilteringSupported</b>
+()</A></nobr><br>
+<!-- Method isOffloadedScanBatchingSupported -->
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isOffloadedScanBatchingSupported_added()" class="hiddenlink" target="rightframe"><b>isOffloadedScanBatchingSupported</b>
+()</A></nobr><br>
+<!-- Method isOpaque -->
+<nobr><A HREF="android.content.res.ColorStateList.html#android.content.res.ColorStateList.isOpaque_added()" class="hiddenlink" target="rightframe"><b>isOpaque</b>
+()</A></nobr><br>
+<!-- Method isP2pSupported -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isP2pSupported_added()" class="hiddenlink" target="rightframe"><b>isP2pSupported</b>
+()</A></nobr><br>
+<!-- Method isPivotXRelative -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.isPivotXRelative_added()" class="hiddenlink" target="rightframe"><b>isPivotXRelative</b>
+()</A></nobr><br>
+<!-- Method isPivotYRelative -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.isPivotYRelative_added()" class="hiddenlink" target="rightframe"><b>isPivotYRelative</b>
+()</A></nobr><br>
+<!-- Method isPowerSaveMode -->
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.isPowerSaveMode_added()" class="hiddenlink" target="rightframe"><b>isPowerSaveMode</b>
+()</A></nobr><br>
+<!-- Method isPreferredNetworkOffloadSupported -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isPreferredNetworkOffloadSupported_added()" class="hiddenlink" target="rightframe"><b>isPreferredNetworkOffloadSupported</b>
+()</A></nobr><br>
+<!-- Method isProfileOwnerApp -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isProfileOwnerApp_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>isProfileOwnerApp</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method isSelected -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.isSelected_added()" class="hiddenlink" target="rightframe"><b>isSelected</b>
+()</A></nobr><br>
+<!-- Method isSmsCapable -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.isSmsCapable_added()" class="hiddenlink" target="rightframe"><b>isSmsCapable</b>
+()</A></nobr><br>
+<!-- Method isTdlsSupported -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isTdlsSupported_added()" class="hiddenlink" target="rightframe"><b>isTdlsSupported</b>
+()</A></nobr><br>
+<!-- Method isTransitionGroup -->
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.isTransitionGroup_added()" class="hiddenlink" target="rightframe"><b>isTransitionGroup</b>
+()</A></nobr><br>
+<!-- Method isUninstallBlocked -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isUninstallBlocked_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>isUninstallBlocked</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method isUserAddedCertificate -->
+<nobr><A HREF="android.net.http.X509TrustManagerExtensions.html#android.net.http.X509TrustManagerExtensions.isUserAddedCertificate_added(java.security.cert.X509Certificate)" class="hiddenlink" target="rightframe"><b>isUserAddedCertificate</b>
+(<code>X509Certificate</code>)</A></nobr><br>
+<!-- Method isVoiceMailNumber -->
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.isVoiceMailNumber_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>isVoiceMailNumber</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method isVolumeFixed -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.isVolumeFixed_added()" class="hiddenlink" target="rightframe"><b>isVolumeFixed</b>
+()</A></nobr><br>
+<!-- Method isWakeLockLevelSupported -->
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.isWakeLockLevelSupported_added(int)" class="hiddenlink" target="rightframe"><b>isWakeLockLevelSupported</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method isWakeUpSensor -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.isWakeUpSensor_added()" class="hiddenlink" target="rightframe"><b>isWakeUpSensor</b>
+()</A></nobr><br>
+<!-- Method isWatchingCursor -->
+<nobr><A HREF="android.view.inputmethod.InputMethodManager.html#android.view.inputmethod.InputMethodManager.isWatchingCursor_changed(android.view.View)" class="hiddenlink" target="rightframe">isWatchingCursor
+(<code>View</code>)</A></nobr><br>
+<!-- Package java.util -->
+<A NAME="J"></A>
+<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>
+<!-- Package java.util.zip -->
+<A HREF="pkg_java.util.zip.html" class="hiddenlink" target="rightframe">java.util.zip</A><br>
+<!-- Field JOB_SCHEDULER_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.JOB_SCHEDULER_SERVICE" class="hiddenlink" target="rightframe">JOB_SCHEDULER_SERVICE</A>
+</nobr><br>
+<!-- Field KEY_AAC_DRC_ATTENUATION_FACTOR -->
+<A NAME="K"></A>
+<br><font size="+2">K</font>&nbsp;
+<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="#X"><font size="-2">X</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.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_ATTENUATION_FACTOR" class="hiddenlink" target="rightframe">KEY_AAC_DRC_ATTENUATION_FACTOR</A>
+</nobr><br>
+<!-- Field KEY_AAC_DRC_BOOST_FACTOR -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_BOOST_FACTOR" class="hiddenlink" target="rightframe">KEY_AAC_DRC_BOOST_FACTOR</A>
+</nobr><br>
+<!-- Field KEY_AAC_DRC_HEAVY_COMPRESSION -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_HEAVY_COMPRESSION" class="hiddenlink" target="rightframe">KEY_AAC_DRC_HEAVY_COMPRESSION</A>
+</nobr><br>
+<!-- Field KEY_AAC_DRC_TARGET_REFERENCE_LEVEL -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_TARGET_REFERENCE_LEVEL" class="hiddenlink" target="rightframe">KEY_AAC_DRC_TARGET_REFERENCE_LEVEL</A>
+</nobr><br>
+<!-- Field KEY_AAC_ENCODED_TARGET_LEVEL -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_ENCODED_TARGET_LEVEL" class="hiddenlink" target="rightframe">KEY_AAC_ENCODED_TARGET_LEVEL</A>
+</nobr><br>
+<!-- Field KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT" class="hiddenlink" target="rightframe">KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT</A>
+</nobr><br>
+<!-- Field KEY_AAC_SBR_MODE -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_SBR_MODE" class="hiddenlink" target="rightframe">KEY_AAC_SBR_MODE</A>
+</nobr><br>
+<!-- Field KEY_AUDIO_SESSION_ID -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AUDIO_SESSION_ID" class="hiddenlink" target="rightframe">KEY_AUDIO_SESSION_ID</A>
+</nobr><br>
+<!-- Field KEY_BITRATE_MODE -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_BITRATE_MODE" class="hiddenlink" target="rightframe">KEY_BITRATE_MODE</A>
+</nobr><br>
+<!-- Field KEY_CAPTURE_RATE -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_CAPTURE_RATE" class="hiddenlink" target="rightframe">KEY_CAPTURE_RATE</A>
+</nobr><br>
+<!-- Field KEY_COMPLEXITY -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_COMPLEXITY" class="hiddenlink" target="rightframe">KEY_COMPLEXITY</A>
+</nobr><br>
+<!-- Field KEY_FEATURE_EMBEDDED_SYNTHESIS -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_EMBEDDED_SYNTHESIS" class="hiddenlink" target="rightframe">KEY_FEATURE_EMBEDDED_SYNTHESIS</A>
+</nobr><br>
+<!-- Field KEY_FEATURE_NETWORK_RETRIES_COUNT -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_RETRIES_COUNT" class="hiddenlink" target="rightframe">KEY_FEATURE_NETWORK_RETRIES_COUNT</A>
+</nobr><br>
+<!-- Field KEY_FEATURE_NETWORK_SYNTHESIS -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_SYNTHESIS" class="hiddenlink" target="rightframe">KEY_FEATURE_NETWORK_SYNTHESIS</A>
+</nobr><br>
+<!-- Field KEY_FEATURE_NETWORK_TIMEOUT_MS -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_TIMEOUT_MS" class="hiddenlink" target="rightframe">KEY_FEATURE_NETWORK_TIMEOUT_MS</A>
+</nobr><br>
+<!-- Field KEY_FEATURE_NOT_INSTALLED -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NOT_INSTALLED" class="hiddenlink" target="rightframe">KEY_FEATURE_NOT_INSTALLED</A>
+</nobr><br>
+<!-- Field KEY_PARAM_SESSION_ID -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_PARAM_SESSION_ID" class="hiddenlink" target="rightframe">KEY_PARAM_SESSION_ID</A>
+</nobr><br>
+<!-- Field KEY_PROFILE -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_PROFILE" class="hiddenlink" target="rightframe">KEY_PROFILE</A>
+</nobr><br>
+<!-- Field KEY_TEMPORAL_LAYERING -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_TEMPORAL_LAYERING" class="hiddenlink" target="rightframe">KEY_TEMPORAL_LAYERING</A>
+</nobr><br>
+<!-- Class KeyboardView -->
+<i>KeyboardView</i><br>
+&nbsp;&nbsp;<A HREF="android.inputmethodservice.KeyboardView.html" class="hiddenlink" target="rightframe">android.inputmethodservice</A><br>
+<!-- Constructor KeyboardView -->
+&nbsp;&nbsp;<nobr><A HREF="android.inputmethodservice.KeyboardView.html#android.inputmethodservice.KeyboardView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>KeyboardView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field KEYCODE_11 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_11" class="hiddenlink" target="rightframe">KEYCODE_11</A>
+</nobr><br>
+<!-- Field KEYCODE_12 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_12" class="hiddenlink" target="rightframe">KEYCODE_12</A>
+</nobr><br>
+<!-- Field KEYCODE_HELP -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_HELP" class="hiddenlink" target="rightframe">KEYCODE_HELP</A>
+</nobr><br>
+<!-- Field KEYCODE_LAST_CHANNEL -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_LAST_CHANNEL" class="hiddenlink" target="rightframe">KEYCODE_LAST_CHANNEL</A>
+</nobr><br>
+<!-- Field KEYCODE_MEDIA_TOP_MENU -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_MEDIA_TOP_MENU" class="hiddenlink" target="rightframe">KEYCODE_MEDIA_TOP_MENU</A>
+</nobr><br>
+<!-- Field KEYCODE_PAIRING -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_PAIRING" class="hiddenlink" target="rightframe">KEYCODE_PAIRING</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_ANTENNA_CABLE -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_ANTENNA_CABLE" class="hiddenlink" target="rightframe">KEYCODE_TV_ANTENNA_CABLE</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_AUDIO_DESCRIPTION -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION" class="hiddenlink" target="rightframe">KEYCODE_TV_AUDIO_DESCRIPTION</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN" class="hiddenlink" target="rightframe">KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP" class="hiddenlink" target="rightframe">KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_CONTENTS_MENU -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_CONTENTS_MENU" class="hiddenlink" target="rightframe">KEYCODE_TV_CONTENTS_MENU</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_DATA_SERVICE -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_DATA_SERVICE" class="hiddenlink" target="rightframe">KEYCODE_TV_DATA_SERVICE</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_COMPONENT_1 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPONENT_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPONENT_1</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_COMPONENT_2 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPONENT_2" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPONENT_2</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_COMPOSITE_1 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPOSITE_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPOSITE_1</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_COMPOSITE_2 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPOSITE_2" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPOSITE_2</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_HDMI_1 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_1</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_HDMI_2 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_2" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_2</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_HDMI_3 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_3" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_3</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_HDMI_4 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_4" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_4</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_VGA_1 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_VGA_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_VGA_1</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_MEDIA_CONTEXT_MENU -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_MEDIA_CONTEXT_MENU" class="hiddenlink" target="rightframe">KEYCODE_TV_MEDIA_CONTEXT_MENU</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_NETWORK -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_NETWORK" class="hiddenlink" target="rightframe">KEYCODE_TV_NETWORK</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_NUMBER_ENTRY -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_NUMBER_ENTRY" class="hiddenlink" target="rightframe">KEYCODE_TV_NUMBER_ENTRY</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_RADIO_SERVICE -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_RADIO_SERVICE" class="hiddenlink" target="rightframe">KEYCODE_TV_RADIO_SERVICE</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_SATELLITE -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_SATELLITE_BS -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE_BS" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE_BS</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_SATELLITE_CS -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE_CS" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE_CS</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_SATELLITE_SERVICE -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE_SERVICE" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE_SERVICE</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_TELETEXT -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TELETEXT" class="hiddenlink" target="rightframe">KEYCODE_TV_TELETEXT</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_TERRESTRIAL_ANALOG -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TERRESTRIAL_ANALOG" class="hiddenlink" target="rightframe">KEYCODE_TV_TERRESTRIAL_ANALOG</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_TERRESTRIAL_DIGITAL -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TERRESTRIAL_DIGITAL" class="hiddenlink" target="rightframe">KEYCODE_TV_TERRESTRIAL_DIGITAL</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_TIMER_PROGRAMMING -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TIMER_PROGRAMMING" class="hiddenlink" target="rightframe">KEYCODE_TV_TIMER_PROGRAMMING</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_ZOOM_MODE -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_ZOOM_MODE" class="hiddenlink" target="rightframe">KEYCODE_TV_ZOOM_MODE</A>
+</nobr><br>
+<!-- Field KEYCODE_VOICE_ASSIST -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_VOICE_ASSIST" class="hiddenlink" target="rightframe">KEYCODE_VOICE_ASSIST</A>
+</nobr><br>
+<!-- Class KeyEvent -->
+<A HREF="android.view.KeyEvent.html" class="hiddenlink" target="rightframe">KeyEvent</A><br>
+<!-- Field KEYGUARD_DISABLE_FINGERPRINT -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_FINGERPRINT" class="hiddenlink" target="rightframe">KEYGUARD_DISABLE_FINGERPRINT</A>
+</nobr><br>
+<!-- Field KEYGUARD_DISABLE_SECURE_NOTIFICATIONS -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_SECURE_NOTIFICATIONS" class="hiddenlink" target="rightframe">KEYGUARD_DISABLE_SECURE_NOTIFICATIONS</A>
+</nobr><br>
+<!-- Field KEYGUARD_DISABLE_TRUST_AGENTS -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_TRUST_AGENTS" class="hiddenlink" target="rightframe">KEYGUARD_DISABLE_TRUST_AGENTS</A>
+</nobr><br>
+<!-- Field KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS" class="hiddenlink" target="rightframe">KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS</A>
+</nobr><br>
+<!-- Class KeyguardManager -->
+<A HREF="android.app.KeyguardManager.html" class="hiddenlink" target="rightframe">KeyguardManager</A><br>
+<!-- Method keySet -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.keySet_changed()" class="hiddenlink" target="rightframe">keySet
+()</A></nobr><br>
+<!-- Field L -->
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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="#X"><font size="-2">X</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.L" class="hiddenlink" target="rightframe">L</A>
+</nobr><br>
+<!-- Field label -->
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.label" class="hiddenlink" target="rightframe">label</A>
+</nobr><br>
+<!-- Field LAUNCHER_APPS_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.LAUNCHER_APPS_SERVICE" class="hiddenlink" target="rightframe">LAUNCHER_APPS_SERVICE</A>
+</nobr><br>
+<!-- Class LauncherActivityInfo -->
+<A HREF="pkg_android.content.pm.html#LauncherActivityInfo" class="hiddenlink" target="rightframe"><b>LauncherActivityInfo</b></A><br>
+<!-- Class LauncherApps -->
+<A HREF="pkg_android.content.pm.html#LauncherApps" class="hiddenlink" target="rightframe"><b>LauncherApps</b></A><br>
+<!-- Class LauncherApps.Callback -->
+<A HREF="pkg_android.content.pm.html#LauncherApps.Callback" class="hiddenlink" target="rightframe"><b>LauncherApps.Callback</b></A><br>
+<!-- Field launchTaskBehindSourceAnimation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.launchTaskBehindSourceAnimation" class="hiddenlink" target="rightframe">launchTaskBehindSourceAnimation</A>
+</nobr><br>
+<!-- Field launchTaskBehindTargetAnimation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.launchTaskBehindTargetAnimation" class="hiddenlink" target="rightframe">launchTaskBehindTargetAnimation</A>
+</nobr><br>
+<!-- Class LayerDrawable -->
+<A HREF="android.graphics.drawable.LayerDrawable.html" class="hiddenlink" target="rightframe">LayerDrawable</A><br>
+<!-- Class LayerRasterizer -->
+<A HREF="android.graphics.LayerRasterizer.html" class="hiddenlink" target="rightframe">LayerRasterizer</A><br>
+<!-- Field layout_columnWeight -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.layout_columnWeight" class="hiddenlink" target="rightframe">layout_columnWeight</A>
+</nobr><br>
+<!-- Field layout_rowWeight -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.layout_rowWeight" class="hiddenlink" target="rightframe">layout_rowWeight</A>
+</nobr><br>
+<!-- Field letterSpacing -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.letterSpacing" class="hiddenlink" target="rightframe">letterSpacing</A>
+</nobr><br>
+<!-- Field linear_out_slow_in -->
+<nobr><A HREF="android.R.interpolator.html#android.R.interpolator.linear_out_slow_in" class="hiddenlink" target="rightframe">linear_out_slow_in</A>
+</nobr><br>
+<!-- Class LinearLayout -->
+<i>LinearLayout</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.LinearLayout.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor LinearLayout -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.LinearLayout.html#android.widget.LinearLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>LinearLayout</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class LinkAddress -->
+<A HREF="pkg_android.net.html#LinkAddress" class="hiddenlink" target="rightframe"><b>LinkAddress</b></A><br>
+<!-- Class LinkedTransferQueue -->
+<A HREF="pkg_java.util.concurrent.html#LinkedTransferQueue" class="hiddenlink" target="rightframe"><b>LinkedTransferQueue</b></A><br>
+<!-- Class LinkProperties -->
+<A HREF="pkg_android.net.html#LinkProperties" class="hiddenlink" target="rightframe"><b>LinkProperties</b></A><br>
+<!-- Class ListPreference -->
+<i>ListPreference</i><br>
+&nbsp;&nbsp;<A HREF="android.preference.ListPreference.html" class="hiddenlink" target="rightframe">android.preference</A><br>
+<!-- Constructor ListPreference -->
+&nbsp;&nbsp;<nobr><A HREF="android.preference.ListPreference.html#android.preference.ListPreference.ctor_added(android.content.Context, android.util.AttributeSet, int)" class="hiddenlink" target="rightframe"><b>ListPreference</b>
+(<code>Context, AttributeSet, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor ListPreference -->
+&nbsp;&nbsp;<nobr><A HREF="android.preference.ListPreference.html#android.preference.ListPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ListPreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class ListView -->
+<i>ListView</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.ListView.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor ListView -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.ListView.html#android.widget.ListView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ListView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Method loadIcon -->
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadIcon_added(android.content.Context, int)" class="hiddenlink" target="rightframe"><b>loadIcon</b>
+(<code>Context, int</code>)</A></nobr><br>
+<!-- Method loadLabel -->
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadLabel_added(android.content.pm.PackageManager)" class="hiddenlink" target="rightframe"><b>loadLabel</b>
+(<code>PackageManager</code>)</A></nobr><br>
+<!-- Method loadPreviewImage -->
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadPreviewImage_added(android.content.Context, int)" class="hiddenlink" target="rightframe"><b>loadPreviewImage</b>
+(<code>Context, int</code>)</A></nobr><br>
+<!-- Method loadStateListAnimator -->
+<nobr><A HREF="android.animation.AnimatorInflater.html#android.animation.AnimatorInflater.loadStateListAnimator_added(android.content.Context, int)" class="hiddenlink" target="rightframe"><b>loadStateListAnimator</b>
+(<code>Context, int</code>)</A></nobr><br>
+<!-- Class Locale -->
+<A HREF="java.util.Locale.html" class="hiddenlink" target="rightframe">Locale</A><br>
+<!-- Class Locale.Builder -->
+<A HREF="pkg_java.util.html#Locale.Builder" class="hiddenlink" target="rightframe"><b>Locale.Builder</b></A><br>
+<!-- Field LOCCRC -->
+<i>LOCCRC</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field LOCCRC -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field LOCCRC -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field LOCCRC -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field LOCEXT -->
+<i>LOCEXT</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field LOCEXT -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field LOCEXT -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field LOCEXT -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field LOCFLG -->
+<i>LOCFLG</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field LOCFLG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field LOCFLG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field LOCFLG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field LOCHDR -->
+<i>LOCHDR</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field LOCHDR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field LOCHDR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field LOCHDR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field LOCHOW -->
+<i>LOCHOW</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field LOCHOW -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field LOCHOW -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field LOCHOW -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field LOCLEN -->
+<i>LOCLEN</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field LOCLEN -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field LOCLEN -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field LOCLEN -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field LOCNAM -->
+<i>LOCNAM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field LOCNAM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field LOCNAM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field LOCNAM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field LOCSIG -->
+<i>LOCSIG</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field LOCSIG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field LOCSIG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field LOCSIG -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field LOCSIZ -->
+<i>LOCSIZ</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field LOCSIZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field LOCSIZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field LOCSIZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field LOCTIM -->
+<i>LOCTIM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field LOCTIM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field LOCTIM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field LOCTIM -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field LOCVER -->
+<i>LOCVER</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCVER" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<!-- Field LOCVER -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCVER" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<!-- Field LOCVER -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCVER" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<!-- Field LOCVER -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCVER" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<!-- Field LOGTAG -->
+<nobr><A HREF="android.webkit.CookieSyncManager.html#android.webkit.CookieSyncManager.LOGTAG" class="hiddenlink" target="rightframe">LOGTAG</A>
+</nobr><br>
+<!-- Field LOLLIPOP -->
+<nobr><A HREF="android.os.Build.VERSION_CODES.html#android.os.Build.VERSION_CODES.LOLLIPOP" class="hiddenlink" target="rightframe">LOLLIPOP</A>
+</nobr><br>
+<!-- Class LruCache -->
+<A HREF="android.util.LruCache.html" class="hiddenlink" target="rightframe">LruCache</A><br>
+<!-- Method makeSceneTransitionAnimation -->
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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="#X"><font size="-2">X</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>makeSceneTransitionAnimation</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActivityOptions.html#android.app.ActivityOptions.makeSceneTransitionAnimation_added(android.app.Activity, android.util.Pair<android.view.View, java.lang.String>...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Activity, Pair&lt;View, String&gt;</code>)</b>&nbsp;in&nbsp;android.app.ActivityOptions
+</A></nobr><br>
+<!-- Method makeSceneTransitionAnimation -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActivityOptions.html#android.app.ActivityOptions.makeSceneTransitionAnimation_added(android.app.Activity, android.view.View, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Activity, View, String</code>)</b>&nbsp;in&nbsp;android.app.ActivityOptions
+</A></nobr><br>
+<!-- Method makeTaskLaunchBehind -->
+<nobr><A HREF="android.app.ActivityOptions.html#android.app.ActivityOptions.makeTaskLaunchBehind_added()" class="hiddenlink" target="rightframe"><b>makeTaskLaunchBehind</b>
+()</A></nobr><br>
+<!-- Class Manifest.permission -->
+<A HREF="android.Manifest.permission.html" class="hiddenlink" target="rightframe">Manifest.permission</A><br>
+<!-- Field mask -->
+<nobr><A HREF="android.R.id.html#android.R.id.mask" class="hiddenlink" target="rightframe">mask</A>
+</nobr><br>
+<!-- Field MATCH_ID -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.MATCH_ID" class="hiddenlink" target="rightframe">MATCH_ID</A>
+</nobr><br>
+<!-- Field MATCH_INSTANCE -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.MATCH_INSTANCE" class="hiddenlink" target="rightframe">MATCH_INSTANCE</A>
+</nobr><br>
+<!-- Field MATCH_ITEM_ID -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.MATCH_ITEM_ID" class="hiddenlink" target="rightframe">MATCH_ITEM_ID</A>
+</nobr><br>
+<!-- Field MATCH_NAME -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.MATCH_NAME" class="hiddenlink" target="rightframe">MATCH_NAME</A>
+</nobr><br>
+<!-- Field matchOrder -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.matchOrder" class="hiddenlink" target="rightframe">matchOrder</A>
+</nobr><br>
+<!-- Class Matrix -->
+<A HREF="android.graphics.Matrix.html" class="hiddenlink" target="rightframe">Matrix</A><br>
+<!-- Field MAX_ITEMS -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.MAX_ITEMS" class="hiddenlink" target="rightframe">MAX_ITEMS</A>
+</nobr><br>
+<!-- Field maximumAngle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.maximumAngle" class="hiddenlink" target="rightframe">maximumAngle</A>
+</nobr><br>
+<!-- Field maxRecents -->
+<i>maxRecents</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.maxRecents" class="hiddenlink" target="rightframe">android.R.attr</A>
+</nobr><br>
+<!-- Field maxRecents -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.maxRecents" class="hiddenlink" target="rightframe">android.content.pm.ActivityInfo</A>
+</nobr><br>
+<!-- Field mDataBase -->
+<nobr><A HREF="android.webkit.CookieSyncManager.html#android.webkit.CookieSyncManager.mDataBase" class="hiddenlink" target="rightframe">mDataBase</A>
+</nobr><br>
+<!-- Field MEDIA_PROJECTION_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.MEDIA_PROJECTION_SERVICE" class="hiddenlink" target="rightframe">MEDIA_PROJECTION_SERVICE</A>
+</nobr><br>
+<!-- Field MEDIA_SESSION_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.MEDIA_SESSION_SERVICE" class="hiddenlink" target="rightframe">MEDIA_SESSION_SERVICE</A>
+</nobr><br>
+<!-- Field MEDIA_TRACK_TYPE_SUBTITLE -->
+<nobr><A HREF="android.media.MediaPlayer.TrackInfo.html#android.media.MediaPlayer.TrackInfo.MEDIA_TRACK_TYPE_SUBTITLE" class="hiddenlink" target="rightframe">MEDIA_TRACK_TYPE_SUBTITLE</A>
+</nobr><br>
+<!-- Class MediaCodec -->
+<A HREF="android.media.MediaCodec.html" class="hiddenlink" target="rightframe">MediaCodec</A><br>
+<!-- Class MediaCodec.Callback -->
+<A HREF="pkg_android.media.html#MediaCodec.Callback" class="hiddenlink" target="rightframe"><b>MediaCodec.Callback</b></A><br>
+<!-- Class MediaCodec.CodecException -->
+<A HREF="pkg_android.media.html#MediaCodec.CodecException" class="hiddenlink" target="rightframe"><b>MediaCodec.CodecException</b></A><br>
+<!-- Class MediaCodec.CryptoException -->
+<A HREF="android.media.MediaCodec.CryptoException.html" class="hiddenlink" target="rightframe">MediaCodec.CryptoException</A><br>
+<!-- Class MediaCodecInfo.AudioCapabilities -->
+<A HREF="pkg_android.media.html#MediaCodecInfo.AudioCapabilities" class="hiddenlink" target="rightframe"><b>MediaCodecInfo.AudioCapabilities</b></A><br>
+<!-- Class MediaCodecInfo.CodecCapabilities -->
+<A HREF="android.media.MediaCodecInfo.CodecCapabilities.html" class="hiddenlink" target="rightframe">MediaCodecInfo.CodecCapabilities</A><br>
+<!-- Class MediaCodecInfo.CodecProfileLevel -->
+<A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html" class="hiddenlink" target="rightframe">MediaCodecInfo.CodecProfileLevel</A><br>
+<!-- Class MediaCodecInfo.EncoderCapabilities -->
+<A HREF="pkg_android.media.html#MediaCodecInfo.EncoderCapabilities" class="hiddenlink" target="rightframe"><b>MediaCodecInfo.EncoderCapabilities</b></A><br>
+<!-- Class MediaCodecInfo.VideoCapabilities -->
+<A HREF="pkg_android.media.html#MediaCodecInfo.VideoCapabilities" class="hiddenlink" target="rightframe"><b>MediaCodecInfo.VideoCapabilities</b></A><br>
+<!-- Class MediaCodecList -->
+<i>MediaCodecList</i><br>
+&nbsp;&nbsp;<A HREF="android.media.MediaCodecList.html" class="hiddenlink" target="rightframe">android.media</A><br>
+<!-- Constructor MediaCodecList -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.ctor_added(int)" class="hiddenlink" target="rightframe"><b>MediaCodecList</b>
+(<code>int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class MediaDescription -->
+<A HREF="pkg_android.media.html#MediaDescription" class="hiddenlink" target="rightframe"><b>MediaDescription</b></A><br>
+<!-- Class MediaDescription.Builder -->
+<A HREF="pkg_android.media.html#MediaDescription.Builder" class="hiddenlink" target="rightframe"><b>MediaDescription.Builder</b></A><br>
+<!-- Class MediaDrm -->
+<A HREF="android.media.MediaDrm.html" class="hiddenlink" target="rightframe">MediaDrm</A><br>
+<!-- Class MediaDrm.MediaDrmStateException -->
+<A HREF="pkg_android.media.html#MediaDrm.MediaDrmStateException" class="hiddenlink" target="rightframe"><b>MediaDrm.MediaDrmStateException</b></A><br>
+<!-- Class MediaFormat -->
+<A HREF="android.media.MediaFormat.html" class="hiddenlink" target="rightframe">MediaFormat</A><br>
+<!-- Class MediaMetadata -->
+<A HREF="pkg_android.media.html#MediaMetadata" class="hiddenlink" target="rightframe"><b>MediaMetadata</b></A><br>
+<!-- Class MediaMetadata.Builder -->
+<A HREF="pkg_android.media.html#MediaMetadata.Builder" class="hiddenlink" target="rightframe"><b>MediaMetadata.Builder</b></A><br>
+<!-- Class MediaMetadataEditor -->
+<A HREF="android.media.MediaMetadataEditor.html" class="hiddenlink" target="rightframe">MediaMetadataEditor</A><br>
+<!-- Class MediaMuxer.OutputFormat -->
+<A HREF="android.media.MediaMuxer.OutputFormat.html" class="hiddenlink" target="rightframe">MediaMuxer.OutputFormat</A><br>
+<!-- Class MediaPlayer -->
+<A HREF="android.media.MediaPlayer.html" class="hiddenlink" target="rightframe">MediaPlayer</A><br>
+<!-- Class MediaPlayer.TrackInfo -->
+<A HREF="android.media.MediaPlayer.TrackInfo.html" class="hiddenlink" target="rightframe">MediaPlayer.TrackInfo</A><br>
+<!-- Class MediaRecorder -->
+<A HREF="android.media.MediaRecorder.html" class="hiddenlink" target="rightframe">MediaRecorder</A><br>
+<!-- Class MediaRecorder.AudioEncoder -->
+<A HREF="android.media.MediaRecorder.AudioEncoder.html" class="hiddenlink" target="rightframe">MediaRecorder.AudioEncoder</A><br>
+<!-- Class MediaRecorder.OutputFormat -->
+<A HREF="android.media.MediaRecorder.OutputFormat.html" class="hiddenlink" target="rightframe">MediaRecorder.OutputFormat</A><br>
+<!-- Class MediaRecorder.VideoEncoder -->
+<A HREF="android.media.MediaRecorder.VideoEncoder.html" class="hiddenlink" target="rightframe">MediaRecorder.VideoEncoder</A><br>
+<!-- Class MediaRecorder.VideoSource -->
+<A HREF="android.media.MediaRecorder.VideoSource.html" class="hiddenlink" target="rightframe">MediaRecorder.VideoSource</A><br>
+<!-- Class MediaRouteButton -->
+<i>MediaRouteButton</i><br>
+&nbsp;&nbsp;<A HREF="android.app.MediaRouteButton.html" class="hiddenlink" target="rightframe">android.app</A><br>
+<!-- Constructor MediaRouteButton -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.MediaRouteButton.html#android.app.MediaRouteButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>MediaRouteButton</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class MediaStore -->
+<A HREF="android.provider.MediaStore.html" class="hiddenlink" target="rightframe">MediaStore</A><br>
+<!-- Class MediaStore.Audio.Media -->
+<A HREF="android.provider.MediaStore.Audio.Media.html" class="hiddenlink" target="rightframe">MediaStore.Audio.Media</A><br>
+<!-- Class MediaStore.Audio.Radio -->
+<A HREF="pkg_android.provider.html#MediaStore.Audio.Radio" class="hiddenlink" target="rightframe"><b>MediaStore.Audio.Radio</b></A><br>
+<!-- Class Message -->
+<A HREF="android.os.Message.html" class="hiddenlink" target="rightframe">Message</A><br>
+<!-- Field MESSAGE_BOX_FAILED -->
+<nobr><A HREF="android.provider.Telephony.BaseMmsColumns.html#android.provider.Telephony.BaseMmsColumns.MESSAGE_BOX_FAILED" class="hiddenlink" target="rightframe">MESSAGE_BOX_FAILED</A>
+</nobr><br>
+<!-- Field mHandler -->
+<nobr><A HREF="android.webkit.CookieSyncManager.html#android.webkit.CookieSyncManager.mHandler" class="hiddenlink" target="rightframe">mHandler</A>
+</nobr><br>
+<!-- Field MIME_TYPE_PROVISIONING_NFC -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.MIME_TYPE_PROVISIONING_NFC" class="hiddenlink" target="rightframe">MIME_TYPE_PROVISIONING_NFC</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_AAC -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AAC" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AAC</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_AC3 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AC3" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AC3</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_AMR_NB -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AMR_NB" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AMR_NB</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_AMR_WB -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AMR_WB" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AMR_WB</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_FLAC -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_FLAC" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_FLAC</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_G711_ALAW -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_G711_ALAW" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_G711_ALAW</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_G711_MLAW -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_G711_MLAW" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_G711_MLAW</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_MPEG -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_MPEG" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_MPEG</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_MSGSM -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_MSGSM" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_MSGSM</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_OPUS -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_OPUS" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_OPUS</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_QCELP -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_QCELP" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_QCELP</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_RAW -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_RAW" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_RAW</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_VORBIS -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_VORBIS" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_VORBIS</A>
+</nobr><br>
+<!-- Field MIMETYPE_TEXT_CEA_608 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_TEXT_CEA_608" class="hiddenlink" target="rightframe">MIMETYPE_TEXT_CEA_608</A>
+</nobr><br>
+<!-- Field MIMETYPE_TEXT_VTT -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_TEXT_VTT" class="hiddenlink" target="rightframe">MIMETYPE_TEXT_VTT</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_AVC -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_AVC" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_AVC</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_H263 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_H263" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_H263</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_HEVC -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_HEVC" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_HEVC</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_MPEG2 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_MPEG2" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_MPEG2</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_MPEG4 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_MPEG4" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_MPEG4</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_RAW -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_RAW" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_RAW</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_VP8 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_VP8" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_VP8</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_VP9 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_VP9" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_VP9</A>
+</nobr><br>
+<!-- Field minimumHorizontalAngle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.minimumHorizontalAngle" class="hiddenlink" target="rightframe">minimumHorizontalAngle</A>
+</nobr><br>
+<!-- Field minimumVerticalAngle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.minimumVerticalAngle" class="hiddenlink" target="rightframe">minimumVerticalAngle</A>
+</nobr><br>
+<!-- Field MIXED_CONTENT_ALWAYS_ALLOW -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.MIXED_CONTENT_ALWAYS_ALLOW" class="hiddenlink" target="rightframe">MIXED_CONTENT_ALWAYS_ALLOW</A>
+</nobr><br>
+<!-- Field MIXED_CONTENT_COMPATIBILITY_MODE -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.MIXED_CONTENT_COMPATIBILITY_MODE" class="hiddenlink" target="rightframe">MIXED_CONTENT_COMPATIBILITY_MODE</A>
+</nobr><br>
+<!-- Field MIXED_CONTENT_NEVER_ALLOW -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.MIXED_CONTENT_NEVER_ALLOW" class="hiddenlink" target="rightframe">MIXED_CONTENT_NEVER_ALLOW</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_ALIAS_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALIAS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_ALIAS_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_ALIAS_MAX_CHARS -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALIAS_MAX_CHARS" class="hiddenlink" target="rightframe">MMS_CONFIG_ALIAS_MAX_CHARS</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_ALIAS_MIN_CHARS -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALIAS_MIN_CHARS" class="hiddenlink" target="rightframe">MMS_CONFIG_ALIAS_MIN_CHARS</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_ALLOW_ATTACH_AUDIO -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALLOW_ATTACH_AUDIO" class="hiddenlink" target="rightframe">MMS_CONFIG_ALLOW_ATTACH_AUDIO</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_APPEND_TRANSACTION_ID -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_APPEND_TRANSACTION_ID" class="hiddenlink" target="rightframe">MMS_CONFIG_APPEND_TRANSACTION_ID</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_EMAIL_GATEWAY_NUMBER -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_EMAIL_GATEWAY_NUMBER" class="hiddenlink" target="rightframe">MMS_CONFIG_EMAIL_GATEWAY_NUMBER</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_GROUP_MMS_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_GROUP_MMS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_GROUP_MMS_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_HTTP_PARAMS -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_HTTP_PARAMS" class="hiddenlink" target="rightframe">MMS_CONFIG_HTTP_PARAMS</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_HTTP_SOCKET_TIMEOUT -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_HTTP_SOCKET_TIMEOUT" class="hiddenlink" target="rightframe">MMS_CONFIG_HTTP_SOCKET_TIMEOUT</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MAX_IMAGE_HEIGHT -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MAX_IMAGE_HEIGHT" class="hiddenlink" target="rightframe">MMS_CONFIG_MAX_IMAGE_HEIGHT</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MAX_IMAGE_WIDTH -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MAX_IMAGE_WIDTH" class="hiddenlink" target="rightframe">MMS_CONFIG_MAX_IMAGE_WIDTH</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MAX_MESSAGE_SIZE -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MAX_MESSAGE_SIZE" class="hiddenlink" target="rightframe">MMS_CONFIG_MAX_MESSAGE_SIZE</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE" class="hiddenlink" target="rightframe">MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MMS_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MMS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MMS_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MMS_READ_REPORT_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MMS_READ_REPORT_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MMS_READ_REPORT_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MULTIPART_SMS_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MULTIPART_SMS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MULTIPART_SMS_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_NAI_SUFFIX -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_NAI_SUFFIX" class="hiddenlink" target="rightframe">MMS_CONFIG_NAI_SUFFIX</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_RECIPIENT_LIMIT -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_RECIPIENT_LIMIT" class="hiddenlink" target="rightframe">MMS_CONFIG_RECIPIENT_LIMIT</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES" class="hiddenlink" target="rightframe">MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD" class="hiddenlink" target="rightframe">MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD" class="hiddenlink" target="rightframe">MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_SUBJECT_MAX_LENGTH -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SUBJECT_MAX_LENGTH" class="hiddenlink" target="rightframe">MMS_CONFIG_SUBJECT_MAX_LENGTH</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION" class="hiddenlink" target="rightframe">MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_UA_PROF_TAG_NAME -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_UA_PROF_TAG_NAME" class="hiddenlink" target="rightframe">MMS_CONFIG_UA_PROF_TAG_NAME</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_UA_PROF_URL -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_UA_PROF_URL" class="hiddenlink" target="rightframe">MMS_CONFIG_UA_PROF_URL</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_USER_AGENT -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_USER_AGENT" class="hiddenlink" target="rightframe">MMS_CONFIG_USER_AGENT</A>
+</nobr><br>
+<!-- Field MMS_ERROR_CONFIGURATION_ERROR -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_CONFIGURATION_ERROR" class="hiddenlink" target="rightframe">MMS_ERROR_CONFIGURATION_ERROR</A>
+</nobr><br>
+<!-- Field MMS_ERROR_HTTP_FAILURE -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_HTTP_FAILURE" class="hiddenlink" target="rightframe">MMS_ERROR_HTTP_FAILURE</A>
+</nobr><br>
+<!-- Field MMS_ERROR_INVALID_APN -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_INVALID_APN" class="hiddenlink" target="rightframe">MMS_ERROR_INVALID_APN</A>
+</nobr><br>
+<!-- Field MMS_ERROR_IO_ERROR -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_IO_ERROR" class="hiddenlink" target="rightframe">MMS_ERROR_IO_ERROR</A>
+</nobr><br>
+<!-- Field MMS_ERROR_RETRY -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_RETRY" class="hiddenlink" target="rightframe">MMS_ERROR_RETRY</A>
+</nobr><br>
+<!-- Field MMS_ERROR_UNABLE_CONNECT_MMS -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_UNABLE_CONNECT_MMS" class="hiddenlink" target="rightframe">MMS_ERROR_UNABLE_CONNECT_MMS</A>
+</nobr><br>
+<!-- Field MMS_ERROR_UNSPECIFIED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_UNSPECIFIED" class="hiddenlink" target="rightframe">MMS_ERROR_UNSPECIFIED</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>
+<!-- Field MODE_DEFAULT -->
+<nobr><A HREF="android.app.AppOpsManager.html#android.app.AppOpsManager.MODE_DEFAULT" class="hiddenlink" target="rightframe">MODE_DEFAULT</A>
+</nobr><br>
+<!-- Field MODE_IN -->
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.MODE_IN" class="hiddenlink" target="rightframe">MODE_IN</A>
+</nobr><br>
+<!-- Field MODE_OUT -->
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.MODE_OUT" class="hiddenlink" target="rightframe">MODE_OUT</A>
+</nobr><br>
+<!-- Class MotionEvent -->
+<A HREF="android.view.MotionEvent.html" class="hiddenlink" target="rightframe">MotionEvent</A><br>
+<!-- Field multiArch -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.multiArch" class="hiddenlink" target="rightframe">multiArch</A>
+</nobr><br>
+<!-- Class MultiAutoCompleteTextView -->
+<i>MultiAutoCompleteTextView</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.MultiAutoCompleteTextView.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor MultiAutoCompleteTextView -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.MultiAutoCompleteTextView.html#android.widget.MultiAutoCompleteTextView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>MultiAutoCompleteTextView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class MultiSelectListPreference -->
+<i>MultiSelectListPreference</i><br>
+&nbsp;&nbsp;<A HREF="android.preference.MultiSelectListPreference.html" class="hiddenlink" target="rightframe">android.preference</A><br>
+<!-- Constructor MultiSelectListPreference -->
+&nbsp;&nbsp;<nobr><A HREF="android.preference.MultiSelectListPreference.html#android.preference.MultiSelectListPreference.ctor_added(android.content.Context, android.util.AttributeSet, int)" class="hiddenlink" target="rightframe"><b>MultiSelectListPreference</b>
+(<code>Context, AttributeSet, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor MultiSelectListPreference -->
+&nbsp;&nbsp;<nobr><A HREF="android.preference.MultiSelectListPreference.html#android.preference.MultiSelectListPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>MultiSelectListPreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class MutableBoolean -->
+<A HREF="pkg_android.util.html#MutableBoolean" class="hiddenlink" target="rightframe"><b>MutableBoolean</b></A><br>
+<!-- Class MutableByte -->
+<A HREF="pkg_android.util.html#MutableByte" class="hiddenlink" target="rightframe"><b>MutableByte</b></A><br>
+<!-- Class MutableChar -->
+<A HREF="pkg_android.util.html#MutableChar" class="hiddenlink" target="rightframe"><b>MutableChar</b></A><br>
+<!-- Class MutableDouble -->
+<A HREF="pkg_android.util.html#MutableDouble" class="hiddenlink" target="rightframe"><b>MutableDouble</b></A><br>
+<!-- Class MutableFloat -->
+<A HREF="pkg_android.util.html#MutableFloat" class="hiddenlink" target="rightframe"><b>MutableFloat</b></A><br>
+<!-- Class MutableInt -->
+<A HREF="pkg_android.util.html#MutableInt" class="hiddenlink" target="rightframe"><b>MutableInt</b></A><br>
+<!-- Class MutableLong -->
+<A HREF="pkg_android.util.html#MutableLong" class="hiddenlink" target="rightframe"><b>MutableLong</b></A><br>
+<!-- Class MutableShort -->
+<A HREF="pkg_android.util.html#MutableShort" class="hiddenlink" target="rightframe"><b>MutableShort</b></A><br>
+<!-- Field MUXER_OUTPUT_WEBM -->
+<nobr><A HREF="android.media.MediaMuxer.OutputFormat.html#android.media.MediaMuxer.OutputFormat.MUXER_OUTPUT_WEBM" class="hiddenlink" target="rightframe">MUXER_OUTPUT_WEBM</A>
+</nobr><br>
+<!-- Field NAME_RAW_CONTACT_ID -->
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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="#X"><font size="-2">X</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.ContactsContract.ContactsColumns.html#android.provider.ContactsContract.ContactsColumns.NAME_RAW_CONTACT_ID" class="hiddenlink" target="rightframe">NAME_RAW_CONTACT_ID</A>
+</nobr><br>
+<!-- Field NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME" class="hiddenlink" target="rightframe">NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME</A>
+</nobr><br>
+<!-- Field NAVIGATION_MODE_LIST -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.NAVIGATION_MODE_LIST" class="hiddenlink" target="rightframe">NAVIGATION_MODE_LIST</A>
+</nobr><br>
+<!-- Field NAVIGATION_MODE_STANDARD -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.NAVIGATION_MODE_STANDARD" class="hiddenlink" target="rightframe">NAVIGATION_MODE_STANDARD</A>
+</nobr><br>
+<!-- Field NAVIGATION_MODE_TABS -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.NAVIGATION_MODE_TABS" class="hiddenlink" target="rightframe">NAVIGATION_MODE_TABS</A>
+</nobr><br>
+<!-- Field navigationBarBackground -->
+<nobr><A HREF="android.R.id.html#android.R.id.navigationBarBackground" class="hiddenlink" target="rightframe">navigationBarBackground</A>
+</nobr><br>
+<!-- Field navigationBarColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.navigationBarColor" class="hiddenlink" target="rightframe">navigationBarColor</A>
+</nobr><br>
+<!-- Field navigationContentDescription -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.navigationContentDescription" class="hiddenlink" target="rightframe">navigationContentDescription</A>
+</nobr><br>
+<!-- Field navigationIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.navigationIcon" class="hiddenlink" target="rightframe">navigationIcon</A>
+</nobr><br>
+<!-- Class NdefRecord -->
+<A HREF="android.nfc.NdefRecord.html" class="hiddenlink" target="rightframe">NdefRecord</A><br>
+<!-- Field nestedScrollingEnabled -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.nestedScrollingEnabled" class="hiddenlink" target="rightframe">nestedScrollingEnabled</A>
+</nobr><br>
+<!-- Class Network -->
+<A HREF="pkg_android.net.html#Network" class="hiddenlink" target="rightframe"><b>Network</b></A><br>
+<!-- Class NetworkCapabilities -->
+<A HREF="pkg_android.net.html#NetworkCapabilities" class="hiddenlink" target="rightframe"><b>NetworkCapabilities</b></A><br>
+<!-- Class NetworkRequest -->
+<A HREF="pkg_android.net.html#NetworkRequest" class="hiddenlink" target="rightframe"><b>NetworkRequest</b></A><br>
+<!-- Class NetworkRequest.Builder -->
+<A HREF="pkg_android.net.html#NetworkRequest.Builder" class="hiddenlink" target="rightframe"><b>NetworkRequest.Builder</b></A><br>
+<!-- Method newDrawable -->
+<nobr><A HREF="android.graphics.drawable.Drawable.ConstantState.html#android.graphics.drawable.Drawable.ConstantState.newDrawable_added(android.content.res.Resources, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>newDrawable</b>
+(<code>Resources, Theme</code>)</A></nobr><br>
+<!-- Method newTab -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.newTab_changed()" class="hiddenlink" target="rightframe">newTab
+()</A></nobr><br>
+<!-- Field NEXT_ALARM_FORMATTED -->
+<nobr><A HREF="android.provider.Settings.System.html#android.provider.Settings.System.NEXT_ALARM_FORMATTED" class="hiddenlink" target="rightframe">NEXT_ALARM_FORMATTED</A>
+</nobr><br>
+<!-- Class NfcAdapter -->
+<A HREF="android.nfc.NfcAdapter.html" class="hiddenlink" target="rightframe">NfcAdapter</A><br>
+<!-- Method normalizeNumber -->
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.normalizeNumber_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>normalizeNumber</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Class Notification -->
+<A HREF="android.app.Notification.html" class="hiddenlink" target="rightframe">Notification</A><br>
+<!-- Class Notification.Builder -->
+<A HREF="android.app.Notification.Builder.html" class="hiddenlink" target="rightframe">Notification.Builder</A><br>
+<!-- Class Notification.MediaStyle -->
+<A HREF="pkg_android.app.html#Notification.MediaStyle" class="hiddenlink" target="rightframe"><b>Notification.MediaStyle</b></A><br>
+<!-- Class NotificationListenerService -->
+<A HREF="android.service.notification.NotificationListenerService.html" class="hiddenlink" target="rightframe">NotificationListenerService</A><br>
+<!-- Class NotificationListenerService.Ranking -->
+<A HREF="pkg_android.service.notification.html#NotificationListenerService.Ranking" class="hiddenlink" target="rightframe"><b>NotificationListenerService.Ranking</b></A><br>
+<!-- Class NotificationListenerService.RankingMap -->
+<A HREF="pkg_android.service.notification.html#NotificationListenerService.RankingMap" class="hiddenlink" target="rightframe"><b>NotificationListenerService.RankingMap</b></A><br>
+<!-- Class NsdServiceInfo -->
+<A HREF="android.net.nsd.NsdServiceInfo.html" class="hiddenlink" target="rightframe">NsdServiceInfo</A><br>
+<!-- Class NumberPicker -->
+<i>NumberPicker</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.NumberPicker.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor NumberPicker -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.NumberPicker.html#android.widget.NumberPicker.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>NumberPicker</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field numbersBackgroundColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.numbersBackgroundColor" class="hiddenlink" target="rightframe">numbersBackgroundColor</A>
+</nobr><br>
+<!-- Field numbersSelectorColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.numbersSelectorColor" class="hiddenlink" target="rightframe">numbersSelectorColor</A>
+</nobr><br>
+<!-- Field numbersTextColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.numbersTextColor" class="hiddenlink" target="rightframe">numbersTextColor</A>
+</nobr><br>
+<!-- Class ObjectAnimator -->
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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="#X"><font size="-2">X</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.animation.ObjectAnimator.html" class="hiddenlink" target="rightframe">ObjectAnimator</A><br>
+<!-- Method obtain -->
+<i>obtain</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.obtain_removed(int)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>int</code>)</strike>&nbsp;in&nbsp;android.os.Parcel
+</A></nobr><br>
+<!-- Method obtain -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.obtain_added(int, int, boolean, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, boolean, int</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo.CollectionInfo
+</A></nobr><br>
+<!-- Method obtain -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.obtain_added(int, int, int, int, boolean, boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, int, int, boolean, boolean</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo
+</A></nobr><br>
+<!-- Method ofArgb -->
+<i>ofArgb</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofArgb_added(T, android.util.Property<T, java.lang.Integer>, int...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, Property&lt;T, Integer&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofArgb -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofArgb_added(java.lang.Object, java.lang.String, int...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, </code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofArgb -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ValueAnimator.html#android.animation.ValueAnimator.ofArgb_added(int...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.animation.ValueAnimator
+</A></nobr><br>
+<!-- Method ofFloat -->
+<i>ofFloat</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofFloat_added(T, android.util.Property<T, java.lang.Float>, android.util.Property<T, java.lang.Float>, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, Property&lt;T, Float&gt;, Property&lt;T, Float&gt;, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofFloat -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofFloat_added(java.lang.Object, java.lang.String, java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, String, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofInt -->
+<i>ofInt</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofInt_added(T, android.util.Property<T, java.lang.Integer>, android.util.Property<T, java.lang.Integer>, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, Property&lt;T, Integer&gt;, Property&lt;T, Integer&gt;, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofInt -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofInt_added(java.lang.Object, java.lang.String, java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, String, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofMultiFloat -->
+<i>ofMultiFloat</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiFloat_added(java.lang.Object, java.lang.String, android.animation.TypeConverter<T, float[]>, android.animation.TypeEvaluator<T>, T...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, TypeConverter&lt;T, float[]&gt;, TypeEvaluator&lt;T&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofMultiFloat -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiFloat_added(java.lang.Object, java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofMultiFloat -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiFloat_added(java.lang.Object, java.lang.String, float[][])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, float[][]</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofMultiFloat -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, android.animation.TypeConverter<T, float[]>, android.animation.TypeEvaluator<T>, android.animation.Keyframe...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, TypeConverter&lt;T, float[]&gt;, TypeEvaluator&lt;T&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<!-- Method ofMultiFloat -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, android.animation.TypeConverter<V, float[]>, android.animation.TypeEvaluator<V>, V...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, TypeConverter&lt;V, float[]&gt;, TypeEvaluator&lt;V&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<!-- Method ofMultiFloat -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, Path</code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<!-- Method ofMultiFloat -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, float[][])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, float[][]</code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<!-- Method ofMultiInt -->
+<i>ofMultiInt</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiInt_added(java.lang.Object, java.lang.String, android.animation.TypeConverter<T, int[]>, android.animation.TypeEvaluator<T>, T...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, TypeConverter&lt;T, int[]&gt;, TypeEvaluator&lt;T&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofMultiInt -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiInt_added(java.lang.Object, java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofMultiInt -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiInt_added(java.lang.Object, java.lang.String, int[][])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, int[][]</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofMultiInt -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, android.animation.TypeConverter<T, int[]>, android.animation.TypeEvaluator<T>, android.animation.Keyframe...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, TypeConverter&lt;T, int[]&gt;, TypeEvaluator&lt;T&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<!-- Method ofMultiInt -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, android.animation.TypeConverter<V, int[]>, android.animation.TypeEvaluator<V>, V...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, TypeConverter&lt;V, int[]&gt;, TypeEvaluator&lt;V&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<!-- Method ofMultiInt -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, Path</code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<!-- Method ofMultiInt -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, int[][])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, int[][]</code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<!-- Method ofObject -->
+<i>ofObject</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofObject_added(T, android.util.Property<T, P>, android.animation.TypeConverter<V, P>, android.animation.TypeEvaluator<V>, V...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, Property&lt;T, P&gt;, TypeConverter&lt;V, P&gt;, TypeEvaluator&lt;V&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofObject -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofObject_added(T, android.util.Property<T, V>, android.animation.TypeConverter<android.graphics.PointF, V>, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, Property&lt;T, V&gt;, TypeConverter&lt;PointF, V&gt;, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofObject -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofObject_added(java.lang.Object, java.lang.String, android.animation.TypeConverter<android.graphics.PointF, ?>, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, TypeConverter&lt;PointF, ?&gt;, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<!-- Method ofObject -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofObject_added(android.util.Property<?, V>, android.animation.TypeConverter<T, V>, android.animation.TypeEvaluator<T>, T...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Property&lt;?, V&gt;, TypeConverter&lt;T, V&gt;, TypeEvaluator&lt;T&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<!-- Method ofObject -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofObject_added(android.util.Property<?, V>, android.animation.TypeConverter<android.graphics.PointF, V>, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Property&lt;?, V&gt;, TypeConverter&lt;PointF, V&gt;, Path</code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<!-- Method ofObject -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofObject_added(java.lang.String, android.animation.TypeConverter<android.graphics.PointF, ?>, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, TypeConverter&lt;PointF, ?&gt;, Path</code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<!-- Method onActivityReenter -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onActivityReenter_added(int, android.content.Intent)" class="hiddenlink" target="rightframe"><b>onActivityReenter</b>
+(<code>int, Intent</code>)</A></nobr><br>
+<!-- Method onAppear -->
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.onAppear_added(android.view.ViewGroup, android.view.View, android.transition.TransitionValues, android.transition.TransitionValues)" class="hiddenlink" target="rightframe"><b>onAppear</b>
+(<code>ViewGroup, View, TransitionValues, TransitionValues</code>)</A></nobr><br>
+<!-- Method onApplyWindowInsets -->
+<nobr><A HREF="android.service.wallpaper.WallpaperService.Engine.html#android.service.wallpaper.WallpaperService.Engine.onApplyWindowInsets_added(android.view.WindowInsets)" class="hiddenlink" target="rightframe"><b>onApplyWindowInsets</b>
+(<code>WindowInsets</code>)</A></nobr><br>
+<!-- Method onCreate -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onCreate_added(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>onCreate</b>
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<!-- Method onDisappear -->
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.onDisappear_added(android.view.ViewGroup, android.view.View, android.transition.TransitionValues, android.transition.TransitionValues)" class="hiddenlink" target="rightframe"><b>onDisappear</b>
+(<code>ViewGroup, View, TransitionValues, TransitionValues</code>)</A></nobr><br>
+<!-- Method onEnterAnimationComplete -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onEnterAnimationComplete_added()" class="hiddenlink" target="rightframe"><b>onEnterAnimationComplete</b>
+()</A></nobr><br>
+<!-- Method onError -->
+<i>onError</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_removed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String</code>)</strike>&nbsp;in&nbsp;android.speech.tts.UtteranceProgressListener
+</A></nobr><br>
+<!-- Method onError -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_added(java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, int</code>)</b>&nbsp;in&nbsp;android.speech.tts.UtteranceProgressListener
+</A></nobr><br>
+<!-- Method onError -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.speech.tts.UtteranceProgressListener
+</A></nobr><br>
+<!-- Method onGetDefaultVoiceNameFor -->
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onGetDefaultVoiceNameFor_added(java.lang.String, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>onGetDefaultVoiceNameFor</b>
+(<code>String, String, String</code>)</A></nobr><br>
+<!-- Method onGetSummary -->
+<nobr><A HREF="android.location.SettingInjectorService.html#android.location.SettingInjectorService.onGetSummary_changed()" class="hiddenlink" target="rightframe">onGetSummary
+()</A></nobr><br>
+<!-- Method onGetVoices -->
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onGetVoices_added()" class="hiddenlink" target="rightframe"><b>onGetVoices</b>
+()</A></nobr><br>
+<!-- Method onInterruptionFilterChanged -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onInterruptionFilterChanged_added(int)" class="hiddenlink" target="rightframe"><b>onInterruptionFilterChanged</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method onIsValidVoiceName -->
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onIsValidVoiceName_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>onIsValidVoiceName</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method onListenerConnected -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onListenerConnected_added()" class="hiddenlink" target="rightframe"><b>onListenerConnected</b>
+()</A></nobr><br>
+<!-- Method onListenerHintsChanged -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onListenerHintsChanged_added(int)" class="hiddenlink" target="rightframe"><b>onListenerHintsChanged</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method onLoadVoice -->
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onLoadVoice_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>onLoadVoice</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method onLockTaskModeEntering -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.onLockTaskModeEntering_added(android.content.Context, android.content.Intent, java.lang.String)" class="hiddenlink" target="rightframe"><b>onLockTaskModeEntering</b>
+(<code>Context, Intent, String</code>)</A></nobr><br>
+<!-- Method onLockTaskModeExiting -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.onLockTaskModeExiting_added(android.content.Context, android.content.Intent)" class="hiddenlink" target="rightframe"><b>onLockTaskModeExiting</b>
+(<code>Context, Intent</code>)</A></nobr><br>
+<!-- Method onMtuChanged -->
+<nobr><A HREF="android.bluetooth.BluetoothGattCallback.html#android.bluetooth.BluetoothGattCallback.onMtuChanged_added(android.bluetooth.BluetoothGatt, int, int)" class="hiddenlink" target="rightframe"><b>onMtuChanged</b>
+(<code>BluetoothGatt, int, int</code>)</A></nobr><br>
+<!-- Method onNestedFling -->
+<i>onNestedFling</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedFling_added(android.view.View, float, float, boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, float, float, boolean</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+<!-- Method onNestedFling -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedFling_added(android.view.View, float, float, boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, float, float, boolean</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<!-- Method onNestedPreFling -->
+<i>onNestedPreFling</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedPreFling_added(android.view.View, float, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, float, float</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+<!-- Method onNestedPreFling -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedPreFling_added(android.view.View, float, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, float, float</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<!-- Method onNestedPreScroll -->
+<i>onNestedPreScroll</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedPreScroll_added(android.view.View, int, int, int[])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, int, int, int[]</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+<!-- Method onNestedPreScroll -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedPreScroll_added(android.view.View, int, int, int[])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, int, int, int[]</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<!-- Method onNestedScroll -->
+<i>onNestedScroll</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedScroll_added(android.view.View, int, int, int, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, int, int, int, int</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+<!-- Method onNestedScroll -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedScroll_added(android.view.View, int, int, int, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, int, int, int, int</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<!-- Method onNestedScrollAccepted -->
+<i>onNestedScrollAccepted</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedScrollAccepted_added(android.view.View, android.view.View, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, View, int</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+<!-- Method onNestedScrollAccepted -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedScrollAccepted_added(android.view.View, android.view.View, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, View, int</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<!-- Method onNotificationPosted -->
+<i>onNotificationPosted</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationPosted_added(android.service.notification.StatusBarNotification, android.service.notification.NotificationListenerService.RankingMap)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>StatusBarNotification, RankingMap</code>)</b>&nbsp;in&nbsp;android.service.notification.NotificationListenerService
+</A></nobr><br>
+<!-- Method onNotificationPosted -->
+&nbsp;&nbsp;<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationPosted_changed(android.service.notification.StatusBarNotification)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>StatusBarNotification</code>)&nbsp;in&nbsp;android.service.notification.NotificationListenerService
+</A></nobr><br>
+<!-- Method onNotificationRankingUpdate -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationRankingUpdate_added(android.service.notification.NotificationListenerService.RankingMap)" class="hiddenlink" target="rightframe"><b>onNotificationRankingUpdate</b>
+(<code>RankingMap</code>)</A></nobr><br>
+<!-- Method onNotificationRemoved -->
+<i>onNotificationRemoved</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationRemoved_added(android.service.notification.StatusBarNotification, android.service.notification.NotificationListenerService.RankingMap)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>StatusBarNotification, RankingMap</code>)</b>&nbsp;in&nbsp;android.service.notification.NotificationListenerService
+</A></nobr><br>
+<!-- Method onNotificationRemoved -->
+&nbsp;&nbsp;<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationRemoved_changed(android.service.notification.StatusBarNotification)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>StatusBarNotification</code>)&nbsp;in&nbsp;android.service.notification.NotificationListenerService
+</A></nobr><br>
+<!-- Method onNotificationSent -->
+<nobr><A HREF="android.bluetooth.BluetoothGattServerCallback.html#android.bluetooth.BluetoothGattServerCallback.onNotificationSent_added(android.bluetooth.BluetoothDevice, int)" class="hiddenlink" target="rightframe"><b>onNotificationSent</b>
+(<code>BluetoothDevice, int</code>)</A></nobr><br>
+<!-- Method onPermissionRequest -->
+<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onPermissionRequest_added(android.webkit.PermissionRequest)" class="hiddenlink" target="rightframe"><b>onPermissionRequest</b>
+(<code>PermissionRequest</code>)</A></nobr><br>
+<!-- Method onPermissionRequestCanceled -->
+<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onPermissionRequestCanceled_added(android.webkit.PermissionRequest)" class="hiddenlink" target="rightframe"><b>onPermissionRequestCanceled</b>
+(<code>PermissionRequest</code>)</A></nobr><br>
+<!-- Method onPostCreate -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onPostCreate_added(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>onPostCreate</b>
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<!-- Method onProfileProvisioningComplete -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.onProfileProvisioningComplete_added(android.content.Context, android.content.Intent)" class="hiddenlink" target="rightframe"><b>onProfileProvisioningComplete</b>
+(<code>Context, Intent</code>)</A></nobr><br>
+<!-- Method onPull -->
+<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.onPull_added(float, float)" class="hiddenlink" target="rightframe"><b>onPull</b>
+(<code>float, float</code>)</A></nobr><br>
+<!-- Method onReceivedClientCertRequest -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.onReceivedClientCertRequest_added(android.webkit.WebView, android.webkit.ClientCertRequest)" class="hiddenlink" target="rightframe"><b>onReceivedClientCertRequest</b>
+(<code>WebView, ClientCertRequest</code>)</A></nobr><br>
+<!-- Method onRestored -->
+<nobr><A HREF="android.appwidget.AppWidgetProvider.html#android.appwidget.AppWidgetProvider.onRestored_added(android.content.Context, int[], int[])" class="hiddenlink" target="rightframe"><b>onRestored</b>
+(<code>Context, int[], int[]</code>)</A></nobr><br>
+<!-- Method onRestoreFinished -->
+<nobr><A HREF="android.app.backup.BackupAgent.html#android.app.backup.BackupAgent.onRestoreFinished_added()" class="hiddenlink" target="rightframe"><b>onRestoreFinished</b>
+()</A></nobr><br>
+<!-- Method onRestoreInstanceState -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onRestoreInstanceState_added(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>onRestoreInstanceState</b>
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<!-- Method onSaveInstanceState -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onSaveInstanceState_added(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>onSaveInstanceState</b>
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<!-- Method onShowFileChooser -->
+<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onShowFileChooser_added(android.webkit.WebView, android.webkit.ValueCallback<android.net.Uri[]>, android.webkit.WebChromeClient.FileChooserParams)" class="hiddenlink" target="rightframe"><b>onShowFileChooser</b>
+(<code>WebView, ValueCallback&lt;Uri[]&gt;, FileChooserParams</code>)</A></nobr><br>
+<!-- Method onStartNestedScroll -->
+<i>onStartNestedScroll</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onStartNestedScroll_added(android.view.View, android.view.View, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, View, int</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+<!-- Method onStartNestedScroll -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onStartNestedScroll_added(android.view.View, android.view.View, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, View, int</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<!-- Method onStopNestedScroll -->
+<i>onStopNestedScroll</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onStopNestedScroll_added(android.view.View)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+<!-- Method onStopNestedScroll -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onStopNestedScroll_added(android.view.View)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<!-- Method onUnhandledInputEvent -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.onUnhandledInputEvent_added(android.webkit.WebView, android.view.InputEvent)" class="hiddenlink" target="rightframe"><b>onUnhandledInputEvent</b>
+(<code>WebView, InputEvent</code>)</A></nobr><br>
+<!-- Method onUnhandledKeyEvent -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.onUnhandledKeyEvent_changed(android.webkit.WebView, android.view.KeyEvent)" class="hiddenlink" target="rightframe">onUnhandledKeyEvent
+(<code>WebView, KeyEvent</code>)</A></nobr><br>
+<!-- Method onUpdateCursor -->
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.onUpdateCursor_changed(android.graphics.Rect)" class="hiddenlink" target="rightframe">onUpdateCursor
+(<code>Rect</code>)</A></nobr><br>
+<!-- Method onUpdateCursorAnchorInfo -->
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.onUpdateCursorAnchorInfo_added(android.view.inputmethod.CursorAnchorInfo)" class="hiddenlink" target="rightframe"><b>onUpdateCursorAnchorInfo</b>
+(<code>CursorAnchorInfo</code>)</A></nobr><br>
+<!-- Method onVisibleBehindCanceled -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onVisibleBehindCanceled_added()" class="hiddenlink" target="rightframe"><b>onVisibleBehindCanceled</b>
+()</A></nobr><br>
+<!-- Method onWakeUp -->
+<nobr><A HREF="android.service.dreams.DreamService.html#android.service.dreams.DreamService.onWakeUp_added()" class="hiddenlink" target="rightframe"><b>onWakeUp</b>
+()</A></nobr><br>
+<!-- Method openAssetFile -->
+<i>openAssetFile</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.openAssetFile_added(android.net.Uri, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Uri, String</code>)</b>&nbsp;in&nbsp;android.provider.DocumentsProvider
+</A></nobr><br>
+<!-- Method openAssetFile -->
+&nbsp;&nbsp;<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.openAssetFile_added(android.net.Uri, java.lang.String, android.os.CancellationSignal)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Uri, String, CancellationSignal</code>)</b>&nbsp;in&nbsp;android.provider.DocumentsProvider
+</A></nobr><br>
+<!-- Method openSession -->
+<nobr><A HREF="android.media.MediaDrm.html#android.media.MediaDrm.openSession_changed()" class="hiddenlink" target="rightframe">openSession
+()</A></nobr><br>
+<!-- Field OPSTR_GET_USAGE_STATS -->
+<nobr><A HREF="android.app.AppOpsManager.html#android.app.AppOpsManager.OPSTR_GET_USAGE_STATS" class="hiddenlink" target="rightframe">OPSTR_GET_USAGE_STATS</A>
+</nobr><br>
+<!-- Class Outline -->
+<A HREF="pkg_android.graphics.html#Outline" class="hiddenlink" target="rightframe"><b>Outline</b></A><br>
+<!-- Field outlineProvider -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.outlineProvider" class="hiddenlink" target="rightframe">outlineProvider</A>
+</nobr><br>
+<!-- Field overlapAnchor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.overlapAnchor" class="hiddenlink" target="rightframe">overlapAnchor</A>
+</nobr><br>
+<!-- Class PackageInfo -->
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#X"><font size="-2">X</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 PackageInstaller -->
+<A HREF="pkg_android.content.pm.html#PackageInstaller" class="hiddenlink" target="rightframe"><b>PackageInstaller</b></A><br>
+<!-- Class PackageInstaller.Session -->
+<A HREF="pkg_android.content.pm.html#PackageInstaller.Session" class="hiddenlink" target="rightframe"><b>PackageInstaller.Session</b></A><br>
+<!-- Class PackageInstaller.SessionCallback -->
+<A HREF="pkg_android.content.pm.html#PackageInstaller.SessionCallback" class="hiddenlink" target="rightframe"><b>PackageInstaller.SessionCallback</b></A><br>
+<!-- Class PackageInstaller.SessionInfo -->
+<A HREF="pkg_android.content.pm.html#PackageInstaller.SessionInfo" class="hiddenlink" target="rightframe"><b>PackageInstaller.SessionInfo</b></A><br>
+<!-- Class PackageInstaller.SessionParams -->
+<A HREF="pkg_android.content.pm.html#PackageInstaller.SessionParams" class="hiddenlink" target="rightframe"><b>PackageInstaller.SessionParams</b></A><br>
+<!-- Class PackageManager -->
+<A HREF="android.content.pm.PackageManager.html" class="hiddenlink" target="rightframe">PackageManager</A><br>
+<!-- Field PADDING_MODE_NEST -->
+<nobr><A HREF="android.graphics.drawable.LayerDrawable.html#android.graphics.drawable.LayerDrawable.PADDING_MODE_NEST" class="hiddenlink" target="rightframe">PADDING_MODE_NEST</A>
+</nobr><br>
+<!-- Field PADDING_MODE_STACK -->
+<nobr><A HREF="android.graphics.drawable.LayerDrawable.html#android.graphics.drawable.LayerDrawable.PADDING_MODE_STACK" class="hiddenlink" target="rightframe">PADDING_MODE_STACK</A>
+</nobr><br>
+<!-- Field paddingMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.paddingMode" class="hiddenlink" target="rightframe">paddingMode</A>
+</nobr><br>
+<!-- Class Paint -->
+<A HREF="android.graphics.Paint.html" class="hiddenlink" target="rightframe">Paint</A><br>
+<!-- Class Parcel -->
+<A HREF="android.os.Parcel.html" class="hiddenlink" target="rightframe">Parcel</A><br>
+<!-- Field PASSWORD_QUALITY_NUMERIC_COMPLEX -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.PASSWORD_QUALITY_NUMERIC_COMPLEX" class="hiddenlink" target="rightframe">PASSWORD_QUALITY_NUMERIC_COMPLEX</A>
+</nobr><br>
+<!-- Class Path -->
+<A HREF="android.graphics.Path.html" class="hiddenlink" target="rightframe">Path</A><br>
+<!-- Field pathData -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.pathData" class="hiddenlink" target="rightframe">pathData</A>
+</nobr><br>
+<!-- Class PathInterpolator -->
+<A HREF="pkg_android.view.animation.html#PathInterpolator" class="hiddenlink" target="rightframe"><b>PathInterpolator</b></A><br>
+<!-- Class PathMotion -->
+<A HREF="pkg_android.transition.html#PathMotion" class="hiddenlink" target="rightframe"><b>PathMotion</b></A><br>
+<!-- Field patternPathData -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.patternPathData" class="hiddenlink" target="rightframe">patternPathData</A>
+</nobr><br>
+<!-- Class PatternPathMotion -->
+<A HREF="pkg_android.transition.html#PatternPathMotion" class="hiddenlink" target="rightframe"><b>PatternPathMotion</b></A><br>
+<!-- Class Patterns -->
+<A HREF="android.util.Patterns.html" class="hiddenlink" target="rightframe">Patterns</A><br>
+<!-- Class PdfRenderer -->
+<A HREF="pkg_android.graphics.pdf.html#PdfRenderer" class="hiddenlink" target="rightframe"><b>PdfRenderer</b></A><br>
+<!-- Class PdfRenderer.Page -->
+<A HREF="pkg_android.graphics.pdf.html#PdfRenderer.Page" class="hiddenlink" target="rightframe"><b>PdfRenderer.Page</b></A><br>
+<!-- Class PermissionInfo -->
+<A HREF="android.content.pm.PermissionInfo.html" class="hiddenlink" target="rightframe">PermissionInfo</A><br>
+<!-- Class PermissionRequest -->
+<A HREF="pkg_android.webkit.html#PermissionRequest" class="hiddenlink" target="rightframe"><b>PermissionRequest</b></A><br>
+<!-- Field PERSIST_ACROSS_REBOOTS -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.PERSIST_ACROSS_REBOOTS" class="hiddenlink" target="rightframe">PERSIST_ACROSS_REBOOTS</A>
+</nobr><br>
+<!-- Field PERSIST_NEVER -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.PERSIST_NEVER" class="hiddenlink" target="rightframe">PERSIST_NEVER</A>
+</nobr><br>
+<!-- Field PERSIST_ROOT_ONLY -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.PERSIST_ROOT_ONLY" class="hiddenlink" target="rightframe">PERSIST_ROOT_ONLY</A>
+</nobr><br>
+<!-- Class PersistableBundle -->
+<A HREF="pkg_android.os.html#PersistableBundle" class="hiddenlink" target="rightframe"><b>PersistableBundle</b></A><br>
+<!-- Field persistableMode -->
+<i>persistableMode</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.persistableMode" class="hiddenlink" target="rightframe">android.R.attr</A>
+</nobr><br>
+<!-- Field persistableMode -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.persistableMode" class="hiddenlink" target="rightframe">android.content.pm.ActivityInfo</A>
+</nobr><br>
+<!-- Class Phaser -->
+<A HREF="pkg_java.util.concurrent.html#Phaser" class="hiddenlink" target="rightframe"><b>Phaser</b></A><br>
+<!-- Field PHONE_ACCOUNT_COMPONENT_NAME -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.PHONE_ACCOUNT_COMPONENT_NAME" class="hiddenlink" target="rightframe">PHONE_ACCOUNT_COMPONENT_NAME</A>
+</nobr><br>
+<!-- Field PHONE_ACCOUNT_ID -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.PHONE_ACCOUNT_ID" class="hiddenlink" target="rightframe">PHONE_ACCOUNT_ID</A>
+</nobr><br>
+<!-- Class PhoneNumberFormattingTextWatcher -->
+<i>PhoneNumberFormattingTextWatcher</i><br>
+&nbsp;&nbsp;<A HREF="android.telephony.PhoneNumberFormattingTextWatcher.html" class="hiddenlink" target="rightframe">android.telephony</A><br>
+<!-- Constructor PhoneNumberFormattingTextWatcher -->
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberFormattingTextWatcher.html#android.telephony.PhoneNumberFormattingTextWatcher.ctor_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>PhoneNumberFormattingTextWatcher</b>
+(<code>String</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class PhoneNumberUtils -->
+<A HREF="android.telephony.PhoneNumberUtils.html" class="hiddenlink" target="rightframe">PhoneNumberUtils</A><br>
+<!-- Field PHOTO -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotos.html#android.provider.ContactsContract.StreamItemPhotos.PHOTO" class="hiddenlink" target="rightframe">PHOTO</A>
+</nobr><br>
+<!-- Field PHOTO_FILE_ID -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.PHOTO_FILE_ID" class="hiddenlink" target="rightframe">PHOTO_FILE_ID</A>
+</nobr><br>
+<!-- Field PHOTO_URI -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.PHOTO_URI" class="hiddenlink" target="rightframe">PHOTO_URI</A>
+</nobr><br>
+<!-- Field PINNED -->
+<nobr><A HREF="android.provider.ContactsContract.ContactOptionsColumns.html#android.provider.ContactsContract.ContactOptionsColumns.PINNED" class="hiddenlink" target="rightframe">PINNED</A>
+</nobr><br>
+<!-- Method playEarcon -->
+<i>playEarcon</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playEarcon_added(java.lang.String, int, android.os.Bundle, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, int, Bundle, String</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method playEarcon -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playEarcon_changed(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>String, int, HashMap&lt;String, String&gt;</code>)&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method playSilence -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playSilence_changed(long, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">playSilence
+(<code>long, int, HashMap&lt;String, String&gt;</code>)</A></nobr><br>
+<!-- Method playSilentUtterance -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playSilentUtterance_added(long, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>playSilentUtterance</b>
+(<code>long, int, String</code>)</A></nobr><br>
+<!-- Class PointFEvaluator -->
+<A HREF="pkg_android.animation.html#PointFEvaluator" class="hiddenlink" target="rightframe"><b>PointFEvaluator</b></A><br>
+<!-- Field popupElevation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.popupElevation" class="hiddenlink" target="rightframe">popupElevation</A>
+</nobr><br>
+<!-- Field popupTheme -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.popupTheme" class="hiddenlink" target="rightframe">popupTheme</A>
+</nobr><br>
+<!-- Class PopupWindow -->
+<A HREF="android.widget.PopupWindow.html" class="hiddenlink" target="rightframe">PopupWindow</A><br>
+<!-- Method postponeEnterTransition -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.postponeEnterTransition_added()" class="hiddenlink" target="rightframe"><b>postponeEnterTransition</b>
+()</A></nobr><br>
+<!-- Class PowerManager -->
+<A HREF="android.os.PowerManager.html" class="hiddenlink" target="rightframe">PowerManager</A><br>
+<!-- Class PowerManager.WakeLock -->
+<A HREF="android.os.PowerManager.WakeLock.html" class="hiddenlink" target="rightframe">PowerManager.WakeLock</A><br>
+<!-- Class Preference -->
+<i>Preference</i><br>
+&nbsp;&nbsp;<A HREF="android.preference.Preference.html" class="hiddenlink" target="rightframe">android.preference</A><br>
+<!-- Constructor Preference -->
+&nbsp;&nbsp;<nobr><A HREF="android.preference.Preference.html#android.preference.Preference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>Preference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class PreferenceCategory -->
+<i>PreferenceCategory</i><br>
+&nbsp;&nbsp;<A HREF="android.preference.PreferenceCategory.html" class="hiddenlink" target="rightframe">android.preference</A><br>
+<!-- Constructor PreferenceCategory -->
+&nbsp;&nbsp;<nobr><A HREF="android.preference.PreferenceCategory.html#android.preference.PreferenceCategory.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>PreferenceCategory</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class PreferenceGroup -->
+<i>PreferenceGroup</i><br>
+&nbsp;&nbsp;<A HREF="android.preference.PreferenceGroup.html" class="hiddenlink" target="rightframe">android.preference</A><br>
+<!-- Constructor PreferenceGroup -->
+&nbsp;&nbsp;<nobr><A HREF="android.preference.PreferenceGroup.html#android.preference.PreferenceGroup.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>PreferenceGroup</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field preferredRefreshRate -->
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.preferredRefreshRate" class="hiddenlink" target="rightframe">preferredRefreshRate</A>
+</nobr><br>
+<!-- Class PrintService -->
+<A HREF="android.printservice.PrintService.html" class="hiddenlink" target="rightframe">PrintService</A><br>
+<!-- Field PRIVATE_USE_EXTENSION -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.PRIVATE_USE_EXTENSION" class="hiddenlink" target="rightframe">PRIVATE_USE_EXTENSION</A>
+</nobr><br>
+<!-- Field progressBackgroundTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressBackgroundTint" class="hiddenlink" target="rightframe">progressBackgroundTint</A>
+</nobr><br>
+<!-- Field progressBackgroundTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressBackgroundTintMode" class="hiddenlink" target="rightframe">progressBackgroundTintMode</A>
+</nobr><br>
+<!-- Class ProgressBar -->
+<i>ProgressBar</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.ProgressBar.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor ProgressBar -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ProgressBar</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field progressTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressTint" class="hiddenlink" target="rightframe">progressTint</A>
+</nobr><br>
+<!-- Field progressTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressTintMode" class="hiddenlink" target="rightframe">progressTintMode</A>
+</nobr><br>
+<!-- Class PropertyValuesHolder -->
+<A HREF="android.animation.PropertyValuesHolder.html" class="hiddenlink" target="rightframe">PropertyValuesHolder</A><br>
+<!-- Field propertyXName -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.propertyXName" class="hiddenlink" target="rightframe">propertyXName</A>
+</nobr><br>
+<!-- Field propertyYName -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.propertyYName" class="hiddenlink" target="rightframe">propertyYName</A>
+</nobr><br>
+<!-- Field PROTECTION_FLAG_APPOP -->
+<nobr><A HREF="android.content.pm.PermissionInfo.html#android.content.pm.PermissionInfo.PROTECTION_FLAG_APPOP" class="hiddenlink" target="rightframe">PROTECTION_FLAG_APPOP</A>
+</nobr><br>
+<!-- Field PROXIMITY_SCREEN_OFF_WAKE_LOCK -->
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.PROXIMITY_SCREEN_OFF_WAKE_LOCK" class="hiddenlink" target="rightframe">PROXIMITY_SCREEN_OFF_WAKE_LOCK</A>
+</nobr><br>
+<!-- Class Proxy -->
+<A HREF="android.net.Proxy.html" class="hiddenlink" target="rightframe">Proxy</A><br>
+<!-- Class ProxyInfo -->
+<A HREF="pkg_android.net.html#ProxyInfo" class="hiddenlink" target="rightframe"><b>ProxyInfo</b></A><br>
+<!-- Class PskKeyManager -->
+<A HREF="pkg_android.net.html#PskKeyManager" class="hiddenlink" target="rightframe"><b>PskKeyManager</b></A><br>
+<!-- Field publicVersion -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.publicVersion" class="hiddenlink" target="rightframe">publicVersion</A>
+</nobr><br>
+<!-- Method putDouble -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putDouble_changed(java.lang.String, double)" class="hiddenlink" target="rightframe">putDouble
+(<code>String, double</code>)</A></nobr><br>
+<!-- Method putDoubleArray -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putDoubleArray_changed(java.lang.String, double[])" class="hiddenlink" target="rightframe">putDoubleArray
+(<code>String, double[]</code>)</A></nobr><br>
+<!-- Method putInt -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putInt_changed(java.lang.String, int)" class="hiddenlink" target="rightframe">putInt
+(<code>String, int</code>)</A></nobr><br>
+<!-- Method putIntArray -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putIntArray_changed(java.lang.String, int[])" class="hiddenlink" target="rightframe">putIntArray
+(<code>String, int[]</code>)</A></nobr><br>
+<!-- Method putLong -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putLong_changed(java.lang.String, long)" class="hiddenlink" target="rightframe">putLong
+(<code>String, long</code>)</A></nobr><br>
+<!-- Method putLongArray -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putLongArray_changed(java.lang.String, long[])" class="hiddenlink" target="rightframe">putLongArray
+(<code>String, long[]</code>)</A></nobr><br>
+<!-- Method putSize -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putSize_added(java.lang.String, android.util.Size)" class="hiddenlink" target="rightframe"><b>putSize</b>
+(<code>String, Size</code>)</A></nobr><br>
+<!-- Method putSizeF -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putSizeF_added(java.lang.String, android.util.SizeF)" class="hiddenlink" target="rightframe"><b>putSizeF</b>
+(<code>String, SizeF</code>)</A></nobr><br>
+<!-- Method putString -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putString_changed(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">putString
+(<code>String, String</code>)</A></nobr><br>
+<!-- Method putStringArray -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putStringArray_changed(java.lang.String, java.lang.String[])" class="hiddenlink" target="rightframe">putStringArray
+(<code>String, String[]</code>)</A></nobr><br>
+<!-- Field QUALITY_2160P -->
+<A NAME="Q"></A>
+<br><font size="+2">Q</font>&nbsp;
+<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="#X"><font size="-2">X</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.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_2160P" class="hiddenlink" target="rightframe">QUALITY_2160P</A>
+</nobr><br>
+<!-- Field QUALITY_HIGH_SPEED_1080P -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_1080P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_1080P</A>
+</nobr><br>
+<!-- Field QUALITY_HIGH_SPEED_2160P -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_2160P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_2160P</A>
+</nobr><br>
+<!-- Field QUALITY_HIGH_SPEED_480P -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_480P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_480P</A>
+</nobr><br>
+<!-- Field QUALITY_HIGH_SPEED_720P -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_720P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_720P</A>
+</nobr><br>
+<!-- Field QUALITY_HIGH_SPEED_HIGH -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_HIGH" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_HIGH</A>
+</nobr><br>
+<!-- Field QUALITY_HIGH_SPEED_LOW -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_LOW" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_LOW</A>
+</nobr><br>
+<!-- Field QUALITY_TIME_LAPSE_2160P -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_TIME_LAPSE_2160P" class="hiddenlink" target="rightframe">QUALITY_TIME_LAPSE_2160P</A>
+</nobr><br>
+<!-- Field QUERY_PARAMETER_SIP_ADDRESS -->
+<nobr><A HREF="android.provider.ContactsContract.PhoneLookup.html#android.provider.ContactsContract.PhoneLookup.QUERY_PARAMETER_SIP_ADDRESS" class="hiddenlink" target="rightframe">QUERY_PARAMETER_SIP_ADDRESS</A>
+</nobr><br>
+<!-- Field queryBackground -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.queryBackground" class="hiddenlink" target="rightframe">queryBackground</A>
+</nobr><br>
+<!-- Class QuickContactBadge -->
+<i>QuickContactBadge</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.QuickContactBadge.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor QuickContactBadge -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.QuickContactBadge.html#android.widget.QuickContactBadge.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>QuickContactBadge</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class R.attr -->
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#X"><font size="-2">X</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.id -->
+<A HREF="android.R.id.html" class="hiddenlink" target="rightframe">R.id</A><br>
+<!-- Class R.interpolator -->
+<A HREF="android.R.interpolator.html" class="hiddenlink" target="rightframe">R.interpolator</A><br>
+<!-- Class R.style -->
+<A HREF="android.R.style.html" class="hiddenlink" target="rightframe">R.style</A><br>
+<!-- Class R.transition -->
+<A HREF="pkg_android.html#R.transition" class="hiddenlink" target="rightframe"><b>R.transition</b></A><br>
+<!-- Class RadioButton -->
+<i>RadioButton</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.RadioButton.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor RadioButton -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.RadioButton.html#android.widget.RadioButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>RadioButton</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class Range -->
+<A HREF="pkg_android.util.html#Range" class="hiddenlink" target="rightframe"><b>Range</b></A><br>
+<!-- Class Rasterizer -->
+<A HREF="android.graphics.Rasterizer.html" class="hiddenlink" target="rightframe">Rasterizer</A><br>
+<!-- Class Rating -->
+<A HREF="android.media.Rating.html" class="hiddenlink" target="rightframe">Rating</A><br>
+<!-- Field RATING_NONE -->
+<nobr><A HREF="android.media.Rating.html#android.media.Rating.RATING_NONE" class="hiddenlink" target="rightframe">RATING_NONE</A>
+</nobr><br>
+<!-- Class RatingBar -->
+<i>RatingBar</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.RatingBar.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor RatingBar -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.RatingBar.html#android.widget.RatingBar.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>RatingBar</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class Rational -->
+<A HREF="pkg_android.util.html#Rational" class="hiddenlink" target="rightframe"><b>Rational</b></A><br>
+<!-- Field RAW10 -->
+<nobr><A HREF="android.graphics.ImageFormat.html#android.graphics.ImageFormat.RAW10" class="hiddenlink" target="rightframe">RAW10</A>
+</nobr><br>
+<!-- Field RAW_CONTACT_ID -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RAW_CONTACT_ID" class="hiddenlink" target="rightframe">RAW_CONTACT_ID</A>
+</nobr><br>
+<!-- Field RAW_CONTACT_SOURCE_ID -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RAW_CONTACT_SOURCE_ID" class="hiddenlink" target="rightframe">RAW_CONTACT_SOURCE_ID</A>
+</nobr><br>
+<!-- Field RAW_SENSOR -->
+<nobr><A HREF="android.graphics.ImageFormat.html#android.graphics.ImageFormat.RAW_SENSOR" class="hiddenlink" target="rightframe">RAW_SENSOR</A>
+</nobr><br>
+<!-- Field READ_SOCIAL_STREAM -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.READ_SOCIAL_STREAM" class="hiddenlink" target="rightframe">READ_SOCIAL_STREAM</A>
+</nobr><br>
+<!-- Field READ_VOICEMAIL -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.READ_VOICEMAIL" class="hiddenlink" target="rightframe">READ_VOICEMAIL</A>
+</nobr><br>
+<!-- Method readPersistableBundle -->
+<i>readPersistableBundle</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readPersistableBundle_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.os.Parcel
+</A></nobr><br>
+<!-- Method readPersistableBundle -->
+&nbsp;&nbsp;<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readPersistableBundle_added(java.lang.ClassLoader)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ClassLoader</code>)</b>&nbsp;in&nbsp;android.os.Parcel
+</A></nobr><br>
+<!-- Method readSize -->
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readSize_added()" class="hiddenlink" target="rightframe"><b>readSize</b>
+()</A></nobr><br>
+<!-- Method readSizeF -->
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readSizeF_added()" class="hiddenlink" target="rightframe"><b>readSizeF</b>
+()</A></nobr><br>
+<!-- Field recognitionService -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.recognitionService" class="hiddenlink" target="rightframe">recognitionService</A>
+</nobr><br>
+<!-- Class RectEvaluator -->
+<i>RectEvaluator</i><br>
+&nbsp;&nbsp;<A HREF="android.animation.RectEvaluator.html" class="hiddenlink" target="rightframe">android.animation</A><br>
+<!-- Constructor RectEvaluator -->
+&nbsp;&nbsp;<nobr><A HREF="android.animation.RectEvaluator.html#android.animation.RectEvaluator.ctor_added(android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>RectEvaluator</b>
+(<code>Rect</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class RecursiveAction -->
+<A HREF="pkg_java.util.concurrent.html#RecursiveAction" class="hiddenlink" target="rightframe"><b>RecursiveAction</b></A><br>
+<!-- Class RecursiveTask -->
+<A HREF="pkg_java.util.concurrent.html#RecursiveTask" class="hiddenlink" target="rightframe"><b>RecursiveTask</b></A><br>
+<!-- Method registerAidsForService -->
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.registerAidsForService_added(android.content.ComponentName, java.lang.String, java.util.List<java.lang.String>)" class="hiddenlink" target="rightframe"><b>registerAidsForService</b>
+(<code>ComponentName, String, List&lt;String&gt;</code>)</A></nobr><br>
+<!-- Method registerMediaButtonEventReceiver -->
+<i>registerMediaButtonEventReceiver</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.app.PendingIntent)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>PendingIntent</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+<!-- Method registerMediaButtonEventReceiver -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.content.ComponentName)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>ComponentName</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+<!-- Method registerNetworkCallback -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.registerNetworkCallback_added(android.net.NetworkRequest, android.net.ConnectivityManager.NetworkCallback)" class="hiddenlink" target="rightframe"><b>registerNetworkCallback</b>
+(<code>NetworkRequest, NetworkCallback</code>)</A></nobr><br>
+<!-- Method registerRemoteControlClient -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerRemoteControlClient_changed(android.media.RemoteControlClient)" class="hiddenlink" target="rightframe">registerRemoteControlClient
+(<code>RemoteControlClient</code>)</A></nobr><br>
+<!-- Method registerRemoteController -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerRemoteController_changed(android.media.RemoteController)" class="hiddenlink" target="rightframe">registerRemoteController
+(<code>RemoteController</code>)</A></nobr><br>
+<!-- Field REGULAR_CODECS -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.REGULAR_CODECS" class="hiddenlink" target="rightframe">REGULAR_CODECS</A>
+</nobr><br>
+<!-- Class RelativeLayout -->
+<i>RelativeLayout</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.RelativeLayout.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor RelativeLayout -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.RelativeLayout.html#android.widget.RelativeLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>RelativeLayout</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Method release -->
+<nobr><A HREF="android.os.PowerManager.WakeLock.html#android.os.PowerManager.WakeLock.release_added(int)" class="hiddenlink" target="rightframe"><b>release</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Field RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY -->
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY" class="hiddenlink" target="rightframe">RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY</A>
+</nobr><br>
+<!-- Method releaseInstance -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.releaseInstance_added()" class="hiddenlink" target="rightframe"><b>releaseInstance</b>
+()</A></nobr><br>
+<!-- Method releaseOutputBuffer -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.releaseOutputBuffer_added(int, long)" class="hiddenlink" target="rightframe"><b>releaseOutputBuffer</b>
+(<code>int, long</code>)</A></nobr><br>
+<!-- Field relinquishTaskIdentity -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.relinquishTaskIdentity" class="hiddenlink" target="rightframe">relinquishTaskIdentity</A>
+</nobr><br>
+<!-- Class RemoteControlClient -->
+<A HREF="android.media.RemoteControlClient.html" class="hiddenlink" target="rightframe">RemoteControlClient</A><br>
+<!-- Class RemoteControlClient.MetadataEditor -->
+<A HREF="android.media.RemoteControlClient.MetadataEditor.html" class="hiddenlink" target="rightframe">RemoteControlClient.MetadataEditor</A><br>
+<!-- Class RemoteController -->
+<A HREF="android.media.RemoteController.html" class="hiddenlink" target="rightframe">RemoteController</A><br>
+<!-- Method remove -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.remove_changed(java.lang.String)" class="hiddenlink" target="rightframe">remove
+(<code>String</code>)</A></nobr><br>
+<!-- Field REMOVE_DUPLICATE_ENTRIES -->
+<nobr><A HREF="android.provider.ContactsContract.html#android.provider.ContactsContract.REMOVE_DUPLICATE_ENTRIES" class="hiddenlink" target="rightframe">REMOVE_DUPLICATE_ENTRIES</A>
+</nobr><br>
+<!-- Method removeAction -->
+<i>removeAction</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.removeAction_added(android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AccessibilityAction</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo
+</A></nobr><br>
+<!-- Method removeAction -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.removeAction_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo
+</A></nobr><br>
+<!-- Method removeAidsForService -->
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.removeAidsForService_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>removeAidsForService</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method removeAllCookie -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeAllCookie_changed()" class="hiddenlink" target="rightframe">removeAllCookie
+()</A></nobr><br>
+<!-- Method removeAllCookies -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeAllCookies_added(android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>removeAllCookies</b>
+(<code>ValueCallback&lt;Boolean&gt;</code>)</A></nobr><br>
+<!-- Method removeAllTabs -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.removeAllTabs_changed()" class="hiddenlink" target="rightframe">removeAllTabs
+()</A></nobr><br>
+<!-- Method removeAttribute -->
+<nobr><A HREF="android.net.nsd.NsdServiceInfo.html#android.net.nsd.NsdServiceInfo.removeAttribute_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>removeAttribute</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method removeChild -->
+<i>removeChild</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.removeChild_added(android.view.View)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo
+</A></nobr><br>
+<!-- Method removeChild -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.removeChild_added(android.view.View, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, int</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo
+</A></nobr><br>
+<!-- Method removeCrossProfileWidgetProvider -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.removeCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>removeCrossProfileWidgetProvider</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method removeDefaultNetworkActiveListener -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.removeDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><b>removeDefaultNetworkActiveListener</b>
+(<code>OnNetworkActiveListener</code>)</A></nobr><br>
+<!-- Method removeExpiredCookie -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeExpiredCookie_changed()" class="hiddenlink" target="rightframe">removeExpiredCookie
+()</A></nobr><br>
+<!-- Method removeSessionCookie -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeSessionCookie_changed()" class="hiddenlink" target="rightframe">removeSessionCookie
+()</A></nobr><br>
+<!-- Method removeSessionCookies -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeSessionCookies_added(android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>removeSessionCookies</b>
+(<code>ValueCallback&lt;Boolean&gt;</code>)</A></nobr><br>
+<!-- Method removeStickyBroadcast -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.removeStickyBroadcast_changed(android.content.Intent)" class="hiddenlink" target="rightframe">removeStickyBroadcast
+(<code>Intent</code>)</A></nobr><br>
+<!-- Method removeStickyBroadcastAsUser -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.removeStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)" class="hiddenlink" target="rightframe">removeStickyBroadcastAsUser
+(<code>Intent, UserHandle</code>)</A></nobr><br>
+<!-- Method removeTab -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.removeTab_changed(android.app.ActionBar.Tab)" class="hiddenlink" target="rightframe">removeTab
+(<code>Tab</code>)</A></nobr><br>
+<!-- Method removeTabAt -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.removeTabAt_changed(int)" class="hiddenlink" target="rightframe">removeTabAt
+(<code>int</code>)</A></nobr><br>
+<!-- Method removeTarget -->
+<i>removeTarget</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.removeTarget_added(java.lang.Class)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Class</code>)</b>&nbsp;in&nbsp;android.transition.Transition
+</A></nobr><br>
+<!-- Method removeTarget -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.removeTarget_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.transition.Transition
+</A></nobr><br>
+<!-- Method removeUser -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.removeUser_added(android.content.ComponentName, android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>removeUser</b>
+(<code>ComponentName, UserHandle</code>)</A></nobr><br>
+<!-- Method renameAccount -->
+<nobr><A HREF="android.accounts.AccountManager.html#android.accounts.AccountManager.renameAccount_added(android.accounts.Account, java.lang.String, android.accounts.AccountManagerCallback<android.accounts.Account>, android.os.Handler)" class="hiddenlink" target="rightframe"><b>renameAccount</b>
+(<code>Account, String, AccountManagerCallback&lt;Account&gt;, Handler</code>)</A></nobr><br>
+<!-- Method renameDocument -->
+<i>renameDocument</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.renameDocument_added(android.content.ContentResolver, android.net.Uri, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ContentResolver, Uri, String</code>)</b>&nbsp;in&nbsp;android.provider.DocumentsContract
+</A></nobr><br>
+<!-- Method renameDocument -->
+&nbsp;&nbsp;<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.renameDocument_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, String</code>)</b>&nbsp;in&nbsp;android.provider.DocumentsProvider
+</A></nobr><br>
+<!-- Class RenderScript -->
+<A HREF="android.renderscript.RenderScript.html" class="hiddenlink" target="rightframe">RenderScript</A><br>
+<!-- Field reparent -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.reparent" class="hiddenlink" target="rightframe">reparent</A>
+</nobr><br>
+<!-- Field reparentWithOverlay -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.reparentWithOverlay" class="hiddenlink" target="rightframe">reparentWithOverlay</A>
+</nobr><br>
+<!-- Method replaceSystemWindowInsets -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.replaceSystemWindowInsets_added(android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>replaceSystemWindowInsets</b>
+(<code>Rect</code>)</A></nobr><br>
+<!-- Method replaceUnicodeDigits -->
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.replaceUnicodeDigits_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>replaceUnicodeDigits</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method reportBadNetwork -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.reportBadNetwork_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>reportBadNetwork</b>
+(<code>Network</code>)</A></nobr><br>
+<!-- Field REPORTING_MODE_CONTINUOUS -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_CONTINUOUS" class="hiddenlink" target="rightframe">REPORTING_MODE_CONTINUOUS</A>
+</nobr><br>
+<!-- Field REPORTING_MODE_ON_CHANGE -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_ON_CHANGE" class="hiddenlink" target="rightframe">REPORTING_MODE_ON_CHANGE</A>
+</nobr><br>
+<!-- Field REPORTING_MODE_ONE_SHOT -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_ONE_SHOT" class="hiddenlink" target="rightframe">REPORTING_MODE_ONE_SHOT</A>
+</nobr><br>
+<!-- Field REPORTING_MODE_SPECIAL_TRIGGER -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_SPECIAL_TRIGGER" class="hiddenlink" target="rightframe">REPORTING_MODE_SPECIAL_TRIGGER</A>
+</nobr><br>
+<!-- Method requestConnectionPriority -->
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.requestConnectionPriority_added(int)" class="hiddenlink" target="rightframe"><b>requestConnectionPriority</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method requestCursorUpdates -->
+<i>requestCursorUpdates</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.BaseInputConnection.html#android.view.inputmethod.BaseInputConnection.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.BaseInputConnection
+</A></nobr><br>
+<!-- Method requestCursorUpdates -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.InputConnection
+</A></nobr><br>
+<!-- Method requestCursorUpdates -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.InputConnectionWrapper.html#android.view.inputmethod.InputConnectionWrapper.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.InputConnectionWrapper
+</A></nobr><br>
+<!-- Method requestInterruptionFilter -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.requestInterruptionFilter_added(int)" class="hiddenlink" target="rightframe"><b>requestInterruptionFilter</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method requestListenerHints -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.requestListenerHints_added(int)" class="hiddenlink" target="rightframe"><b>requestListenerHints</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method requestMtu -->
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.requestMtu_added(int)" class="hiddenlink" target="rightframe"><b>requestMtu</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method requestNetwork -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.requestNetwork_added(android.net.NetworkRequest, android.net.ConnectivityManager.NetworkCallback)" class="hiddenlink" target="rightframe"><b>requestNetwork</b>
+(<code>NetworkRequest, NetworkCallback</code>)</A></nobr><br>
+<!-- Method requestRouteToHost -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.requestRouteToHost_changed(int, int)" class="hiddenlink" target="rightframe">requestRouteToHost
+(<code>int, int</code>)</A></nobr><br>
+<!-- Method requestUnbufferedDispatch -->
+<nobr><A HREF="android.view.View.html#android.view.View.requestUnbufferedDispatch_added(android.view.MotionEvent)" class="hiddenlink" target="rightframe"><b>requestUnbufferedDispatch</b>
+(<code>MotionEvent</code>)</A></nobr><br>
+<!-- Method requestVisibleBehind -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.requestVisibleBehind_added(boolean)" class="hiddenlink" target="rightframe"><b>requestVisibleBehind</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Field RES_ICON -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RES_ICON" class="hiddenlink" target="rightframe">RES_ICON</A>
+</nobr><br>
+<!-- Field RES_LABEL -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RES_LABEL" class="hiddenlink" target="rightframe">RES_LABEL</A>
+</nobr><br>
+<!-- Field RES_PACKAGE -->
+<i>RES_PACKAGE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.DataColumns.html#android.provider.ContactsContract.DataColumns.RES_PACKAGE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.DataColumns</A>
+</nobr><br>
+<!-- Field RES_PACKAGE -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.GroupsColumns.html#android.provider.ContactsContract.GroupsColumns.RES_PACKAGE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.GroupsColumns</A>
+</nobr><br>
+<!-- Field RES_PACKAGE -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RES_PACKAGE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<!-- Method reset -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.reset_added()" class="hiddenlink" target="rightframe"><b>reset</b>
+()</A></nobr><br>
+<!-- Method resize -->
+<i>resize</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.display.VirtualDisplay.html#android.hardware.display.VirtualDisplay.resize_added(int, int, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, int</code>)</b>&nbsp;in&nbsp;android.hardware.display.VirtualDisplay
+</A></nobr><br>
+<!-- Method resize -->
+&nbsp;&nbsp;<nobr><A HREF="android.util.LruCache.html#android.util.LruCache.resize_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.util.LruCache
+</A></nobr><br>
+<!-- Class Resources -->
+<A HREF="android.content.res.Resources.html" class="hiddenlink" target="rightframe">Resources</A><br>
+<!-- Class Resources.Theme -->
+<A HREF="android.content.res.Resources.Theme.html" class="hiddenlink" target="rightframe">Resources.Theme</A><br>
+<!-- Class RestrictionEntry -->
+<i>RestrictionEntry</i><br>
+&nbsp;&nbsp;<A HREF="android.content.RestrictionEntry.html" class="hiddenlink" target="rightframe">android.content</A><br>
+<!-- Constructor RestrictionEntry -->
+&nbsp;&nbsp;<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.ctor_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>RestrictionEntry</b>
+(<code>int, String</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor RestrictionEntry -->
+&nbsp;&nbsp;<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.ctor_added(java.lang.String, int)" class="hiddenlink" target="rightframe"><b>RestrictionEntry</b>
+(<code>String, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field RESTRICTIONS_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.RESTRICTIONS_SERVICE" class="hiddenlink" target="rightframe">RESTRICTIONS_SERVICE</A>
+</nobr><br>
+<!-- Class RestrictionsManager -->
+<A HREF="pkg_android.content.html#RestrictionsManager" class="hiddenlink" target="rightframe"><b>RestrictionsManager</b></A><br>
+<!-- Field restrictionType -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.restrictionType" class="hiddenlink" target="rightframe">restrictionType</A>
+</nobr><br>
+<!-- Field resumeWhilePausing -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.resumeWhilePausing" class="hiddenlink" target="rightframe">resumeWhilePausing</A>
+</nobr><br>
+<!-- Field reversible -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.reversible" class="hiddenlink" target="rightframe">reversible</A>
+</nobr><br>
+<!-- Method revokeDocumentPermission -->
+<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.revokeDocumentPermission_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>revokeDocumentPermission</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Class Ringtone -->
+<A HREF="android.media.Ringtone.html" class="hiddenlink" target="rightframe">Ringtone</A><br>
+<!-- Class RingtonePreference -->
+<i>RingtonePreference</i><br>
+&nbsp;&nbsp;<A HREF="android.preference.RingtonePreference.html" class="hiddenlink" target="rightframe">android.preference</A><br>
+<!-- Constructor RingtonePreference -->
+&nbsp;&nbsp;<nobr><A HREF="android.preference.RingtonePreference.html#android.preference.RingtonePreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>RingtonePreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class RippleDrawable -->
+<A HREF="pkg_android.graphics.drawable.html#RippleDrawable" class="hiddenlink" target="rightframe"><b>RippleDrawable</b></A><br>
+<!-- Class RotateDrawable -->
+<A HREF="android.graphics.drawable.RotateDrawable.html" class="hiddenlink" target="rightframe">RotateDrawable</A><br>
+<!-- Class RouteInfo -->
+<A HREF="pkg_android.net.html#RouteInfo" class="hiddenlink" target="rightframe"><b>RouteInfo</b></A><br>
+<!-- Method saveLayer -->
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#X"><font size="-2">X</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>saveLayer</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.saveLayer_added(android.graphics.RectF, android.graphics.Paint)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>RectF, Paint</code>)</b>&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<!-- Method saveLayer -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.saveLayer_added(float, float, float, float, android.graphics.Paint)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float, float, float, float, Paint</code>)</b>&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<!-- Method saveLayerAlpha -->
+<i>saveLayerAlpha</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.saveLayerAlpha_added(android.graphics.RectF, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>RectF, int</code>)</b>&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<!-- Method saveLayerAlpha -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.saveLayerAlpha_added(float, float, float, float, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float, float, float, float, int</code>)</b>&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<!-- Class Scene -->
+<i>Scene</i><br>
+&nbsp;&nbsp;<A HREF="android.transition.Scene.html" class="hiddenlink" target="rightframe">android.transition</A><br>
+<!-- Constructor Scene -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Scene.html#android.transition.Scene.ctor_added(android.view.ViewGroup, android.view.View)" class="hiddenlink" target="rightframe"><b>Scene</b>
+(<code>ViewGroup, View</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor Scene -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Scene.html#android.transition.Scene.ctor_changed(android.view.ViewGroup, android.view.ViewGroup)" class="hiddenlink" target="rightframe">Scene
+(<code>ViewGroup, ViewGroup</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class ScheduledThreadPoolExecutor -->
+<A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html" class="hiddenlink" target="rightframe">ScheduledThreadPoolExecutor</A><br>
+<!-- Class ScriptC -->
+<i>ScriptC</i><br>
+&nbsp;&nbsp;<A HREF="android.renderscript.ScriptC.html" class="hiddenlink" target="rightframe">android.renderscript</A><br>
+<!-- Constructor ScriptC -->
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptC.html#android.renderscript.ScriptC.ctor_added(android.renderscript.RenderScript, java.lang.String, byte[], byte[])" class="hiddenlink" target="rightframe"><b>ScriptC</b>
+(<code>RenderScript, String, byte[], byte[]</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor ScriptC -->
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptC.html#android.renderscript.ScriptC.ctor_added(long, android.renderscript.RenderScript)" class="hiddenlink" target="rightframe"><b>ScriptC</b>
+(<code>long, RenderScript</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class ScriptIntrinsic3DLUT -->
+<A HREF="android.renderscript.ScriptIntrinsic3DLUT.html" class="hiddenlink" target="rightframe">ScriptIntrinsic3DLUT</A><br>
+<!-- Class ScriptIntrinsicBlend -->
+<A HREF="android.renderscript.ScriptIntrinsicBlend.html" class="hiddenlink" target="rightframe">ScriptIntrinsicBlend</A><br>
+<!-- Class ScriptIntrinsicBlur -->
+<A HREF="android.renderscript.ScriptIntrinsicBlur.html" class="hiddenlink" target="rightframe">ScriptIntrinsicBlur</A><br>
+<!-- Class ScriptIntrinsicColorMatrix -->
+<A HREF="android.renderscript.ScriptIntrinsicColorMatrix.html" class="hiddenlink" target="rightframe">ScriptIntrinsicColorMatrix</A><br>
+<!-- Class ScriptIntrinsicConvolve3x3 -->
+<A HREF="android.renderscript.ScriptIntrinsicConvolve3x3.html" class="hiddenlink" target="rightframe">ScriptIntrinsicConvolve3x3</A><br>
+<!-- Class ScriptIntrinsicConvolve5x5 -->
+<A HREF="android.renderscript.ScriptIntrinsicConvolve5x5.html" class="hiddenlink" target="rightframe">ScriptIntrinsicConvolve5x5</A><br>
+<!-- Class ScriptIntrinsicHistogram -->
+<A HREF="android.renderscript.ScriptIntrinsicHistogram.html" class="hiddenlink" target="rightframe">ScriptIntrinsicHistogram</A><br>
+<!-- Class ScriptIntrinsicLUT -->
+<A HREF="android.renderscript.ScriptIntrinsicLUT.html" class="hiddenlink" target="rightframe">ScriptIntrinsicLUT</A><br>
+<!-- Field SCROLL_AXIS_HORIZONTAL -->
+<nobr><A HREF="android.view.View.html#android.view.View.SCROLL_AXIS_HORIZONTAL" class="hiddenlink" target="rightframe">SCROLL_AXIS_HORIZONTAL</A>
+</nobr><br>
+<!-- Field SCROLL_AXIS_NONE -->
+<nobr><A HREF="android.view.View.html#android.view.View.SCROLL_AXIS_NONE" class="hiddenlink" target="rightframe">SCROLL_AXIS_NONE</A>
+</nobr><br>
+<!-- Field SCROLL_AXIS_VERTICAL -->
+<nobr><A HREF="android.view.View.html#android.view.View.SCROLL_AXIS_VERTICAL" class="hiddenlink" target="rightframe">SCROLL_AXIS_VERTICAL</A>
+</nobr><br>
+<!-- Class ScrollView -->
+<i>ScrollView</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.ScrollView.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor ScrollView -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.ScrollView.html#android.widget.ScrollView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ScrollView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field searchIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.searchIcon" class="hiddenlink" target="rightframe">searchIcon</A>
+</nobr><br>
+<!-- Class SearchManager -->
+<A HREF="android.app.SearchManager.html" class="hiddenlink" target="rightframe">SearchManager</A><br>
+<!-- Class SearchView -->
+<i>SearchView</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.SearchView.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor SearchView -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.SearchView.html#android.widget.SearchView.ctor_added(android.content.Context, android.util.AttributeSet, int)" class="hiddenlink" target="rightframe"><b>SearchView</b>
+(<code>Context, AttributeSet, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor SearchView -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.SearchView.html#android.widget.SearchView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>SearchView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field searchViewStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.searchViewStyle" class="hiddenlink" target="rightframe">searchViewStyle</A>
+</nobr><br>
+<!-- Field secondaryProgressTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.secondaryProgressTint" class="hiddenlink" target="rightframe">secondaryProgressTint</A>
+</nobr><br>
+<!-- Field secondaryProgressTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.secondaryProgressTintMode" class="hiddenlink" target="rightframe">secondaryProgressTintMode</A>
+</nobr><br>
+<!-- Class SeekBar -->
+<i>SeekBar</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.SeekBar.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor SeekBar -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.SeekBar.html#android.widget.SeekBar.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>SeekBar</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field selectableItemBackgroundBorderless -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.selectableItemBackgroundBorderless" class="hiddenlink" target="rightframe">selectableItemBackgroundBorderless</A>
+</nobr><br>
+<!-- Field SELECTION_MODE_MULTIPLE -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.SELECTION_MODE_MULTIPLE" class="hiddenlink" target="rightframe">SELECTION_MODE_MULTIPLE</A>
+</nobr><br>
+<!-- Field SELECTION_MODE_NONE -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.SELECTION_MODE_NONE" class="hiddenlink" target="rightframe">SELECTION_MODE_NONE</A>
+</nobr><br>
+<!-- Field SELECTION_MODE_SINGLE -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.SELECTION_MODE_SINGLE" class="hiddenlink" target="rightframe">SELECTION_MODE_SINGLE</A>
+</nobr><br>
+<!-- Method selectTab -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.selectTab_changed(android.app.ActionBar.Tab)" class="hiddenlink" target="rightframe">selectTab
+(<code>Tab</code>)</A></nobr><br>
+<!-- Method sendEnvelopeWithStatus -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.sendEnvelopeWithStatus_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>sendEnvelopeWithStatus</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Field sendingUid -->
+<nobr><A HREF="android.os.Message.html#android.os.Message.sendingUid" class="hiddenlink" target="rightframe">sendingUid</A>
+</nobr><br>
+<!-- Method sendMultimediaMessage -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.sendMultimediaMessage_added(android.content.Context, android.net.Uri, java.lang.String, android.os.Bundle, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>sendMultimediaMessage</b>
+(<code>Context, Uri, String, Bundle, PendingIntent</code>)</A></nobr><br>
+<!-- Method sendStickyBroadcast -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyBroadcast_changed(android.content.Intent)" class="hiddenlink" target="rightframe">sendStickyBroadcast
+(<code>Intent</code>)</A></nobr><br>
+<!-- Method sendStickyBroadcastAsUser -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)" class="hiddenlink" target="rightframe">sendStickyBroadcastAsUser
+(<code>Intent, UserHandle</code>)</A></nobr><br>
+<!-- Method sendStickyOrderedBroadcast -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyOrderedBroadcast_changed(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">sendStickyOrderedBroadcast
+(<code>Intent, BroadcastReceiver, Handler, int, String, Bundle</code>)</A></nobr><br>
+<!-- Method sendStickyOrderedBroadcastAsUser -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyOrderedBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">sendStickyOrderedBroadcastAsUser
+(<code>Intent, UserHandle, BroadcastReceiver, Handler, int, String, Bundle</code>)</A></nobr><br>
+<!-- Class Sensor -->
+<A HREF="android.hardware.Sensor.html" class="hiddenlink" target="rightframe">Sensor</A><br>
+<!-- Class SensorManager -->
+<A HREF="android.hardware.SensorManager.html" class="hiddenlink" target="rightframe">SensorManager</A><br>
+<!-- Field sessionService -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.sessionService" class="hiddenlink" target="rightframe">sessionService</A>
+</nobr><br>
+<!-- Method setAcceptThirdPartyCookies -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.setAcceptThirdPartyCookies_added(android.webkit.WebView, boolean)" class="hiddenlink" target="rightframe"><b>setAcceptThirdPartyCookies</b>
+(<code>WebView, boolean</code>)</A></nobr><br>
+<!-- Method setAccountManagementDisabled -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setAccountManagementDisabled_added(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setAccountManagementDisabled</b>
+(<code>ComponentName, String, boolean</code>)</A></nobr><br>
+<!-- Method setActionBar -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.setActionBar_added(android.widget.Toolbar)" class="hiddenlink" target="rightframe"><b>setActionBar</b>
+(<code>Toolbar</code>)</A></nobr><br>
+<!-- Method setAlarmClock -->
+<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.setAlarmClock_added(android.app.AlarmManager.AlarmClockInfo, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>setAlarmClock</b>
+(<code>AlarmClockInfo, PendingIntent</code>)</A></nobr><br>
+<!-- Method setAllowEnterTransitionOverlap -->
+<i>setAllowEnterTransitionOverlap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setAllowEnterTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setAllowEnterTransitionOverlap -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setAllowEnterTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setAllowReturnTransitionOverlap -->
+<i>setAllowReturnTransitionOverlap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setAllowReturnTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setAllowReturnTransitionOverlap -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setAllowReturnTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setApplicationHidden -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setApplicationHidden_added(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setApplicationHidden</b>
+(<code>ComponentName, String, boolean</code>)</A></nobr><br>
+<!-- Method setApplicationRestrictions -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setApplicationRestrictions_added(android.content.ComponentName, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>setApplicationRestrictions</b>
+(<code>ComponentName, String, Bundle</code>)</A></nobr><br>
+<!-- Method setAttribute -->
+<nobr><A HREF="android.net.nsd.NsdServiceInfo.html#android.net.nsd.NsdServiceInfo.setAttribute_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>setAttribute</b>
+(<code>String, String</code>)</A></nobr><br>
+<!-- Method setAudioAttributes -->
+<i>setAudioAttributes</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AudioAttributes</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+<!-- Method setAudioAttributes -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AudioAttributes</code>)</b>&nbsp;in&nbsp;android.media.Ringtone
+</A></nobr><br>
+<!-- Method setAudioAttributes -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AudioAttributes</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method setAutoTimeRequired -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setAutoTimeRequired_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setAutoTimeRequired</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<!-- Method setBackgroundTintList -->
+<nobr><A HREF="android.view.View.html#android.view.View.setBackgroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setBackgroundTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setBackgroundTintMode -->
+<nobr><A HREF="android.view.View.html#android.view.View.setBackgroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setBackgroundTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setBlocking -->
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.setBlocking_added(boolean)" class="hiddenlink" target="rightframe"><b>setBlocking</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setButtonTintList -->
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.setButtonTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setButtonTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setButtonTintMode -->
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.setButtonTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setButtonTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setCallback -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.setCallback_added(android.media.MediaCodec.Callback)" class="hiddenlink" target="rightframe"><b>setCallback</b>
+(<code>Callback</code>)</A></nobr><br>
+<!-- Method setCamera -->
+<nobr><A HREF="android.media.MediaRecorder.html#android.media.MediaRecorder.setCamera_changed(android.hardware.Camera)" class="hiddenlink" target="rightframe">setCamera
+(<code>Camera</code>)</A></nobr><br>
+<!-- Method setCategory -->
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setCategory_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setCategory</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setCheckMarkTintList -->
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.setCheckMarkTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setCheckMarkTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setCheckMarkTintMode -->
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.setCheckMarkTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setCheckMarkTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setClipToOutline -->
+<nobr><A HREF="android.view.View.html#android.view.View.setClipToOutline_added(boolean)" class="hiddenlink" target="rightframe"><b>setClipToOutline</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setColor -->
+<i>setColor</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setColor_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.app.Notification.Builder
+</A></nobr><br>
+<!-- Method setColor -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.GradientDrawable.html#android.graphics.drawable.GradientDrawable.setColor_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ColorStateList</code>)</b>&nbsp;in&nbsp;android.graphics.drawable.GradientDrawable
+</A></nobr><br>
+<!-- Method setColor -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.setColor_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.widget.EdgeEffect
+</A></nobr><br>
+<!-- Method setConfiguration -->
+<nobr><A HREF="android.hardware.usb.UsbDeviceConnection.html#android.hardware.usb.UsbDeviceConnection.setConfiguration_added(android.hardware.usb.UsbConfiguration)" class="hiddenlink" target="rightframe"><b>setConfiguration</b>
+(<code>UsbConfiguration</code>)</A></nobr><br>
+<!-- Method setContentTransitionManager -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.setContentTransitionManager_added(android.transition.TransitionManager)" class="hiddenlink" target="rightframe"><b>setContentTransitionManager</b>
+(<code>TransitionManager</code>)</A></nobr><br>
+<!-- Method setConverter -->
+<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.setConverter_added(android.animation.TypeConverter)" class="hiddenlink" target="rightframe"><b>setConverter</b>
+(<code>TypeConverter</code>)</A></nobr><br>
+<!-- Method setCookie -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.setCookie_added(java.lang.String, java.lang.String, android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>setCookie</b>
+(<code>String, String, ValueCallback&lt;Boolean&gt;</code>)</A></nobr><br>
+<!-- Method setCropRect -->
+<nobr><A HREF="android.media.Image.html#android.media.Image.setCropRect_added(android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>setCropRect</b>
+(<code>Rect</code>)</A></nobr><br>
+<!-- Method setCrossProfileCallerIdDisabled -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setCrossProfileCallerIdDisabled_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setCrossProfileCallerIdDisabled</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<!-- Method setDrawable -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setDrawable_added(android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe"><b>setDrawable</b>
+(<code>Drawable</code>)</A></nobr><br>
+<!-- Method setElegantTextHeight -->
+<i>setElegantTextHeight</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setElegantTextHeight_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+<!-- Method setElegantTextHeight -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setElegantTextHeight_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<!-- Method setElevation -->
+<i>setElevation</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setElevation_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+<!-- Method setElevation -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.View.html#android.view.View.setElevation_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.view.View
+</A></nobr><br>
+<!-- Method setElevation -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.PopupWindow.html#android.widget.PopupWindow.setElevation_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.widget.PopupWindow
+</A></nobr><br>
+<!-- Method setEnterSharedElementCallback -->
+<i>setEnterSharedElementCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setEnterSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+<!-- Method setEnterSharedElementCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setEnterSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setEnterTransition -->
+<i>setEnterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setEnterTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setEpicenterCallback -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.setEpicenterCallback_added(android.transition.Transition.EpicenterCallback)" class="hiddenlink" target="rightframe"><b>setEpicenterCallback</b>
+(<code>EpicenterCallback</code>)</A></nobr><br>
+<!-- Method setError -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.setError_added(java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>setError</b>
+(<code>CharSequence</code>)</A></nobr><br>
+<!-- Method setExitSharedElementCallback -->
+<i>setExitSharedElementCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setExitSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+<!-- Method setExitSharedElementCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setExitSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setExitTransition -->
+<i>setExitTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setExitTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setExitTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setExitTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setFastScrollStyle -->
+<nobr><A HREF="android.widget.AbsListView.html#android.widget.AbsListView.setFastScrollStyle_added(int)" class="hiddenlink" target="rightframe"><b>setFastScrollStyle</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setFeatureEnabled -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.setFeatureEnabled_added(java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setFeatureEnabled</b>
+(<code>String, boolean</code>)</A></nobr><br>
+<!-- Method setFirstDayOfWeek -->
+<nobr><A HREF="android.widget.DatePicker.html#android.widget.DatePicker.setFirstDayOfWeek_added(int)" class="hiddenlink" target="rightframe"><b>setFirstDayOfWeek</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setFontFeatureSettings -->
+<i>setFontFeatureSettings</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setFontFeatureSettings_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+<!-- Method setFontFeatureSettings -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setFontFeatureSettings_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<!-- Method setForegroundTintList -->
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.setForegroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setForegroundTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setForegroundTintMode -->
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.setForegroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setForegroundTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setFromDegrees -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setFromDegrees_added(float)" class="hiddenlink" target="rightframe"><b>setFromDegrees</b>
+(<code>float</code>)</A></nobr><br>
+<!-- Method setGlobalSetting -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setGlobalSetting_added(android.content.ComponentName, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>setGlobalSetting</b>
+(<code>ComponentName, String, String</code>)</A></nobr><br>
+<!-- Method setHideOffset -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setHideOffset_added(int)" class="hiddenlink" target="rightframe"><b>setHideOffset</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setHideOnContentScrollEnabled -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setHideOnContentScrollEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setHideOnContentScrollEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setHotspot -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setHotspot_added(float, float)" class="hiddenlink" target="rightframe"><b>setHotspot</b>
+(<code>float, float</code>)</A></nobr><br>
+<!-- Method setHotspotBounds -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setHotspotBounds_added(int, int, int, int)" class="hiddenlink" target="rightframe"><b>setHotspotBounds</b>
+(<code>int, int, int, int</code>)</A></nobr><br>
+<!-- Method setImageTintList -->
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.setImageTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setImageTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setImageTintMode -->
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.setImageTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setImageTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setIndeterminateDrawableTiled -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setIndeterminateDrawableTiled_added(android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe"><b>setIndeterminateDrawableTiled</b>
+(<code>Drawable</code>)</A></nobr><br>
+<!-- Method setIndeterminateTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setIndeterminateTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setIndeterminateTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setIndeterminateTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setIndeterminateTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setIndeterminateTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setInterface -->
+<nobr><A HREF="android.hardware.usb.UsbDeviceConnection.html#android.hardware.usb.UsbDeviceConnection.setInterface_added(android.hardware.usb.UsbInterface)" class="hiddenlink" target="rightframe"><b>setInterface</b>
+(<code>UsbInterface</code>)</A></nobr><br>
+<!-- Method setIntValue -->
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.setIntValue_added(int)" class="hiddenlink" target="rightframe"><b>setIntValue</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setLetterSpacing -->
+<i>setLetterSpacing</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setLetterSpacing_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+<!-- Method setLetterSpacing -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setLetterSpacing_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<!-- Method setListNavigationCallbacks -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setListNavigationCallbacks_changed(android.widget.SpinnerAdapter, android.app.ActionBar.OnNavigationListener)" class="hiddenlink" target="rightframe">setListNavigationCallbacks
+(<code>SpinnerAdapter, OnNavigationListener</code>)</A></nobr><br>
+<!-- Method setLockTaskPackages -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setLockTaskPackages_added(android.content.ComponentName, java.lang.String[])" class="hiddenlink" target="rightframe"><b>setLockTaskPackages</b>
+(<code>ComponentName, String[]</code>)</A></nobr><br>
+<!-- Method setMasterVolumeMuted -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setMasterVolumeMuted_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setMasterVolumeMuted</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<!-- Method setMatchOrder -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.setMatchOrder_added(int...)" class="hiddenlink" target="rightframe"><b>setMatchOrder</b>
+()</A></nobr><br>
+<!-- Method setMaxTextLength -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.setMaxTextLength_added(int)" class="hiddenlink" target="rightframe"><b>setMaxTextLength</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setMediaController -->
+<i>setMediaController</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setMediaController_added(android.media.session.MediaController)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>MediaController</code>)</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+<!-- Method setMediaController -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setMediaController_added(android.media.session.MediaController)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>MediaController</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setMixedContentMode -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setMixedContentMode_added(int)" class="hiddenlink" target="rightframe"><b>setMixedContentMode</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setMode -->
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.setMode_added(int)" class="hiddenlink" target="rightframe"><b>setMode</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setNavigationBarColor -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.setNavigationBarColor_added(int)" class="hiddenlink" target="rightframe"><b>setNavigationBarColor</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setNavigationMode -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setNavigationMode_changed(int)" class="hiddenlink" target="rightframe">setNavigationMode
+(<code>int</code>)</A></nobr><br>
+<!-- Method setNestedScrollingEnabled -->
+<nobr><A HREF="android.view.View.html#android.view.View.setNestedScrollingEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setNestedScrollingEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setNetworkPreference -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.setNetworkPreference_changed(int)" class="hiddenlink" target="rightframe">setNetworkPreference
+(<code>int</code>)</A></nobr><br>
+<!-- Method setOnFrameAvailableListener -->
+<nobr><A HREF="android.graphics.SurfaceTexture.html#android.graphics.SurfaceTexture.setOnFrameAvailableListener_added(android.graphics.SurfaceTexture.OnFrameAvailableListener, android.os.Handler)" class="hiddenlink" target="rightframe"><b>setOnFrameAvailableListener</b>
+(<code>OnFrameAvailableListener, Handler</code>)</A></nobr><br>
+<!-- Method setOutlineProvider -->
+<nobr><A HREF="android.view.View.html#android.view.View.setOutlineProvider_added(android.view.ViewOutlineProvider)" class="hiddenlink" target="rightframe"><b>setOutlineProvider</b>
+(<code>ViewOutlineProvider</code>)</A></nobr><br>
+<!-- Method setOverlay -->
+<nobr><A HREF="android.widget.QuickContactBadge.html#android.widget.QuickContactBadge.setOverlay_added(android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe"><b>setOverlay</b>
+(<code>Drawable</code>)</A></nobr><br>
+<!-- Method setPaddingMode -->
+<nobr><A HREF="android.graphics.drawable.LayerDrawable.html#android.graphics.drawable.LayerDrawable.setPaddingMode_added(int)" class="hiddenlink" target="rightframe"><b>setPaddingMode</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setPathMotion -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.setPathMotion_added(android.transition.PathMotion)" class="hiddenlink" target="rightframe"><b>setPathMotion</b>
+(<code>PathMotion</code>)</A></nobr><br>
+<!-- Method setPermittedAccessibilityServices -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setPermittedAccessibilityServices_added(android.content.ComponentName, java.util.List<java.lang.String>)" class="hiddenlink" target="rightframe"><b>setPermittedAccessibilityServices</b>
+(<code>ComponentName, List&lt;String&gt;</code>)</A></nobr><br>
+<!-- Method setPermittedInputMethods -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setPermittedInputMethods_added(android.content.ComponentName, java.util.List<java.lang.String>)" class="hiddenlink" target="rightframe"><b>setPermittedInputMethods</b>
+(<code>ComponentName, List&lt;String&gt;</code>)</A></nobr><br>
+<!-- Method setPivotX -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setPivotX_added(float)" class="hiddenlink" target="rightframe"><b>setPivotX</b>
+(<code>float</code>)</A></nobr><br>
+<!-- Method setPivotXRelative -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setPivotXRelative_added(boolean)" class="hiddenlink" target="rightframe"><b>setPivotXRelative</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setPivotY -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setPivotY_added(float)" class="hiddenlink" target="rightframe"><b>setPivotY</b>
+(<code>float</code>)</A></nobr><br>
+<!-- Method setPivotYRelative -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setPivotYRelative_added(boolean)" class="hiddenlink" target="rightframe"><b>setPivotYRelative</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setPreferredService -->
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.setPreferredService_added(android.app.Activity, android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>setPreferredService</b>
+(<code>Activity, ComponentName</code>)</A></nobr><br>
+<!-- Method setProcessDefaultNetwork -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.setProcessDefaultNetwork_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>setProcessDefaultNetwork</b>
+(<code>Network</code>)</A></nobr><br>
+<!-- Method setProfileEnabled -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setProfileEnabled_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>setProfileEnabled</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method setProfileName -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setProfileName_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>setProfileName</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method setProgressBackgroundTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressBackgroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setProgressBackgroundTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setProgressBackgroundTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressBackgroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setProgressBackgroundTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setProgressDrawableTiled -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressDrawableTiled_added(android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe"><b>setProgressDrawableTiled</b>
+(<code>Drawable</code>)</A></nobr><br>
+<!-- Method setProgressTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setProgressTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setProgressTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setProgressTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setPropagation -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.setPropagation_added(android.transition.TransitionPropagation)" class="hiddenlink" target="rightframe"><b>setPropagation</b>
+(<code>TransitionPropagation</code>)</A></nobr><br>
+<!-- Method setPublicVersion -->
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setPublicVersion_added(android.app.Notification)" class="hiddenlink" target="rightframe"><b>setPublicVersion</b>
+(<code>Notification</code>)</A></nobr><br>
+<!-- Method setRasterizer -->
+<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setRasterizer_changed(android.graphics.Rasterizer)" class="hiddenlink" target="rightframe">setRasterizer
+(<code>Rasterizer</code>)</A></nobr><br>
+<!-- Method setRecommendedGlobalProxy -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setRecommendedGlobalProxy_added(android.content.ComponentName, android.net.ProxyInfo)" class="hiddenlink" target="rightframe"><b>setRecommendedGlobalProxy</b>
+(<code>ComponentName, ProxyInfo</code>)</A></nobr><br>
+<!-- Method setReenterTransition -->
+<i>setReenterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setReenterTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setRemoveOnCancelPolicy -->
+<nobr><A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html#java.util.concurrent.ScheduledThreadPoolExecutor.setRemoveOnCancelPolicy_added(boolean)" class="hiddenlink" target="rightframe"><b>setRemoveOnCancelPolicy</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setReparent -->
+<nobr><A HREF="android.transition.ChangeBounds.html#android.transition.ChangeBounds.setReparent_changed(boolean)" class="hiddenlink" target="rightframe">setReparent
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setResponseHeaders -->
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.setResponseHeaders_added(java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe"><b>setResponseHeaders</b>
+(<code>Map&lt;String, String&gt;</code>)</A></nobr><br>
+<!-- Method setRestrictionsProvider -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setRestrictionsProvider_added(android.content.ComponentName, android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>setRestrictionsProvider</b>
+(<code>ComponentName, ComponentName</code>)</A></nobr><br>
+<!-- Method setReturnTransition -->
+<i>setReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setReturnTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setScreenCaptureDisabled -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setScreenCaptureDisabled_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setScreenCaptureDisabled</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<!-- Method setSecondaryProgressTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setSecondaryProgressTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setSecondaryProgressTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setSecondaryProgressTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setSecondaryProgressTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setSecondaryProgressTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setSecureSetting -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setSecureSetting_added(android.content.ComponentName, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>setSecureSetting</b>
+(<code>ComponentName, String, String</code>)</A></nobr><br>
+<!-- Method setSelectedNavigationItem -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setSelectedNavigationItem_changed(int)" class="hiddenlink" target="rightframe">setSelectedNavigationItem
+(<code>int</code>)</A></nobr><br>
+<!-- Method setSelectionFromTop -->
+<i>setSelectionFromTop</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AbsListView.html#android.widget.AbsListView.setSelectionFromTop_added(int, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int</code>)</b>&nbsp;in&nbsp;android.widget.AbsListView
+</A></nobr><br>
+<!-- Method setSelectionFromTop -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.ListView.html#android.widget.ListView.setSelectionFromTop_changed(int, int)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>int, int</code>)&nbsp;in&nbsp;android.widget.ListView
+</A></nobr><br>
+<!-- Method setSharedElementEnterTransition -->
+<i>setSharedElementEnterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setSharedElementEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setSharedElementEnterTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setSharedElementExitTransition -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementExitTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setSharedElementExitTransition</b>
+(<code>Transition</code>)</A></nobr><br>
+<!-- Method setSharedElementReenterTransition -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setSharedElementReenterTransition</b>
+(<code>Transition</code>)</A></nobr><br>
+<!-- Method setSharedElementReturnTransition -->
+<i>setSharedElementReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setSharedElementReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setSharedElementReturnTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setSharedElementsUseOverlay -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementsUseOverlay_added(boolean)" class="hiddenlink" target="rightframe"><b>setSharedElementsUseOverlay</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setShowSoftInputOnFocus -->
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setShowSoftInputOnFocus_added(boolean)" class="hiddenlink" target="rightframe"><b>setShowSoftInputOnFocus</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setShowText -->
+<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.setShowText_added(boolean)" class="hiddenlink" target="rightframe"><b>setShowText</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setSound -->
+<i>setSound</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_removed(android.net.Uri, int)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Uri, int</code>)</strike>&nbsp;in&nbsp;android.app.Notification.Builder
+</A></nobr><br>
+<!-- Method setSound -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_added(android.net.Uri, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Uri, AudioAttributes</code>)</b>&nbsp;in&nbsp;android.app.Notification.Builder
+</A></nobr><br>
+<!-- Method setSound -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_added(android.net.Uri, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Uri, int</code>)</b>&nbsp;in&nbsp;android.app.Notification.Builder
+</A></nobr><br>
+<!-- Method setSplitTrack -->
+<i>setSplitTrack</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.setSplitTrack_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.widget.AbsSeekBar
+</A></nobr><br>
+<!-- Method setSplitTrack -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.setSplitTrack_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.widget.Switch
+</A></nobr><br>
+<!-- Method setStateListAnimator -->
+<nobr><A HREF="android.view.View.html#android.view.View.setStateListAnimator_added(android.animation.StateListAnimator)" class="hiddenlink" target="rightframe"><b>setStateListAnimator</b>
+(<code>StateListAnimator</code>)</A></nobr><br>
+<!-- Method setStatusBarColor -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.setStatusBarColor_added(int)" class="hiddenlink" target="rightframe"><b>setStatusBarColor</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setStatusCodeAndReasonPhrase -->
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.setStatusCodeAndReasonPhrase_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>setStatusCodeAndReasonPhrase</b>
+(<code>int, String</code>)</A></nobr><br>
+<!-- Method setStereoVolume -->
+<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.setStereoVolume_changed(float, float)" class="hiddenlink" target="rightframe">setStereoVolume
+(<code>float, float</code>)</A></nobr><br>
+<!-- Method setStreamType -->
+<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.setStreamType_changed(int)" class="hiddenlink" target="rightframe">setStreamType
+(<code>int</code>)</A></nobr><br>
+<!-- Method setStroke -->
+<i>setStroke</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.GradientDrawable.html#android.graphics.drawable.GradientDrawable.setStroke_added(int, android.content.res.ColorStateList)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, ColorStateList</code>)</b>&nbsp;in&nbsp;android.graphics.drawable.GradientDrawable
+</A></nobr><br>
+<!-- Method setStroke -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.GradientDrawable.html#android.graphics.drawable.GradientDrawable.setStroke_added(int, android.content.res.ColorStateList, float, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, ColorStateList, float, float</code>)</b>&nbsp;in&nbsp;android.graphics.drawable.GradientDrawable
+</A></nobr><br>
+<!-- Method setTaskDescription -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.setTaskDescription_added(android.app.ActivityManager.TaskDescription)" class="hiddenlink" target="rightframe"><b>setTaskDescription</b>
+(<code>TaskDescription</code>)</A></nobr><br>
+<!-- Method setThumbTintList -->
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.setThumbTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setThumbTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setThumbTintMode -->
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.setThumbTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setThumbTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setTicker -->
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setTicker_changed(java.lang.CharSequence, android.widget.RemoteViews)" class="hiddenlink" target="rightframe">setTicker
+(<code>CharSequence, RemoteViews</code>)</A></nobr><br>
+<!-- Class SettingInjectorService -->
+<A HREF="android.location.SettingInjectorService.html" class="hiddenlink" target="rightframe">SettingInjectorService</A><br>
+<!-- Class Settings -->
+<A HREF="android.provider.Settings.html" class="hiddenlink" target="rightframe">Settings</A><br>
+<!-- Class Settings.Global -->
+<A HREF="android.provider.Settings.Global.html" class="hiddenlink" target="rightframe">Settings.Global</A><br>
+<!-- Class Settings.Secure -->
+<A HREF="android.provider.Settings.Secure.html" class="hiddenlink" target="rightframe">Settings.Secure</A><br>
+<!-- Class Settings.System -->
+<A HREF="android.provider.Settings.System.html" class="hiddenlink" target="rightframe">Settings.System</A><br>
+<!-- Method setTint -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTint_added(int)" class="hiddenlink" target="rightframe"><b>setTint</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setTintList -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setTintMode -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setTitleColor -->
+<i>setTitleColor</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setTitleColor_changed(int)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>int</code>)&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+<!-- Method setTitleColor -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setTitleColor_changed(int)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>int</code>)&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setToDegrees -->
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setToDegrees_added(float)" class="hiddenlink" target="rightframe"><b>setToDegrees</b>
+(<code>float</code>)</A></nobr><br>
+<!-- Method setTouchscreenBlocksFocus -->
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.setTouchscreenBlocksFocus_added(boolean)" class="hiddenlink" target="rightframe"><b>setTouchscreenBlocksFocus</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setTransitionBackgroundFadeDuration -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.setTransitionBackgroundFadeDuration_added(long)" class="hiddenlink" target="rightframe"><b>setTransitionBackgroundFadeDuration</b>
+(<code>long</code>)</A></nobr><br>
+<!-- Method setTransitionGroup -->
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.setTransitionGroup_added(boolean)" class="hiddenlink" target="rightframe"><b>setTransitionGroup</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setTransitionManager -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.setTransitionManager_added(android.transition.TransitionManager)" class="hiddenlink" target="rightframe"><b>setTransitionManager</b>
+(<code>TransitionManager</code>)</A></nobr><br>
+<!-- Method setTransitionName -->
+<nobr><A HREF="android.view.View.html#android.view.View.setTransitionName_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setTransitionName</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setTranslationZ -->
+<nobr><A HREF="android.view.View.html#android.view.View.setTranslationZ_added(float)" class="hiddenlink" target="rightframe"><b>setTranslationZ</b>
+(<code>float</code>)</A></nobr><br>
+<!-- Method setUninstallBlocked -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setUninstallBlocked_added(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setUninstallBlocked</b>
+(<code>ComponentName, String, boolean</code>)</A></nobr><br>
+<!-- Field setupActivity -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.setupActivity" class="hiddenlink" target="rightframe">setupActivity</A>
+</nobr><br>
+<!-- Method setUserRestriction -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestriction_changed(java.lang.String, boolean)" class="hiddenlink" target="rightframe">setUserRestriction
+(<code>String, boolean</code>)</A></nobr><br>
+<!-- Method setUserRestrictions -->
+<i>setUserRestrictions</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestrictions_changed(android.os.Bundle)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Bundle</code>)&nbsp;in&nbsp;android.os.UserManager
+</A></nobr><br>
+<!-- Method setUserRestrictions -->
+&nbsp;&nbsp;<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestrictions_changed(android.os.Bundle, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Bundle, UserHandle</code>)&nbsp;in&nbsp;android.os.UserManager
+</A></nobr><br>
+<!-- Method setVideoURI -->
+<nobr><A HREF="android.widget.VideoView.html#android.widget.VideoView.setVideoURI_added(android.net.Uri, java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe"><b>setVideoURI</b>
+(<code>Uri, Map&lt;String, String&gt;</code>)</A></nobr><br>
+<!-- Method setView -->
+<nobr><A HREF="android.app.AlertDialog.Builder.html#android.app.AlertDialog.Builder.setView_added(int)" class="hiddenlink" target="rightframe"><b>setView</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setVisibility -->
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setVisibility_added(int)" class="hiddenlink" target="rightframe"><b>setVisibility</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setVoice -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.setVoice_added(android.speech.tts.Voice)" class="hiddenlink" target="rightframe"><b>setVoice</b>
+(<code>Voice</code>)</A></nobr><br>
+<!-- Method setVolume -->
+<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.setVolume_added(float)" class="hiddenlink" target="rightframe"><b>setVolume</b>
+(<code>float</code>)</A></nobr><br>
+<!-- Method setZ -->
+<nobr><A HREF="android.view.View.html#android.view.View.setZ_added(float)" class="hiddenlink" target="rightframe"><b>setZ</b>
+(<code>float</code>)</A></nobr><br>
+<!-- Class Shape -->
+<A HREF="android.graphics.drawable.shapes.Shape.html" class="hiddenlink" target="rightframe">Shape</A><br>
+<!-- Class SharedElementCallback -->
+<A HREF="pkg_android.app.html#SharedElementCallback" class="hiddenlink" target="rightframe"><b>SharedElementCallback</b></A><br>
+<!-- Method shouldInterceptRequest -->
+<i>shouldInterceptRequest</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_removed(android.webkit.WebView, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>WebView, String</code>)</strike>&nbsp;in&nbsp;android.webkit.WebViewClient
+</A></nobr><br>
+<!-- Method shouldInterceptRequest -->
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, android.webkit.WebResourceRequest)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>WebView, WebResourceRequest</code>)</b>&nbsp;in&nbsp;android.webkit.WebViewClient
+</A></nobr><br>
+<!-- Method shouldInterceptRequest -->
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>WebView, String</code>)</b>&nbsp;in&nbsp;android.webkit.WebViewClient
+</A></nobr><br>
+<!-- Field showText -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.showText" class="hiddenlink" target="rightframe">showText</A>
+</nobr><br>
+<!-- Class SidePropagation -->
+<A HREF="pkg_android.transition.html#SidePropagation" class="hiddenlink" target="rightframe"><b>SidePropagation</b></A><br>
+<!-- Field SIM -->
+<nobr><A HREF="android.net.wifi.WifiEnterpriseConfig.Eap.html#android.net.wifi.WifiEnterpriseConfig.Eap.SIM" class="hiddenlink" target="rightframe">SIM</A>
+</nobr><br>
+<!-- Class Size -->
+<A HREF="pkg_android.util.html#Size" class="hiddenlink" target="rightframe"><b>Size</b></A><br>
+<!-- Method size -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.size_changed()" class="hiddenlink" target="rightframe">size
+()</A></nobr><br>
+<!-- Class SizeF -->
+<A HREF="pkg_android.util.html#SizeF" class="hiddenlink" target="rightframe"><b>SizeF</b></A><br>
+<!-- Field SKIP_FIRST_USE_HINTS -->
+<nobr><A HREF="android.provider.Settings.Secure.html#android.provider.Settings.Secure.SKIP_FIRST_USE_HINTS" class="hiddenlink" target="rightframe">SKIP_FIRST_USE_HINTS</A>
+</nobr><br>
+<!-- Class Slide -->
+<A HREF="pkg_android.transition.html#Slide" class="hiddenlink" target="rightframe"><b>Slide</b></A><br>
+<!-- Field slideEdge -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.slideEdge" class="hiddenlink" target="rightframe">slideEdge</A>
+</nobr><br>
+<!-- Class SlidingDrawer -->
+<i>SlidingDrawer</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.SlidingDrawer.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor SlidingDrawer -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.SlidingDrawer.html#android.widget.SlidingDrawer.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>SlidingDrawer</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class SmsManager -->
+<A HREF="android.telephony.SmsManager.html" class="hiddenlink" target="rightframe">SmsManager</A><br>
+<!-- Field SORT_INDEX -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SORT_INDEX" class="hiddenlink" target="rightframe">SORT_INDEX</A>
+</nobr><br>
+<!-- Class SoundPool -->
+<i>SoundPool</i><br>
+&nbsp;&nbsp;<A HREF="android.media.SoundPool.html" class="hiddenlink" target="rightframe">android.media</A><br>
+<!-- Constructor SoundPool -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.SoundPool.html#android.media.SoundPool.ctor_changed(int, int, int)" class="hiddenlink" target="rightframe">SoundPool
+(<code>int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class SoundPool.Builder -->
+<A HREF="pkg_android.media.html#SoundPool.Builder" class="hiddenlink" target="rightframe"><b>SoundPool.Builder</b></A><br>
+<!-- Field SOURCE_HDMI -->
+<nobr><A HREF="android.view.InputDevice.html#android.view.InputDevice.SOURCE_HDMI" class="hiddenlink" target="rightframe">SOURCE_HDMI</A>
+</nobr><br>
+<!-- Class Space -->
+<i>Space</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.Space.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor Space -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Space.html#android.widget.Space.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>Space</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class SpannableStringBuilder -->
+<A HREF="android.text.SpannableStringBuilder.html" class="hiddenlink" target="rightframe">SpannableStringBuilder</A><br>
+<!-- Method speak -->
+<i>speak</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.speak_added(java.lang.CharSequence, int, android.os.Bundle, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, int, Bundle, String</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method speak -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.speak_changed(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>String, int, HashMap&lt;String, String&gt;</code>)&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method spec -->
+<i>spec</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, android.widget.GridLayout.Alignment, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, Alignment, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+<!-- Method spec -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+<!-- Method spec -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, int, android.widget.GridLayout.Alignment, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, Alignment, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+<!-- Method spec -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, int, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+<!-- Class Spinner -->
+<i>Spinner</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.Spinner.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor Spinner -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Spinner.html#android.widget.Spinner.ctor_added(android.content.Context, android.util.AttributeSet, int, int, int)" class="hiddenlink" target="rightframe"><b>Spinner</b>
+(<code>Context, AttributeSet, int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field splitNames -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.splitNames" class="hiddenlink" target="rightframe">splitNames</A>
+</nobr><br>
+<!-- Field splitPublicSourceDirs -->
+<i>splitPublicSourceDirs</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.splitPublicSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.ApplicationInfo</A>
+</nobr><br>
+<!-- Field splitPublicSourceDirs -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.InstrumentationInfo.html#android.content.pm.InstrumentationInfo.splitPublicSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.InstrumentationInfo</A>
+</nobr><br>
+<!-- Field splitSourceDirs -->
+<i>splitSourceDirs</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.splitSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.ApplicationInfo</A>
+</nobr><br>
+<!-- Field splitSourceDirs -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.InstrumentationInfo.html#android.content.pm.InstrumentationInfo.splitSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.InstrumentationInfo</A>
+</nobr><br>
+<!-- Field splitTrack -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.splitTrack" class="hiddenlink" target="rightframe">splitTrack</A>
+</nobr><br>
+<!-- Field spotShadowAlpha -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.spotShadowAlpha" class="hiddenlink" target="rightframe">spotShadowAlpha</A>
+</nobr><br>
+<!-- Class StackView -->
+<i>StackView</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.StackView.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor StackView -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.StackView.html#android.widget.StackView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>StackView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field stackViewStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.stackViewStyle" class="hiddenlink" target="rightframe">stackViewStyle</A>
+</nobr><br>
+<!-- Method startAppWidgetConfigureActivityForResult -->
+<nobr><A HREF="android.appwidget.AppWidgetHost.html#android.appwidget.AppWidgetHost.startAppWidgetConfigureActivityForResult_added(android.app.Activity, int, int, int, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>startAppWidgetConfigureActivityForResult</b>
+(<code>Activity, int, int, int, Bundle</code>)</A></nobr><br>
+<!-- Method startLeScan -->
+<i>startLeScan</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.startLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>LeScanCallback</code>)&nbsp;in&nbsp;android.bluetooth.BluetoothAdapter
+</A></nobr><br>
+<!-- Method startLeScan -->
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.startLeScan_changed(java.util.UUID[], android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>UUID[], LeScanCallback</code>)&nbsp;in&nbsp;android.bluetooth.BluetoothAdapter
+</A></nobr><br>
+<!-- Method startLockTask -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.startLockTask_added()" class="hiddenlink" target="rightframe"><b>startLockTask</b>
+()</A></nobr><br>
+<!-- Method startMethodTracingSampling -->
+<nobr><A HREF="android.os.Debug.html#android.os.Debug.startMethodTracingSampling_added(java.lang.String, int, int)" class="hiddenlink" target="rightframe"><b>startMethodTracingSampling</b>
+(<code>String, int, int</code>)</A></nobr><br>
+<!-- Method startNestedScroll -->
+<nobr><A HREF="android.view.View.html#android.view.View.startNestedScroll_added(int)" class="hiddenlink" target="rightframe"><b>startNestedScroll</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method startPostponedEnterTransition -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.startPostponedEnterTransition_added()" class="hiddenlink" target="rightframe"><b>startPostponedEnterTransition</b>
+()</A></nobr><br>
+<!-- Method startUsingNetworkFeature -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.startUsingNetworkFeature_changed(int, java.lang.String)" class="hiddenlink" target="rightframe">startUsingNetworkFeature
+(<code>int, String</code>)</A></nobr><br>
+<!-- Method startWps -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.startWps_added(android.net.wifi.WpsInfo, android.net.wifi.WifiManager.WpsCallback)" class="hiddenlink" target="rightframe"><b>startWps</b>
+(<code>WpsInfo, WpsCallback</code>)</A></nobr><br>
+<!-- Field STATE_DOZE -->
+<nobr><A HREF="android.view.Display.html#android.view.Display.STATE_DOZE" class="hiddenlink" target="rightframe">STATE_DOZE</A>
+</nobr><br>
+<!-- Field STATE_DOZE_SUSPEND -->
+<nobr><A HREF="android.view.Display.html#android.view.Display.STATE_DOZE_SUSPEND" class="hiddenlink" target="rightframe">STATE_DOZE_SUSPEND</A>
+</nobr><br>
+<!-- Field STATE_DOZING -->
+<nobr><A HREF="android.view.Display.html#android.view.Display.STATE_DOZING" class="hiddenlink" target="rightframe"><strike>STATE_DOZING</strike></A>
+</nobr><br>
+<!-- Class StateListAnimator -->
+<A HREF="pkg_android.animation.html#StateListAnimator" class="hiddenlink" target="rightframe"><b>StateListAnimator</b></A><br>
+<!-- Field stateListAnimator -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.stateListAnimator" class="hiddenlink" target="rightframe">stateListAnimator</A>
+</nobr><br>
+<!-- Field STATUS_BAR_BACKGROUND_TRANSITION_NAME -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.STATUS_BAR_BACKGROUND_TRANSITION_NAME" class="hiddenlink" target="rightframe">STATUS_BAR_BACKGROUND_TRANSITION_NAME</A>
+</nobr><br>
+<!-- Field statusBarBackground -->
+<nobr><A HREF="android.R.id.html#android.R.id.statusBarBackground" class="hiddenlink" target="rightframe">statusBarBackground</A>
+</nobr><br>
+<!-- Field statusBarColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.statusBarColor" class="hiddenlink" target="rightframe">statusBarColor</A>
+</nobr><br>
+<!-- Class StatusBarNotification -->
+<A HREF="android.service.notification.StatusBarNotification.html" class="hiddenlink" target="rightframe">StatusBarNotification</A><br>
+<!-- Method stopLeScan -->
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.stopLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">stopLeScan
+(<code>LeScanCallback</code>)</A></nobr><br>
+<!-- Method stopLockTask -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.stopLockTask_added()" class="hiddenlink" target="rightframe"><b>stopLockTask</b>
+()</A></nobr><br>
+<!-- Method stopNestedScroll -->
+<nobr><A HREF="android.view.View.html#android.view.View.stopNestedScroll_added()" class="hiddenlink" target="rightframe"><b>stopNestedScroll</b>
+()</A></nobr><br>
+<!-- Field STOPPED -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.STOPPED" class="hiddenlink" target="rightframe">STOPPED</A>
+</nobr><br>
+<!-- Method stopUsingNetworkFeature -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.stopUsingNetworkFeature_changed(int, java.lang.String)" class="hiddenlink" target="rightframe">stopUsingNetworkFeature
+(<code>int, String</code>)</A></nobr><br>
+<!-- Field STREAM_DEFAULT -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.STREAM_DEFAULT" class="hiddenlink" target="rightframe">STREAM_DEFAULT</A>
+</nobr><br>
+<!-- Field STREAM_ITEM_ID -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.STREAM_ITEM_ID" class="hiddenlink" target="rightframe">STREAM_ITEM_ID</A>
+</nobr><br>
+<!-- Field STREQUENT_PHONE_ONLY -->
+<nobr><A HREF="android.provider.ContactsContract.html#android.provider.ContactsContract.STREQUENT_PHONE_ONLY" class="hiddenlink" target="rightframe">STREQUENT_PHONE_ONLY</A>
+</nobr><br>
+<!-- Field strokeAlpha -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeAlpha" class="hiddenlink" target="rightframe">strokeAlpha</A>
+</nobr><br>
+<!-- Field strokeColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeColor" class="hiddenlink" target="rightframe">strokeColor</A>
+</nobr><br>
+<!-- Field strokeLineCap -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeLineCap" class="hiddenlink" target="rightframe">strokeLineCap</A>
+</nobr><br>
+<!-- Field strokeLineJoin -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeLineJoin" class="hiddenlink" target="rightframe">strokeLineJoin</A>
+</nobr><br>
+<!-- Field strokeMiterLimit -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeMiterLimit" class="hiddenlink" target="rightframe">strokeMiterLimit</A>
+</nobr><br>
+<!-- Field strokeWidth -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeWidth" class="hiddenlink" target="rightframe">strokeWidth</A>
+</nobr><br>
+<!-- Field submitBackground -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.submitBackground" class="hiddenlink" target="rightframe">submitBackground</A>
+</nobr><br>
+<!-- Field subtitleTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.subtitleTextAppearance" class="hiddenlink" target="rightframe">subtitleTextAppearance</A>
+</nobr><br>
+<!-- Field SUGGEST_COLUMN_AUDIO_CHANNEL_CONFIG -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_AUDIO_CHANNEL_CONFIG" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_AUDIO_CHANNEL_CONFIG</A>
+</nobr><br>
+<!-- Field SUGGEST_COLUMN_CONTENT_TYPE -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_CONTENT_TYPE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_CONTENT_TYPE</A>
+</nobr><br>
+<!-- Field SUGGEST_COLUMN_DURATION -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_DURATION" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_DURATION</A>
+</nobr><br>
+<!-- Field SUGGEST_COLUMN_IS_LIVE -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_IS_LIVE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_IS_LIVE</A>
+</nobr><br>
+<!-- Field SUGGEST_COLUMN_PRODUCTION_YEAR -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_PRODUCTION_YEAR" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_PRODUCTION_YEAR</A>
+</nobr><br>
+<!-- Field SUGGEST_COLUMN_PURCHASE_PRICE -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_PURCHASE_PRICE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_PURCHASE_PRICE</A>
+</nobr><br>
+<!-- Field SUGGEST_COLUMN_RATING_SCORE -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_RATING_SCORE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_RATING_SCORE</A>
+</nobr><br>
+<!-- Field SUGGEST_COLUMN_RATING_STYLE -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_RATING_STYLE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_RATING_STYLE</A>
+</nobr><br>
+<!-- Field SUGGEST_COLUMN_RENTAL_PRICE -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_RENTAL_PRICE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_RENTAL_PRICE</A>
+</nobr><br>
+<!-- Field SUGGEST_COLUMN_RESULT_CARD_IMAGE -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_RESULT_CARD_IMAGE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_RESULT_CARD_IMAGE</A>
+</nobr><br>
+<!-- Field SUGGEST_COLUMN_VIDEO_HEIGHT -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_VIDEO_HEIGHT" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_VIDEO_HEIGHT</A>
+</nobr><br>
+<!-- Field SUGGEST_COLUMN_VIDEO_WIDTH -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_VIDEO_WIDTH" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_VIDEO_WIDTH</A>
+</nobr><br>
+<!-- Field suggestionRowLayout -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.suggestionRowLayout" class="hiddenlink" target="rightframe">suggestionRowLayout</A>
+</nobr><br>
+<!-- Field SUPPORTED_32_BIT_ABIS -->
+<nobr><A HREF="android.os.Build.html#android.os.Build.SUPPORTED_32_BIT_ABIS" class="hiddenlink" target="rightframe">SUPPORTED_32_BIT_ABIS</A>
+</nobr><br>
+<!-- Field SUPPORTED_64_BIT_ABIS -->
+<nobr><A HREF="android.os.Build.html#android.os.Build.SUPPORTED_64_BIT_ABIS" class="hiddenlink" target="rightframe">SUPPORTED_64_BIT_ABIS</A>
+</nobr><br>
+<!-- Field SUPPORTED_ABIS -->
+<nobr><A HREF="android.os.Build.html#android.os.Build.SUPPORTED_ABIS" class="hiddenlink" target="rightframe">SUPPORTED_ABIS</A>
+</nobr><br>
+<!-- Method supportsAidPrefixRegistration -->
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.supportsAidPrefixRegistration_added()" class="hiddenlink" target="rightframe"><b>supportsAidPrefixRegistration</b>
+()</A></nobr><br>
+<!-- Method supportsSource -->
+<nobr><A HREF="android.view.InputDevice.html#android.view.InputDevice.supportsSource_added(int)" class="hiddenlink" target="rightframe"><b>supportsSource</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Field SURFACE -->
+<nobr><A HREF="android.media.MediaRecorder.VideoSource.html#android.media.MediaRecorder.VideoSource.SURFACE" class="hiddenlink" target="rightframe">SURFACE</A>
+</nobr><br>
+<!-- Class SurfaceTexture -->
+<A HREF="android.graphics.SurfaceTexture.html" class="hiddenlink" target="rightframe">SurfaceTexture</A><br>
+<!-- Class SurfaceView -->
+<i>SurfaceView</i><br>
+&nbsp;&nbsp;<A HREF="android.view.SurfaceView.html" class="hiddenlink" target="rightframe">android.view</A><br>
+<!-- Constructor SurfaceView -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.SurfaceView.html#android.view.SurfaceView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>SurfaceView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class Switch -->
+<i>Switch</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.Switch.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor Switch -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>Switch</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class SwitchPreference -->
+<i>SwitchPreference</i><br>
+&nbsp;&nbsp;<A HREF="android.preference.SwitchPreference.html" class="hiddenlink" target="rightframe">android.preference</A><br>
+<!-- Constructor SwitchPreference -->
+&nbsp;&nbsp;<nobr><A HREF="android.preference.SwitchPreference.html#android.preference.SwitchPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>SwitchPreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field switchStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.switchStyle" class="hiddenlink" target="rightframe">switchStyle</A>
+</nobr><br>
+<!-- Method switchUser -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.switchUser_added(android.content.ComponentName, android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>switchUser</b>
+(<code>ComponentName, UserHandle</code>)</A></nobr><br>
+<!-- Field SYNC1 -->
+<i>SYNC1</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC1" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<!-- Field SYNC1 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC1" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<!-- Field SYNC2 -->
+<i>SYNC2</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC2" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<!-- Field SYNC2 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC2" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<!-- Field SYNC3 -->
+<i>SYNC3</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC3" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<!-- Field SYNC3 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC3" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<!-- Field SYNC4 -->
+<i>SYNC4</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC4" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<!-- Field SYNC4 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC4" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<!-- Method syncFromRamToFlash -->
+<nobr><A HREF="android.webkit.CookieSyncManager.html#android.webkit.CookieSyncManager.syncFromRamToFlash_changed()" class="hiddenlink" target="rightframe">syncFromRamToFlash
+()</A></nobr><br>
+<!-- Class SynthesisCallback -->
+<A HREF="android.speech.tts.SynthesisCallback.html" class="hiddenlink" target="rightframe"><i>SynthesisCallback</i></A><br>
+<!-- Class SynthesisRequest -->
+<i>SynthesisRequest</i><br>
+&nbsp;&nbsp;<A HREF="android.speech.tts.SynthesisRequest.html" class="hiddenlink" target="rightframe">android.speech.tts</A><br>
+<!-- Constructor SynthesisRequest -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.ctor_added(java.lang.CharSequence, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>SynthesisRequest</b>
+(<code>CharSequence, Bundle</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Method synthesizeToFile -->
+<i>synthesizeToFile</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.synthesizeToFile_added(java.lang.CharSequence, android.os.Bundle, java.io.File, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, Bundle, File, String</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method synthesizeToFile -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.synthesizeToFile_changed(java.lang.String, java.util.HashMap<java.lang.String, java.lang.String>, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>String, HashMap&lt;String, String&gt;, String</code>)&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Class TabHost -->
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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="#X"><font size="-2">X</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>TabHost</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.TabHost.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor TabHost -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TabHost.html#android.widget.TabHost.ctor_added(android.content.Context, android.util.AttributeSet, int)" class="hiddenlink" target="rightframe"><b>TabHost</b>
+(<code>Context, AttributeSet, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor TabHost -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TabHost.html#android.widget.TabHost.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TabHost</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class TabWidget -->
+<i>TabWidget</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.TabWidget.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor TabWidget -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TabWidget.html#android.widget.TabWidget.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TabWidget</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field targetName -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.targetName" class="hiddenlink" target="rightframe">targetName</A>
+</nobr><br>
+<!-- Field taskDescription -->
+<nobr><A HREF="android.app.ActivityManager.RecentTaskInfo.html#android.app.ActivityManager.RecentTaskInfo.taskDescription" class="hiddenlink" target="rightframe">taskDescription</A>
+</nobr><br>
+<!-- Field TELECOM_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.TELECOM_SERVICE" class="hiddenlink" target="rightframe">TELECOM_SERVICE</A>
+</nobr><br>
+<!-- Class Telephony.BaseMmsColumns -->
+<A HREF="android.provider.Telephony.BaseMmsColumns.html" class="hiddenlink" target="rightframe"><i>Telephony.BaseMmsColumns</i></A><br>
+<!-- Class Telephony.TextBasedSmsColumns -->
+<A HREF="android.provider.Telephony.TextBasedSmsColumns.html" class="hiddenlink" target="rightframe"><i>Telephony.TextBasedSmsColumns</i></A><br>
+<!-- Class Telephony.ThreadsColumns -->
+<A HREF="android.provider.Telephony.ThreadsColumns.html" class="hiddenlink" target="rightframe"><i>Telephony.ThreadsColumns</i></A><br>
+<!-- Class TelephonyManager -->
+<A HREF="android.telephony.TelephonyManager.html" class="hiddenlink" target="rightframe">TelephonyManager</A><br>
+<!-- Field TEXT -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.TEXT" class="hiddenlink" target="rightframe">TEXT</A>
+</nobr><br>
+<!-- Field TextAppearance_DeviceDefault_Widget_ActionBar_Subtitle_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_DeviceDefault_Widget_ActionBar_Subtitle_Inverse" class="hiddenlink" target="rightframe">TextAppearance_DeviceDefault_Widget_ActionBar_Subtitle_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_DeviceDefault_Widget_ActionBar_Title_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_DeviceDefault_Widget_ActionBar_Title_Inverse" class="hiddenlink" target="rightframe">TextAppearance_DeviceDefault_Widget_ActionBar_Title_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_DeviceDefault_Widget_ActionMode_Subtitle_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_DeviceDefault_Widget_ActionMode_Subtitle_Inverse" class="hiddenlink" target="rightframe">TextAppearance_DeviceDefault_Widget_ActionMode_Subtitle_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_DeviceDefault_Widget_ActionMode_Title_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_DeviceDefault_Widget_ActionMode_Title_Inverse" class="hiddenlink" target="rightframe">TextAppearance_DeviceDefault_Widget_ActionMode_Title_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material" class="hiddenlink" target="rightframe">TextAppearance_Material</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Body1 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Body1" class="hiddenlink" target="rightframe">TextAppearance_Material_Body1</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Body2 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Body2" class="hiddenlink" target="rightframe">TextAppearance_Material_Body2</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Button -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Button" class="hiddenlink" target="rightframe">TextAppearance_Material_Button</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Caption -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Caption" class="hiddenlink" target="rightframe">TextAppearance_Material_Caption</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_DialogWindowTitle -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_DialogWindowTitle" class="hiddenlink" target="rightframe">TextAppearance_Material_DialogWindowTitle</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Display1 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display1" class="hiddenlink" target="rightframe">TextAppearance_Material_Display1</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Display2 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display2" class="hiddenlink" target="rightframe">TextAppearance_Material_Display2</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Display3 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display3" class="hiddenlink" target="rightframe">TextAppearance_Material_Display3</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Display4 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display4" class="hiddenlink" target="rightframe">TextAppearance_Material_Display4</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Headline -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Headline" class="hiddenlink" target="rightframe">TextAppearance_Material_Headline</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Large -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Large" class="hiddenlink" target="rightframe">TextAppearance_Material_Large</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Large_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Large_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Large_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Medium -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Medium" class="hiddenlink" target="rightframe">TextAppearance_Material_Medium</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Medium_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Medium_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Medium_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Menu -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Menu" class="hiddenlink" target="rightframe">TextAppearance_Material_Menu</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Notification -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Notification_Emphasis -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Emphasis" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Emphasis</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Notification_Info -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Info" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Info</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Notification_Line2 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Line2" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Line2</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Notification_Time -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Time" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Time</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Notification_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Title</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_SearchResult_Subtitle -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_SearchResult_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_SearchResult_Subtitle</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_SearchResult_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_SearchResult_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_SearchResult_Title</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Small" class="hiddenlink" target="rightframe">TextAppearance_Material_Small</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Small_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Small_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Small_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Subhead -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Subhead" class="hiddenlink" target="rightframe">TextAppearance_Material_Subhead</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Title</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionBar_Menu -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Menu" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Menu</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionBar_Subtitle -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Subtitle</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionBar_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Title</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionBar_Title_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Title_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Title_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionMode_Subtitle -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Subtitle</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionMode_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Title</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionMode_Title_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Title_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Title_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_Button -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_Button" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_Button</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_DropDownHint -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_DropDownHint" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_DropDownHint</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_DropDownItem -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_DropDownItem" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_DropDownItem</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_EditText -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_EditText" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_EditText</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_IconMenu_Item -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_IconMenu_Item" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_IconMenu_Item</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_PopupMenu -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_PopupMenu" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_PopupMenu</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_PopupMenu_Large -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_PopupMenu_Large" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_PopupMenu_Large</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_PopupMenu_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_PopupMenu_Small" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_PopupMenu_Small</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_TabWidget -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TabWidget" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TabWidget</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_TextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TextView" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TextView</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_TextView_PopupMenu -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TextView_PopupMenu" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TextView_PopupMenu</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_TextView_SpinnerItem -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TextView_SpinnerItem" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TextView_SpinnerItem</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_Toolbar_Subtitle -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_Toolbar_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_Toolbar_Subtitle</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_Toolbar_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_Toolbar_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_Toolbar_Title</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_WindowTitle -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_WindowTitle" class="hiddenlink" target="rightframe">TextAppearance_Material_WindowTitle</A>
+</nobr><br>
+<!-- Field textAppearanceListItemSecondary -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.textAppearanceListItemSecondary" class="hiddenlink" target="rightframe">textAppearanceListItemSecondary</A>
+</nobr><br>
+<!-- Class TextClock -->
+<i>TextClock</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.TextClock.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor TextClock -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextClock.html#android.widget.TextClock.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TextClock</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class TextInfo -->
+<i>TextInfo</i><br>
+&nbsp;&nbsp;<A HREF="android.view.textservice.TextInfo.html" class="hiddenlink" target="rightframe">android.view.textservice</A><br>
+<!-- Constructor TextInfo -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.textservice.TextInfo.html#android.view.textservice.TextInfo.ctor_added(java.lang.CharSequence, int, int, int, int)" class="hiddenlink" target="rightframe"><b>TextInfo</b>
+(<code>CharSequence, int, int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class TextToSpeech -->
+<A HREF="android.speech.tts.TextToSpeech.html" class="hiddenlink" target="rightframe">TextToSpeech</A><br>
+<!-- Class TextToSpeech.Engine -->
+<A HREF="android.speech.tts.TextToSpeech.Engine.html" class="hiddenlink" target="rightframe">TextToSpeech.Engine</A><br>
+<!-- Class TextToSpeechService -->
+<A HREF="android.speech.tts.TextToSpeechService.html" class="hiddenlink" target="rightframe">TextToSpeechService</A><br>
+<!-- Class TextureView -->
+<i>TextureView</i><br>
+&nbsp;&nbsp;<A HREF="android.view.TextureView.html" class="hiddenlink" target="rightframe">android.view</A><br>
+<!-- Constructor TextureView -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.TextureView.html#android.view.TextureView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TextureView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class TextView -->
+<i>TextView</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.TextView.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor TextView -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TextView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field Theme_DeviceDefault_Settings -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_DeviceDefault_Settings" class="hiddenlink" target="rightframe">Theme_DeviceDefault_Settings</A>
+</nobr><br>
+<!-- Field Theme_Material -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material" class="hiddenlink" target="rightframe">Theme_Material</A>
+</nobr><br>
+<!-- Field Theme_Material_Dialog -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog" class="hiddenlink" target="rightframe">Theme_Material_Dialog</A>
+</nobr><br>
+<!-- Field Theme_Material_Dialog_Alert -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_Alert" class="hiddenlink" target="rightframe">Theme_Material_Dialog_Alert</A>
+</nobr><br>
+<!-- Field Theme_Material_Dialog_MinWidth -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Dialog_MinWidth</A>
+</nobr><br>
+<!-- Field Theme_Material_Dialog_NoActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Dialog_NoActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_Dialog_NoActionBar_MinWidth -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_NoActionBar_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Dialog_NoActionBar_MinWidth</A>
+</nobr><br>
+<!-- Field Theme_Material_Dialog_Presentation -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_Presentation" class="hiddenlink" target="rightframe">Theme_Material_Dialog_Presentation</A>
+</nobr><br>
+<!-- Field Theme_Material_DialogWhenLarge -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_DialogWhenLarge" class="hiddenlink" target="rightframe">Theme_Material_DialogWhenLarge</A>
+</nobr><br>
+<!-- Field Theme_Material_DialogWhenLarge_NoActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_DialogWhenLarge_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_DialogWhenLarge_NoActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_InputMethod -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_InputMethod" class="hiddenlink" target="rightframe">Theme_Material_InputMethod</A>
+</nobr><br>
+<!-- Field Theme_Material_Light -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light" class="hiddenlink" target="rightframe">Theme_Material_Light</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_DarkActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_DarkActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_DarkActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Dialog -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Dialog_Alert -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_Alert" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_Alert</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Dialog_MinWidth -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_MinWidth</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Dialog_NoActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_NoActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Dialog_NoActionBar_MinWidth -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_NoActionBar_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_NoActionBar_MinWidth</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Dialog_Presentation -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_Presentation" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_Presentation</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_DialogWhenLarge -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_DialogWhenLarge" class="hiddenlink" target="rightframe">Theme_Material_Light_DialogWhenLarge</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_DialogWhenLarge_NoActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_DialogWhenLarge_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_DialogWhenLarge_NoActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_NoActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_NoActionBar_Fullscreen -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar_Fullscreen" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar_Fullscreen</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_NoActionBar_Overscan -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar_Overscan" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar_Overscan</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_NoActionBar_TranslucentDecor -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar_TranslucentDecor" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar_TranslucentDecor</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Panel -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Panel" class="hiddenlink" target="rightframe">Theme_Material_Light_Panel</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Voice -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Voice" class="hiddenlink" target="rightframe">Theme_Material_Light_Voice</A>
+</nobr><br>
+<!-- Field Theme_Material_NoActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_NoActionBar_Fullscreen -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar_Fullscreen" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar_Fullscreen</A>
+</nobr><br>
+<!-- Field Theme_Material_NoActionBar_Overscan -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar_Overscan" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar_Overscan</A>
+</nobr><br>
+<!-- Field Theme_Material_NoActionBar_TranslucentDecor -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar_TranslucentDecor" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar_TranslucentDecor</A>
+</nobr><br>
+<!-- Field Theme_Material_Panel -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Panel" class="hiddenlink" target="rightframe">Theme_Material_Panel</A>
+</nobr><br>
+<!-- Field Theme_Material_Settings -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Settings" class="hiddenlink" target="rightframe">Theme_Material_Settings</A>
+</nobr><br>
+<!-- Field Theme_Material_Voice -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Voice" class="hiddenlink" target="rightframe">Theme_Material_Voice</A>
+</nobr><br>
+<!-- Field Theme_Material_Wallpaper -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Wallpaper" class="hiddenlink" target="rightframe">Theme_Material_Wallpaper</A>
+</nobr><br>
+<!-- Field Theme_Material_Wallpaper_NoTitleBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Wallpaper_NoTitleBar" class="hiddenlink" target="rightframe">Theme_Material_Wallpaper_NoTitleBar</A>
+</nobr><br>
+<!-- Field ThemeOverlay -->
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay" class="hiddenlink" target="rightframe">ThemeOverlay</A>
+</nobr><br>
+<!-- Field ThemeOverlay_Material -->
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material" class="hiddenlink" target="rightframe">ThemeOverlay_Material</A>
+</nobr><br>
+<!-- Field ThemeOverlay_Material_ActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_ActionBar" class="hiddenlink" target="rightframe">ThemeOverlay_Material_ActionBar</A>
+</nobr><br>
+<!-- Field ThemeOverlay_Material_Dark -->
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_Dark" class="hiddenlink" target="rightframe">ThemeOverlay_Material_Dark</A>
+</nobr><br>
+<!-- Field ThemeOverlay_Material_Dark_ActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_Dark_ActionBar" class="hiddenlink" target="rightframe">ThemeOverlay_Material_Dark_ActionBar</A>
+</nobr><br>
+<!-- Field ThemeOverlay_Material_Light -->
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_Light" class="hiddenlink" target="rightframe">ThemeOverlay_Material_Light</A>
+</nobr><br>
+<!-- Class ThreadLocalRandom -->
+<A HREF="pkg_java.util.concurrent.html#ThreadLocalRandom" class="hiddenlink" target="rightframe"><b>ThreadLocalRandom</b></A><br>
+<!-- Field thumbTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.thumbTint" class="hiddenlink" target="rightframe">thumbTint</A>
+</nobr><br>
+<!-- Field thumbTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.thumbTintMode" class="hiddenlink" target="rightframe">thumbTintMode</A>
+</nobr><br>
+<!-- Field tickerView -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.tickerView" class="hiddenlink" target="rightframe">tickerView</A>
+</nobr><br>
+<!-- Field tileModeX -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.tileModeX" class="hiddenlink" target="rightframe">tileModeX</A>
+</nobr><br>
+<!-- Field tileModeY -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.tileModeY" class="hiddenlink" target="rightframe">tileModeY</A>
+</nobr><br>
+<!-- Class TimePicker -->
+<i>TimePicker</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.TimePicker.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor TimePicker -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TimePicker.html#android.widget.TimePicker.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TimePicker</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field timePickerDialogTheme -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.timePickerDialogTheme" class="hiddenlink" target="rightframe">timePickerDialogTheme</A>
+</nobr><br>
+<!-- Field timePickerMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.timePickerMode" class="hiddenlink" target="rightframe">timePickerMode</A>
+</nobr><br>
+<!-- Field timePickerStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.timePickerStyle" class="hiddenlink" target="rightframe">timePickerStyle</A>
+</nobr><br>
+<!-- Field TIMESTAMP -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.TIMESTAMP" class="hiddenlink" target="rightframe">TIMESTAMP</A>
+</nobr><br>
+<!-- Field tintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.tintMode" class="hiddenlink" target="rightframe">tintMode</A>
+</nobr><br>
+<!-- Field TITLE_RES -->
+<nobr><A HREF="android.provider.ContactsContract.GroupsColumns.html#android.provider.ContactsContract.GroupsColumns.TITLE_RES" class="hiddenlink" target="rightframe">TITLE_RES</A>
+</nobr><br>
+<!-- Field titleTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.titleTextAppearance" class="hiddenlink" target="rightframe">titleTextAppearance</A>
+</nobr><br>
+<!-- Class ToggleButton -->
+<i>ToggleButton</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.ToggleButton.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor ToggleButton -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.ToggleButton.html#android.widget.ToggleButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ToggleButton</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field toId -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.toId" class="hiddenlink" target="rightframe">toId</A>
+</nobr><br>
+<!-- Method toLanguageTag -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.toLanguageTag_added()" class="hiddenlink" target="rightframe"><b>toLanguageTag</b>
+()</A></nobr><br>
+<!-- Class Toolbar -->
+<A HREF="pkg_android.widget.html#Toolbar" class="hiddenlink" target="rightframe"><b>Toolbar</b></A><br>
+<!-- Class Toolbar.LayoutParams -->
+<A HREF="pkg_android.widget.html#Toolbar.LayoutParams" class="hiddenlink" target="rightframe"><b>Toolbar.LayoutParams</b></A><br>
+<!-- Class Toolbar.OnMenuItemClickListener -->
+<A HREF="pkg_android.widget.html#Toolbar.OnMenuItemClickListener" class="hiddenlink" target="rightframe"><b><i>Toolbar.OnMenuItemClickListener</i></b></A><br>
+<!-- Field toolbarStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.toolbarStyle" class="hiddenlink" target="rightframe">toolbarStyle</A>
+</nobr><br>
+<!-- Field TOP_LEVEL_DOMAIN -->
+<nobr><A HREF="android.util.Patterns.html#android.util.Patterns.TOP_LEVEL_DOMAIN" class="hiddenlink" target="rightframe">TOP_LEVEL_DOMAIN</A>
+</nobr><br>
+<!-- Field TOP_LEVEL_DOMAIN_STR -->
+<nobr><A HREF="android.util.Patterns.html#android.util.Patterns.TOP_LEVEL_DOMAIN_STR" class="hiddenlink" target="rightframe">TOP_LEVEL_DOMAIN_STR</A>
+</nobr><br>
+<!-- Field TOP_LEVEL_DOMAIN_STR_FOR_WEB_URL -->
+<nobr><A HREF="android.util.Patterns.html#android.util.Patterns.TOP_LEVEL_DOMAIN_STR_FOR_WEB_URL" class="hiddenlink" target="rightframe">TOP_LEVEL_DOMAIN_STR_FOR_WEB_URL</A>
+</nobr><br>
+<!-- Field touchscreenBlocksFocus -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.touchscreenBlocksFocus" class="hiddenlink" target="rightframe">touchscreenBlocksFocus</A>
+</nobr><br>
+<!-- Field TRANSCRIPTION -->
+<i>TRANSCRIPTION</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.TRANSCRIPTION" class="hiddenlink" target="rightframe">android.provider.CallLog.Calls</A>
+</nobr><br>
+<!-- Field TRANSCRIPTION -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.VoicemailContract.Voicemails.html#android.provider.VoicemailContract.Voicemails.TRANSCRIPTION" class="hiddenlink" target="rightframe">android.provider.VoicemailContract.Voicemails</A>
+</nobr><br>
+<!-- Class TransferQueue -->
+<A HREF="pkg_java.util.concurrent.html#TransferQueue" class="hiddenlink" target="rightframe"><b><i>TransferQueue</i></b></A><br>
+<!-- Class Transition -->
+<i>Transition</i><br>
+&nbsp;&nbsp;<A HREF="android.transition.Transition.html" class="hiddenlink" target="rightframe">android.transition</A><br>
+<!-- Constructor Transition -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Transition</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class Transition.EpicenterCallback -->
+<A HREF="pkg_android.transition.html#Transition.EpicenterCallback" class="hiddenlink" target="rightframe"><b>Transition.EpicenterCallback</b></A><br>
+<!-- Field transitionGroup -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.transitionGroup" class="hiddenlink" target="rightframe">transitionGroup</A>
+</nobr><br>
+<!-- Field transitionName -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.transitionName" class="hiddenlink" target="rightframe">transitionName</A>
+</nobr><br>
+<!-- Class TransitionPropagation -->
+<A HREF="pkg_android.transition.html#TransitionPropagation" class="hiddenlink" target="rightframe"><b>TransitionPropagation</b></A><br>
+<!-- Class TransitionSet -->
+<i>TransitionSet</i><br>
+&nbsp;&nbsp;<A HREF="android.transition.TransitionSet.html" class="hiddenlink" target="rightframe">android.transition</A><br>
+<!-- Constructor TransitionSet -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>TransitionSet</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field transitionVisibilityMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.transitionVisibilityMode" class="hiddenlink" target="rightframe">transitionVisibilityMode</A>
+</nobr><br>
+<!-- Field translateX -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.translateX" class="hiddenlink" target="rightframe">translateX</A>
+</nobr><br>
+<!-- Field translateY -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.translateY" class="hiddenlink" target="rightframe">translateY</A>
+</nobr><br>
+<!-- Field TRANSLATION_Z -->
+<nobr><A HREF="android.view.View.html#android.view.View.TRANSLATION_Z" class="hiddenlink" target="rightframe">TRANSLATION_Z</A>
+</nobr><br>
+<!-- Method translationZ -->
+<i>translationZ</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewPropertyAnimator.html#android.view.ViewPropertyAnimator.translationZ_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.view.ViewPropertyAnimator
+</A></nobr><br>
+<!-- Field translationZ -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.translationZ" class="hiddenlink" target="rightframe">android.R.attr</A>
+</nobr><br>
+<!-- Method translationZBy -->
+<nobr><A HREF="android.view.ViewPropertyAnimator.html#android.view.ViewPropertyAnimator.translationZBy_added(float)" class="hiddenlink" target="rightframe"><b>translationZBy</b>
+(<code>float</code>)</A></nobr><br>
+<!-- Field trimPathEnd -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.trimPathEnd" class="hiddenlink" target="rightframe">trimPathEnd</A>
+</nobr><br>
+<!-- Field trimPathOffset -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.trimPathOffset" class="hiddenlink" target="rightframe">trimPathOffset</A>
+</nobr><br>
+<!-- Field trimPathStart -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.trimPathStart" class="hiddenlink" target="rightframe">trimPathStart</A>
+</nobr><br>
+<!-- Class TtsSpan -->
+<A HREF="pkg_android.text.style.html#TtsSpan" class="hiddenlink" target="rightframe"><b>TtsSpan</b></A><br>
+<!-- Class TtsSpan.Builder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.Builder" class="hiddenlink" target="rightframe"><b>TtsSpan.Builder</b></A><br>
+<!-- Class TtsSpan.CardinalBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.CardinalBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.CardinalBuilder</b></A><br>
+<!-- Class TtsSpan.DateBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.DateBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.DateBuilder</b></A><br>
+<!-- Class TtsSpan.DecimalBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.DecimalBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.DecimalBuilder</b></A><br>
+<!-- Class TtsSpan.DigitsBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.DigitsBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.DigitsBuilder</b></A><br>
+<!-- Class TtsSpan.ElectronicBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.ElectronicBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.ElectronicBuilder</b></A><br>
+<!-- Class TtsSpan.FractionBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.FractionBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.FractionBuilder</b></A><br>
+<!-- Class TtsSpan.MeasureBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.MeasureBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.MeasureBuilder</b></A><br>
+<!-- Class TtsSpan.MoneyBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.MoneyBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.MoneyBuilder</b></A><br>
+<!-- Class TtsSpan.OrdinalBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.OrdinalBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.OrdinalBuilder</b></A><br>
+<!-- Class TtsSpan.SemioticClassBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.SemioticClassBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.SemioticClassBuilder</b></A><br>
+<!-- Class TtsSpan.TelephoneBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.TelephoneBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.TelephoneBuilder</b></A><br>
+<!-- Class TtsSpan.TextBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.TextBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.TextBuilder</b></A><br>
+<!-- Class TtsSpan.TimeBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.TimeBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.TimeBuilder</b></A><br>
+<!-- Class TtsSpan.VerbatimBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.VerbatimBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.VerbatimBuilder</b></A><br>
+<!-- Field TV_INPUT_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.TV_INPUT_SERVICE" class="hiddenlink" target="rightframe">TV_INPUT_SERVICE</A>
+</nobr><br>
+<!-- Class TwoLineListItem -->
+<i>TwoLineListItem</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.TwoLineListItem.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor TwoLineListItem -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TwoLineListItem.html#android.widget.TwoLineListItem.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TwoLineListItem</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class TwoStatePreference -->
+<i>TwoStatePreference</i><br>
+&nbsp;&nbsp;<A HREF="android.preference.TwoStatePreference.html" class="hiddenlink" target="rightframe">android.preference</A><br>
+<!-- Constructor TwoStatePreference -->
+&nbsp;&nbsp;<nobr><A HREF="android.preference.TwoStatePreference.html#android.preference.TwoStatePreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TwoStatePreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class Type -->
+<A HREF="android.renderscript.Type.html" class="hiddenlink" target="rightframe">Type</A><br>
+<!-- Field TYPE_INTEGER -->
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.TYPE_INTEGER" class="hiddenlink" target="rightframe">TYPE_INTEGER</A>
+</nobr><br>
+<!-- Field TYPE_KEYGUARD -->
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.TYPE_KEYGUARD" class="hiddenlink" target="rightframe"><strike>TYPE_KEYGUARD</strike></A>
+</nobr><br>
+<!-- Field TYPE_STRING -->
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.TYPE_STRING" class="hiddenlink" target="rightframe">TYPE_STRING</A>
+</nobr><br>
+<!-- Field TYPE_VPN -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.TYPE_VPN" class="hiddenlink" target="rightframe">TYPE_VPN</A>
+</nobr><br>
+<!-- Field TYPE_WINDOWS_CHANGED -->
+<nobr><A HREF="android.view.accessibility.AccessibilityEvent.html#android.view.accessibility.AccessibilityEvent.TYPE_WINDOWS_CHANGED" class="hiddenlink" target="rightframe">TYPE_WINDOWS_CHANGED</A>
+</nobr><br>
+<!-- Class TypeConverter -->
+<A HREF="pkg_android.animation.html#TypeConverter" class="hiddenlink" target="rightframe"><b>TypeConverter</b></A><br>
+<!-- Class TypedArray -->
+<A HREF="android.content.res.TypedArray.html" class="hiddenlink" target="rightframe">TypedArray</A><br>
+<!-- Class UiAutomation -->
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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="#X"><font size="-2">X</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.app.UiAutomation.html" class="hiddenlink" target="rightframe">UiAutomation</A><br>
+<!-- Class UiModeManager -->
+<A HREF="android.app.UiModeManager.html" class="hiddenlink" target="rightframe">UiModeManager</A><br>
+<!-- Field UNICODE_LOCALE_EXTENSION -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.UNICODE_LOCALE_EXTENSION" class="hiddenlink" target="rightframe">UNICODE_LOCALE_EXTENSION</A>
+</nobr><br>
+<!-- Method uninstallAllUserCaCerts -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.uninstallAllUserCaCerts_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>uninstallAllUserCaCerts</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method uninstallCaCert -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.uninstallCaCert_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>uninstallCaCert</b>
+(<code>ComponentName, byte[]</code>)</A></nobr><br>
+<!-- Method unregisterMediaButtonEventReceiver -->
+<i>unregisterMediaButtonEventReceiver</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.app.PendingIntent)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>PendingIntent</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+<!-- Method unregisterMediaButtonEventReceiver -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.content.ComponentName)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>ComponentName</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+<!-- Method unregisterNetworkCallback -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.unregisterNetworkCallback_added(android.net.ConnectivityManager.NetworkCallback)" class="hiddenlink" target="rightframe"><b>unregisterNetworkCallback</b>
+(<code>NetworkCallback</code>)</A></nobr><br>
+<!-- Method unregisterRemoteControlClient -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterRemoteControlClient_changed(android.media.RemoteControlClient)" class="hiddenlink" target="rightframe">unregisterRemoteControlClient
+(<code>RemoteControlClient</code>)</A></nobr><br>
+<!-- Method unregisterRemoteController -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterRemoteController_changed(android.media.RemoteController)" class="hiddenlink" target="rightframe">unregisterRemoteController
+(<code>RemoteController</code>)</A></nobr><br>
+<!-- Method unsetPreferredService -->
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.unsetPreferredService_added(android.app.Activity)" class="hiddenlink" target="rightframe"><b>unsetPreferredService</b>
+(<code>Activity</code>)</A></nobr><br>
+<!-- Method updateCursor -->
+<nobr><A HREF="android.view.inputmethod.InputMethodManager.html#android.view.inputmethod.InputMethodManager.updateCursor_changed(android.view.View, int, int, int, int)" class="hiddenlink" target="rightframe">updateCursor
+(<code>View, int, int, int, int</code>)</A></nobr><br>
+<!-- Method updateCursorAnchorInfo -->
+<i>updateCursorAnchorInfo</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.inputmethodservice.InputMethodService.InputMethodSessionImpl.html#android.inputmethodservice.InputMethodService.InputMethodSessionImpl.updateCursorAnchorInfo_added(android.view.inputmethod.CursorAnchorInfo)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CursorAnchorInfo</code>)</b>&nbsp;in&nbsp;android.inputmethodservice.InputMethodService.InputMethodSessionImpl
+</A></nobr><br>
+<!-- Method updateCursorAnchorInfo -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.InputMethodManager.html#android.view.inputmethod.InputMethodManager.updateCursorAnchorInfo_added(android.view.View, android.view.inputmethod.CursorAnchorInfo)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, CursorAnchorInfo</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.InputMethodManager
+</A></nobr><br>
+<!-- Method updateCursorAnchorInfo -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.InputMethodSession.html#android.view.inputmethod.InputMethodSession.updateCursorAnchorInfo_added(android.view.inputmethod.CursorAnchorInfo)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CursorAnchorInfo</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.InputMethodSession
+</A></nobr><br>
+<!-- Class UsbConfiguration -->
+<A HREF="pkg_android.hardware.usb.html#UsbConfiguration" class="hiddenlink" target="rightframe"><b>UsbConfiguration</b></A><br>
+<!-- Class UsbDevice -->
+<A HREF="android.hardware.usb.UsbDevice.html" class="hiddenlink" target="rightframe">UsbDevice</A><br>
+<!-- Class UsbDeviceConnection -->
+<A HREF="android.hardware.usb.UsbDeviceConnection.html" class="hiddenlink" target="rightframe">UsbDeviceConnection</A><br>
+<!-- Class UsbInterface -->
+<A HREF="android.hardware.usb.UsbInterface.html" class="hiddenlink" target="rightframe">UsbInterface</A><br>
+<!-- Method userActivity -->
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.userActivity_removed(long, boolean)" class="hiddenlink" target="rightframe"><strike>userActivity</strike>
+(<code>long, boolean</code>)</A></nobr><br>
+<!-- Class UserManager -->
+<A HREF="android.os.UserManager.html" class="hiddenlink" target="rightframe">UserManager</A><br>
+<!-- Class UtteranceProgressListener -->
+<A HREF="android.speech.tts.UtteranceProgressListener.html" class="hiddenlink" target="rightframe">UtteranceProgressListener</A><br>
+<!-- Class ValueAnimator -->
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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="#X"><font size="-2">X</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.animation.ValueAnimator.html" class="hiddenlink" target="rightframe">ValueAnimator</A><br>
+<!-- Class VectorDrawable -->
+<A HREF="pkg_android.graphics.drawable.html#VectorDrawable" class="hiddenlink" target="rightframe"><b>VectorDrawable</b></A><br>
+<!-- Method vibrate -->
+<i>vibrate</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_removed(long[], int)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>long[], int</code>)</strike>&nbsp;in&nbsp;android.os.Vibrator
+</A></nobr><br>
+<!-- Method vibrate -->
+&nbsp;&nbsp;<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_added(long, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long, AudioAttributes</code>)</b>&nbsp;in&nbsp;android.os.Vibrator
+</A></nobr><br>
+<!-- Method vibrate -->
+&nbsp;&nbsp;<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_added(long[], int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long[], int</code>)</b>&nbsp;in&nbsp;android.os.Vibrator
+</A></nobr><br>
+<!-- Method vibrate -->
+&nbsp;&nbsp;<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_added(long[], int, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long[], int, AudioAttributes</code>)</b>&nbsp;in&nbsp;android.os.Vibrator
+</A></nobr><br>
+<!-- Method vibrate -->
+&nbsp;&nbsp;<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_changed(long)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>long</code>)&nbsp;in&nbsp;android.os.Vibrator
+</A></nobr><br>
+<!-- Class Vibrator -->
+<A HREF="android.os.Vibrator.html" class="hiddenlink" target="rightframe">Vibrator</A><br>
+<!-- Class VideoView -->
+<i>VideoView</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.VideoView.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor VideoView -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.VideoView.html#android.widget.VideoView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>VideoView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class View -->
+<i>View</i><br>
+&nbsp;&nbsp;<A HREF="android.view.View.html" class="hiddenlink" target="rightframe">android.view</A><br>
+<!-- Constructor View -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.View.html#android.view.View.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>View</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class ViewAnimationUtils -->
+<A HREF="pkg_android.view.html#ViewAnimationUtils" class="hiddenlink" target="rightframe"><b>ViewAnimationUtils</b></A><br>
+<!-- Class ViewGroup -->
+<i>ViewGroup</i><br>
+&nbsp;&nbsp;<A HREF="android.view.ViewGroup.html" class="hiddenlink" target="rightframe">android.view</A><br>
+<!-- Constructor ViewGroup -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ViewGroup</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class ViewOutlineProvider -->
+<A HREF="pkg_android.view.html#ViewOutlineProvider" class="hiddenlink" target="rightframe"><b>ViewOutlineProvider</b></A><br>
+<!-- Class ViewParent -->
+<A HREF="android.view.ViewParent.html" class="hiddenlink" target="rightframe"><i>ViewParent</i></A><br>
+<!-- Field viewportHeight -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.viewportHeight" class="hiddenlink" target="rightframe">viewportHeight</A>
+</nobr><br>
+<!-- Field viewportWidth -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.viewportWidth" class="hiddenlink" target="rightframe">viewportWidth</A>
+</nobr><br>
+<!-- Class ViewPropertyAnimator -->
+<A HREF="android.view.ViewPropertyAnimator.html" class="hiddenlink" target="rightframe">ViewPropertyAnimator</A><br>
+<!-- Class ViewStub -->
+<i>ViewStub</i><br>
+&nbsp;&nbsp;<A HREF="android.view.ViewStub.html" class="hiddenlink" target="rightframe">android.view</A><br>
+<!-- Constructor ViewStub -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewStub.html#android.view.ViewStub.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ViewStub</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR -->
+<nobr><A HREF="android.hardware.display.DisplayManager.html#android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR" class="hiddenlink" target="rightframe">VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR</A>
+</nobr><br>
+<!-- Class VirtualDisplay -->
+<A HREF="android.hardware.display.VirtualDisplay.html" class="hiddenlink" target="rightframe">VirtualDisplay</A><br>
+<!-- Class VirtualDisplay.Callback -->
+<A HREF="pkg_android.hardware.display.html#VirtualDisplay.Callback" class="hiddenlink" target="rightframe"><b>VirtualDisplay.Callback</b></A><br>
+<!-- Field VIRTUALIZATION_MODE_AUTO -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_AUTO" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_AUTO</A>
+</nobr><br>
+<!-- Field VIRTUALIZATION_MODE_BINAURAL -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_BINAURAL" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_BINAURAL</A>
+</nobr><br>
+<!-- Field VIRTUALIZATION_MODE_OFF -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_OFF" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_OFF</A>
+</nobr><br>
+<!-- Field VIRTUALIZATION_MODE_TRANSAURAL -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_TRANSAURAL" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_TRANSAURAL</A>
+</nobr><br>
+<!-- Class Virtualizer -->
+<A HREF="android.media.audiofx.Virtualizer.html" class="hiddenlink" target="rightframe">Virtualizer</A><br>
+<!-- Class Visibility -->
+<i>Visibility</i><br>
+&nbsp;&nbsp;<A HREF="android.transition.Visibility.html" class="hiddenlink" target="rightframe">android.transition</A><br>
+<!-- Constructor Visibility -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Visibility</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field visibility -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.visibility" class="hiddenlink" target="rightframe">visibility</A>
+</nobr><br>
+<!-- Field VISIBILITY_PRIVATE -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.VISIBILITY_PRIVATE" class="hiddenlink" target="rightframe">VISIBILITY_PRIVATE</A>
+</nobr><br>
+<!-- Field VISIBILITY_PUBLIC -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.VISIBILITY_PUBLIC" class="hiddenlink" target="rightframe">VISIBILITY_PUBLIC</A>
+</nobr><br>
+<!-- Field VISIBILITY_SECRET -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.VISIBILITY_SECRET" class="hiddenlink" target="rightframe">VISIBILITY_SECRET</A>
+</nobr><br>
+<!-- Class VisibilityPropagation -->
+<A HREF="pkg_android.transition.html#VisibilityPropagation" class="hiddenlink" target="rightframe"><b>VisibilityPropagation</b></A><br>
+<!-- Class Voice -->
+<A HREF="pkg_android.speech.tts.html#Voice" class="hiddenlink" target="rightframe"><b>Voice</b></A><br>
+<!-- Field voiceIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.voiceIcon" class="hiddenlink" target="rightframe">voiceIcon</A>
+</nobr><br>
+<!-- Field VOICEMAIL_TYPE -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.VOICEMAIL_TYPE" class="hiddenlink" target="rightframe">VOICEMAIL_TYPE</A>
+</nobr><br>
+<!-- Field VOICEMAIL_URI -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.VOICEMAIL_URI" class="hiddenlink" target="rightframe">VOICEMAIL_URI</A>
+</nobr><br>
+<!-- Class VoicemailContract.Voicemails -->
+<A HREF="android.provider.VoicemailContract.Voicemails.html" class="hiddenlink" target="rightframe">VoicemailContract.Voicemails</A><br>
+<!-- Class VolumeProvider -->
+<A HREF="pkg_android.media.html#VolumeProvider" class="hiddenlink" target="rightframe"><b>VolumeProvider</b></A><br>
+<!-- Field VORBIS -->
+<nobr><A HREF="android.media.MediaRecorder.AudioEncoder.html#android.media.MediaRecorder.AudioEncoder.VORBIS" class="hiddenlink" target="rightframe">VORBIS</A>
+</nobr><br>
+<!-- Field VP8 -->
+<nobr><A HREF="android.media.MediaRecorder.VideoEncoder.html#android.media.MediaRecorder.VideoEncoder.VP8" class="hiddenlink" target="rightframe">VP8</A>
+</nobr><br>
+<!-- Class VpnService.Builder -->
+<A HREF="android.net.VpnService.Builder.html" class="hiddenlink" target="rightframe">VpnService.Builder</A><br>
+<!-- Method wakeUp -->
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#X"><font size="-2">X</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>wakeUp</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.wakeUp_removed(long)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>long</code>)</strike>&nbsp;in&nbsp;android.os.PowerManager
+</A></nobr><br>
+<!-- Method wakeUp -->
+&nbsp;&nbsp;<nobr><A HREF="android.service.dreams.DreamService.html#android.service.dreams.DreamService.wakeUp_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.service.dreams.DreamService
+</A></nobr><br>
+<!-- Class WallpaperService.Engine -->
+<A HREF="android.service.wallpaper.WallpaperService.Engine.html" class="hiddenlink" target="rightframe">WallpaperService.Engine</A><br>
+<!-- Class WebChromeClient -->
+<A HREF="android.webkit.WebChromeClient.html" class="hiddenlink" target="rightframe">WebChromeClient</A><br>
+<!-- Class WebChromeClient.FileChooserParams -->
+<A HREF="pkg_android.webkit.html#WebChromeClient.FileChooserParams" class="hiddenlink" target="rightframe"><b>WebChromeClient.FileChooserParams</b></A><br>
+<!-- Field WEBM -->
+<nobr><A HREF="android.media.MediaRecorder.OutputFormat.html#android.media.MediaRecorder.OutputFormat.WEBM" class="hiddenlink" target="rightframe">WEBM</A>
+</nobr><br>
+<!-- Class WebResourceRequest -->
+<A HREF="pkg_android.webkit.html#WebResourceRequest" class="hiddenlink" target="rightframe"><b><i>WebResourceRequest</i></b></A><br>
+<!-- Class WebResourceResponse -->
+<i>WebResourceResponse</i><br>
+&nbsp;&nbsp;<A HREF="android.webkit.WebResourceResponse.html" class="hiddenlink" target="rightframe">android.webkit</A><br>
+<!-- Constructor WebResourceResponse -->
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.ctor_added(java.lang.String, java.lang.String, int, java.lang.String, java.util.Map<java.lang.String, java.lang.String>, java.io.InputStream)" class="hiddenlink" target="rightframe"><b>WebResourceResponse</b>
+(<code>String, String, int, String, Map&lt;String, String&gt;, InputStream</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class WebSettings -->
+<A HREF="android.webkit.WebSettings.html" class="hiddenlink" target="rightframe">WebSettings</A><br>
+<!-- Class WebSyncManager -->
+<A HREF="android.webkit.WebSyncManager.html" class="hiddenlink" target="rightframe">WebSyncManager</A><br>
+<!-- Class WebView -->
+<i>WebView</i><br>
+&nbsp;&nbsp;<A HREF="android.webkit.WebView.html" class="hiddenlink" target="rightframe">android.webkit</A><br>
+<!-- Constructor WebView -->
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>WebView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class WebViewClient -->
+<A HREF="android.webkit.WebViewClient.html" class="hiddenlink" target="rightframe">WebViewClient</A><br>
+<!-- Field WIDGET_CATEGORY_SEARCHBOX -->
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX" class="hiddenlink" target="rightframe">WIDGET_CATEGORY_SEARCHBOX</A>
+</nobr><br>
+<!-- Field Widget_DeviceDefault_FastScroll -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_FastScroll" class="hiddenlink" target="rightframe">Widget_DeviceDefault_FastScroll</A>
+</nobr><br>
+<!-- Field Widget_DeviceDefault_Light_ActionBar_Solid_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_ActionBar_Solid_Inverse" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_ActionBar_Solid_Inverse</A>
+</nobr><br>
+<!-- Field Widget_DeviceDefault_Light_ActionBar_TabBar_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_ActionBar_TabBar_Inverse" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_ActionBar_TabBar_Inverse</A>
+</nobr><br>
+<!-- Field Widget_DeviceDefault_Light_ActionBar_TabText_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_ActionBar_TabText_Inverse" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_ActionBar_TabText_Inverse</A>
+</nobr><br>
+<!-- Field Widget_DeviceDefault_Light_ActionBar_TabView_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_ActionBar_TabView_Inverse" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_ActionBar_TabView_Inverse</A>
+</nobr><br>
+<!-- Field Widget_DeviceDefault_Light_ActionMode_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_ActionMode_Inverse" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_ActionMode_Inverse</A>
+</nobr><br>
+<!-- Field Widget_DeviceDefault_Light_FastScroll -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_FastScroll" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_FastScroll</A>
+</nobr><br>
+<!-- Field Widget_DeviceDefault_Light_StackView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_StackView" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_StackView</A>
+</nobr><br>
+<!-- Field Widget_DeviceDefault_StackView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_StackView" class="hiddenlink" target="rightframe">Widget_DeviceDefault_StackView</A>
+</nobr><br>
+<!-- Field Widget_FastScroll -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_FastScroll" class="hiddenlink" target="rightframe">Widget_FastScroll</A>
+</nobr><br>
+<!-- Field Widget_Material -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material" class="hiddenlink" target="rightframe">Widget_Material</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar" class="hiddenlink" target="rightframe">Widget_Material_ActionBar</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionBar_Solid -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_Solid" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_Solid</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionBar_TabBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_TabBar" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_TabBar</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionBar_TabText -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_TabText" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_TabText</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionBar_TabView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_TabView" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_TabView</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionButton" class="hiddenlink" target="rightframe">Widget_Material_ActionButton</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionButton_CloseMode -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionButton_CloseMode" class="hiddenlink" target="rightframe">Widget_Material_ActionButton_CloseMode</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionButton_Overflow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionButton_Overflow" class="hiddenlink" target="rightframe">Widget_Material_ActionButton_Overflow</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionMode -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionMode" class="hiddenlink" target="rightframe">Widget_Material_ActionMode</A>
+</nobr><br>
+<!-- Field Widget_Material_AutoCompleteTextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_AutoCompleteTextView" class="hiddenlink" target="rightframe">Widget_Material_AutoCompleteTextView</A>
+</nobr><br>
+<!-- Field Widget_Material_Button -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button" class="hiddenlink" target="rightframe">Widget_Material_Button</A>
+</nobr><br>
+<!-- Field Widget_Material_Button_Borderless -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Borderless" class="hiddenlink" target="rightframe">Widget_Material_Button_Borderless</A>
+</nobr><br>
+<!-- Field Widget_Material_Button_Borderless_Colored -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Borderless_Colored" class="hiddenlink" target="rightframe">Widget_Material_Button_Borderless_Colored</A>
+</nobr><br>
+<!-- Field Widget_Material_Button_Borderless_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Borderless_Small" class="hiddenlink" target="rightframe">Widget_Material_Button_Borderless_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_Button_Inset -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Inset" class="hiddenlink" target="rightframe">Widget_Material_Button_Inset</A>
+</nobr><br>
+<!-- Field Widget_Material_Button_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Small" class="hiddenlink" target="rightframe">Widget_Material_Button_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_Button_Toggle -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Toggle" class="hiddenlink" target="rightframe">Widget_Material_Button_Toggle</A>
+</nobr><br>
+<!-- Field Widget_Material_ButtonBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ButtonBar" class="hiddenlink" target="rightframe">Widget_Material_ButtonBar</A>
+</nobr><br>
+<!-- Field Widget_Material_ButtonBar_AlertDialog -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ButtonBar_AlertDialog" class="hiddenlink" target="rightframe">Widget_Material_ButtonBar_AlertDialog</A>
+</nobr><br>
+<!-- Field Widget_Material_CalendarView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CalendarView" class="hiddenlink" target="rightframe">Widget_Material_CalendarView</A>
+</nobr><br>
+<!-- Field Widget_Material_CheckedTextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CheckedTextView" class="hiddenlink" target="rightframe">Widget_Material_CheckedTextView</A>
+</nobr><br>
+<!-- Field Widget_Material_CompoundButton_CheckBox -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CompoundButton_CheckBox" class="hiddenlink" target="rightframe">Widget_Material_CompoundButton_CheckBox</A>
+</nobr><br>
+<!-- Field Widget_Material_CompoundButton_RadioButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CompoundButton_RadioButton" class="hiddenlink" target="rightframe">Widget_Material_CompoundButton_RadioButton</A>
+</nobr><br>
+<!-- Field Widget_Material_CompoundButton_Star -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CompoundButton_Star" class="hiddenlink" target="rightframe">Widget_Material_CompoundButton_Star</A>
+</nobr><br>
+<!-- Field Widget_Material_DatePicker -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_DatePicker" class="hiddenlink" target="rightframe">Widget_Material_DatePicker</A>
+</nobr><br>
+<!-- Field Widget_Material_DropDownItem -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_DropDownItem" class="hiddenlink" target="rightframe">Widget_Material_DropDownItem</A>
+</nobr><br>
+<!-- Field Widget_Material_DropDownItem_Spinner -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_DropDownItem_Spinner" class="hiddenlink" target="rightframe">Widget_Material_DropDownItem_Spinner</A>
+</nobr><br>
+<!-- Field Widget_Material_EditText -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_EditText" class="hiddenlink" target="rightframe">Widget_Material_EditText</A>
+</nobr><br>
+<!-- Field Widget_Material_ExpandableListView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ExpandableListView" class="hiddenlink" target="rightframe">Widget_Material_ExpandableListView</A>
+</nobr><br>
+<!-- Field Widget_Material_FastScroll -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_FastScroll" class="hiddenlink" target="rightframe">Widget_Material_FastScroll</A>
+</nobr><br>
+<!-- Field Widget_Material_GridView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_GridView" class="hiddenlink" target="rightframe">Widget_Material_GridView</A>
+</nobr><br>
+<!-- Field Widget_Material_HorizontalScrollView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_HorizontalScrollView" class="hiddenlink" target="rightframe">Widget_Material_HorizontalScrollView</A>
+</nobr><br>
+<!-- Field Widget_Material_ImageButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ImageButton" class="hiddenlink" target="rightframe">Widget_Material_ImageButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Light -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light" class="hiddenlink" target="rightframe">Widget_Material_Light</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionBar_Solid -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_Solid" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_Solid</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionBar_TabBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_TabBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_TabBar</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionBar_TabText -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_TabText" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_TabText</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionBar_TabView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_TabView" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_TabView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionButton" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionButton_CloseMode -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionButton_CloseMode" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionButton_CloseMode</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionButton_Overflow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionButton_Overflow" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionButton_Overflow</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionMode -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionMode" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionMode</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_AutoCompleteTextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_AutoCompleteTextView" class="hiddenlink" target="rightframe">Widget_Material_Light_AutoCompleteTextView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button" class="hiddenlink" target="rightframe">Widget_Material_Light_Button</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button_Borderless -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Borderless" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Borderless</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button_Borderless_Colored -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Borderless_Colored" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Borderless_Colored</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button_Borderless_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Borderless_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Borderless_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button_Inset -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Inset" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Inset</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button_Toggle -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Toggle" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Toggle</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ButtonBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ButtonBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ButtonBar</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ButtonBar_AlertDialog -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ButtonBar_AlertDialog" class="hiddenlink" target="rightframe">Widget_Material_Light_ButtonBar_AlertDialog</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_CalendarView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CalendarView" class="hiddenlink" target="rightframe">Widget_Material_Light_CalendarView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_CheckedTextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CheckedTextView" class="hiddenlink" target="rightframe">Widget_Material_Light_CheckedTextView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_CompoundButton_CheckBox -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CompoundButton_CheckBox" class="hiddenlink" target="rightframe">Widget_Material_Light_CompoundButton_CheckBox</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_CompoundButton_RadioButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CompoundButton_RadioButton" class="hiddenlink" target="rightframe">Widget_Material_Light_CompoundButton_RadioButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_CompoundButton_Star -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CompoundButton_Star" class="hiddenlink" target="rightframe">Widget_Material_Light_CompoundButton_Star</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_DatePicker -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_DatePicker" class="hiddenlink" target="rightframe">Widget_Material_Light_DatePicker</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_DropDownItem -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_DropDownItem" class="hiddenlink" target="rightframe">Widget_Material_Light_DropDownItem</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_DropDownItem_Spinner -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_DropDownItem_Spinner" class="hiddenlink" target="rightframe">Widget_Material_Light_DropDownItem_Spinner</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_EditText -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_EditText" class="hiddenlink" target="rightframe">Widget_Material_Light_EditText</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ExpandableListView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ExpandableListView" class="hiddenlink" target="rightframe">Widget_Material_Light_ExpandableListView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_FastScroll -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_FastScroll" class="hiddenlink" target="rightframe">Widget_Material_Light_FastScroll</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_GridView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_GridView" class="hiddenlink" target="rightframe">Widget_Material_Light_GridView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_HorizontalScrollView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_HorizontalScrollView" class="hiddenlink" target="rightframe">Widget_Material_Light_HorizontalScrollView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ImageButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ImageButton" class="hiddenlink" target="rightframe">Widget_Material_Light_ImageButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ListPopupWindow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ListPopupWindow" class="hiddenlink" target="rightframe">Widget_Material_Light_ListPopupWindow</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ListView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ListView" class="hiddenlink" target="rightframe">Widget_Material_Light_ListView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ListView_DropDown -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ListView_DropDown" class="hiddenlink" target="rightframe">Widget_Material_Light_ListView_DropDown</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_MediaRouteButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_MediaRouteButton" class="hiddenlink" target="rightframe">Widget_Material_Light_MediaRouteButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_PopupMenu -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_PopupMenu" class="hiddenlink" target="rightframe">Widget_Material_Light_PopupMenu</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_PopupMenu_Overflow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_PopupMenu_Overflow" class="hiddenlink" target="rightframe">Widget_Material_Light_PopupMenu_Overflow</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_PopupWindow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_PopupWindow" class="hiddenlink" target="rightframe">Widget_Material_Light_PopupWindow</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Horizontal -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Horizontal" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Horizontal</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Inverse" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Inverse</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Large -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Large" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Large</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Large_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Large_Inverse" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Large_Inverse</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Small_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Small_Inverse" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Small_Inverse</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Small_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Small_Title" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Small_Title</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_RatingBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_RatingBar" class="hiddenlink" target="rightframe">Widget_Material_Light_RatingBar</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_RatingBar_Indicator -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_RatingBar_Indicator" class="hiddenlink" target="rightframe">Widget_Material_Light_RatingBar_Indicator</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_RatingBar_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_RatingBar_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_RatingBar_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ScrollView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ScrollView" class="hiddenlink" target="rightframe">Widget_Material_Light_ScrollView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_SearchView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_SearchView" class="hiddenlink" target="rightframe">Widget_Material_Light_SearchView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_SeekBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_SeekBar" class="hiddenlink" target="rightframe">Widget_Material_Light_SeekBar</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_SegmentedButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_SegmentedButton" class="hiddenlink" target="rightframe">Widget_Material_Light_SegmentedButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Spinner -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Spinner" class="hiddenlink" target="rightframe">Widget_Material_Light_Spinner</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Spinner_Underlined -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Spinner_Underlined" class="hiddenlink" target="rightframe">Widget_Material_Light_Spinner_Underlined</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_StackView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_StackView" class="hiddenlink" target="rightframe">Widget_Material_Light_StackView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Tab -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Tab" class="hiddenlink" target="rightframe">Widget_Material_Light_Tab</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_TabWidget -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TabWidget" class="hiddenlink" target="rightframe">Widget_Material_Light_TabWidget</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_TextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TextView" class="hiddenlink" target="rightframe">Widget_Material_Light_TextView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_TextView_SpinnerItem -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TextView_SpinnerItem" class="hiddenlink" target="rightframe">Widget_Material_Light_TextView_SpinnerItem</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_TimePicker -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TimePicker" class="hiddenlink" target="rightframe">Widget_Material_Light_TimePicker</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_WebTextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_WebTextView" class="hiddenlink" target="rightframe">Widget_Material_Light_WebTextView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_WebView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_WebView" class="hiddenlink" target="rightframe">Widget_Material_Light_WebView</A>
+</nobr><br>
+<!-- Field Widget_Material_ListPopupWindow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ListPopupWindow" class="hiddenlink" target="rightframe">Widget_Material_ListPopupWindow</A>
+</nobr><br>
+<!-- Field Widget_Material_ListView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ListView" class="hiddenlink" target="rightframe">Widget_Material_ListView</A>
+</nobr><br>
+<!-- Field Widget_Material_ListView_DropDown -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ListView_DropDown" class="hiddenlink" target="rightframe">Widget_Material_ListView_DropDown</A>
+</nobr><br>
+<!-- Field Widget_Material_MediaRouteButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_MediaRouteButton" class="hiddenlink" target="rightframe">Widget_Material_MediaRouteButton</A>
+</nobr><br>
+<!-- Field Widget_Material_PopupMenu -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_PopupMenu" class="hiddenlink" target="rightframe">Widget_Material_PopupMenu</A>
+</nobr><br>
+<!-- Field Widget_Material_PopupMenu_Overflow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_PopupMenu_Overflow" class="hiddenlink" target="rightframe">Widget_Material_PopupMenu_Overflow</A>
+</nobr><br>
+<!-- Field Widget_Material_PopupWindow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_PopupWindow" class="hiddenlink" target="rightframe">Widget_Material_PopupWindow</A>
+</nobr><br>
+<!-- Field Widget_Material_ProgressBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar</A>
+</nobr><br>
+<!-- Field Widget_Material_ProgressBar_Horizontal -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Horizontal" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Horizontal</A>
+</nobr><br>
+<!-- Field Widget_Material_ProgressBar_Large -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Large" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Large</A>
+</nobr><br>
+<!-- Field Widget_Material_ProgressBar_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Small" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_ProgressBar_Small_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Small_Title" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Small_Title</A>
+</nobr><br>
+<!-- Field Widget_Material_RatingBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_RatingBar" class="hiddenlink" target="rightframe">Widget_Material_RatingBar</A>
+</nobr><br>
+<!-- Field Widget_Material_RatingBar_Indicator -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_RatingBar_Indicator" class="hiddenlink" target="rightframe">Widget_Material_RatingBar_Indicator</A>
+</nobr><br>
+<!-- Field Widget_Material_RatingBar_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_RatingBar_Small" class="hiddenlink" target="rightframe">Widget_Material_RatingBar_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_ScrollView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ScrollView" class="hiddenlink" target="rightframe">Widget_Material_ScrollView</A>
+</nobr><br>
+<!-- Field Widget_Material_SearchView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_SearchView" class="hiddenlink" target="rightframe">Widget_Material_SearchView</A>
+</nobr><br>
+<!-- Field Widget_Material_SeekBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_SeekBar" class="hiddenlink" target="rightframe">Widget_Material_SeekBar</A>
+</nobr><br>
+<!-- Field Widget_Material_SegmentedButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_SegmentedButton" class="hiddenlink" target="rightframe">Widget_Material_SegmentedButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Spinner -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Spinner" class="hiddenlink" target="rightframe">Widget_Material_Spinner</A>
+</nobr><br>
+<!-- Field Widget_Material_Spinner_Underlined -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Spinner_Underlined" class="hiddenlink" target="rightframe">Widget_Material_Spinner_Underlined</A>
+</nobr><br>
+<!-- Field Widget_Material_StackView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_StackView" class="hiddenlink" target="rightframe">Widget_Material_StackView</A>
+</nobr><br>
+<!-- Field Widget_Material_Tab -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Tab" class="hiddenlink" target="rightframe">Widget_Material_Tab</A>
+</nobr><br>
+<!-- Field Widget_Material_TabWidget -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TabWidget" class="hiddenlink" target="rightframe">Widget_Material_TabWidget</A>
+</nobr><br>
+<!-- Field Widget_Material_TextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TextView" class="hiddenlink" target="rightframe">Widget_Material_TextView</A>
+</nobr><br>
+<!-- Field Widget_Material_TextView_SpinnerItem -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TextView_SpinnerItem" class="hiddenlink" target="rightframe">Widget_Material_TextView_SpinnerItem</A>
+</nobr><br>
+<!-- Field Widget_Material_TimePicker -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TimePicker" class="hiddenlink" target="rightframe">Widget_Material_TimePicker</A>
+</nobr><br>
+<!-- Field Widget_Material_Toolbar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Toolbar" class="hiddenlink" target="rightframe">Widget_Material_Toolbar</A>
+</nobr><br>
+<!-- Field Widget_Material_Toolbar_Button_Navigation -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Toolbar_Button_Navigation" class="hiddenlink" target="rightframe">Widget_Material_Toolbar_Button_Navigation</A>
+</nobr><br>
+<!-- Field Widget_Material_WebTextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_WebTextView" class="hiddenlink" target="rightframe">Widget_Material_WebTextView</A>
+</nobr><br>
+<!-- Field Widget_Material_WebView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_WebView" class="hiddenlink" target="rightframe">Widget_Material_WebView</A>
+</nobr><br>
+<!-- Field Widget_StackView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_StackView" class="hiddenlink" target="rightframe">Widget_StackView</A>
+</nobr><br>
+<!-- Field Widget_Toolbar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Toolbar" class="hiddenlink" target="rightframe">Widget_Toolbar</A>
+</nobr><br>
+<!-- Field Widget_Toolbar_Button_Navigation -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Toolbar_Button_Navigation" class="hiddenlink" target="rightframe">Widget_Toolbar_Button_Navigation</A>
+</nobr><br>
+<!-- Class WifiConfiguration -->
+<A HREF="android.net.wifi.WifiConfiguration.html" class="hiddenlink" target="rightframe">WifiConfiguration</A><br>
+<!-- Class WifiEnterpriseConfig.Eap -->
+<A HREF="android.net.wifi.WifiEnterpriseConfig.Eap.html" class="hiddenlink" target="rightframe">WifiEnterpriseConfig.Eap</A><br>
+<!-- Class WifiInfo -->
+<A HREF="android.net.wifi.WifiInfo.html" class="hiddenlink" target="rightframe">WifiInfo</A><br>
+<!-- Class WifiManager -->
+<A HREF="android.net.wifi.WifiManager.html" class="hiddenlink" target="rightframe">WifiManager</A><br>
+<!-- Class WifiManager.WpsCallback -->
+<A HREF="pkg_android.net.wifi.html#WifiManager.WpsCallback" class="hiddenlink" target="rightframe"><b>WifiManager.WpsCallback</b></A><br>
+<!-- Class Window -->
+<A HREF="android.view.Window.html" class="hiddenlink" target="rightframe">Window</A><br>
+<!-- Field windowActivityTransitions -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowActivityTransitions" class="hiddenlink" target="rightframe">windowActivityTransitions</A>
+</nobr><br>
+<!-- Field windowAllowEnterTransitionOverlap -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowAllowEnterTransitionOverlap" class="hiddenlink" target="rightframe">windowAllowEnterTransitionOverlap</A>
+</nobr><br>
+<!-- Field windowAllowReturnTransitionOverlap -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowAllowReturnTransitionOverlap" class="hiddenlink" target="rightframe">windowAllowReturnTransitionOverlap</A>
+</nobr><br>
+<!-- Class WindowAnimationFrameStats -->
+<A HREF="pkg_android.view.html#WindowAnimationFrameStats" class="hiddenlink" target="rightframe"><b>WindowAnimationFrameStats</b></A><br>
+<!-- Field windowClipToOutline -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowClipToOutline" class="hiddenlink" target="rightframe">windowClipToOutline</A>
+</nobr><br>
+<!-- Field windowColor -->
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.windowColor" class="hiddenlink" target="rightframe">windowColor</A>
+</nobr><br>
+<!-- Class WindowContentFrameStats -->
+<A HREF="pkg_android.view.html#WindowContentFrameStats" class="hiddenlink" target="rightframe"><b>WindowContentFrameStats</b></A><br>
+<!-- Field windowContentTransitionManager -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowContentTransitionManager" class="hiddenlink" target="rightframe">windowContentTransitionManager</A>
+</nobr><br>
+<!-- Field windowContentTransitions -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowContentTransitions" class="hiddenlink" target="rightframe">windowContentTransitions</A>
+</nobr><br>
+<!-- Field windowDrawsSystemBarBackgrounds -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowDrawsSystemBarBackgrounds" class="hiddenlink" target="rightframe">windowDrawsSystemBarBackgrounds</A>
+</nobr><br>
+<!-- Field windowElevation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowElevation" class="hiddenlink" target="rightframe">windowElevation</A>
+</nobr><br>
+<!-- Field windowEnterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowEnterTransition" class="hiddenlink" target="rightframe">windowEnterTransition</A>
+</nobr><br>
+<!-- Field windowExitTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowExitTransition" class="hiddenlink" target="rightframe">windowExitTransition</A>
+</nobr><br>
+<!-- Class WindowInsets -->
+<A HREF="android.view.WindowInsets.html" class="hiddenlink" target="rightframe">WindowInsets</A><br>
+<!-- Class WindowManager.LayoutParams -->
+<A HREF="android.view.WindowManager.LayoutParams.html" class="hiddenlink" target="rightframe">WindowManager.LayoutParams</A><br>
+<!-- Field windowReenterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowReenterTransition" class="hiddenlink" target="rightframe">windowReenterTransition</A>
+</nobr><br>
+<!-- Field windowReturnTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowReturnTransition" class="hiddenlink" target="rightframe">windowReturnTransition</A>
+</nobr><br>
+<!-- Field windowSharedElementEnterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementEnterTransition" class="hiddenlink" target="rightframe">windowSharedElementEnterTransition</A>
+</nobr><br>
+<!-- Field windowSharedElementExitTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementExitTransition" class="hiddenlink" target="rightframe">windowSharedElementExitTransition</A>
+</nobr><br>
+<!-- Field windowSharedElementReenterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementReenterTransition" class="hiddenlink" target="rightframe">windowSharedElementReenterTransition</A>
+</nobr><br>
+<!-- Field windowSharedElementReturnTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementReturnTransition" class="hiddenlink" target="rightframe">windowSharedElementReturnTransition</A>
+</nobr><br>
+<!-- Field windowSharedElementsUseOverlay -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementsUseOverlay" class="hiddenlink" target="rightframe">windowSharedElementsUseOverlay</A>
+</nobr><br>
+<!-- Field windowTransitionBackgroundFadeDuration -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowTransitionBackgroundFadeDuration" class="hiddenlink" target="rightframe">windowTransitionBackgroundFadeDuration</A>
+</nobr><br>
+<!-- Field WPS_AUTH_FAILURE -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_AUTH_FAILURE" class="hiddenlink" target="rightframe">WPS_AUTH_FAILURE</A>
+</nobr><br>
+<!-- Field WPS_OVERLAP_ERROR -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_OVERLAP_ERROR" class="hiddenlink" target="rightframe">WPS_OVERLAP_ERROR</A>
+</nobr><br>
+<!-- Field WPS_TIMED_OUT -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_TIMED_OUT" class="hiddenlink" target="rightframe">WPS_TIMED_OUT</A>
+</nobr><br>
+<!-- Field WPS_TKIP_ONLY_PROHIBITED -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_TKIP_ONLY_PROHIBITED" class="hiddenlink" target="rightframe">WPS_TKIP_ONLY_PROHIBITED</A>
+</nobr><br>
+<!-- Field WPS_WEP_PROHIBITED -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_WEP_PROHIBITED" class="hiddenlink" target="rightframe">WPS_WEP_PROHIBITED</A>
+</nobr><br>
+<!-- Class WpsInfo -->
+<A HREF="android.net.wifi.WpsInfo.html" class="hiddenlink" target="rightframe">WpsInfo</A><br>
+<!-- Method write -->
+<i>write</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.write_added(float[], int, int, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float[], int, int, int</code>)</b>&nbsp;in&nbsp;android.media.AudioTrack
+</A></nobr><br>
+<!-- Method write -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.write_added(java.nio.ByteBuffer, int, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ByteBuffer, int, int</code>)</b>&nbsp;in&nbsp;android.media.AudioTrack
+</A></nobr><br>
+<!-- Field WRITE_BLOCKING -->
+<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.WRITE_BLOCKING" class="hiddenlink" target="rightframe">WRITE_BLOCKING</A>
+</nobr><br>
+<!-- Field WRITE_NON_BLOCKING -->
+<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.WRITE_NON_BLOCKING" class="hiddenlink" target="rightframe">WRITE_NON_BLOCKING</A>
+</nobr><br>
+<!-- Field WRITE_SOCIAL_STREAM -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.WRITE_SOCIAL_STREAM" class="hiddenlink" target="rightframe">WRITE_SOCIAL_STREAM</A>
+</nobr><br>
+<!-- Field WRITE_VOICEMAIL -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.WRITE_VOICEMAIL" class="hiddenlink" target="rightframe">WRITE_VOICEMAIL</A>
+</nobr><br>
+<!-- Method writePersistableBundle -->
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.writePersistableBundle_added(android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>writePersistableBundle</b>
+(<code>PersistableBundle</code>)</A></nobr><br>
+<!-- Method writeSize -->
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.writeSize_added(android.util.Size)" class="hiddenlink" target="rightframe"><b>writeSize</b>
+(<code>Size</code>)</A></nobr><br>
+<!-- Method writeSizeF -->
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.writeSizeF_added(android.util.SizeF)" class="hiddenlink" target="rightframe"><b>writeSizeF</b>
+(<code>SizeF</code>)</A></nobr><br>
+<!-- Class X509TrustManagerExtensions -->
+<A NAME="X"></A>
+<br><font size="+2">X</font>&nbsp;
+<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">
+<A HREF="android.net.http.X509TrustManagerExtensions.html" class="hiddenlink" target="rightframe">X509TrustManagerExtensions</A><br>
+<!-- Field yearListItemTextAppearance -->
+<A NAME="Y"></A>
+<br><font size="+2">Y</font>&nbsp;
+<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="#X"><font size="-2">X</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.yearListItemTextAppearance" class="hiddenlink" target="rightframe">yearListItemTextAppearance</A>
+</nobr><br>
+<!-- Field yearListSelectorColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.yearListSelectorColor" class="hiddenlink" target="rightframe">yearListSelectorColor</A>
+</nobr><br>
+<!-- Method z -->
+<A NAME="Z"></A>
+<br><font size="+2">Z</font>&nbsp;
+<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="#X"><font size="-2">X</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.ViewPropertyAnimator.html#android.view.ViewPropertyAnimator.z_added(float)" class="hiddenlink" target="rightframe"><b>z</b>
+(<code>float</code>)</A></nobr><br>
+<!-- Field Z -->
+<nobr><A HREF="android.view.View.html#android.view.View.Z" class="hiddenlink" target="rightframe">Z</A>
+</nobr><br>
+<!-- Method zBy -->
+<nobr><A HREF="android.view.ViewPropertyAnimator.html#android.view.ViewPropertyAnimator.zBy_added(float)" class="hiddenlink" target="rightframe"><b>zBy</b>
+(<code>float</code>)</A></nobr><br>
+<!-- Class ZipEntry -->
+<A HREF="java.util.zip.ZipEntry.html" class="hiddenlink" target="rightframe">ZipEntry</A><br>
+<!-- Class ZipFile -->
+<A HREF="java.util.zip.ZipFile.html" class="hiddenlink" target="rightframe">ZipFile</A><br>
+<!-- Class ZipInputStream -->
+<A HREF="java.util.zip.ZipInputStream.html" class="hiddenlink" target="rightframe">ZipInputStream</A><br>
+<!-- Class ZipOutputStream -->
+<A HREF="java.util.zip.ZipOutputStream.html" class="hiddenlink" target="rightframe">ZipOutputStream</A><br>
+<!-- Class ZoomButton -->
+<i>ZoomButton</i><br>
+&nbsp;&nbsp;<A HREF="android.widget.ZoomButton.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Constructor ZoomButton -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.ZoomButton.html#android.widget.ZoomButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ZoomButton</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Method zoomBy -->
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.zoomBy_added(float)" class="hiddenlink" target="rightframe"><b>zoomBy</b>
+(<code>float</code>)</A></nobr><br>
+<script src="//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/21/changes/alldiffs_index_changes.html b/docs/html/sdk/api_diff/21/changes/alldiffs_index_changes.html
new file mode 100644
index 0000000..3d652ea
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/alldiffs_index_changes.html
@@ -0,0 +1,2207 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<!-- Class AbsListView -->
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#X"><font size="-2">X</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.AbsListView.html" class="hiddenlink" target="rightframe">AbsListView</A><br>
+<!-- Class AbsoluteLayout -->
+<A HREF="android.widget.AbsoluteLayout.html" class="hiddenlink" target="rightframe">AbsoluteLayout</A><br>
+<!-- Class AbsSeekBar -->
+<A HREF="android.widget.AbsSeekBar.html" class="hiddenlink" target="rightframe">AbsSeekBar</A><br>
+<!-- Class AbsSpinner -->
+<A HREF="android.widget.AbsSpinner.html" class="hiddenlink" target="rightframe">AbsSpinner</A><br>
+<!-- Class AbstractQueuedLongSynchronizer -->
+<A HREF="java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html" class="hiddenlink" target="rightframe">AbstractQueuedLongSynchronizer</A><br>
+<!-- Class AbstractQueuedSynchronizer -->
+<A HREF="java.util.concurrent.locks.AbstractQueuedSynchronizer.html" class="hiddenlink" target="rightframe">AbstractQueuedSynchronizer</A><br>
+<!-- Class AccessibilityEvent -->
+<A HREF="android.view.accessibility.AccessibilityEvent.html" class="hiddenlink" target="rightframe">AccessibilityEvent</A><br>
+<!-- Class AccessibilityNodeInfo -->
+<A HREF="android.view.accessibility.AccessibilityNodeInfo.html" class="hiddenlink" target="rightframe">AccessibilityNodeInfo</A><br>
+<!-- Class AccessibilityNodeInfo.CollectionInfo -->
+<A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html" class="hiddenlink" target="rightframe">AccessibilityNodeInfo.CollectionInfo</A><br>
+<!-- Class AccessibilityNodeInfo.CollectionItemInfo -->
+<A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.html" class="hiddenlink" target="rightframe">AccessibilityNodeInfo.CollectionItemInfo</A><br>
+<!-- Class AccessibilityNodeProvider -->
+<A HREF="android.view.accessibility.AccessibilityNodeProvider.html" class="hiddenlink" target="rightframe">AccessibilityNodeProvider</A><br>
+<!-- Class AccessibilityService -->
+<A HREF="android.accessibilityservice.AccessibilityService.html" class="hiddenlink" target="rightframe">AccessibilityService</A><br>
+<!-- Class AccessibilityServiceInfo -->
+<A HREF="android.accessibilityservice.AccessibilityServiceInfo.html" class="hiddenlink" target="rightframe">AccessibilityServiceInfo</A><br>
+<!-- Field ACCOUNT_NAME -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.ACCOUNT_NAME" class="hiddenlink" target="rightframe">ACCOUNT_NAME</A>
+</nobr><br>
+<!-- Field ACCOUNT_TYPE -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.ACCOUNT_TYPE" class="hiddenlink" target="rightframe">ACCOUNT_TYPE</A>
+</nobr><br>
+<!-- Class AccountManager -->
+<A HREF="android.accounts.AccountManager.html" class="hiddenlink" target="rightframe">AccountManager</A><br>
+<!-- Class ActionBar -->
+<A HREF="android.app.ActionBar.html" class="hiddenlink" target="rightframe">ActionBar</A><br>
+<!-- Class ActionBar.OnNavigationListener -->
+<A HREF="android.app.ActionBar.OnNavigationListener.html" class="hiddenlink" target="rightframe"><i>ActionBar.OnNavigationListener</i></A><br>
+<!-- Class ActionBar.Tab -->
+<A HREF="android.app.ActionBar.Tab.html" class="hiddenlink" target="rightframe">ActionBar.Tab</A><br>
+<!-- Class ActionBar.TabListener -->
+<A HREF="android.app.ActionBar.TabListener.html" class="hiddenlink" target="rightframe"><i>ActionBar.TabListener</i></A><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.RecentTaskInfo -->
+<A HREF="android.app.ActivityManager.RecentTaskInfo.html" class="hiddenlink" target="rightframe">ActivityManager.RecentTaskInfo</A><br>
+<!-- Class ActivityManager.RunningAppProcessInfo -->
+<A HREF="android.app.ActivityManager.RunningAppProcessInfo.html" class="hiddenlink" target="rightframe">ActivityManager.RunningAppProcessInfo</A><br>
+<!-- Class ActivityOptions -->
+<A HREF="android.app.ActivityOptions.html" class="hiddenlink" target="rightframe">ActivityOptions</A><br>
+<!-- Class AdapterView -->
+<A HREF="android.widget.AdapterView.html" class="hiddenlink" target="rightframe">AdapterView</A><br>
+<!-- Class AdapterViewAnimator -->
+<A HREF="android.widget.AdapterViewAnimator.html" class="hiddenlink" target="rightframe">AdapterViewAnimator</A><br>
+<!-- Class AdapterViewFlipper -->
+<A HREF="android.widget.AdapterViewFlipper.html" class="hiddenlink" target="rightframe">AdapterViewFlipper</A><br>
+<!-- Method addAction -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.addAction_changed(int)" class="hiddenlink" target="rightframe">addAction
+(<code>int</code>)</A></nobr><br>
+<!-- Method addTab -->
+<i>addTab</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Tab</code>)&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+<!-- Method addTab -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab, boolean)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Tab, boolean</code>)&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+<!-- Method addTab -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab, int)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Tab, int</code>)&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+<!-- Method addTab -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab, int, boolean)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Tab, int, boolean</code>)&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+<!-- Class AlarmManager -->
+<A HREF="android.app.AlarmManager.html" class="hiddenlink" target="rightframe">AlarmManager</A><br>
+<!-- Class AlertDialog.Builder -->
+<A HREF="android.app.AlertDialog.Builder.html" class="hiddenlink" target="rightframe">AlertDialog.Builder</A><br>
+<!-- Class Allocation -->
+<A HREF="android.renderscript.Allocation.html" class="hiddenlink" target="rightframe">Allocation</A><br>
+<!-- Class AnalogClock -->
+<A HREF="android.widget.AnalogClock.html" class="hiddenlink" target="rightframe">AnalogClock</A><br>
+<!-- Package android -->
+<A HREF="pkg_android.html" class="hiddenlink" target="rightframe">android</A><br>
+<!-- Package android.accessibilityservice -->
+<A HREF="pkg_android.accessibilityservice.html" class="hiddenlink" target="rightframe">android.accessibilityservice</A><br>
+<!-- Package android.accounts -->
+<A HREF="pkg_android.accounts.html" class="hiddenlink" target="rightframe">android.accounts</A><br>
+<!-- Package android.animation -->
+<A HREF="pkg_android.animation.html" class="hiddenlink" target="rightframe">android.animation</A><br>
+<!-- Package android.app -->
+<A HREF="pkg_android.app.html" class="hiddenlink" target="rightframe">android.app</A><br>
+<!-- Package android.app.admin -->
+<A HREF="pkg_android.app.admin.html" class="hiddenlink" target="rightframe">android.app.admin</A><br>
+<!-- Package android.app.backup -->
+<A HREF="pkg_android.app.backup.html" class="hiddenlink" target="rightframe">android.app.backup</A><br>
+<!-- Package android.appwidget -->
+<A HREF="pkg_android.appwidget.html" class="hiddenlink" target="rightframe">android.appwidget</A><br>
+<!-- Package android.bluetooth -->
+<A HREF="pkg_android.bluetooth.html" class="hiddenlink" target="rightframe">android.bluetooth</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.gesture -->
+<A HREF="pkg_android.gesture.html" class="hiddenlink" target="rightframe">android.gesture</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.graphics.drawable.shapes -->
+<A HREF="pkg_android.graphics.drawable.shapes.html" class="hiddenlink" target="rightframe">android.graphics.drawable.shapes</A><br>
+<!-- Package android.graphics.pdf -->
+<A HREF="pkg_android.graphics.pdf.html" class="hiddenlink" target="rightframe">android.graphics.pdf</A><br>
+<!-- Package android.hardware -->
+<A HREF="pkg_android.hardware.html" class="hiddenlink" target="rightframe">android.hardware</A><br>
+<!-- Package android.hardware.display -->
+<A HREF="pkg_android.hardware.display.html" class="hiddenlink" target="rightframe">android.hardware.display</A><br>
+<!-- Package android.hardware.usb -->
+<A HREF="pkg_android.hardware.usb.html" class="hiddenlink" target="rightframe">android.hardware.usb</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.media.audiofx -->
+<A HREF="pkg_android.media.audiofx.html" class="hiddenlink" target="rightframe">android.media.audiofx</A><br>
+<!-- Package android.net -->
+<A HREF="pkg_android.net.html" class="hiddenlink" target="rightframe">android.net</A><br>
+<!-- Package android.net.http -->
+<A HREF="pkg_android.net.http.html" class="hiddenlink" target="rightframe">android.net.http</A><br>
+<!-- Package android.net.nsd -->
+<A HREF="pkg_android.net.nsd.html" class="hiddenlink" target="rightframe">android.net.nsd</A><br>
+<!-- Package android.net.wifi -->
+<A HREF="pkg_android.net.wifi.html" class="hiddenlink" target="rightframe">android.net.wifi</A><br>
+<!-- Package android.nfc -->
+<A HREF="pkg_android.nfc.html" class="hiddenlink" target="rightframe">android.nfc</A><br>
+<!-- Package android.nfc.cardemulation -->
+<A HREF="pkg_android.nfc.cardemulation.html" class="hiddenlink" target="rightframe">android.nfc.cardemulation</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.preference -->
+<A HREF="pkg_android.preference.html" class="hiddenlink" target="rightframe">android.preference</A><br>
+<!-- Package android.printservice -->
+<A HREF="pkg_android.printservice.html" class="hiddenlink" target="rightframe">android.printservice</A><br>
+<!-- Package android.provider -->
+<A HREF="pkg_android.provider.html" class="hiddenlink" target="rightframe">android.provider</A><br>
+<!-- Package android.renderscript -->
+<A HREF="pkg_android.renderscript.html" class="hiddenlink" target="rightframe">android.renderscript</A><br>
+<!-- Package android.service.dreams -->
+<A HREF="pkg_android.service.dreams.html" class="hiddenlink" target="rightframe">android.service.dreams</A><br>
+<!-- Package android.service.notification -->
+<A HREF="pkg_android.service.notification.html" class="hiddenlink" target="rightframe">android.service.notification</A><br>
+<!-- Package android.service.wallpaper -->
+<A HREF="pkg_android.service.wallpaper.html" class="hiddenlink" target="rightframe">android.service.wallpaper</A><br>
+<!-- Package android.speech.tts -->
+<A HREF="pkg_android.speech.tts.html" class="hiddenlink" target="rightframe">android.speech.tts</A><br>
+<!-- Package android.telephony -->
+<A HREF="pkg_android.telephony.html" class="hiddenlink" target="rightframe">android.telephony</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.style -->
+<A HREF="pkg_android.text.style.html" class="hiddenlink" target="rightframe">android.text.style</A><br>
+<!-- Package android.transition -->
+<A HREF="pkg_android.transition.html" class="hiddenlink" target="rightframe">android.transition</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.accessibility -->
+<A HREF="pkg_android.view.accessibility.html" class="hiddenlink" target="rightframe">android.view.accessibility</A><br>
+<!-- Package android.view.animation -->
+<A HREF="pkg_android.view.animation.html" class="hiddenlink" target="rightframe">android.view.animation</A><br>
+<!-- Package android.view.inputmethod -->
+<A HREF="pkg_android.view.inputmethod.html" class="hiddenlink" target="rightframe">android.view.inputmethod</A><br>
+<!-- Package android.view.textservice -->
+<A HREF="pkg_android.view.textservice.html" class="hiddenlink" target="rightframe">android.view.textservice</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 AnimatorInflater -->
+<A HREF="android.animation.AnimatorInflater.html" class="hiddenlink" target="rightframe">AnimatorInflater</A><br>
+<!-- Class ApplicationInfo -->
+<A HREF="android.content.pm.ApplicationInfo.html" class="hiddenlink" target="rightframe">ApplicationInfo</A><br>
+<!-- Class AppOpsManager -->
+<A HREF="android.app.AppOpsManager.html" class="hiddenlink" target="rightframe">AppOpsManager</A><br>
+<!-- Class AppWidgetHost -->
+<A HREF="android.appwidget.AppWidgetHost.html" class="hiddenlink" target="rightframe">AppWidgetHost</A><br>
+<!-- Class AppWidgetManager -->
+<A HREF="android.appwidget.AppWidgetManager.html" class="hiddenlink" target="rightframe">AppWidgetManager</A><br>
+<!-- Class AppWidgetProvider -->
+<A HREF="android.appwidget.AppWidgetProvider.html" class="hiddenlink" target="rightframe">AppWidgetProvider</A><br>
+<!-- Class AppWidgetProviderInfo -->
+<A HREF="android.appwidget.AppWidgetProviderInfo.html" class="hiddenlink" target="rightframe">AppWidgetProviderInfo</A><br>
+<!-- Method areDefaultsEnforced -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.areDefaultsEnforced_changed()" class="hiddenlink" target="rightframe">areDefaultsEnforced
+()</A></nobr><br>
+<!-- Class ArrayMap -->
+<A HREF="android.util.ArrayMap.html" class="hiddenlink" target="rightframe">ArrayMap</A><br>
+<!-- Class AssetManager -->
+<A HREF="android.content.res.AssetManager.html" class="hiddenlink" target="rightframe">AssetManager</A><br>
+<!-- Class AssetManager.AssetInputStream -->
+<A HREF="android.content.res.AssetManager.AssetInputStream.html" class="hiddenlink" target="rightframe">AssetManager.AssetInputStream</A><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 audioStreamType -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.audioStreamType" class="hiddenlink" target="rightframe">audioStreamType</A>
+</nobr><br>
+<!-- Class AudioTrack -->
+<A HREF="android.media.AudioTrack.html" class="hiddenlink" target="rightframe">AudioTrack</A><br>
+<!-- Class AutoCompleteTextView -->
+<A HREF="android.widget.AutoCompleteTextView.html" class="hiddenlink" target="rightframe">AutoCompleteTextView</A><br>
+<!-- Class AutoTransition -->
+<A HREF="android.transition.AutoTransition.html" class="hiddenlink" target="rightframe">AutoTransition</A><br>
+<!-- Class BackupAgent -->
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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="#X"><font size="-2">X</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.backup.BackupAgent.html" class="hiddenlink" target="rightframe">BackupAgent</A><br>
+<!-- Class BaseInputConnection -->
+<A HREF="android.view.inputmethod.BaseInputConnection.html" class="hiddenlink" target="rightframe">BaseInputConnection</A><br>
+<!-- Class BatteryManager -->
+<A HREF="android.os.BatteryManager.html" class="hiddenlink" target="rightframe">BatteryManager</A><br>
+<!-- Class BitmapFactory.Options -->
+<A HREF="android.graphics.BitmapFactory.Options.html" class="hiddenlink" target="rightframe">BitmapFactory.Options</A><br>
+<!-- Class BluetoothAdapter -->
+<A HREF="android.bluetooth.BluetoothAdapter.html" class="hiddenlink" target="rightframe">BluetoothAdapter</A><br>
+<!-- Class BluetoothGatt -->
+<A HREF="android.bluetooth.BluetoothGatt.html" class="hiddenlink" target="rightframe">BluetoothGatt</A><br>
+<!-- Class BluetoothGattCallback -->
+<A HREF="android.bluetooth.BluetoothGattCallback.html" class="hiddenlink" target="rightframe">BluetoothGattCallback</A><br>
+<!-- Class BluetoothGattServerCallback -->
+<A HREF="android.bluetooth.BluetoothGattServerCallback.html" class="hiddenlink" target="rightframe">BluetoothGattServerCallback</A><br>
+<!-- Field BUFFER_FLAG_SYNC_FRAME -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.BUFFER_FLAG_SYNC_FRAME" class="hiddenlink" target="rightframe">BUFFER_FLAG_SYNC_FRAME</A>
+</nobr><br>
+<!-- Class Build -->
+<A HREF="android.os.Build.html" class="hiddenlink" target="rightframe">Build</A><br>
+<!-- Class Build.VERSION_CODES -->
+<A HREF="android.os.Build.VERSION_CODES.html" class="hiddenlink" target="rightframe">Build.VERSION_CODES</A><br>
+<!-- Class Bundle -->
+<A HREF="android.os.Bundle.html" class="hiddenlink" target="rightframe">Bundle</A><br>
+<!-- Class Button -->
+<A HREF="android.widget.Button.html" class="hiddenlink" target="rightframe">Button</A><br>
+<!-- Class CalendarView -->
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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="#X"><font size="-2">X</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.CalendarView.html" class="hiddenlink" target="rightframe">CalendarView</A><br>
+<!-- Class CallLog.Calls -->
+<A HREF="android.provider.CallLog.Calls.html" class="hiddenlink" target="rightframe">CallLog.Calls</A><br>
+<!-- Class CamcorderProfile -->
+<A HREF="android.media.CamcorderProfile.html" class="hiddenlink" target="rightframe">CamcorderProfile</A><br>
+<!-- Class Camera -->
+<A HREF="android.hardware.Camera.html" class="hiddenlink" target="rightframe">Camera</A><br>
+<!-- Class Camera.Area -->
+<A HREF="android.hardware.Camera.Area.html" class="hiddenlink" target="rightframe">Camera.Area</A><br>
+<!-- Class Camera.AutoFocusCallback -->
+<A HREF="android.hardware.Camera.AutoFocusCallback.html" class="hiddenlink" target="rightframe"><i>Camera.AutoFocusCallback</i></A><br>
+<!-- Class Camera.AutoFocusMoveCallback -->
+<A HREF="android.hardware.Camera.AutoFocusMoveCallback.html" class="hiddenlink" target="rightframe"><i>Camera.AutoFocusMoveCallback</i></A><br>
+<!-- Class Camera.CameraInfo -->
+<A HREF="android.hardware.Camera.CameraInfo.html" class="hiddenlink" target="rightframe">Camera.CameraInfo</A><br>
+<!-- Class Camera.ErrorCallback -->
+<A HREF="android.hardware.Camera.ErrorCallback.html" class="hiddenlink" target="rightframe"><i>Camera.ErrorCallback</i></A><br>
+<!-- Class Camera.Face -->
+<A HREF="android.hardware.Camera.Face.html" class="hiddenlink" target="rightframe">Camera.Face</A><br>
+<!-- Class Camera.FaceDetectionListener -->
+<A HREF="android.hardware.Camera.FaceDetectionListener.html" class="hiddenlink" target="rightframe"><i>Camera.FaceDetectionListener</i></A><br>
+<!-- Class Camera.OnZoomChangeListener -->
+<A HREF="android.hardware.Camera.OnZoomChangeListener.html" class="hiddenlink" target="rightframe"><i>Camera.OnZoomChangeListener</i></A><br>
+<!-- Class Camera.Parameters -->
+<A HREF="android.hardware.Camera.Parameters.html" class="hiddenlink" target="rightframe">Camera.Parameters</A><br>
+<!-- Class Camera.PictureCallback -->
+<A HREF="android.hardware.Camera.PictureCallback.html" class="hiddenlink" target="rightframe"><i>Camera.PictureCallback</i></A><br>
+<!-- Class Camera.PreviewCallback -->
+<A HREF="android.hardware.Camera.PreviewCallback.html" class="hiddenlink" target="rightframe"><i>Camera.PreviewCallback</i></A><br>
+<!-- Class Camera.ShutterCallback -->
+<A HREF="android.hardware.Camera.ShutterCallback.html" class="hiddenlink" target="rightframe"><i>Camera.ShutterCallback</i></A><br>
+<!-- Class Camera.Size -->
+<A HREF="android.hardware.Camera.Size.html" class="hiddenlink" target="rightframe">Camera.Size</A><br>
+<!-- Class Canvas -->
+<A HREF="android.graphics.Canvas.html" class="hiddenlink" target="rightframe">Canvas</A><br>
+<!-- Class CaptioningManager.CaptionStyle -->
+<A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html" class="hiddenlink" target="rightframe">CaptioningManager.CaptionStyle</A><br>
+<!-- Class CardEmulation -->
+<A HREF="android.nfc.cardemulation.CardEmulation.html" class="hiddenlink" target="rightframe">CardEmulation</A><br>
+<!-- Class ChangeBounds -->
+<A HREF="android.transition.ChangeBounds.html" class="hiddenlink" target="rightframe">ChangeBounds</A><br>
+<!-- Class CheckBox -->
+<A HREF="android.widget.CheckBox.html" class="hiddenlink" target="rightframe">CheckBox</A><br>
+<!-- Class CheckBoxPreference -->
+<A HREF="android.preference.CheckBoxPreference.html" class="hiddenlink" target="rightframe">CheckBoxPreference</A><br>
+<!-- Class CheckedTextView -->
+<A HREF="android.widget.CheckedTextView.html" class="hiddenlink" target="rightframe">CheckedTextView</A><br>
+<!-- Class Chronometer -->
+<A HREF="android.widget.Chronometer.html" class="hiddenlink" target="rightframe">Chronometer</A><br>
+<!-- Method clear -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.clear_changed()" class="hiddenlink" target="rightframe">clear
+()</A></nobr><br>
+<!-- Method clipRegion -->
+<i>clipRegion</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.clipRegion_changed(android.graphics.Region)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Region</code>)&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<!-- Method clipRegion -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.clipRegion_changed(android.graphics.Region, android.graphics.Region.Op)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Region, Op</code>)&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<!-- Class ColorStateList -->
+<A HREF="android.content.res.ColorStateList.html" class="hiddenlink" target="rightframe">ColorStateList</A><br>
+<!-- Field COMMENTS -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.COMMENTS" class="hiddenlink" target="rightframe">COMMENTS</A>
+</nobr><br>
+<!-- Class CompoundButton -->
+<A HREF="android.widget.CompoundButton.html" class="hiddenlink" target="rightframe">CompoundButton</A><br>
+<!-- Class ConnectivityManager -->
+<A HREF="android.net.ConnectivityManager.html" class="hiddenlink" target="rightframe">ConnectivityManager</A><br>
+<!-- Field CONTACT_ID -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.CONTACT_ID" class="hiddenlink" target="rightframe">CONTACT_ID</A>
+</nobr><br>
+<!-- Field CONTACT_LOOKUP_KEY -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.CONTACT_LOOKUP_KEY" class="hiddenlink" target="rightframe">CONTACT_LOOKUP_KEY</A>
+</nobr><br>
+<!-- Class ContactsContract -->
+<A HREF="android.provider.ContactsContract.html" class="hiddenlink" target="rightframe">ContactsContract</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Contactables -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Contactables</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Email -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Email</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Event -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Event</A><br>
+<!-- Class ContactsContract.CommonDataKinds.GroupMembership -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.GroupMembership</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Identity -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Identity</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Im -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Im</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Nickname -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Nickname</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Note -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Note</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Organization -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Organization</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Phone -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Phone</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Photo -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Photo</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Relation -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Relation</A><br>
+<!-- Class ContactsContract.CommonDataKinds.SipAddress -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.SipAddress</A><br>
+<!-- Class ContactsContract.CommonDataKinds.StructuredName -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.StructuredName</A><br>
+<!-- Class ContactsContract.CommonDataKinds.StructuredPostal -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.StructuredPostal</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Website -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Website</A><br>
+<!-- Class ContactsContract.ContactOptionsColumns -->
+<A HREF="android.provider.ContactsContract.ContactOptionsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.ContactOptionsColumns</i></A><br>
+<!-- Class ContactsContract.Contacts -->
+<A HREF="android.provider.ContactsContract.Contacts.html" class="hiddenlink" target="rightframe">ContactsContract.Contacts</A><br>
+<!-- Class ContactsContract.Contacts.Entity -->
+<A HREF="android.provider.ContactsContract.Contacts.Entity.html" class="hiddenlink" target="rightframe">ContactsContract.Contacts.Entity</A><br>
+<!-- Class ContactsContract.Contacts.StreamItems -->
+<A HREF="android.provider.ContactsContract.Contacts.StreamItems.html" class="hiddenlink" target="rightframe">ContactsContract.Contacts.StreamItems</A><br>
+<!-- Class ContactsContract.ContactsColumns -->
+<A HREF="android.provider.ContactsContract.ContactsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.ContactsColumns</i></A><br>
+<!-- Class ContactsContract.Data -->
+<A HREF="android.provider.ContactsContract.Data.html" class="hiddenlink" target="rightframe">ContactsContract.Data</A><br>
+<!-- Class ContactsContract.DataColumns -->
+<A HREF="android.provider.ContactsContract.DataColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.DataColumns</i></A><br>
+<!-- Class ContactsContract.GroupsColumns -->
+<A HREF="android.provider.ContactsContract.GroupsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.GroupsColumns</i></A><br>
+<!-- Class ContactsContract.PhoneLookup -->
+<A HREF="android.provider.ContactsContract.PhoneLookup.html" class="hiddenlink" target="rightframe">ContactsContract.PhoneLookup</A><br>
+<!-- Class ContactsContract.QuickContact -->
+<A HREF="android.provider.ContactsContract.QuickContact.html" class="hiddenlink" target="rightframe">ContactsContract.QuickContact</A><br>
+<!-- Class ContactsContract.RawContacts.StreamItems -->
+<A HREF="android.provider.ContactsContract.RawContacts.StreamItems.html" class="hiddenlink" target="rightframe">ContactsContract.RawContacts.StreamItems</A><br>
+<!-- Class ContactsContract.RawContactsColumns -->
+<A HREF="android.provider.ContactsContract.RawContactsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.RawContactsColumns</i></A><br>
+<!-- Class ContactsContract.StreamItemPhotos -->
+<A HREF="android.provider.ContactsContract.StreamItemPhotos.html" class="hiddenlink" target="rightframe">ContactsContract.StreamItemPhotos</A><br>
+<!-- Class ContactsContract.StreamItemPhotosColumns -->
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.StreamItemPhotosColumns</i></A><br>
+<!-- Class ContactsContract.StreamItems -->
+<A HREF="android.provider.ContactsContract.StreamItems.html" class="hiddenlink" target="rightframe">ContactsContract.StreamItems</A><br>
+<!-- Class ContactsContract.StreamItems.StreamItemPhotos -->
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html" class="hiddenlink" target="rightframe">ContactsContract.StreamItems.StreamItemPhotos</A><br>
+<!-- Class ContactsContract.StreamItemsColumns -->
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.StreamItemsColumns</i></A><br>
+<!-- Method containsKey -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.containsKey_changed(java.lang.String)" class="hiddenlink" target="rightframe">containsKey
+(<code>String</code>)</A></nobr><br>
+<!-- Field CONTENT_DIRECTORY -->
+<i>CONTENT_DIRECTORY</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.StreamItems.html#android.provider.ContactsContract.Contacts.StreamItems.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts.StreamItems</A>
+</nobr><br>
+<!-- Field CONTENT_DIRECTORY -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.RawContacts.StreamItems.html#android.provider.ContactsContract.RawContacts.StreamItems.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.ContactsContract.RawContacts.StreamItems</A>
+</nobr><br>
+<!-- Field CONTENT_DIRECTORY -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html#android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems.StreamItemPhotos</A>
+</nobr><br>
+<!-- Field CONTENT_ITEM_TYPE -->
+<i>CONTENT_ITEM_TYPE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems</A>
+</nobr><br>
+<!-- Field CONTENT_ITEM_TYPE -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html#android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems.StreamItemPhotos</A>
+</nobr><br>
+<!-- Field CONTENT_LIMIT_URI -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_LIMIT_URI" class="hiddenlink" target="rightframe">CONTENT_LIMIT_URI</A>
+</nobr><br>
+<!-- Field CONTENT_PHOTO_URI -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_PHOTO_URI" class="hiddenlink" target="rightframe">CONTENT_PHOTO_URI</A>
+</nobr><br>
+<!-- Field CONTENT_TYPE -->
+<i>CONTENT_TYPE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems</A>
+</nobr><br>
+<!-- Field CONTENT_TYPE -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html#android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems.StreamItemPhotos</A>
+</nobr><br>
+<!-- Field CONTENT_URI -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_URI" class="hiddenlink" target="rightframe">CONTENT_URI</A>
+</nobr><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>
+<!-- Class CookieManager -->
+<A HREF="android.webkit.CookieManager.html" class="hiddenlink" target="rightframe">CookieManager</A><br>
+<!-- Class CookieSyncManager -->
+<A HREF="android.webkit.CookieSyncManager.html" class="hiddenlink" target="rightframe">CookieSyncManager</A><br>
+<!-- Field CPU_ABI -->
+<nobr><A HREF="android.os.Build.html#android.os.Build.CPU_ABI" class="hiddenlink" target="rightframe">CPU_ABI</A>
+</nobr><br>
+<!-- Field CPU_ABI2 -->
+<nobr><A HREF="android.os.Build.html#android.os.Build.CPU_ABI2" class="hiddenlink" target="rightframe">CPU_ABI2</A>
+</nobr><br>
+<!-- Method createByCodecName -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.createByCodecName_changed(java.lang.String)" class="hiddenlink" target="rightframe">createByCodecName
+(<code>String</code>)</A></nobr><br>
+<!-- Method createDecoderByType -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.createDecoderByType_changed(java.lang.String)" class="hiddenlink" target="rightframe">createDecoderByType
+(<code>String</code>)</A></nobr><br>
+<!-- Method createEncoderByType -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.createEncoderByType_changed(java.lang.String)" class="hiddenlink" target="rightframe">createEncoderByType
+(<code>String</code>)</A></nobr><br>
+<!-- Field DATA_SET -->
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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="#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="#X"><font size="-2">X</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.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.DATA_SET" class="hiddenlink" target="rightframe">DATA_SET</A>
+</nobr><br>
+<!-- Class DatePicker -->
+<A HREF="android.widget.DatePicker.html" class="hiddenlink" target="rightframe">DatePicker</A><br>
+<!-- Class Debug -->
+<A HREF="android.os.Debug.html" class="hiddenlink" target="rightframe">Debug</A><br>
+<!-- Class DeviceAdminReceiver -->
+<A HREF="android.app.admin.DeviceAdminReceiver.html" class="hiddenlink" target="rightframe">DeviceAdminReceiver</A><br>
+<!-- Class DevicePolicyManager -->
+<A HREF="android.app.admin.DevicePolicyManager.html" class="hiddenlink" target="rightframe">DevicePolicyManager</A><br>
+<!-- Class Dialog -->
+<A HREF="android.app.Dialog.html" class="hiddenlink" target="rightframe">Dialog</A><br>
+<!-- Class DialogPreference -->
+<A HREF="android.preference.DialogPreference.html" class="hiddenlink" target="rightframe">DialogPreference</A><br>
+<!-- Class Display -->
+<A HREF="android.view.Display.html" class="hiddenlink" target="rightframe">Display</A><br>
+<!-- Class DisplayManager -->
+<A HREF="android.hardware.display.DisplayManager.html" class="hiddenlink" target="rightframe">DisplayManager</A><br>
+<!-- Class DisplayMetrics -->
+<A HREF="android.util.DisplayMetrics.html" class="hiddenlink" target="rightframe">DisplayMetrics</A><br>
+<!-- Class DocumentsContract -->
+<A HREF="android.provider.DocumentsContract.html" class="hiddenlink" target="rightframe">DocumentsContract</A><br>
+<!-- Class DocumentsContract.Document -->
+<A HREF="android.provider.DocumentsContract.Document.html" class="hiddenlink" target="rightframe">DocumentsContract.Document</A><br>
+<!-- Class DocumentsContract.Root -->
+<A HREF="android.provider.DocumentsContract.Root.html" class="hiddenlink" target="rightframe">DocumentsContract.Root</A><br>
+<!-- Class DocumentsProvider -->
+<A HREF="android.provider.DocumentsProvider.html" class="hiddenlink" target="rightframe">DocumentsProvider</A><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>
+<!-- Method drawBitmap -->
+<i>drawBitmap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawBitmap_changed(int[], int, int, float, float, int, int, boolean, android.graphics.Paint)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>int[], int, int, float, float, int, int, boolean, Paint</code>)&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<!-- Method drawBitmap -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawBitmap_changed(int[], int, int, int, int, int, int, boolean, android.graphics.Paint)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>int[], int, int, int, int, int, int, boolean, Paint</code>)&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<!-- Class DreamService -->
+<A HREF="android.service.dreams.DreamService.html" class="hiddenlink" target="rightframe">DreamService</A><br>
+<!-- Class EdgeEffect -->
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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="#X"><font size="-2">X</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.EdgeEffect.html" class="hiddenlink" target="rightframe">EdgeEffect</A><br>
+<!-- Class EditText -->
+<A HREF="android.widget.EditText.html" class="hiddenlink" target="rightframe">EditText</A><br>
+<!-- Class EditTextPreference -->
+<A HREF="android.preference.EditTextPreference.html" class="hiddenlink" target="rightframe">EditTextPreference</A><br>
+<!-- Class EGLObjectHandle -->
+<i>EGLObjectHandle</i><br>
+&nbsp;&nbsp;<A HREF="android.opengl.EGLObjectHandle.html" class="hiddenlink" target="rightframe">android.opengl</A><br>
+<!-- Constructor EGLObjectHandle -->
+&nbsp;&nbsp;<nobr><A HREF="android.opengl.EGLObjectHandle.html#android.opengl.EGLObjectHandle.ctor_changed(int)" class="hiddenlink" target="rightframe">EGLObjectHandle
+(<code>int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Method enableHardwareAcceleration -->
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.enableHardwareAcceleration_changed()" class="hiddenlink" target="rightframe">enableHardwareAcceleration
+()</A></nobr><br>
+<!-- Class Environment -->
+<A HREF="android.os.Environment.html" class="hiddenlink" target="rightframe">Environment</A><br>
+<!-- Class ExpandableListView -->
+<A HREF="android.widget.ExpandableListView.html" class="hiddenlink" target="rightframe">ExpandableListView</A><br>
+<!-- Class ExtractEditText -->
+<A HREF="android.inputmethodservice.ExtractEditText.html" class="hiddenlink" target="rightframe">ExtractEditText</A><br>
+<!-- Class Fade -->
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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="#X"><font size="-2">X</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.transition.Fade.html" class="hiddenlink" target="rightframe">Fade</A><br>
+<!-- Field FEATURE_TELEVISION -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_TELEVISION" class="hiddenlink" target="rightframe">FEATURE_TELEVISION</A>
+</nobr><br>
+<!-- Field FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET" class="hiddenlink" target="rightframe">FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET</A>
+</nobr><br>
+<!-- Method formatJapaneseNumber -->
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatJapaneseNumber_changed(android.text.Editable)" class="hiddenlink" target="rightframe">formatJapaneseNumber
+(<code>Editable</code>)</A></nobr><br>
+<!-- Method formatNanpNumber -->
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNanpNumber_changed(android.text.Editable)" class="hiddenlink" target="rightframe">formatNanpNumber
+(<code>Editable</code>)</A></nobr><br>
+<!-- Class Fragment -->
+<A HREF="android.app.Fragment.html" class="hiddenlink" target="rightframe">Fragment</A><br>
+<!-- Class FragmentBreadCrumbs -->
+<A HREF="android.app.FragmentBreadCrumbs.html" class="hiddenlink" target="rightframe">FragmentBreadCrumbs</A><br>
+<!-- Class FragmentTransaction -->
+<A HREF="android.app.FragmentTransaction.html" class="hiddenlink" target="rightframe">FragmentTransaction</A><br>
+<!-- Class FrameLayout -->
+<A HREF="android.widget.FrameLayout.html" class="hiddenlink" target="rightframe">FrameLayout</A><br>
+<!-- Class Gallery -->
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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="#X"><font size="-2">X</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.Gallery.html" class="hiddenlink" target="rightframe">Gallery</A><br>
+<!-- Class GestureOverlayView -->
+<A HREF="android.gesture.GestureOverlayView.html" class="hiddenlink" target="rightframe">GestureOverlayView</A><br>
+<!-- Method get -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.get_changed(java.lang.String)" class="hiddenlink" target="rightframe">get
+(<code>String</code>)</A></nobr><br>
+<!-- Field GET_TASKS -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.GET_TASKS" class="hiddenlink" target="rightframe">GET_TASKS</A>
+</nobr><br>
+<!-- Method getActions -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getActions_changed()" class="hiddenlink" target="rightframe">getActions
+()</A></nobr><br>
+<!-- Method getCodecCount -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecCount_changed()" class="hiddenlink" target="rightframe">getCodecCount
+()</A></nobr><br>
+<!-- Method getCodecInfoAt -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecInfoAt_changed(int)" class="hiddenlink" target="rightframe">getCodecInfoAt
+(<code>int</code>)</A></nobr><br>
+<!-- Method getDefaultLanguage -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getDefaultLanguage_changed()" class="hiddenlink" target="rightframe">getDefaultLanguage
+()</A></nobr><br>
+<!-- Method getDoubleArray -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getDoubleArray_changed(java.lang.String)" class="hiddenlink" target="rightframe">getDoubleArray
+(<code>String</code>)</A></nobr><br>
+<!-- Method getFeatures -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getFeatures_changed(java.util.Locale)" class="hiddenlink" target="rightframe">getFeatures
+(<code>Locale</code>)</A></nobr><br>
+<!-- Method getFormatTypeForLocale -->
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.getFormatTypeForLocale_changed(java.util.Locale)" class="hiddenlink" target="rightframe">getFormatTypeForLocale
+(<code>Locale</code>)</A></nobr><br>
+<!-- Method getHandle -->
+<nobr><A HREF="android.opengl.EGLObjectHandle.html#android.opengl.EGLObjectHandle.getHandle_changed()" class="hiddenlink" target="rightframe">getHandle
+()</A></nobr><br>
+<!-- Method getInputBuffers -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputBuffers_changed()" class="hiddenlink" target="rightframe">getInputBuffers
+()</A></nobr><br>
+<!-- Method getIntArray -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getIntArray_changed(java.lang.String)" class="hiddenlink" target="rightframe">getIntArray
+(<code>String</code>)</A></nobr><br>
+<!-- Method getLanguage -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getLanguage_changed()" class="hiddenlink" target="rightframe">getLanguage
+()</A></nobr><br>
+<!-- Method getLongArray -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getLongArray_changed(java.lang.String)" class="hiddenlink" target="rightframe">getLongArray
+(<code>String</code>)</A></nobr><br>
+<!-- Method getNavigationItemCount -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getNavigationItemCount_changed()" class="hiddenlink" target="rightframe">getNavigationItemCount
+()</A></nobr><br>
+<!-- Method getNavigationMode -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getNavigationMode_changed()" class="hiddenlink" target="rightframe">getNavigationMode
+()</A></nobr><br>
+<!-- Method getNetworkPreference -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getNetworkPreference_changed()" class="hiddenlink" target="rightframe">getNetworkPreference
+()</A></nobr><br>
+<!-- Method getOutputBuffers -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputBuffers_changed()" class="hiddenlink" target="rightframe">getOutputBuffers
+()</A></nobr><br>
+<!-- Method getRasterizer -->
+<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.getRasterizer_changed()" class="hiddenlink" target="rightframe">getRasterizer
+()</A></nobr><br>
+<!-- Method getRecentTasks -->
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getRecentTasks_changed(int, int)" class="hiddenlink" target="rightframe">getRecentTasks
+(<code>int, int</code>)</A></nobr><br>
+<!-- Method getRunningTasks -->
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getRunningTasks_changed(int)" class="hiddenlink" target="rightframe">getRunningTasks
+(<code>int</code>)</A></nobr><br>
+<!-- Method getSelectedNavigationIndex -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getSelectedNavigationIndex_changed()" class="hiddenlink" target="rightframe">getSelectedNavigationIndex
+()</A></nobr><br>
+<!-- Method getSelectedTab -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getSelectedTab_changed()" class="hiddenlink" target="rightframe">getSelectedTab
+()</A></nobr><br>
+<!-- Method getStorageState -->
+<nobr><A HREF="android.os.Environment.html#android.os.Environment.getStorageState_changed(java.io.File)" class="hiddenlink" target="rightframe">getStorageState
+(<code>File</code>)</A></nobr><br>
+<!-- Method getStreamType -->
+<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.getStreamType_changed()" class="hiddenlink" target="rightframe">getStreamType
+()</A></nobr><br>
+<!-- Method getStringArray -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getStringArray_changed(java.lang.String)" class="hiddenlink" target="rightframe">getStringArray
+(<code>String</code>)</A></nobr><br>
+<!-- Method getTabAt -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getTabAt_changed(int)" class="hiddenlink" target="rightframe">getTabAt
+(<code>int</code>)</A></nobr><br>
+<!-- Method getTabCount -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getTabCount_changed()" class="hiddenlink" target="rightframe">getTabCount
+()</A></nobr><br>
+<!-- Method getText -->
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getText_changed()" class="hiddenlink" target="rightframe">getText
+()</A></nobr><br>
+<!-- Method getUserId -->
+<nobr><A HREF="android.service.notification.StatusBarNotification.html#android.service.notification.StatusBarNotification.getUserId_changed()" class="hiddenlink" target="rightframe">getUserId
+()</A></nobr><br>
+<!-- Class GLES20 -->
+<A HREF="android.opengl.GLES20.html" class="hiddenlink" target="rightframe">GLES20</A><br>
+<!-- Class GradientDrawable -->
+<A HREF="android.graphics.drawable.GradientDrawable.html" class="hiddenlink" target="rightframe">GradientDrawable</A><br>
+<!-- Class GridLayout -->
+<A HREF="android.widget.GridLayout.html" class="hiddenlink" target="rightframe">GridLayout</A><br>
+<!-- Class GridView -->
+<A HREF="android.widget.GridView.html" class="hiddenlink" target="rightframe">GridView</A><br>
+<!-- Class HapticFeedbackConstants -->
+<A NAME="H"></A>
+<br><font size="+2">H</font>&nbsp;
+<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="#X"><font size="-2">X</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.HapticFeedbackConstants.html" class="hiddenlink" target="rightframe">HapticFeedbackConstants</A><br>
+<!-- Class HorizontalScrollView -->
+<A HREF="android.widget.HorizontalScrollView.html" class="hiddenlink" target="rightframe">HorizontalScrollView</A><br>
+<!-- Class Image -->
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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="#X"><font size="-2">X</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.media.Image.html" class="hiddenlink" target="rightframe">Image</A><br>
+<!-- Class ImageButton -->
+<A HREF="android.widget.ImageButton.html" class="hiddenlink" target="rightframe">ImageButton</A><br>
+<!-- Class ImageFormat -->
+<A HREF="android.graphics.ImageFormat.html" class="hiddenlink" target="rightframe">ImageFormat</A><br>
+<!-- Class ImageView -->
+<A HREF="android.widget.ImageView.html" class="hiddenlink" target="rightframe">ImageView</A><br>
+<!-- Field INFO_OUTPUT_BUFFERS_CHANGED -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.INFO_OUTPUT_BUFFERS_CHANGED" class="hiddenlink" target="rightframe">INFO_OUTPUT_BUFFERS_CHANGED</A>
+</nobr><br>
+<!-- Field inInputShareable -->
+<nobr><A HREF="android.graphics.BitmapFactory.Options.html#android.graphics.BitmapFactory.Options.inInputShareable" class="hiddenlink" target="rightframe">inInputShareable</A>
+</nobr><br>
+<!-- Field inPurgeable -->
+<nobr><A HREF="android.graphics.BitmapFactory.Options.html#android.graphics.BitmapFactory.Options.inPurgeable" class="hiddenlink" target="rightframe">inPurgeable</A>
+</nobr><br>
+<!-- Class InputConnection -->
+<A HREF="android.view.inputmethod.InputConnection.html" class="hiddenlink" target="rightframe"><i>InputConnection</i></A><br>
+<!-- Class InputConnectionWrapper -->
+<A HREF="android.view.inputmethod.InputConnectionWrapper.html" class="hiddenlink" target="rightframe">InputConnectionWrapper</A><br>
+<!-- Class InputDevice -->
+<A HREF="android.view.InputDevice.html" class="hiddenlink" target="rightframe">InputDevice</A><br>
+<!-- Class InputFilter.LengthFilter -->
+<A HREF="android.text.InputFilter.LengthFilter.html" class="hiddenlink" target="rightframe">InputFilter.LengthFilter</A><br>
+<!-- Class InputMethodManager -->
+<A HREF="android.view.inputmethod.InputMethodManager.html" class="hiddenlink" target="rightframe">InputMethodManager</A><br>
+<!-- Class InputMethodService -->
+<A HREF="android.inputmethodservice.InputMethodService.html" class="hiddenlink" target="rightframe">InputMethodService</A><br>
+<!-- Class InputMethodService.InputMethodSessionImpl -->
+<A HREF="android.inputmethodservice.InputMethodService.InputMethodSessionImpl.html" class="hiddenlink" target="rightframe">InputMethodService.InputMethodSessionImpl</A><br>
+<!-- Class InputMethodSession -->
+<A HREF="android.view.inputmethod.InputMethodSession.html" class="hiddenlink" target="rightframe"><i>InputMethodSession</i></A><br>
+<!-- Field INSTALL_NON_MARKET_APPS -->
+<i>INSTALL_NON_MARKET_APPS</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.Settings.Global.html#android.provider.Settings.Global.INSTALL_NON_MARKET_APPS" class="hiddenlink" target="rightframe">android.provider.Settings.Global</A>
+</nobr><br>
+<!-- Field INSTALL_NON_MARKET_APPS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.Settings.Secure.html#android.provider.Settings.Secure.INSTALL_NON_MARKET_APPS" class="hiddenlink" target="rightframe">android.provider.Settings.Secure</A>
+</nobr><br>
+<!-- Class Instrumentation -->
+<A HREF="android.app.Instrumentation.html" class="hiddenlink" target="rightframe">Instrumentation</A><br>
+<!-- Class InstrumentationInfo -->
+<A HREF="android.content.pm.InstrumentationInfo.html" class="hiddenlink" target="rightframe">InstrumentationInfo</A><br>
+<!-- Class Intent -->
+<A HREF="android.content.Intent.html" class="hiddenlink" target="rightframe">Intent</A><br>
+<!-- Method isEmpty -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.isEmpty_changed()" class="hiddenlink" target="rightframe">isEmpty
+()</A></nobr><br>
+<!-- Method isWatchingCursor -->
+<nobr><A HREF="android.view.inputmethod.InputMethodManager.html#android.view.inputmethod.InputMethodManager.isWatchingCursor_changed(android.view.View)" class="hiddenlink" target="rightframe">isWatchingCursor
+(<code>View</code>)</A></nobr><br>
+<!-- Package java.util -->
+<A NAME="J"></A>
+<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>
+<!-- Package java.util.zip -->
+<A HREF="pkg_java.util.zip.html" class="hiddenlink" target="rightframe">java.util.zip</A><br>
+<!-- Field KEY_FEATURE_EMBEDDED_SYNTHESIS -->
+<A NAME="K"></A>
+<br><font size="+2">K</font>&nbsp;
+<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="#X"><font size="-2">X</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.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_EMBEDDED_SYNTHESIS" class="hiddenlink" target="rightframe">KEY_FEATURE_EMBEDDED_SYNTHESIS</A>
+</nobr><br>
+<!-- Field KEY_FEATURE_NETWORK_SYNTHESIS -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_SYNTHESIS" class="hiddenlink" target="rightframe">KEY_FEATURE_NETWORK_SYNTHESIS</A>
+</nobr><br>
+<!-- Class KeyboardView -->
+<A HREF="android.inputmethodservice.KeyboardView.html" class="hiddenlink" target="rightframe">KeyboardView</A><br>
+<!-- Class KeyEvent -->
+<A HREF="android.view.KeyEvent.html" class="hiddenlink" target="rightframe">KeyEvent</A><br>
+<!-- Class KeyguardManager -->
+<A HREF="android.app.KeyguardManager.html" class="hiddenlink" target="rightframe">KeyguardManager</A><br>
+<!-- Method keySet -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.keySet_changed()" class="hiddenlink" target="rightframe">keySet
+()</A></nobr><br>
+<!-- Field label -->
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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="#X"><font size="-2">X</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.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.label" class="hiddenlink" target="rightframe">label</A>
+</nobr><br>
+<!-- Class LayerDrawable -->
+<A HREF="android.graphics.drawable.LayerDrawable.html" class="hiddenlink" target="rightframe">LayerDrawable</A><br>
+<!-- Class LayerRasterizer -->
+<A HREF="android.graphics.LayerRasterizer.html" class="hiddenlink" target="rightframe">LayerRasterizer</A><br>
+<!-- Class LinearLayout -->
+<A HREF="android.widget.LinearLayout.html" class="hiddenlink" target="rightframe">LinearLayout</A><br>
+<!-- Class ListPreference -->
+<A HREF="android.preference.ListPreference.html" class="hiddenlink" target="rightframe">ListPreference</A><br>
+<!-- Class ListView -->
+<A HREF="android.widget.ListView.html" class="hiddenlink" target="rightframe">ListView</A><br>
+<!-- Class Locale -->
+<A HREF="java.util.Locale.html" class="hiddenlink" target="rightframe">Locale</A><br>
+<!-- Field LOGTAG -->
+<nobr><A HREF="android.webkit.CookieSyncManager.html#android.webkit.CookieSyncManager.LOGTAG" class="hiddenlink" target="rightframe">LOGTAG</A>
+</nobr><br>
+<!-- Class LruCache -->
+<A HREF="android.util.LruCache.html" class="hiddenlink" target="rightframe">LruCache</A><br>
+<!-- Class Manifest.permission -->
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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="#X"><font size="-2">X</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>
+<!-- Class Matrix -->
+<A HREF="android.graphics.Matrix.html" class="hiddenlink" target="rightframe">Matrix</A><br>
+<!-- Field MAX_ITEMS -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.MAX_ITEMS" class="hiddenlink" target="rightframe">MAX_ITEMS</A>
+</nobr><br>
+<!-- Field mDataBase -->
+<nobr><A HREF="android.webkit.CookieSyncManager.html#android.webkit.CookieSyncManager.mDataBase" class="hiddenlink" target="rightframe">mDataBase</A>
+</nobr><br>
+<!-- Class MediaCodec -->
+<A HREF="android.media.MediaCodec.html" class="hiddenlink" target="rightframe">MediaCodec</A><br>
+<!-- Class MediaCodec.CryptoException -->
+<A HREF="android.media.MediaCodec.CryptoException.html" class="hiddenlink" target="rightframe">MediaCodec.CryptoException</A><br>
+<!-- Class MediaCodecInfo.CodecCapabilities -->
+<A HREF="android.media.MediaCodecInfo.CodecCapabilities.html" class="hiddenlink" target="rightframe">MediaCodecInfo.CodecCapabilities</A><br>
+<!-- Class MediaCodecInfo.CodecProfileLevel -->
+<A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html" class="hiddenlink" target="rightframe">MediaCodecInfo.CodecProfileLevel</A><br>
+<!-- Class MediaCodecList -->
+<A HREF="android.media.MediaCodecList.html" class="hiddenlink" target="rightframe">MediaCodecList</A><br>
+<!-- Class MediaDrm -->
+<A HREF="android.media.MediaDrm.html" class="hiddenlink" target="rightframe">MediaDrm</A><br>
+<!-- Class MediaFormat -->
+<A HREF="android.media.MediaFormat.html" class="hiddenlink" target="rightframe">MediaFormat</A><br>
+<!-- Class MediaMetadataEditor -->
+<A HREF="android.media.MediaMetadataEditor.html" class="hiddenlink" target="rightframe">MediaMetadataEditor</A><br>
+<!-- Class MediaMuxer.OutputFormat -->
+<A HREF="android.media.MediaMuxer.OutputFormat.html" class="hiddenlink" target="rightframe">MediaMuxer.OutputFormat</A><br>
+<!-- Class MediaPlayer -->
+<A HREF="android.media.MediaPlayer.html" class="hiddenlink" target="rightframe">MediaPlayer</A><br>
+<!-- Class MediaPlayer.TrackInfo -->
+<A HREF="android.media.MediaPlayer.TrackInfo.html" class="hiddenlink" target="rightframe">MediaPlayer.TrackInfo</A><br>
+<!-- Class MediaRecorder -->
+<A HREF="android.media.MediaRecorder.html" class="hiddenlink" target="rightframe">MediaRecorder</A><br>
+<!-- Class MediaRecorder.AudioEncoder -->
+<A HREF="android.media.MediaRecorder.AudioEncoder.html" class="hiddenlink" target="rightframe">MediaRecorder.AudioEncoder</A><br>
+<!-- Class MediaRecorder.OutputFormat -->
+<A HREF="android.media.MediaRecorder.OutputFormat.html" class="hiddenlink" target="rightframe">MediaRecorder.OutputFormat</A><br>
+<!-- Class MediaRecorder.VideoEncoder -->
+<A HREF="android.media.MediaRecorder.VideoEncoder.html" class="hiddenlink" target="rightframe">MediaRecorder.VideoEncoder</A><br>
+<!-- Class MediaRecorder.VideoSource -->
+<A HREF="android.media.MediaRecorder.VideoSource.html" class="hiddenlink" target="rightframe">MediaRecorder.VideoSource</A><br>
+<!-- Class MediaRouteButton -->
+<A HREF="android.app.MediaRouteButton.html" class="hiddenlink" target="rightframe">MediaRouteButton</A><br>
+<!-- Class MediaStore -->
+<A HREF="android.provider.MediaStore.html" class="hiddenlink" target="rightframe">MediaStore</A><br>
+<!-- Class MediaStore.Audio.Media -->
+<A HREF="android.provider.MediaStore.Audio.Media.html" class="hiddenlink" target="rightframe">MediaStore.Audio.Media</A><br>
+<!-- Class Message -->
+<A HREF="android.os.Message.html" class="hiddenlink" target="rightframe">Message</A><br>
+<!-- Field mHandler -->
+<nobr><A HREF="android.webkit.CookieSyncManager.html#android.webkit.CookieSyncManager.mHandler" class="hiddenlink" target="rightframe">mHandler</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>
+<!-- Class MultiAutoCompleteTextView -->
+<A HREF="android.widget.MultiAutoCompleteTextView.html" class="hiddenlink" target="rightframe">MultiAutoCompleteTextView</A><br>
+<!-- Class MultiSelectListPreference -->
+<A HREF="android.preference.MultiSelectListPreference.html" class="hiddenlink" target="rightframe">MultiSelectListPreference</A><br>
+<!-- Field NAVIGATION_MODE_LIST -->
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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="#X"><font size="-2">X</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.app.ActionBar.html#android.app.ActionBar.NAVIGATION_MODE_LIST" class="hiddenlink" target="rightframe">NAVIGATION_MODE_LIST</A>
+</nobr><br>
+<!-- Field NAVIGATION_MODE_STANDARD -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.NAVIGATION_MODE_STANDARD" class="hiddenlink" target="rightframe">NAVIGATION_MODE_STANDARD</A>
+</nobr><br>
+<!-- Field NAVIGATION_MODE_TABS -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.NAVIGATION_MODE_TABS" class="hiddenlink" target="rightframe">NAVIGATION_MODE_TABS</A>
+</nobr><br>
+<!-- Class NdefRecord -->
+<A HREF="android.nfc.NdefRecord.html" class="hiddenlink" target="rightframe">NdefRecord</A><br>
+<!-- Method newTab -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.newTab_changed()" class="hiddenlink" target="rightframe">newTab
+()</A></nobr><br>
+<!-- Field NEXT_ALARM_FORMATTED -->
+<nobr><A HREF="android.provider.Settings.System.html#android.provider.Settings.System.NEXT_ALARM_FORMATTED" class="hiddenlink" target="rightframe">NEXT_ALARM_FORMATTED</A>
+</nobr><br>
+<!-- Class NfcAdapter -->
+<A HREF="android.nfc.NfcAdapter.html" class="hiddenlink" target="rightframe">NfcAdapter</A><br>
+<!-- Class Notification -->
+<A HREF="android.app.Notification.html" class="hiddenlink" target="rightframe">Notification</A><br>
+<!-- Class Notification.Builder -->
+<A HREF="android.app.Notification.Builder.html" class="hiddenlink" target="rightframe">Notification.Builder</A><br>
+<!-- Class NotificationListenerService -->
+<A HREF="android.service.notification.NotificationListenerService.html" class="hiddenlink" target="rightframe">NotificationListenerService</A><br>
+<!-- Class NsdServiceInfo -->
+<A HREF="android.net.nsd.NsdServiceInfo.html" class="hiddenlink" target="rightframe">NsdServiceInfo</A><br>
+<!-- Class NumberPicker -->
+<A HREF="android.widget.NumberPicker.html" class="hiddenlink" target="rightframe">NumberPicker</A><br>
+<!-- Class ObjectAnimator -->
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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="#X"><font size="-2">X</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.animation.ObjectAnimator.html" class="hiddenlink" target="rightframe">ObjectAnimator</A><br>
+<!-- Method onGetSummary -->
+<nobr><A HREF="android.location.SettingInjectorService.html#android.location.SettingInjectorService.onGetSummary_changed()" class="hiddenlink" target="rightframe">onGetSummary
+()</A></nobr><br>
+<!-- Method onNotificationPosted -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationPosted_changed(android.service.notification.StatusBarNotification)" class="hiddenlink" target="rightframe">onNotificationPosted
+(<code>StatusBarNotification</code>)</A></nobr><br>
+<!-- Method onNotificationRemoved -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationRemoved_changed(android.service.notification.StatusBarNotification)" class="hiddenlink" target="rightframe">onNotificationRemoved
+(<code>StatusBarNotification</code>)</A></nobr><br>
+<!-- Method onUnhandledKeyEvent -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.onUnhandledKeyEvent_changed(android.webkit.WebView, android.view.KeyEvent)" class="hiddenlink" target="rightframe">onUnhandledKeyEvent
+(<code>WebView, KeyEvent</code>)</A></nobr><br>
+<!-- Method onUpdateCursor -->
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.onUpdateCursor_changed(android.graphics.Rect)" class="hiddenlink" target="rightframe">onUpdateCursor
+(<code>Rect</code>)</A></nobr><br>
+<!-- Method openSession -->
+<nobr><A HREF="android.media.MediaDrm.html#android.media.MediaDrm.openSession_changed()" class="hiddenlink" target="rightframe">openSession
+()</A></nobr><br>
+<!-- Class PackageInfo -->
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#X"><font size="-2">X</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 Paint -->
+<A HREF="android.graphics.Paint.html" class="hiddenlink" target="rightframe">Paint</A><br>
+<!-- Class Parcel -->
+<A HREF="android.os.Parcel.html" class="hiddenlink" target="rightframe">Parcel</A><br>
+<!-- Class Path -->
+<A HREF="android.graphics.Path.html" class="hiddenlink" target="rightframe">Path</A><br>
+<!-- Class Patterns -->
+<A HREF="android.util.Patterns.html" class="hiddenlink" target="rightframe">Patterns</A><br>
+<!-- Class PermissionInfo -->
+<A HREF="android.content.pm.PermissionInfo.html" class="hiddenlink" target="rightframe">PermissionInfo</A><br>
+<!-- Class PhoneNumberFormattingTextWatcher -->
+<A HREF="android.telephony.PhoneNumberFormattingTextWatcher.html" class="hiddenlink" target="rightframe">PhoneNumberFormattingTextWatcher</A><br>
+<!-- Class PhoneNumberUtils -->
+<A HREF="android.telephony.PhoneNumberUtils.html" class="hiddenlink" target="rightframe">PhoneNumberUtils</A><br>
+<!-- Field PHOTO -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotos.html#android.provider.ContactsContract.StreamItemPhotos.PHOTO" class="hiddenlink" target="rightframe">PHOTO</A>
+</nobr><br>
+<!-- Field PHOTO_FILE_ID -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.PHOTO_FILE_ID" class="hiddenlink" target="rightframe">PHOTO_FILE_ID</A>
+</nobr><br>
+<!-- Field PHOTO_URI -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.PHOTO_URI" class="hiddenlink" target="rightframe">PHOTO_URI</A>
+</nobr><br>
+<!-- Method playEarcon -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playEarcon_changed(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">playEarcon
+(<code>String, int, HashMap&lt;String, String&gt;</code>)</A></nobr><br>
+<!-- Method playSilence -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playSilence_changed(long, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">playSilence
+(<code>long, int, HashMap&lt;String, String&gt;</code>)</A></nobr><br>
+<!-- Class PopupWindow -->
+<A HREF="android.widget.PopupWindow.html" class="hiddenlink" target="rightframe">PopupWindow</A><br>
+<!-- Class PowerManager -->
+<A HREF="android.os.PowerManager.html" class="hiddenlink" target="rightframe">PowerManager</A><br>
+<!-- Class PowerManager.WakeLock -->
+<A HREF="android.os.PowerManager.WakeLock.html" class="hiddenlink" target="rightframe">PowerManager.WakeLock</A><br>
+<!-- Class Preference -->
+<A HREF="android.preference.Preference.html" class="hiddenlink" target="rightframe">Preference</A><br>
+<!-- Class PreferenceCategory -->
+<A HREF="android.preference.PreferenceCategory.html" class="hiddenlink" target="rightframe">PreferenceCategory</A><br>
+<!-- Class PreferenceGroup -->
+<A HREF="android.preference.PreferenceGroup.html" class="hiddenlink" target="rightframe">PreferenceGroup</A><br>
+<!-- Class PrintService -->
+<A HREF="android.printservice.PrintService.html" class="hiddenlink" target="rightframe">PrintService</A><br>
+<!-- Class ProgressBar -->
+<A HREF="android.widget.ProgressBar.html" class="hiddenlink" target="rightframe">ProgressBar</A><br>
+<!-- Class PropertyValuesHolder -->
+<A HREF="android.animation.PropertyValuesHolder.html" class="hiddenlink" target="rightframe">PropertyValuesHolder</A><br>
+<!-- Class Proxy -->
+<A HREF="android.net.Proxy.html" class="hiddenlink" target="rightframe">Proxy</A><br>
+<!-- Method putDouble -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putDouble_changed(java.lang.String, double)" class="hiddenlink" target="rightframe">putDouble
+(<code>String, double</code>)</A></nobr><br>
+<!-- Method putDoubleArray -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putDoubleArray_changed(java.lang.String, double[])" class="hiddenlink" target="rightframe">putDoubleArray
+(<code>String, double[]</code>)</A></nobr><br>
+<!-- Method putInt -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putInt_changed(java.lang.String, int)" class="hiddenlink" target="rightframe">putInt
+(<code>String, int</code>)</A></nobr><br>
+<!-- Method putIntArray -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putIntArray_changed(java.lang.String, int[])" class="hiddenlink" target="rightframe">putIntArray
+(<code>String, int[]</code>)</A></nobr><br>
+<!-- Method putLong -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putLong_changed(java.lang.String, long)" class="hiddenlink" target="rightframe">putLong
+(<code>String, long</code>)</A></nobr><br>
+<!-- Method putLongArray -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putLongArray_changed(java.lang.String, long[])" class="hiddenlink" target="rightframe">putLongArray
+(<code>String, long[]</code>)</A></nobr><br>
+<!-- Method putString -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putString_changed(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">putString
+(<code>String, String</code>)</A></nobr><br>
+<!-- Method putStringArray -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putStringArray_changed(java.lang.String, java.lang.String[])" class="hiddenlink" target="rightframe">putStringArray
+(<code>String, String[]</code>)</A></nobr><br>
+<!-- Class QuickContactBadge -->
+<A NAME="Q"></A>
+<br><font size="+2">Q</font>&nbsp;
+<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="#X"><font size="-2">X</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.QuickContactBadge.html" class="hiddenlink" target="rightframe">QuickContactBadge</A><br>
+<!-- Class R.attr -->
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#X"><font size="-2">X</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.id -->
+<A HREF="android.R.id.html" class="hiddenlink" target="rightframe">R.id</A><br>
+<!-- Class R.interpolator -->
+<A HREF="android.R.interpolator.html" class="hiddenlink" target="rightframe">R.interpolator</A><br>
+<!-- Class R.style -->
+<A HREF="android.R.style.html" class="hiddenlink" target="rightframe">R.style</A><br>
+<!-- Class RadioButton -->
+<A HREF="android.widget.RadioButton.html" class="hiddenlink" target="rightframe">RadioButton</A><br>
+<!-- Class Rasterizer -->
+<A HREF="android.graphics.Rasterizer.html" class="hiddenlink" target="rightframe">Rasterizer</A><br>
+<!-- Class Rating -->
+<A HREF="android.media.Rating.html" class="hiddenlink" target="rightframe">Rating</A><br>
+<!-- Class RatingBar -->
+<A HREF="android.widget.RatingBar.html" class="hiddenlink" target="rightframe">RatingBar</A><br>
+<!-- Field RAW_CONTACT_ID -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RAW_CONTACT_ID" class="hiddenlink" target="rightframe">RAW_CONTACT_ID</A>
+</nobr><br>
+<!-- Field RAW_CONTACT_SOURCE_ID -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RAW_CONTACT_SOURCE_ID" class="hiddenlink" target="rightframe">RAW_CONTACT_SOURCE_ID</A>
+</nobr><br>
+<!-- Field READ_SOCIAL_STREAM -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.READ_SOCIAL_STREAM" class="hiddenlink" target="rightframe">READ_SOCIAL_STREAM</A>
+</nobr><br>
+<!-- Class RectEvaluator -->
+<A HREF="android.animation.RectEvaluator.html" class="hiddenlink" target="rightframe">RectEvaluator</A><br>
+<!-- Method registerMediaButtonEventReceiver -->
+<i>registerMediaButtonEventReceiver</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.app.PendingIntent)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>PendingIntent</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+<!-- Method registerMediaButtonEventReceiver -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.content.ComponentName)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>ComponentName</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+<!-- Method registerRemoteControlClient -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerRemoteControlClient_changed(android.media.RemoteControlClient)" class="hiddenlink" target="rightframe">registerRemoteControlClient
+(<code>RemoteControlClient</code>)</A></nobr><br>
+<!-- Method registerRemoteController -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerRemoteController_changed(android.media.RemoteController)" class="hiddenlink" target="rightframe">registerRemoteController
+(<code>RemoteController</code>)</A></nobr><br>
+<!-- Class RelativeLayout -->
+<A HREF="android.widget.RelativeLayout.html" class="hiddenlink" target="rightframe">RelativeLayout</A><br>
+<!-- Class RemoteControlClient -->
+<A HREF="android.media.RemoteControlClient.html" class="hiddenlink" target="rightframe">RemoteControlClient</A><br>
+<!-- Class RemoteControlClient.MetadataEditor -->
+<A HREF="android.media.RemoteControlClient.MetadataEditor.html" class="hiddenlink" target="rightframe">RemoteControlClient.MetadataEditor</A><br>
+<!-- Class RemoteController -->
+<A HREF="android.media.RemoteController.html" class="hiddenlink" target="rightframe">RemoteController</A><br>
+<!-- Method remove -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.remove_changed(java.lang.String)" class="hiddenlink" target="rightframe">remove
+(<code>String</code>)</A></nobr><br>
+<!-- Method removeAllCookie -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeAllCookie_changed()" class="hiddenlink" target="rightframe">removeAllCookie
+()</A></nobr><br>
+<!-- Method removeAllTabs -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.removeAllTabs_changed()" class="hiddenlink" target="rightframe">removeAllTabs
+()</A></nobr><br>
+<!-- Method removeExpiredCookie -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeExpiredCookie_changed()" class="hiddenlink" target="rightframe">removeExpiredCookie
+()</A></nobr><br>
+<!-- Method removeSessionCookie -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeSessionCookie_changed()" class="hiddenlink" target="rightframe">removeSessionCookie
+()</A></nobr><br>
+<!-- Method removeStickyBroadcast -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.removeStickyBroadcast_changed(android.content.Intent)" class="hiddenlink" target="rightframe">removeStickyBroadcast
+(<code>Intent</code>)</A></nobr><br>
+<!-- Method removeStickyBroadcastAsUser -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.removeStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)" class="hiddenlink" target="rightframe">removeStickyBroadcastAsUser
+(<code>Intent, UserHandle</code>)</A></nobr><br>
+<!-- Method removeTab -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.removeTab_changed(android.app.ActionBar.Tab)" class="hiddenlink" target="rightframe">removeTab
+(<code>Tab</code>)</A></nobr><br>
+<!-- Method removeTabAt -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.removeTabAt_changed(int)" class="hiddenlink" target="rightframe">removeTabAt
+(<code>int</code>)</A></nobr><br>
+<!-- Class RenderScript -->
+<A HREF="android.renderscript.RenderScript.html" class="hiddenlink" target="rightframe">RenderScript</A><br>
+<!-- Method requestRouteToHost -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.requestRouteToHost_changed(int, int)" class="hiddenlink" target="rightframe">requestRouteToHost
+(<code>int, int</code>)</A></nobr><br>
+<!-- Field RES_ICON -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RES_ICON" class="hiddenlink" target="rightframe">RES_ICON</A>
+</nobr><br>
+<!-- Field RES_LABEL -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RES_LABEL" class="hiddenlink" target="rightframe">RES_LABEL</A>
+</nobr><br>
+<!-- Field RES_PACKAGE -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RES_PACKAGE" class="hiddenlink" target="rightframe">RES_PACKAGE</A>
+</nobr><br>
+<!-- Class Resources -->
+<A HREF="android.content.res.Resources.html" class="hiddenlink" target="rightframe">Resources</A><br>
+<!-- Class Resources.Theme -->
+<A HREF="android.content.res.Resources.Theme.html" class="hiddenlink" target="rightframe">Resources.Theme</A><br>
+<!-- Class RestrictionEntry -->
+<A HREF="android.content.RestrictionEntry.html" class="hiddenlink" target="rightframe">RestrictionEntry</A><br>
+<!-- Class Ringtone -->
+<A HREF="android.media.Ringtone.html" class="hiddenlink" target="rightframe">Ringtone</A><br>
+<!-- Class RingtonePreference -->
+<A HREF="android.preference.RingtonePreference.html" class="hiddenlink" target="rightframe">RingtonePreference</A><br>
+<!-- Class RotateDrawable -->
+<A HREF="android.graphics.drawable.RotateDrawable.html" class="hiddenlink" target="rightframe">RotateDrawable</A><br>
+<!-- Class Scene -->
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#X"><font size="-2">X</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>Scene</i><br>
+&nbsp;&nbsp;<A HREF="android.transition.Scene.html" class="hiddenlink" target="rightframe">android.transition</A><br>
+<!-- Constructor Scene -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Scene.html#android.transition.Scene.ctor_changed(android.view.ViewGroup, android.view.ViewGroup)" class="hiddenlink" target="rightframe">Scene
+(<code>ViewGroup, ViewGroup</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class ScheduledThreadPoolExecutor -->
+<A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html" class="hiddenlink" target="rightframe">ScheduledThreadPoolExecutor</A><br>
+<!-- Class ScriptC -->
+<A HREF="android.renderscript.ScriptC.html" class="hiddenlink" target="rightframe">ScriptC</A><br>
+<!-- Class ScriptIntrinsic3DLUT -->
+<A HREF="android.renderscript.ScriptIntrinsic3DLUT.html" class="hiddenlink" target="rightframe">ScriptIntrinsic3DLUT</A><br>
+<!-- Class ScriptIntrinsicBlend -->
+<A HREF="android.renderscript.ScriptIntrinsicBlend.html" class="hiddenlink" target="rightframe">ScriptIntrinsicBlend</A><br>
+<!-- Class ScriptIntrinsicBlur -->
+<A HREF="android.renderscript.ScriptIntrinsicBlur.html" class="hiddenlink" target="rightframe">ScriptIntrinsicBlur</A><br>
+<!-- Class ScriptIntrinsicColorMatrix -->
+<A HREF="android.renderscript.ScriptIntrinsicColorMatrix.html" class="hiddenlink" target="rightframe">ScriptIntrinsicColorMatrix</A><br>
+<!-- Class ScriptIntrinsicConvolve3x3 -->
+<A HREF="android.renderscript.ScriptIntrinsicConvolve3x3.html" class="hiddenlink" target="rightframe">ScriptIntrinsicConvolve3x3</A><br>
+<!-- Class ScriptIntrinsicConvolve5x5 -->
+<A HREF="android.renderscript.ScriptIntrinsicConvolve5x5.html" class="hiddenlink" target="rightframe">ScriptIntrinsicConvolve5x5</A><br>
+<!-- Class ScriptIntrinsicHistogram -->
+<A HREF="android.renderscript.ScriptIntrinsicHistogram.html" class="hiddenlink" target="rightframe">ScriptIntrinsicHistogram</A><br>
+<!-- Class ScriptIntrinsicLUT -->
+<A HREF="android.renderscript.ScriptIntrinsicLUT.html" class="hiddenlink" target="rightframe">ScriptIntrinsicLUT</A><br>
+<!-- Class ScrollView -->
+<A HREF="android.widget.ScrollView.html" class="hiddenlink" target="rightframe">ScrollView</A><br>
+<!-- Class SearchManager -->
+<A HREF="android.app.SearchManager.html" class="hiddenlink" target="rightframe">SearchManager</A><br>
+<!-- Class SearchView -->
+<A HREF="android.widget.SearchView.html" class="hiddenlink" target="rightframe">SearchView</A><br>
+<!-- Class SeekBar -->
+<A HREF="android.widget.SeekBar.html" class="hiddenlink" target="rightframe">SeekBar</A><br>
+<!-- Method selectTab -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.selectTab_changed(android.app.ActionBar.Tab)" class="hiddenlink" target="rightframe">selectTab
+(<code>Tab</code>)</A></nobr><br>
+<!-- Method sendStickyBroadcast -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyBroadcast_changed(android.content.Intent)" class="hiddenlink" target="rightframe">sendStickyBroadcast
+(<code>Intent</code>)</A></nobr><br>
+<!-- Method sendStickyBroadcastAsUser -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)" class="hiddenlink" target="rightframe">sendStickyBroadcastAsUser
+(<code>Intent, UserHandle</code>)</A></nobr><br>
+<!-- Method sendStickyOrderedBroadcast -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyOrderedBroadcast_changed(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">sendStickyOrderedBroadcast
+(<code>Intent, BroadcastReceiver, Handler, int, String, Bundle</code>)</A></nobr><br>
+<!-- Method sendStickyOrderedBroadcastAsUser -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyOrderedBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">sendStickyOrderedBroadcastAsUser
+(<code>Intent, UserHandle, BroadcastReceiver, Handler, int, String, Bundle</code>)</A></nobr><br>
+<!-- Class Sensor -->
+<A HREF="android.hardware.Sensor.html" class="hiddenlink" target="rightframe">Sensor</A><br>
+<!-- Class SensorManager -->
+<A HREF="android.hardware.SensorManager.html" class="hiddenlink" target="rightframe">SensorManager</A><br>
+<!-- Method setCamera -->
+<nobr><A HREF="android.media.MediaRecorder.html#android.media.MediaRecorder.setCamera_changed(android.hardware.Camera)" class="hiddenlink" target="rightframe">setCamera
+(<code>Camera</code>)</A></nobr><br>
+<!-- Method setListNavigationCallbacks -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setListNavigationCallbacks_changed(android.widget.SpinnerAdapter, android.app.ActionBar.OnNavigationListener)" class="hiddenlink" target="rightframe">setListNavigationCallbacks
+(<code>SpinnerAdapter, OnNavigationListener</code>)</A></nobr><br>
+<!-- Method setNavigationMode -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setNavigationMode_changed(int)" class="hiddenlink" target="rightframe">setNavigationMode
+(<code>int</code>)</A></nobr><br>
+<!-- Method setNetworkPreference -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.setNetworkPreference_changed(int)" class="hiddenlink" target="rightframe">setNetworkPreference
+(<code>int</code>)</A></nobr><br>
+<!-- Method setRasterizer -->
+<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setRasterizer_changed(android.graphics.Rasterizer)" class="hiddenlink" target="rightframe">setRasterizer
+(<code>Rasterizer</code>)</A></nobr><br>
+<!-- Method setReparent -->
+<nobr><A HREF="android.transition.ChangeBounds.html#android.transition.ChangeBounds.setReparent_changed(boolean)" class="hiddenlink" target="rightframe">setReparent
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setSelectedNavigationItem -->
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setSelectedNavigationItem_changed(int)" class="hiddenlink" target="rightframe">setSelectedNavigationItem
+(<code>int</code>)</A></nobr><br>
+<!-- Method setSelectionFromTop -->
+<nobr><A HREF="android.widget.ListView.html#android.widget.ListView.setSelectionFromTop_changed(int, int)" class="hiddenlink" target="rightframe">setSelectionFromTop
+(<code>int, int</code>)</A></nobr><br>
+<!-- Method setStereoVolume -->
+<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.setStereoVolume_changed(float, float)" class="hiddenlink" target="rightframe">setStereoVolume
+(<code>float, float</code>)</A></nobr><br>
+<!-- Method setStreamType -->
+<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.setStreamType_changed(int)" class="hiddenlink" target="rightframe">setStreamType
+(<code>int</code>)</A></nobr><br>
+<!-- Method setTicker -->
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setTicker_changed(java.lang.CharSequence, android.widget.RemoteViews)" class="hiddenlink" target="rightframe">setTicker
+(<code>CharSequence, RemoteViews</code>)</A></nobr><br>
+<!-- Class SettingInjectorService -->
+<A HREF="android.location.SettingInjectorService.html" class="hiddenlink" target="rightframe">SettingInjectorService</A><br>
+<!-- Class Settings -->
+<A HREF="android.provider.Settings.html" class="hiddenlink" target="rightframe">Settings</A><br>
+<!-- Class Settings.Global -->
+<A HREF="android.provider.Settings.Global.html" class="hiddenlink" target="rightframe">Settings.Global</A><br>
+<!-- Class Settings.Secure -->
+<A HREF="android.provider.Settings.Secure.html" class="hiddenlink" target="rightframe">Settings.Secure</A><br>
+<!-- Class Settings.System -->
+<A HREF="android.provider.Settings.System.html" class="hiddenlink" target="rightframe">Settings.System</A><br>
+<!-- Method setTitleColor -->
+<i>setTitleColor</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setTitleColor_changed(int)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>int</code>)&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+<!-- Method setTitleColor -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setTitleColor_changed(int)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>int</code>)&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setUserRestriction -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestriction_changed(java.lang.String, boolean)" class="hiddenlink" target="rightframe">setUserRestriction
+(<code>String, boolean</code>)</A></nobr><br>
+<!-- Method setUserRestrictions -->
+<i>setUserRestrictions</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestrictions_changed(android.os.Bundle)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Bundle</code>)&nbsp;in&nbsp;android.os.UserManager
+</A></nobr><br>
+<!-- Method setUserRestrictions -->
+&nbsp;&nbsp;<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestrictions_changed(android.os.Bundle, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Bundle, UserHandle</code>)&nbsp;in&nbsp;android.os.UserManager
+</A></nobr><br>
+<!-- Class Shape -->
+<A HREF="android.graphics.drawable.shapes.Shape.html" class="hiddenlink" target="rightframe">Shape</A><br>
+<!-- Method size -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.size_changed()" class="hiddenlink" target="rightframe">size
+()</A></nobr><br>
+<!-- Class SlidingDrawer -->
+<A HREF="android.widget.SlidingDrawer.html" class="hiddenlink" target="rightframe">SlidingDrawer</A><br>
+<!-- Class SmsManager -->
+<A HREF="android.telephony.SmsManager.html" class="hiddenlink" target="rightframe">SmsManager</A><br>
+<!-- Field SORT_INDEX -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SORT_INDEX" class="hiddenlink" target="rightframe">SORT_INDEX</A>
+</nobr><br>
+<!-- Class SoundPool -->
+<i>SoundPool</i><br>
+&nbsp;&nbsp;<A HREF="android.media.SoundPool.html" class="hiddenlink" target="rightframe">android.media</A><br>
+<!-- Constructor SoundPool -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.SoundPool.html#android.media.SoundPool.ctor_changed(int, int, int)" class="hiddenlink" target="rightframe">SoundPool
+(<code>int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class Space -->
+<A HREF="android.widget.Space.html" class="hiddenlink" target="rightframe">Space</A><br>
+<!-- Class SpannableStringBuilder -->
+<A HREF="android.text.SpannableStringBuilder.html" class="hiddenlink" target="rightframe">SpannableStringBuilder</A><br>
+<!-- Method speak -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.speak_changed(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">speak
+(<code>String, int, HashMap&lt;String, String&gt;</code>)</A></nobr><br>
+<!-- Class Spinner -->
+<A HREF="android.widget.Spinner.html" class="hiddenlink" target="rightframe">Spinner</A><br>
+<!-- Class StackView -->
+<A HREF="android.widget.StackView.html" class="hiddenlink" target="rightframe">StackView</A><br>
+<!-- Method startLeScan -->
+<i>startLeScan</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.startLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>LeScanCallback</code>)&nbsp;in&nbsp;android.bluetooth.BluetoothAdapter
+</A></nobr><br>
+<!-- Method startLeScan -->
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.startLeScan_changed(java.util.UUID[], android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>UUID[], LeScanCallback</code>)&nbsp;in&nbsp;android.bluetooth.BluetoothAdapter
+</A></nobr><br>
+<!-- Method startUsingNetworkFeature -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.startUsingNetworkFeature_changed(int, java.lang.String)" class="hiddenlink" target="rightframe">startUsingNetworkFeature
+(<code>int, String</code>)</A></nobr><br>
+<!-- Class StatusBarNotification -->
+<A HREF="android.service.notification.StatusBarNotification.html" class="hiddenlink" target="rightframe">StatusBarNotification</A><br>
+<!-- Method stopLeScan -->
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.stopLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">stopLeScan
+(<code>LeScanCallback</code>)</A></nobr><br>
+<!-- Method stopUsingNetworkFeature -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.stopUsingNetworkFeature_changed(int, java.lang.String)" class="hiddenlink" target="rightframe">stopUsingNetworkFeature
+(<code>int, String</code>)</A></nobr><br>
+<!-- Field STREAM_DEFAULT -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.STREAM_DEFAULT" class="hiddenlink" target="rightframe">STREAM_DEFAULT</A>
+</nobr><br>
+<!-- Field STREAM_ITEM_ID -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.STREAM_ITEM_ID" class="hiddenlink" target="rightframe">STREAM_ITEM_ID</A>
+</nobr><br>
+<!-- Class SurfaceTexture -->
+<A HREF="android.graphics.SurfaceTexture.html" class="hiddenlink" target="rightframe">SurfaceTexture</A><br>
+<!-- Class SurfaceView -->
+<A HREF="android.view.SurfaceView.html" class="hiddenlink" target="rightframe">SurfaceView</A><br>
+<!-- Class Switch -->
+<A HREF="android.widget.Switch.html" class="hiddenlink" target="rightframe">Switch</A><br>
+<!-- Class SwitchPreference -->
+<A HREF="android.preference.SwitchPreference.html" class="hiddenlink" target="rightframe">SwitchPreference</A><br>
+<!-- Field SYNC1 -->
+<i>SYNC1</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC1" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<!-- Field SYNC1 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC1" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<!-- Field SYNC2 -->
+<i>SYNC2</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC2" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<!-- Field SYNC2 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC2" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<!-- Field SYNC3 -->
+<i>SYNC3</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC3" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<!-- Field SYNC3 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC3" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<!-- Field SYNC4 -->
+<i>SYNC4</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC4" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<!-- Field SYNC4 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC4" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<!-- Method syncFromRamToFlash -->
+<nobr><A HREF="android.webkit.CookieSyncManager.html#android.webkit.CookieSyncManager.syncFromRamToFlash_changed()" class="hiddenlink" target="rightframe">syncFromRamToFlash
+()</A></nobr><br>
+<!-- Class SynthesisCallback -->
+<A HREF="android.speech.tts.SynthesisCallback.html" class="hiddenlink" target="rightframe"><i>SynthesisCallback</i></A><br>
+<!-- Class SynthesisRequest -->
+<A HREF="android.speech.tts.SynthesisRequest.html" class="hiddenlink" target="rightframe">SynthesisRequest</A><br>
+<!-- Method synthesizeToFile -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.synthesizeToFile_changed(java.lang.String, java.util.HashMap<java.lang.String, java.lang.String>, java.lang.String)" class="hiddenlink" target="rightframe">synthesizeToFile
+(<code>String, HashMap&lt;String, String&gt;, String</code>)</A></nobr><br>
+<!-- Class TabHost -->
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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="#X"><font size="-2">X</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.TabHost.html" class="hiddenlink" target="rightframe">TabHost</A><br>
+<!-- Class TabWidget -->
+<A HREF="android.widget.TabWidget.html" class="hiddenlink" target="rightframe">TabWidget</A><br>
+<!-- Class Telephony.BaseMmsColumns -->
+<A HREF="android.provider.Telephony.BaseMmsColumns.html" class="hiddenlink" target="rightframe"><i>Telephony.BaseMmsColumns</i></A><br>
+<!-- Class Telephony.TextBasedSmsColumns -->
+<A HREF="android.provider.Telephony.TextBasedSmsColumns.html" class="hiddenlink" target="rightframe"><i>Telephony.TextBasedSmsColumns</i></A><br>
+<!-- Class Telephony.ThreadsColumns -->
+<A HREF="android.provider.Telephony.ThreadsColumns.html" class="hiddenlink" target="rightframe"><i>Telephony.ThreadsColumns</i></A><br>
+<!-- Class TelephonyManager -->
+<A HREF="android.telephony.TelephonyManager.html" class="hiddenlink" target="rightframe">TelephonyManager</A><br>
+<!-- Field TEXT -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.TEXT" class="hiddenlink" target="rightframe">TEXT</A>
+</nobr><br>
+<!-- Field TextAppearance_DeviceDefault_Widget_ActionBar_Subtitle_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_DeviceDefault_Widget_ActionBar_Subtitle_Inverse" class="hiddenlink" target="rightframe">TextAppearance_DeviceDefault_Widget_ActionBar_Subtitle_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_DeviceDefault_Widget_ActionBar_Title_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_DeviceDefault_Widget_ActionBar_Title_Inverse" class="hiddenlink" target="rightframe">TextAppearance_DeviceDefault_Widget_ActionBar_Title_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_DeviceDefault_Widget_ActionMode_Subtitle_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_DeviceDefault_Widget_ActionMode_Subtitle_Inverse" class="hiddenlink" target="rightframe">TextAppearance_DeviceDefault_Widget_ActionMode_Subtitle_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_DeviceDefault_Widget_ActionMode_Title_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_DeviceDefault_Widget_ActionMode_Title_Inverse" class="hiddenlink" target="rightframe">TextAppearance_DeviceDefault_Widget_ActionMode_Title_Inverse</A>
+</nobr><br>
+<!-- Class TextClock -->
+<A HREF="android.widget.TextClock.html" class="hiddenlink" target="rightframe">TextClock</A><br>
+<!-- Class TextInfo -->
+<A HREF="android.view.textservice.TextInfo.html" class="hiddenlink" target="rightframe">TextInfo</A><br>
+<!-- Class TextToSpeech -->
+<A HREF="android.speech.tts.TextToSpeech.html" class="hiddenlink" target="rightframe">TextToSpeech</A><br>
+<!-- Class TextToSpeech.Engine -->
+<A HREF="android.speech.tts.TextToSpeech.Engine.html" class="hiddenlink" target="rightframe">TextToSpeech.Engine</A><br>
+<!-- Class TextToSpeechService -->
+<A HREF="android.speech.tts.TextToSpeechService.html" class="hiddenlink" target="rightframe">TextToSpeechService</A><br>
+<!-- Class TextureView -->
+<A HREF="android.view.TextureView.html" class="hiddenlink" target="rightframe">TextureView</A><br>
+<!-- Class TextView -->
+<A HREF="android.widget.TextView.html" class="hiddenlink" target="rightframe">TextView</A><br>
+<!-- Field tickerView -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.tickerView" class="hiddenlink" target="rightframe">tickerView</A>
+</nobr><br>
+<!-- Class TimePicker -->
+<A HREF="android.widget.TimePicker.html" class="hiddenlink" target="rightframe">TimePicker</A><br>
+<!-- Field TIMESTAMP -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.TIMESTAMP" class="hiddenlink" target="rightframe">TIMESTAMP</A>
+</nobr><br>
+<!-- Class ToggleButton -->
+<A HREF="android.widget.ToggleButton.html" class="hiddenlink" target="rightframe">ToggleButton</A><br>
+<!-- Field TOP_LEVEL_DOMAIN -->
+<nobr><A HREF="android.util.Patterns.html#android.util.Patterns.TOP_LEVEL_DOMAIN" class="hiddenlink" target="rightframe">TOP_LEVEL_DOMAIN</A>
+</nobr><br>
+<!-- Field TOP_LEVEL_DOMAIN_STR -->
+<nobr><A HREF="android.util.Patterns.html#android.util.Patterns.TOP_LEVEL_DOMAIN_STR" class="hiddenlink" target="rightframe">TOP_LEVEL_DOMAIN_STR</A>
+</nobr><br>
+<!-- Field TOP_LEVEL_DOMAIN_STR_FOR_WEB_URL -->
+<nobr><A HREF="android.util.Patterns.html#android.util.Patterns.TOP_LEVEL_DOMAIN_STR_FOR_WEB_URL" class="hiddenlink" target="rightframe">TOP_LEVEL_DOMAIN_STR_FOR_WEB_URL</A>
+</nobr><br>
+<!-- Class Transition -->
+<A HREF="android.transition.Transition.html" class="hiddenlink" target="rightframe">Transition</A><br>
+<!-- Class TransitionSet -->
+<A HREF="android.transition.TransitionSet.html" class="hiddenlink" target="rightframe">TransitionSet</A><br>
+<!-- Class TwoLineListItem -->
+<A HREF="android.widget.TwoLineListItem.html" class="hiddenlink" target="rightframe">TwoLineListItem</A><br>
+<!-- Class TwoStatePreference -->
+<A HREF="android.preference.TwoStatePreference.html" class="hiddenlink" target="rightframe">TwoStatePreference</A><br>
+<!-- Class Type -->
+<A HREF="android.renderscript.Type.html" class="hiddenlink" target="rightframe">Type</A><br>
+<!-- Class TypedArray -->
+<A HREF="android.content.res.TypedArray.html" class="hiddenlink" target="rightframe">TypedArray</A><br>
+<!-- Class UiAutomation -->
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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="#X"><font size="-2">X</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.UiAutomation.html" class="hiddenlink" target="rightframe">UiAutomation</A><br>
+<!-- Class UiModeManager -->
+<A HREF="android.app.UiModeManager.html" class="hiddenlink" target="rightframe">UiModeManager</A><br>
+<!-- Method unregisterMediaButtonEventReceiver -->
+<i>unregisterMediaButtonEventReceiver</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.app.PendingIntent)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>PendingIntent</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+<!-- Method unregisterMediaButtonEventReceiver -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.content.ComponentName)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>ComponentName</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+<!-- Method unregisterRemoteControlClient -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterRemoteControlClient_changed(android.media.RemoteControlClient)" class="hiddenlink" target="rightframe">unregisterRemoteControlClient
+(<code>RemoteControlClient</code>)</A></nobr><br>
+<!-- Method unregisterRemoteController -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterRemoteController_changed(android.media.RemoteController)" class="hiddenlink" target="rightframe">unregisterRemoteController
+(<code>RemoteController</code>)</A></nobr><br>
+<!-- Method updateCursor -->
+<nobr><A HREF="android.view.inputmethod.InputMethodManager.html#android.view.inputmethod.InputMethodManager.updateCursor_changed(android.view.View, int, int, int, int)" class="hiddenlink" target="rightframe">updateCursor
+(<code>View, int, int, int, int</code>)</A></nobr><br>
+<!-- Class UsbDevice -->
+<A HREF="android.hardware.usb.UsbDevice.html" class="hiddenlink" target="rightframe">UsbDevice</A><br>
+<!-- Class UsbDeviceConnection -->
+<A HREF="android.hardware.usb.UsbDeviceConnection.html" class="hiddenlink" target="rightframe">UsbDeviceConnection</A><br>
+<!-- Class UsbInterface -->
+<A HREF="android.hardware.usb.UsbInterface.html" class="hiddenlink" target="rightframe">UsbInterface</A><br>
+<!-- Class UserManager -->
+<A HREF="android.os.UserManager.html" class="hiddenlink" target="rightframe">UserManager</A><br>
+<!-- Class UtteranceProgressListener -->
+<A HREF="android.speech.tts.UtteranceProgressListener.html" class="hiddenlink" target="rightframe">UtteranceProgressListener</A><br>
+<!-- Class ValueAnimator -->
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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="#X"><font size="-2">X</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.animation.ValueAnimator.html" class="hiddenlink" target="rightframe">ValueAnimator</A><br>
+<!-- Method vibrate -->
+<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_changed(long)" class="hiddenlink" target="rightframe">vibrate
+(<code>long</code>)</A></nobr><br>
+<!-- Class Vibrator -->
+<A HREF="android.os.Vibrator.html" class="hiddenlink" target="rightframe">Vibrator</A><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 ViewGroup -->
+<A HREF="android.view.ViewGroup.html" class="hiddenlink" target="rightframe">ViewGroup</A><br>
+<!-- Class ViewParent -->
+<A HREF="android.view.ViewParent.html" class="hiddenlink" target="rightframe"><i>ViewParent</i></A><br>
+<!-- Class ViewPropertyAnimator -->
+<A HREF="android.view.ViewPropertyAnimator.html" class="hiddenlink" target="rightframe">ViewPropertyAnimator</A><br>
+<!-- Class ViewStub -->
+<A HREF="android.view.ViewStub.html" class="hiddenlink" target="rightframe">ViewStub</A><br>
+<!-- Class VirtualDisplay -->
+<A HREF="android.hardware.display.VirtualDisplay.html" class="hiddenlink" target="rightframe">VirtualDisplay</A><br>
+<!-- Class Virtualizer -->
+<A HREF="android.media.audiofx.Virtualizer.html" class="hiddenlink" target="rightframe">Virtualizer</A><br>
+<!-- Class Visibility -->
+<A HREF="android.transition.Visibility.html" class="hiddenlink" target="rightframe">Visibility</A><br>
+<!-- Class VoicemailContract.Voicemails -->
+<A HREF="android.provider.VoicemailContract.Voicemails.html" class="hiddenlink" target="rightframe">VoicemailContract.Voicemails</A><br>
+<!-- Class VpnService.Builder -->
+<A HREF="android.net.VpnService.Builder.html" class="hiddenlink" target="rightframe">VpnService.Builder</A><br>
+<!-- Class WallpaperService.Engine -->
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#X"><font size="-2">X</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.service.wallpaper.WallpaperService.Engine.html" class="hiddenlink" target="rightframe">WallpaperService.Engine</A><br>
+<!-- Class WebChromeClient -->
+<A HREF="android.webkit.WebChromeClient.html" class="hiddenlink" target="rightframe">WebChromeClient</A><br>
+<!-- Class WebResourceResponse -->
+<A HREF="android.webkit.WebResourceResponse.html" class="hiddenlink" target="rightframe">WebResourceResponse</A><br>
+<!-- Class WebSettings -->
+<A HREF="android.webkit.WebSettings.html" class="hiddenlink" target="rightframe">WebSettings</A><br>
+<!-- Class WebSyncManager -->
+<A HREF="android.webkit.WebSyncManager.html" class="hiddenlink" target="rightframe">WebSyncManager</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 Widget_DeviceDefault_Light_ActionBar_Solid_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_ActionBar_Solid_Inverse" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_ActionBar_Solid_Inverse</A>
+</nobr><br>
+<!-- Field Widget_DeviceDefault_Light_ActionBar_TabBar_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_ActionBar_TabBar_Inverse" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_ActionBar_TabBar_Inverse</A>
+</nobr><br>
+<!-- Field Widget_DeviceDefault_Light_ActionBar_TabText_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_ActionBar_TabText_Inverse" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_ActionBar_TabText_Inverse</A>
+</nobr><br>
+<!-- Field Widget_DeviceDefault_Light_ActionBar_TabView_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_ActionBar_TabView_Inverse" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_ActionBar_TabView_Inverse</A>
+</nobr><br>
+<!-- Field Widget_DeviceDefault_Light_ActionMode_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_ActionMode_Inverse" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_ActionMode_Inverse</A>
+</nobr><br>
+<!-- Class WifiConfiguration -->
+<A HREF="android.net.wifi.WifiConfiguration.html" class="hiddenlink" target="rightframe">WifiConfiguration</A><br>
+<!-- Class WifiEnterpriseConfig.Eap -->
+<A HREF="android.net.wifi.WifiEnterpriseConfig.Eap.html" class="hiddenlink" target="rightframe">WifiEnterpriseConfig.Eap</A><br>
+<!-- Class WifiInfo -->
+<A HREF="android.net.wifi.WifiInfo.html" class="hiddenlink" target="rightframe">WifiInfo</A><br>
+<!-- Class WifiManager -->
+<A HREF="android.net.wifi.WifiManager.html" class="hiddenlink" target="rightframe">WifiManager</A><br>
+<!-- Class Window -->
+<A HREF="android.view.Window.html" class="hiddenlink" target="rightframe">Window</A><br>
+<!-- Class WindowInsets -->
+<A HREF="android.view.WindowInsets.html" class="hiddenlink" target="rightframe">WindowInsets</A><br>
+<!-- Class WindowManager.LayoutParams -->
+<A HREF="android.view.WindowManager.LayoutParams.html" class="hiddenlink" target="rightframe">WindowManager.LayoutParams</A><br>
+<!-- Class WpsInfo -->
+<A HREF="android.net.wifi.WpsInfo.html" class="hiddenlink" target="rightframe">WpsInfo</A><br>
+<!-- Field WRITE_SOCIAL_STREAM -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.WRITE_SOCIAL_STREAM" class="hiddenlink" target="rightframe">WRITE_SOCIAL_STREAM</A>
+</nobr><br>
+<!-- Class X509TrustManagerExtensions -->
+<A NAME="X"></A>
+<br><font size="+2">X</font>&nbsp;
+<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">
+<A HREF="android.net.http.X509TrustManagerExtensions.html" class="hiddenlink" target="rightframe">X509TrustManagerExtensions</A><br>
+<!-- Class ZipEntry -->
+<A NAME="Z"></A>
+<br><font size="+2">Z</font>&nbsp;
+<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="#X"><font size="-2">X</font></a> 
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="java.util.zip.ZipEntry.html" class="hiddenlink" target="rightframe">ZipEntry</A><br>
+<!-- Class ZipFile -->
+<A HREF="java.util.zip.ZipFile.html" class="hiddenlink" target="rightframe">ZipFile</A><br>
+<!-- Class ZipInputStream -->
+<A HREF="java.util.zip.ZipInputStream.html" class="hiddenlink" target="rightframe">ZipInputStream</A><br>
+<!-- Class ZipOutputStream -->
+<A HREF="java.util.zip.ZipOutputStream.html" class="hiddenlink" target="rightframe">ZipOutputStream</A><br>
+<!-- Class ZoomButton -->
+<A HREF="android.widget.ZoomButton.html" class="hiddenlink" target="rightframe">ZoomButton</A><br>
+<script src="//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/21/changes/alldiffs_index_removals.html b/docs/html/sdk/api_diff/21/changes/alldiffs_index_removals.html
new file mode 100644
index 0000000..9d5b09a
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/alldiffs_index_removals.html
@@ -0,0 +1,328 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<!-- Method addEarcon -->
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#I"><font size="-2">I</font></a> 
+<a href="#O"><font size="-2">O</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.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_removed(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><strike>addEarcon</strike>
+(<code>String, String</code>)</A></nobr><br>
+<!-- Package android.hardware.location -->
+<A HREF="changes-summary.html#android.hardware.location" class="hiddenlink" target="rightframe"><strike>android.hardware.location</strike></A><br>
+<!-- Constructor AudioFormat -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ctor_removed()" class="hiddenlink" target="rightframe"><strike>AudioFormat</strike>
+()</A></nobr>&nbsp;constructor<br>
+<!-- Method cancelNotification -->
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<a href="#A"><font size="-2">A</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="#O"><font size="-2">O</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.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.cancelNotification_removed(java.lang.String, java.lang.String, int)" class="hiddenlink" target="rightframe"><strike>cancelNotification</strike>
+(<code>String, String, int</code>)</A></nobr><br>
+<!-- Method createPrintDocumentAdapter -->
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.createPrintDocumentAdapter_removed()" class="hiddenlink" target="rightframe"><strike>createPrintDocumentAdapter</strike>
+()</A></nobr><br>
+<!-- Method formatNumber -->
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<a href="#A"><font size="-2">A</font></a> 
+<a href="#C"><font size="-2">C</font></a> 
+<a href="#G"><font size="-2">G</font></a> 
+<a href="#I"><font size="-2">I</font></a> 
+<a href="#O"><font size="-2">O</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">
+<i>formatNumber</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_removed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String</code>)</strike>&nbsp;in&nbsp;android.telephony.PhoneNumberUtils
+</A></nobr><br>
+<!-- Method formatNumber -->
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_removed(android.text.Editable, int)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Editable, int</code>)</strike>&nbsp;in&nbsp;android.telephony.PhoneNumberUtils
+</A></nobr><br>
+<!-- Method getAssetInt -->
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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="#I"><font size="-2">I</font></a> 
+<a href="#O"><font size="-2">O</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.content.res.AssetManager.AssetInputStream.html#android.content.res.AssetManager.AssetInputStream.getAssetInt_removed()" class="hiddenlink" target="rightframe"><strike>getAssetInt</strike>
+()</A></nobr><br>
+<!-- Method getDouble -->
+<i>getDouble</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getDouble_removed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+<!-- Method getDouble -->
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getDouble_removed(java.lang.String, double)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String, double</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+<!-- Method getInt -->
+<i>getInt</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getInt_removed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+<!-- Method getInt -->
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getInt_removed(java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String, int</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+<!-- Method getLong -->
+<i>getLong</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getLong_removed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+<!-- Method getLong -->
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getLong_removed(java.lang.String, long)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String, long</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+<!-- Method getString -->
+<i>getString</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getString_removed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+<!-- Method getString -->
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getString_removed(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String, String</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+<!-- Method getTextColor -->
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getTextColor_removed(android.content.Context, android.content.res.TypedArray, int)" class="hiddenlink" target="rightframe"><strike>getTextColor</strike>
+(<code>Context, TypedArray, int</code>)</A></nobr><br>
+<!-- Method getTextColors -->
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getTextColors_removed(android.content.Context, android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>getTextColors</strike>
+(<code>Context, TypedArray</code>)</A></nobr><br>
+<!-- Method glGetActiveAttrib -->
+<nobr><A HREF="android.opengl.GLES20.html#android.opengl.GLES20.glGetActiveAttrib_removed(int, int, int, java.nio.IntBuffer, java.nio.IntBuffer, java.nio.IntBuffer, byte)" class="hiddenlink" target="rightframe"><strike>glGetActiveAttrib</strike>
+(<code>int, int, int, IntBuffer, IntBuffer, IntBuffer, byte</code>)</A></nobr><br>
+<!-- Method glGetActiveUniform -->
+<nobr><A HREF="android.opengl.GLES20.html#android.opengl.GLES20.glGetActiveUniform_removed(int, int, int, java.nio.IntBuffer, java.nio.IntBuffer, java.nio.IntBuffer, byte)" class="hiddenlink" target="rightframe"><strike>glGetActiveUniform</strike>
+(<code>int, int, int, IntBuffer, IntBuffer, IntBuffer, byte</code>)</A></nobr><br>
+<!-- Method glGetShaderSource -->
+<nobr><A HREF="android.opengl.GLES20.html#android.opengl.GLES20.glGetShaderSource_removed(int, int, java.nio.IntBuffer, byte)" class="hiddenlink" target="rightframe"><strike>glGetShaderSource</strike>
+(<code>int, int, IntBuffer, byte</code>)</A></nobr><br>
+<!-- Method goToSleep -->
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.goToSleep_removed(long)" class="hiddenlink" target="rightframe"><strike>goToSleep</strike>
+(<code>long</code>)</A></nobr><br>
+<!-- Method initializeFadingEdge -->
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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="#O"><font size="-2">O</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.view.View.html#android.view.View.initializeFadingEdge_removed(android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>initializeFadingEdge</strike>
+(<code>TypedArray</code>)</A></nobr><br>
+<!-- Method initializeScrollbars -->
+<nobr><A HREF="android.view.View.html#android.view.View.initializeScrollbars_removed(android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>initializeScrollbars</strike>
+(<code>TypedArray</code>)</A></nobr><br>
+<!-- Method obtain -->
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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="#I"><font size="-2">I</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.os.Parcel.html#android.os.Parcel.obtain_removed(int)" class="hiddenlink" target="rightframe"><strike>obtain</strike>
+(<code>int</code>)</A></nobr><br>
+<!-- Method onError -->
+<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_removed(java.lang.String)" class="hiddenlink" target="rightframe"><strike>onError</strike>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setSound -->
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#I"><font size="-2">I</font></a> 
+<a href="#O"><font size="-2">O</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.app.Notification.Builder.html#android.app.Notification.Builder.setSound_removed(android.net.Uri, int)" class="hiddenlink" target="rightframe"><strike>setSound</strike>
+(<code>Uri, int</code>)</A></nobr><br>
+<!-- Method shouldInterceptRequest -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_removed(android.webkit.WebView, java.lang.String)" class="hiddenlink" target="rightframe"><strike>shouldInterceptRequest</strike>
+(<code>WebView, String</code>)</A></nobr><br>
+<!-- Field STATE_DOZING -->
+<nobr><A HREF="android.view.Display.html#android.view.Display.STATE_DOZING" class="hiddenlink" target="rightframe"><strike>STATE_DOZING</strike></A>
+</nobr><br>
+<!-- Field TYPE_KEYGUARD -->
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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="#I"><font size="-2">I</font></a> 
+<a href="#O"><font size="-2">O</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="#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.TYPE_KEYGUARD" class="hiddenlink" target="rightframe"><strike>TYPE_KEYGUARD</strike></A>
+</nobr><br>
+<!-- Method userActivity -->
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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="#I"><font size="-2">I</font></a> 
+<a href="#O"><font size="-2">O</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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.userActivity_removed(long, boolean)" class="hiddenlink" target="rightframe"><strike>userActivity</strike>
+(<code>long, boolean</code>)</A></nobr><br>
+<!-- Method vibrate -->
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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="#I"><font size="-2">I</font></a> 
+<a href="#O"><font size="-2">O</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.os.Vibrator.html#android.os.Vibrator.vibrate_removed(long[], int)" class="hiddenlink" target="rightframe"><strike>vibrate</strike>
+(<code>long[], int</code>)</A></nobr><br>
+<!-- Method wakeUp -->
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#I"><font size="-2">I</font></a> 
+<a href="#O"><font size="-2">O</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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.wakeUp_removed(long)" class="hiddenlink" target="rightframe"><strike>wakeUp</strike>
+(<code>long</code>)</A></nobr><br>
+<script src="//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/21/changes/android.Manifest.permission.html b/docs/html/sdk/api_diff/21/changes/android.Manifest.permission.html
new file mode 100644
index 0000000..ca8b10b
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.Manifest.permission.html
@@ -0,0 +1,185 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.BIND_DREAM_SERVICE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#BIND_DREAM_SERVICE" target="_top"><code>BIND_DREAM_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.Manifest.permission.BIND_TV_INPUT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#BIND_TV_INPUT" target="_top"><code>BIND_TV_INPUT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.Manifest.permission.BIND_VOICE_INTERACTION"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#BIND_VOICE_INTERACTION" target="_top"><code>BIND_VOICE_INTERACTION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.Manifest.permission.READ_VOICEMAIL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#READ_VOICEMAIL" target="_top"><code>READ_VOICEMAIL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.Manifest.permission.WRITE_VOICEMAIL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#WRITE_VOICEMAIL" target="_top"><code>WRITE_VOICEMAIL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Manifest.permission.GET_TASKS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#GET_TASKS" target="_top"><code>GET_TASKS</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.Manifest.permission.READ_SOCIAL_STREAM"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#READ_SOCIAL_STREAM" target="_top"><code>READ_SOCIAL_STREAM</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.Manifest.permission.WRITE_SOCIAL_STREAM"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#WRITE_SOCIAL_STREAM" target="_top"><code>WRITE_SOCIAL_STREAM</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.R.attr.html b/docs/html/sdk/api_diff/21/changes/android.R.attr.html
new file mode 100644
index 0000000..499db56
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.R.attr.html
@@ -0,0 +1,1431 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.actionBarPopupTheme"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#actionBarPopupTheme" target="_top"><code>actionBarPopupTheme</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.actionBarTheme"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#actionBarTheme" target="_top"><code>actionBarTheme</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.actionModeFindDrawable"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#actionModeFindDrawable" target="_top"><code>actionModeFindDrawable</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.actionModeShareDrawable"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#actionModeShareDrawable" target="_top"><code>actionModeShareDrawable</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.actionModeWebSearchDrawable"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#actionModeWebSearchDrawable" target="_top"><code>actionModeWebSearchDrawable</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.actionOverflowMenuStyle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#actionOverflowMenuStyle" target="_top"><code>actionOverflowMenuStyle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.amPmBackgroundColor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#amPmBackgroundColor" target="_top"><code>amPmBackgroundColor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.amPmTextColor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#amPmTextColor" target="_top"><code>amPmTextColor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.ambientShadowAlpha"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#ambientShadowAlpha" target="_top"><code>ambientShadowAlpha</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.autoRemoveFromRecents"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#autoRemoveFromRecents" target="_top"><code>autoRemoveFromRecents</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.backgroundTint"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#backgroundTint" target="_top"><code>backgroundTint</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.backgroundTintMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#backgroundTintMode" target="_top"><code>backgroundTintMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.banner"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#banner" target="_top"><code>banner</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.buttonBarNegativeButtonStyle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#buttonBarNegativeButtonStyle" target="_top"><code>buttonBarNegativeButtonStyle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.buttonBarNeutralButtonStyle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#buttonBarNeutralButtonStyle" target="_top"><code>buttonBarNeutralButtonStyle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.buttonBarPositiveButtonStyle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#buttonBarPositiveButtonStyle" target="_top"><code>buttonBarPositiveButtonStyle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.buttonTint"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#buttonTint" target="_top"><code>buttonTint</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.buttonTintMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#buttonTintMode" target="_top"><code>buttonTintMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.calendarTextColor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#calendarTextColor" target="_top"><code>calendarTextColor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.checkMarkTint"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#checkMarkTint" target="_top"><code>checkMarkTint</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.checkMarkTintMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#checkMarkTintMode" target="_top"><code>checkMarkTintMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.closeIcon"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#closeIcon" target="_top"><code>closeIcon</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.colorAccent"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#colorAccent" target="_top"><code>colorAccent</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.colorButtonNormal"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#colorButtonNormal" target="_top"><code>colorButtonNormal</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.colorControlActivated"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#colorControlActivated" target="_top"><code>colorControlActivated</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.colorControlHighlight"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#colorControlHighlight" target="_top"><code>colorControlHighlight</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.colorControlNormal"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#colorControlNormal" target="_top"><code>colorControlNormal</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.colorEdgeEffect"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#colorEdgeEffect" target="_top"><code>colorEdgeEffect</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.colorPrimary"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#colorPrimary" target="_top"><code>colorPrimary</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.colorPrimaryDark"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#colorPrimaryDark" target="_top"><code>colorPrimaryDark</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.commitIcon"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#commitIcon" target="_top"><code>commitIcon</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.contentAgeHint"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#contentAgeHint" target="_top"><code>contentAgeHint</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.contentInsetEnd"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#contentInsetEnd" target="_top"><code>contentInsetEnd</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.contentInsetLeft"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#contentInsetLeft" target="_top"><code>contentInsetLeft</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.contentInsetRight"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#contentInsetRight" target="_top"><code>contentInsetRight</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.contentInsetStart"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#contentInsetStart" target="_top"><code>contentInsetStart</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.controlX1"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#controlX1" target="_top"><code>controlX1</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.controlX2"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#controlX2" target="_top"><code>controlX2</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.controlY1"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#controlY1" target="_top"><code>controlY1</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.controlY2"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#controlY2" target="_top"><code>controlY2</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.country"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#country" target="_top"><code>country</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.datePickerDialogTheme"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#datePickerDialogTheme" target="_top"><code>datePickerDialogTheme</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.datePickerMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#datePickerMode" target="_top"><code>datePickerMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.dayOfWeekBackground"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#dayOfWeekBackground" target="_top"><code>dayOfWeekBackground</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.dayOfWeekTextAppearance"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#dayOfWeekTextAppearance" target="_top"><code>dayOfWeekTextAppearance</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.documentLaunchMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#documentLaunchMode" target="_top"><code>documentLaunchMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.elegantTextHeight"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#elegantTextHeight" target="_top"><code>elegantTextHeight</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.elevation"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#elevation" target="_top"><code>elevation</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.excludeClass"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#excludeClass" target="_top"><code>excludeClass</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.excludeId"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#excludeId" target="_top"><code>excludeId</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.excludeName"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#excludeName" target="_top"><code>excludeName</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fastScrollStyle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fastScrollStyle" target="_top"><code>fastScrollStyle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fillAlpha"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fillAlpha" target="_top"><code>fillAlpha</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fillColor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fillColor" target="_top"><code>fillColor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fontFeatureSettings"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fontFeatureSettings" target="_top"><code>fontFeatureSettings</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.foregroundTint"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#foregroundTint" target="_top"><code>foregroundTint</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.foregroundTintMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#foregroundTintMode" target="_top"><code>foregroundTintMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fragmentAllowEnterTransitionOverlap"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fragmentAllowEnterTransitionOverlap" target="_top"><code>fragmentAllowEnterTransitionOverlap</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fragmentAllowReturnTransitionOverlap"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fragmentAllowReturnTransitionOverlap" target="_top"><code>fragmentAllowReturnTransitionOverlap</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fragmentEnterTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fragmentEnterTransition" target="_top"><code>fragmentEnterTransition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fragmentExitTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fragmentExitTransition" target="_top"><code>fragmentExitTransition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fragmentReenterTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fragmentReenterTransition" target="_top"><code>fragmentReenterTransition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fragmentReturnTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fragmentReturnTransition" target="_top"><code>fragmentReturnTransition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fragmentSharedElementEnterTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fragmentSharedElementEnterTransition" target="_top"><code>fragmentSharedElementEnterTransition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fragmentSharedElementReturnTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fragmentSharedElementReturnTransition" target="_top"><code>fragmentSharedElementReturnTransition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fromId"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fromId" target="_top"><code>fromId</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fullBackupOnly"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fullBackupOnly" target="_top"><code>fullBackupOnly</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.goIcon"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#goIcon" target="_top"><code>goIcon</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.headerAmPmTextAppearance"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#headerAmPmTextAppearance" target="_top"><code>headerAmPmTextAppearance</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.headerDayOfMonthTextAppearance"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#headerDayOfMonthTextAppearance" target="_top"><code>headerDayOfMonthTextAppearance</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.headerMonthTextAppearance"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#headerMonthTextAppearance" target="_top"><code>headerMonthTextAppearance</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.headerTimeTextAppearance"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#headerTimeTextAppearance" target="_top"><code>headerTimeTextAppearance</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.headerYearTextAppearance"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#headerYearTextAppearance" target="_top"><code>headerYearTextAppearance</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.hideOnContentScroll"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#hideOnContentScroll" target="_top"><code>hideOnContentScroll</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.indeterminateTint"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#indeterminateTint" target="_top"><code>indeterminateTint</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.indeterminateTintMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#indeterminateTintMode" target="_top"><code>indeterminateTintMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.inset"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#inset" target="_top"><code>inset</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.isGame"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#isGame" target="_top"><code>isGame</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.launchTaskBehindSourceAnimation"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#launchTaskBehindSourceAnimation" target="_top"><code>launchTaskBehindSourceAnimation</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.launchTaskBehindTargetAnimation"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#launchTaskBehindTargetAnimation" target="_top"><code>launchTaskBehindTargetAnimation</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.layout_columnWeight"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#layout_columnWeight" target="_top"><code>layout_columnWeight</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.layout_rowWeight"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#layout_rowWeight" target="_top"><code>layout_rowWeight</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.letterSpacing"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#letterSpacing" target="_top"><code>letterSpacing</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.matchOrder"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#matchOrder" target="_top"><code>matchOrder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.maxRecents"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#maxRecents" target="_top"><code>maxRecents</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.maximumAngle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#maximumAngle" target="_top"><code>maximumAngle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.minimumHorizontalAngle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#minimumHorizontalAngle" target="_top"><code>minimumHorizontalAngle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.minimumVerticalAngle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#minimumVerticalAngle" target="_top"><code>minimumVerticalAngle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.multiArch"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#multiArch" target="_top"><code>multiArch</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.navigationBarColor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#navigationBarColor" target="_top"><code>navigationBarColor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.navigationContentDescription"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#navigationContentDescription" target="_top"><code>navigationContentDescription</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.navigationIcon"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#navigationIcon" target="_top"><code>navigationIcon</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.nestedScrollingEnabled"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#nestedScrollingEnabled" target="_top"><code>nestedScrollingEnabled</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.numbersBackgroundColor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#numbersBackgroundColor" target="_top"><code>numbersBackgroundColor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.numbersSelectorColor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#numbersSelectorColor" target="_top"><code>numbersSelectorColor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.numbersTextColor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#numbersTextColor" target="_top"><code>numbersTextColor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.outlineProvider"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#outlineProvider" target="_top"><code>outlineProvider</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.overlapAnchor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#overlapAnchor" target="_top"><code>overlapAnchor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.paddingMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#paddingMode" target="_top"><code>paddingMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.pathData"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#pathData" target="_top"><code>pathData</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.patternPathData"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#patternPathData" target="_top"><code>patternPathData</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.persistableMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#persistableMode" target="_top"><code>persistableMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.popupElevation"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#popupElevation" target="_top"><code>popupElevation</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.popupTheme"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#popupTheme" target="_top"><code>popupTheme</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.progressBackgroundTint"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#progressBackgroundTint" target="_top"><code>progressBackgroundTint</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.progressBackgroundTintMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#progressBackgroundTintMode" target="_top"><code>progressBackgroundTintMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.progressTint"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#progressTint" target="_top"><code>progressTint</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.progressTintMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#progressTintMode" target="_top"><code>progressTintMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.propertyXName"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#propertyXName" target="_top"><code>propertyXName</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.propertyYName"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#propertyYName" target="_top"><code>propertyYName</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.queryBackground"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#queryBackground" target="_top"><code>queryBackground</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.recognitionService"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#recognitionService" target="_top"><code>recognitionService</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.relinquishTaskIdentity"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#relinquishTaskIdentity" target="_top"><code>relinquishTaskIdentity</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.reparent"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#reparent" target="_top"><code>reparent</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.reparentWithOverlay"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#reparentWithOverlay" target="_top"><code>reparentWithOverlay</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.restrictionType"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#restrictionType" target="_top"><code>restrictionType</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.resumeWhilePausing"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#resumeWhilePausing" target="_top"><code>resumeWhilePausing</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.reversible"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#reversible" target="_top"><code>reversible</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.searchIcon"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#searchIcon" target="_top"><code>searchIcon</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.searchViewStyle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#searchViewStyle" target="_top"><code>searchViewStyle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.secondaryProgressTint"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#secondaryProgressTint" target="_top"><code>secondaryProgressTint</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.secondaryProgressTintMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#secondaryProgressTintMode" target="_top"><code>secondaryProgressTintMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.selectableItemBackgroundBorderless"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#selectableItemBackgroundBorderless" target="_top"><code>selectableItemBackgroundBorderless</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.sessionService"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#sessionService" target="_top"><code>sessionService</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.setupActivity"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#setupActivity" target="_top"><code>setupActivity</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.showText"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#showText" target="_top"><code>showText</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.slideEdge"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#slideEdge" target="_top"><code>slideEdge</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.splitTrack"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#splitTrack" target="_top"><code>splitTrack</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.spotShadowAlpha"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#spotShadowAlpha" target="_top"><code>spotShadowAlpha</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.stackViewStyle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#stackViewStyle" target="_top"><code>stackViewStyle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.stateListAnimator"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#stateListAnimator" target="_top"><code>stateListAnimator</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.statusBarColor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#statusBarColor" target="_top"><code>statusBarColor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.strokeAlpha"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#strokeAlpha" target="_top"><code>strokeAlpha</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.strokeColor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#strokeColor" target="_top"><code>strokeColor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.strokeLineCap"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#strokeLineCap" target="_top"><code>strokeLineCap</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.strokeLineJoin"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#strokeLineJoin" target="_top"><code>strokeLineJoin</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.strokeMiterLimit"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#strokeMiterLimit" target="_top"><code>strokeMiterLimit</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.strokeWidth"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#strokeWidth" target="_top"><code>strokeWidth</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.submitBackground"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#submitBackground" target="_top"><code>submitBackground</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.subtitleTextAppearance"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#subtitleTextAppearance" target="_top"><code>subtitleTextAppearance</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.suggestionRowLayout"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#suggestionRowLayout" target="_top"><code>suggestionRowLayout</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.switchStyle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#switchStyle" target="_top"><code>switchStyle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.targetName"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#targetName" target="_top"><code>targetName</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.textAppearanceListItemSecondary"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#textAppearanceListItemSecondary" target="_top"><code>textAppearanceListItemSecondary</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.thumbTint"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#thumbTint" target="_top"><code>thumbTint</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.thumbTintMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#thumbTintMode" target="_top"><code>thumbTintMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.tileModeX"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#tileModeX" target="_top"><code>tileModeX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.tileModeY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#tileModeY" target="_top"><code>tileModeY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.timePickerDialogTheme"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#timePickerDialogTheme" target="_top"><code>timePickerDialogTheme</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.timePickerMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#timePickerMode" target="_top"><code>timePickerMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.timePickerStyle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#timePickerStyle" target="_top"><code>timePickerStyle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.tintMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#tintMode" target="_top"><code>tintMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.titleTextAppearance"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#titleTextAppearance" target="_top"><code>titleTextAppearance</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.toId"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#toId" target="_top"><code>toId</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.toolbarStyle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#toolbarStyle" target="_top"><code>toolbarStyle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.touchscreenBlocksFocus"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#touchscreenBlocksFocus" target="_top"><code>touchscreenBlocksFocus</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.transitionGroup"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#transitionGroup" target="_top"><code>transitionGroup</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.transitionName"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#transitionName" target="_top"><code>transitionName</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.transitionVisibilityMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#transitionVisibilityMode" target="_top"><code>transitionVisibilityMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.translateX"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#translateX" target="_top"><code>translateX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.translateY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#translateY" target="_top"><code>translateY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.translationZ"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#translationZ" target="_top"><code>translationZ</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.trimPathEnd"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#trimPathEnd" target="_top"><code>trimPathEnd</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.trimPathOffset"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#trimPathOffset" target="_top"><code>trimPathOffset</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.trimPathStart"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#trimPathStart" target="_top"><code>trimPathStart</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.viewportHeight"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#viewportHeight" target="_top"><code>viewportHeight</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.viewportWidth"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#viewportWidth" target="_top"><code>viewportWidth</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.voiceIcon"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#voiceIcon" target="_top"><code>voiceIcon</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowActivityTransitions"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowActivityTransitions" target="_top"><code>windowActivityTransitions</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowAllowEnterTransitionOverlap"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowAllowEnterTransitionOverlap" target="_top"><code>windowAllowEnterTransitionOverlap</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowAllowReturnTransitionOverlap"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowAllowReturnTransitionOverlap" target="_top"><code>windowAllowReturnTransitionOverlap</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowClipToOutline"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowClipToOutline" target="_top"><code>windowClipToOutline</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowContentTransitionManager"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowContentTransitionManager" target="_top"><code>windowContentTransitionManager</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowContentTransitions"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowContentTransitions" target="_top"><code>windowContentTransitions</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowDrawsSystemBarBackgrounds"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowDrawsSystemBarBackgrounds" target="_top"><code>windowDrawsSystemBarBackgrounds</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowElevation"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowElevation" target="_top"><code>windowElevation</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowEnterTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowEnterTransition" target="_top"><code>windowEnterTransition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowExitTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowExitTransition" target="_top"><code>windowExitTransition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowReenterTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowReenterTransition" target="_top"><code>windowReenterTransition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowReturnTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowReturnTransition" target="_top"><code>windowReturnTransition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowSharedElementEnterTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowSharedElementEnterTransition" target="_top"><code>windowSharedElementEnterTransition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowSharedElementExitTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowSharedElementExitTransition" target="_top"><code>windowSharedElementExitTransition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowSharedElementReenterTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowSharedElementReenterTransition" target="_top"><code>windowSharedElementReenterTransition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowSharedElementReturnTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowSharedElementReturnTransition" target="_top"><code>windowSharedElementReturnTransition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowSharedElementsUseOverlay"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowSharedElementsUseOverlay" target="_top"><code>windowSharedElementsUseOverlay</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowTransitionBackgroundFadeDuration"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowTransitionBackgroundFadeDuration" target="_top"><code>windowTransitionBackgroundFadeDuration</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.yearListItemTextAppearance"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#yearListItemTextAppearance" target="_top"><code>yearListItemTextAppearance</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.yearListSelectorColor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#yearListSelectorColor" target="_top"><code>yearListSelectorColor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.R.id.html b/docs/html/sdk/api_diff/21/changes/android.R.id.html
new file mode 100644
index 0000000..0aaa97a
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.R.id.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.id
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.id.html" target="_top"><font size="+2"><code>R.id</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.id.mask"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.id.html#mask" target="_top"><code>mask</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.id.navigationBarBackground"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.id.html#navigationBarBackground" target="_top"><code>navigationBarBackground</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.id.statusBarBackground"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.id.html#statusBarBackground" target="_top"><code>statusBarBackground</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.R.interpolator.html b/docs/html/sdk/api_diff/21/changes/android.R.interpolator.html
new file mode 100644
index 0000000..e3586064
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.R.interpolator.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.interpolator
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.interpolator.html" target="_top"><font size="+2"><code>R.interpolator</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.interpolator.fast_out_linear_in"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.interpolator.html#fast_out_linear_in" target="_top"><code>fast_out_linear_in</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.interpolator.fast_out_slow_in"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.interpolator.html#fast_out_slow_in" target="_top"><code>fast_out_slow_in</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.interpolator.linear_out_slow_in"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.interpolator.html#linear_out_slow_in" target="_top"><code>linear_out_slow_in</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.R.style.html b/docs/html/sdk/api_diff/21/changes/android.R.style.html
new file mode 100644
index 0000000..64763dd
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.R.style.html
@@ -0,0 +1,1849 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.TextAppearance_Material"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material" target="_top"><code>TextAppearance_Material</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Body1"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Body1" target="_top"><code>TextAppearance_Material_Body1</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Body2"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Body2" target="_top"><code>TextAppearance_Material_Body2</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Button"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Button" target="_top"><code>TextAppearance_Material_Button</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Caption"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Caption" target="_top"><code>TextAppearance_Material_Caption</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_DialogWindowTitle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_DialogWindowTitle" target="_top"><code>TextAppearance_Material_DialogWindowTitle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Display1"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Display1" target="_top"><code>TextAppearance_Material_Display1</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Display2"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Display2" target="_top"><code>TextAppearance_Material_Display2</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Display3"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Display3" target="_top"><code>TextAppearance_Material_Display3</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Display4"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Display4" target="_top"><code>TextAppearance_Material_Display4</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Headline"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Headline" target="_top"><code>TextAppearance_Material_Headline</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Inverse" target="_top"><code>TextAppearance_Material_Inverse</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Large"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Large" target="_top"><code>TextAppearance_Material_Large</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Large_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Large_Inverse" target="_top"><code>TextAppearance_Material_Large_Inverse</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Medium"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Medium" target="_top"><code>TextAppearance_Material_Medium</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Medium_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Medium_Inverse" target="_top"><code>TextAppearance_Material_Medium_Inverse</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Menu"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Menu" target="_top"><code>TextAppearance_Material_Menu</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Notification"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Notification" target="_top"><code>TextAppearance_Material_Notification</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Notification_Emphasis"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Notification_Emphasis" target="_top"><code>TextAppearance_Material_Notification_Emphasis</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Notification_Info"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Notification_Info" target="_top"><code>TextAppearance_Material_Notification_Info</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Notification_Line2"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Notification_Line2" target="_top"><code>TextAppearance_Material_Notification_Line2</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Notification_Time"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Notification_Time" target="_top"><code>TextAppearance_Material_Notification_Time</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Notification_Title"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Notification_Title" target="_top"><code>TextAppearance_Material_Notification_Title</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_SearchResult_Subtitle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_SearchResult_Subtitle" target="_top"><code>TextAppearance_Material_SearchResult_Subtitle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_SearchResult_Title"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_SearchResult_Title" target="_top"><code>TextAppearance_Material_SearchResult_Title</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Small"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Small" target="_top"><code>TextAppearance_Material_Small</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Small_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Small_Inverse" target="_top"><code>TextAppearance_Material_Small_Inverse</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Subhead"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Subhead" target="_top"><code>TextAppearance_Material_Subhead</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Title"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Title" target="_top"><code>TextAppearance_Material_Title</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget" target="_top"><code>TextAppearance_Material_Widget</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_ActionBar_Menu"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_ActionBar_Menu" target="_top"><code>TextAppearance_Material_Widget_ActionBar_Menu</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_ActionBar_Subtitle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_ActionBar_Subtitle" target="_top"><code>TextAppearance_Material_Widget_ActionBar_Subtitle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse" target="_top"><code>TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_ActionBar_Title"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_ActionBar_Title" target="_top"><code>TextAppearance_Material_Widget_ActionBar_Title</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_ActionBar_Title_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_ActionBar_Title_Inverse" target="_top"><code>TextAppearance_Material_Widget_ActionBar_Title_Inverse</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_ActionMode_Subtitle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_ActionMode_Subtitle" target="_top"><code>TextAppearance_Material_Widget_ActionMode_Subtitle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse" target="_top"><code>TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_ActionMode_Title"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_ActionMode_Title" target="_top"><code>TextAppearance_Material_Widget_ActionMode_Title</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_ActionMode_Title_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_ActionMode_Title_Inverse" target="_top"><code>TextAppearance_Material_Widget_ActionMode_Title_Inverse</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_Button"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_Button" target="_top"><code>TextAppearance_Material_Widget_Button</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_DropDownHint"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_DropDownHint" target="_top"><code>TextAppearance_Material_Widget_DropDownHint</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_DropDownItem"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_DropDownItem" target="_top"><code>TextAppearance_Material_Widget_DropDownItem</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_EditText"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_EditText" target="_top"><code>TextAppearance_Material_Widget_EditText</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_IconMenu_Item"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_IconMenu_Item" target="_top"><code>TextAppearance_Material_Widget_IconMenu_Item</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_PopupMenu"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_PopupMenu" target="_top"><code>TextAppearance_Material_Widget_PopupMenu</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_PopupMenu_Large"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_PopupMenu_Large" target="_top"><code>TextAppearance_Material_Widget_PopupMenu_Large</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_PopupMenu_Small"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_PopupMenu_Small" target="_top"><code>TextAppearance_Material_Widget_PopupMenu_Small</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_TabWidget"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_TabWidget" target="_top"><code>TextAppearance_Material_Widget_TabWidget</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_TextView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_TextView" target="_top"><code>TextAppearance_Material_Widget_TextView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_TextView_PopupMenu"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_TextView_PopupMenu" target="_top"><code>TextAppearance_Material_Widget_TextView_PopupMenu</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_TextView_SpinnerItem"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_TextView_SpinnerItem" target="_top"><code>TextAppearance_Material_Widget_TextView_SpinnerItem</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_Toolbar_Subtitle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_Toolbar_Subtitle" target="_top"><code>TextAppearance_Material_Widget_Toolbar_Subtitle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_Toolbar_Title"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_Toolbar_Title" target="_top"><code>TextAppearance_Material_Widget_Toolbar_Title</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_WindowTitle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_WindowTitle" target="_top"><code>TextAppearance_Material_WindowTitle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.ThemeOverlay"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#ThemeOverlay" target="_top"><code>ThemeOverlay</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.ThemeOverlay_Material"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#ThemeOverlay_Material" target="_top"><code>ThemeOverlay_Material</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.ThemeOverlay_Material_ActionBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#ThemeOverlay_Material_ActionBar" target="_top"><code>ThemeOverlay_Material_ActionBar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.ThemeOverlay_Material_Dark"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#ThemeOverlay_Material_Dark" target="_top"><code>ThemeOverlay_Material_Dark</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.ThemeOverlay_Material_Dark_ActionBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#ThemeOverlay_Material_Dark_ActionBar" target="_top"><code>ThemeOverlay_Material_Dark_ActionBar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.ThemeOverlay_Material_Light"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#ThemeOverlay_Material_Light" target="_top"><code>ThemeOverlay_Material_Light</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_DeviceDefault_Settings"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_DeviceDefault_Settings" target="_top"><code>Theme_DeviceDefault_Settings</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material" target="_top"><code>Theme_Material</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Dialog"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Dialog" target="_top"><code>Theme_Material_Dialog</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_DialogWhenLarge"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_DialogWhenLarge" target="_top"><code>Theme_Material_DialogWhenLarge</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_DialogWhenLarge_NoActionBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_DialogWhenLarge_NoActionBar" target="_top"><code>Theme_Material_DialogWhenLarge_NoActionBar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Dialog_Alert"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Dialog_Alert" target="_top"><code>Theme_Material_Dialog_Alert</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Dialog_MinWidth"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Dialog_MinWidth" target="_top"><code>Theme_Material_Dialog_MinWidth</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Dialog_NoActionBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Dialog_NoActionBar" target="_top"><code>Theme_Material_Dialog_NoActionBar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Dialog_NoActionBar_MinWidth"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Dialog_NoActionBar_MinWidth" target="_top"><code>Theme_Material_Dialog_NoActionBar_MinWidth</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Dialog_Presentation"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Dialog_Presentation" target="_top"><code>Theme_Material_Dialog_Presentation</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_InputMethod"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_InputMethod" target="_top"><code>Theme_Material_InputMethod</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light" target="_top"><code>Theme_Material_Light</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_DarkActionBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_DarkActionBar" target="_top"><code>Theme_Material_Light_DarkActionBar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_Dialog"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_Dialog" target="_top"><code>Theme_Material_Light_Dialog</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_DialogWhenLarge"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_DialogWhenLarge" target="_top"><code>Theme_Material_Light_DialogWhenLarge</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_DialogWhenLarge_NoActionBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_DialogWhenLarge_NoActionBar" target="_top"><code>Theme_Material_Light_DialogWhenLarge_NoActionBar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_Dialog_Alert"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_Dialog_Alert" target="_top"><code>Theme_Material_Light_Dialog_Alert</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_Dialog_MinWidth"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_Dialog_MinWidth" target="_top"><code>Theme_Material_Light_Dialog_MinWidth</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_Dialog_NoActionBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_Dialog_NoActionBar" target="_top"><code>Theme_Material_Light_Dialog_NoActionBar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_Dialog_NoActionBar_MinWidth"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_Dialog_NoActionBar_MinWidth" target="_top"><code>Theme_Material_Light_Dialog_NoActionBar_MinWidth</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_Dialog_Presentation"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_Dialog_Presentation" target="_top"><code>Theme_Material_Light_Dialog_Presentation</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_NoActionBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_NoActionBar" target="_top"><code>Theme_Material_Light_NoActionBar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_NoActionBar_Fullscreen"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_NoActionBar_Fullscreen" target="_top"><code>Theme_Material_Light_NoActionBar_Fullscreen</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_NoActionBar_Overscan"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_NoActionBar_Overscan" target="_top"><code>Theme_Material_Light_NoActionBar_Overscan</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_NoActionBar_TranslucentDecor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_NoActionBar_TranslucentDecor" target="_top"><code>Theme_Material_Light_NoActionBar_TranslucentDecor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_Panel"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_Panel" target="_top"><code>Theme_Material_Light_Panel</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_Voice"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_Voice" target="_top"><code>Theme_Material_Light_Voice</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_NoActionBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_NoActionBar" target="_top"><code>Theme_Material_NoActionBar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_NoActionBar_Fullscreen"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_NoActionBar_Fullscreen" target="_top"><code>Theme_Material_NoActionBar_Fullscreen</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_NoActionBar_Overscan"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_NoActionBar_Overscan" target="_top"><code>Theme_Material_NoActionBar_Overscan</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_NoActionBar_TranslucentDecor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_NoActionBar_TranslucentDecor" target="_top"><code>Theme_Material_NoActionBar_TranslucentDecor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Panel"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Panel" target="_top"><code>Theme_Material_Panel</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Settings"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Settings" target="_top"><code>Theme_Material_Settings</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Voice"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Voice" target="_top"><code>Theme_Material_Voice</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Wallpaper"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Wallpaper" target="_top"><code>Theme_Material_Wallpaper</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Wallpaper_NoTitleBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Wallpaper_NoTitleBar" target="_top"><code>Theme_Material_Wallpaper_NoTitleBar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_DeviceDefault_FastScroll"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_DeviceDefault_FastScroll" target="_top"><code>Widget_DeviceDefault_FastScroll</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_DeviceDefault_Light_FastScroll"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_DeviceDefault_Light_FastScroll" target="_top"><code>Widget_DeviceDefault_Light_FastScroll</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_DeviceDefault_Light_StackView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_DeviceDefault_Light_StackView" target="_top"><code>Widget_DeviceDefault_Light_StackView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_DeviceDefault_StackView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_DeviceDefault_StackView" target="_top"><code>Widget_DeviceDefault_StackView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_FastScroll"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_FastScroll" target="_top"><code>Widget_FastScroll</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material" target="_top"><code>Widget_Material</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ActionBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ActionBar" target="_top"><code>Widget_Material_ActionBar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ActionBar_Solid"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ActionBar_Solid" target="_top"><code>Widget_Material_ActionBar_Solid</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ActionBar_TabBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ActionBar_TabBar" target="_top"><code>Widget_Material_ActionBar_TabBar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ActionBar_TabText"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ActionBar_TabText" target="_top"><code>Widget_Material_ActionBar_TabText</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ActionBar_TabView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ActionBar_TabView" target="_top"><code>Widget_Material_ActionBar_TabView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ActionButton"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ActionButton" target="_top"><code>Widget_Material_ActionButton</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ActionButton_CloseMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ActionButton_CloseMode" target="_top"><code>Widget_Material_ActionButton_CloseMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ActionButton_Overflow"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ActionButton_Overflow" target="_top"><code>Widget_Material_ActionButton_Overflow</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ActionMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ActionMode" target="_top"><code>Widget_Material_ActionMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_AutoCompleteTextView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_AutoCompleteTextView" target="_top"><code>Widget_Material_AutoCompleteTextView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Button"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Button" target="_top"><code>Widget_Material_Button</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ButtonBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ButtonBar" target="_top"><code>Widget_Material_ButtonBar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ButtonBar_AlertDialog"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ButtonBar_AlertDialog" target="_top"><code>Widget_Material_ButtonBar_AlertDialog</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Button_Borderless"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Button_Borderless" target="_top"><code>Widget_Material_Button_Borderless</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Button_Borderless_Colored"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Button_Borderless_Colored" target="_top"><code>Widget_Material_Button_Borderless_Colored</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Button_Borderless_Small"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Button_Borderless_Small" target="_top"><code>Widget_Material_Button_Borderless_Small</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Button_Inset"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Button_Inset" target="_top"><code>Widget_Material_Button_Inset</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Button_Small"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Button_Small" target="_top"><code>Widget_Material_Button_Small</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Button_Toggle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Button_Toggle" target="_top"><code>Widget_Material_Button_Toggle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_CalendarView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_CalendarView" target="_top"><code>Widget_Material_CalendarView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_CheckedTextView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_CheckedTextView" target="_top"><code>Widget_Material_CheckedTextView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_CompoundButton_CheckBox"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_CompoundButton_CheckBox" target="_top"><code>Widget_Material_CompoundButton_CheckBox</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_CompoundButton_RadioButton"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_CompoundButton_RadioButton" target="_top"><code>Widget_Material_CompoundButton_RadioButton</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_CompoundButton_Star"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_CompoundButton_Star" target="_top"><code>Widget_Material_CompoundButton_Star</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_DatePicker"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_DatePicker" target="_top"><code>Widget_Material_DatePicker</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_DropDownItem"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_DropDownItem" target="_top"><code>Widget_Material_DropDownItem</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_DropDownItem_Spinner"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_DropDownItem_Spinner" target="_top"><code>Widget_Material_DropDownItem_Spinner</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_EditText"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_EditText" target="_top"><code>Widget_Material_EditText</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ExpandableListView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ExpandableListView" target="_top"><code>Widget_Material_ExpandableListView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_FastScroll"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_FastScroll" target="_top"><code>Widget_Material_FastScroll</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_GridView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_GridView" target="_top"><code>Widget_Material_GridView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_HorizontalScrollView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_HorizontalScrollView" target="_top"><code>Widget_Material_HorizontalScrollView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ImageButton"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ImageButton" target="_top"><code>Widget_Material_ImageButton</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light" target="_top"><code>Widget_Material_Light</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ActionBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ActionBar" target="_top"><code>Widget_Material_Light_ActionBar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ActionBar_Solid"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ActionBar_Solid" target="_top"><code>Widget_Material_Light_ActionBar_Solid</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ActionBar_TabBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ActionBar_TabBar" target="_top"><code>Widget_Material_Light_ActionBar_TabBar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ActionBar_TabText"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ActionBar_TabText" target="_top"><code>Widget_Material_Light_ActionBar_TabText</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ActionBar_TabView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ActionBar_TabView" target="_top"><code>Widget_Material_Light_ActionBar_TabView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ActionButton"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ActionButton" target="_top"><code>Widget_Material_Light_ActionButton</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ActionButton_CloseMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ActionButton_CloseMode" target="_top"><code>Widget_Material_Light_ActionButton_CloseMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ActionButton_Overflow"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ActionButton_Overflow" target="_top"><code>Widget_Material_Light_ActionButton_Overflow</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ActionMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ActionMode" target="_top"><code>Widget_Material_Light_ActionMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_AutoCompleteTextView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_AutoCompleteTextView" target="_top"><code>Widget_Material_Light_AutoCompleteTextView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_Button"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_Button" target="_top"><code>Widget_Material_Light_Button</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ButtonBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ButtonBar" target="_top"><code>Widget_Material_Light_ButtonBar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ButtonBar_AlertDialog"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ButtonBar_AlertDialog" target="_top"><code>Widget_Material_Light_ButtonBar_AlertDialog</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_Button_Borderless"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_Button_Borderless" target="_top"><code>Widget_Material_Light_Button_Borderless</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_Button_Borderless_Colored"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_Button_Borderless_Colored" target="_top"><code>Widget_Material_Light_Button_Borderless_Colored</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_Button_Borderless_Small"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_Button_Borderless_Small" target="_top"><code>Widget_Material_Light_Button_Borderless_Small</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_Button_Inset"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_Button_Inset" target="_top"><code>Widget_Material_Light_Button_Inset</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_Button_Small"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_Button_Small" target="_top"><code>Widget_Material_Light_Button_Small</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_Button_Toggle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_Button_Toggle" target="_top"><code>Widget_Material_Light_Button_Toggle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_CalendarView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_CalendarView" target="_top"><code>Widget_Material_Light_CalendarView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_CheckedTextView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_CheckedTextView" target="_top"><code>Widget_Material_Light_CheckedTextView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_CompoundButton_CheckBox"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_CompoundButton_CheckBox" target="_top"><code>Widget_Material_Light_CompoundButton_CheckBox</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_CompoundButton_RadioButton"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_CompoundButton_RadioButton" target="_top"><code>Widget_Material_Light_CompoundButton_RadioButton</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_CompoundButton_Star"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_CompoundButton_Star" target="_top"><code>Widget_Material_Light_CompoundButton_Star</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_DatePicker"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_DatePicker" target="_top"><code>Widget_Material_Light_DatePicker</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_DropDownItem"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_DropDownItem" target="_top"><code>Widget_Material_Light_DropDownItem</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_DropDownItem_Spinner"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_DropDownItem_Spinner" target="_top"><code>Widget_Material_Light_DropDownItem_Spinner</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_EditText"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_EditText" target="_top"><code>Widget_Material_Light_EditText</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ExpandableListView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ExpandableListView" target="_top"><code>Widget_Material_Light_ExpandableListView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_FastScroll"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_FastScroll" target="_top"><code>Widget_Material_Light_FastScroll</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_GridView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_GridView" target="_top"><code>Widget_Material_Light_GridView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_HorizontalScrollView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_HorizontalScrollView" target="_top"><code>Widget_Material_Light_HorizontalScrollView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ImageButton"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ImageButton" target="_top"><code>Widget_Material_Light_ImageButton</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ListPopupWindow"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ListPopupWindow" target="_top"><code>Widget_Material_Light_ListPopupWindow</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ListView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ListView" target="_top"><code>Widget_Material_Light_ListView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ListView_DropDown"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ListView_DropDown" target="_top"><code>Widget_Material_Light_ListView_DropDown</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_MediaRouteButton"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_MediaRouteButton" target="_top"><code>Widget_Material_Light_MediaRouteButton</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_PopupMenu"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_PopupMenu" target="_top"><code>Widget_Material_Light_PopupMenu</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_PopupMenu_Overflow"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_PopupMenu_Overflow" target="_top"><code>Widget_Material_Light_PopupMenu_Overflow</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_PopupWindow"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_PopupWindow" target="_top"><code>Widget_Material_Light_PopupWindow</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ProgressBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ProgressBar" target="_top"><code>Widget_Material_Light_ProgressBar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ProgressBar_Horizontal"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ProgressBar_Horizontal" target="_top"><code>Widget_Material_Light_ProgressBar_Horizontal</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ProgressBar_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ProgressBar_Inverse" target="_top"><code>Widget_Material_Light_ProgressBar_Inverse</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ProgressBar_Large"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ProgressBar_Large" target="_top"><code>Widget_Material_Light_ProgressBar_Large</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ProgressBar_Large_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ProgressBar_Large_Inverse" target="_top"><code>Widget_Material_Light_ProgressBar_Large_Inverse</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ProgressBar_Small"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ProgressBar_Small" target="_top"><code>Widget_Material_Light_ProgressBar_Small</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ProgressBar_Small_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ProgressBar_Small_Inverse" target="_top"><code>Widget_Material_Light_ProgressBar_Small_Inverse</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ProgressBar_Small_Title"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ProgressBar_Small_Title" target="_top"><code>Widget_Material_Light_ProgressBar_Small_Title</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_RatingBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_RatingBar" target="_top"><code>Widget_Material_Light_RatingBar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_RatingBar_Indicator"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_RatingBar_Indicator" target="_top"><code>Widget_Material_Light_RatingBar_Indicator</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_RatingBar_Small"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_RatingBar_Small" target="_top"><code>Widget_Material_Light_RatingBar_Small</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ScrollView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ScrollView" target="_top"><code>Widget_Material_Light_ScrollView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_SearchView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_SearchView" target="_top"><code>Widget_Material_Light_SearchView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_SeekBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_SeekBar" target="_top"><code>Widget_Material_Light_SeekBar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_SegmentedButton"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_SegmentedButton" target="_top"><code>Widget_Material_Light_SegmentedButton</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_Spinner"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_Spinner" target="_top"><code>Widget_Material_Light_Spinner</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_Spinner_Underlined"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_Spinner_Underlined" target="_top"><code>Widget_Material_Light_Spinner_Underlined</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_StackView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_StackView" target="_top"><code>Widget_Material_Light_StackView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_Tab"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_Tab" target="_top"><code>Widget_Material_Light_Tab</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_TabWidget"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_TabWidget" target="_top"><code>Widget_Material_Light_TabWidget</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_TextView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_TextView" target="_top"><code>Widget_Material_Light_TextView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_TextView_SpinnerItem"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_TextView_SpinnerItem" target="_top"><code>Widget_Material_Light_TextView_SpinnerItem</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_TimePicker"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_TimePicker" target="_top"><code>Widget_Material_Light_TimePicker</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_WebTextView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_WebTextView" target="_top"><code>Widget_Material_Light_WebTextView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_WebView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_WebView" target="_top"><code>Widget_Material_Light_WebView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ListPopupWindow"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ListPopupWindow" target="_top"><code>Widget_Material_ListPopupWindow</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ListView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ListView" target="_top"><code>Widget_Material_ListView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ListView_DropDown"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ListView_DropDown" target="_top"><code>Widget_Material_ListView_DropDown</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_MediaRouteButton"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_MediaRouteButton" target="_top"><code>Widget_Material_MediaRouteButton</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_PopupMenu"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_PopupMenu" target="_top"><code>Widget_Material_PopupMenu</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_PopupMenu_Overflow"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_PopupMenu_Overflow" target="_top"><code>Widget_Material_PopupMenu_Overflow</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_PopupWindow"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_PopupWindow" target="_top"><code>Widget_Material_PopupWindow</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ProgressBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ProgressBar" target="_top"><code>Widget_Material_ProgressBar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ProgressBar_Horizontal"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ProgressBar_Horizontal" target="_top"><code>Widget_Material_ProgressBar_Horizontal</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ProgressBar_Large"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ProgressBar_Large" target="_top"><code>Widget_Material_ProgressBar_Large</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ProgressBar_Small"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ProgressBar_Small" target="_top"><code>Widget_Material_ProgressBar_Small</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ProgressBar_Small_Title"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ProgressBar_Small_Title" target="_top"><code>Widget_Material_ProgressBar_Small_Title</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_RatingBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_RatingBar" target="_top"><code>Widget_Material_RatingBar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_RatingBar_Indicator"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_RatingBar_Indicator" target="_top"><code>Widget_Material_RatingBar_Indicator</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_RatingBar_Small"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_RatingBar_Small" target="_top"><code>Widget_Material_RatingBar_Small</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ScrollView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ScrollView" target="_top"><code>Widget_Material_ScrollView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_SearchView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_SearchView" target="_top"><code>Widget_Material_SearchView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_SeekBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_SeekBar" target="_top"><code>Widget_Material_SeekBar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_SegmentedButton"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_SegmentedButton" target="_top"><code>Widget_Material_SegmentedButton</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Spinner"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Spinner" target="_top"><code>Widget_Material_Spinner</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Spinner_Underlined"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Spinner_Underlined" target="_top"><code>Widget_Material_Spinner_Underlined</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_StackView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_StackView" target="_top"><code>Widget_Material_StackView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Tab"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Tab" target="_top"><code>Widget_Material_Tab</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_TabWidget"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_TabWidget" target="_top"><code>Widget_Material_TabWidget</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_TextView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_TextView" target="_top"><code>Widget_Material_TextView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_TextView_SpinnerItem"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_TextView_SpinnerItem" target="_top"><code>Widget_Material_TextView_SpinnerItem</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_TimePicker"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_TimePicker" target="_top"><code>Widget_Material_TimePicker</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Toolbar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Toolbar" target="_top"><code>Widget_Material_Toolbar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Toolbar_Button_Navigation"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Toolbar_Button_Navigation" target="_top"><code>Widget_Material_Toolbar_Button_Navigation</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_WebTextView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_WebTextView" target="_top"><code>Widget_Material_WebTextView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_WebView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_WebView" target="_top"><code>Widget_Material_WebView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_StackView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_StackView" target="_top"><code>Widget_StackView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Toolbar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Toolbar" target="_top"><code>Widget_Toolbar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Toolbar_Button_Navigation"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Toolbar_Button_Navigation" target="_top"><code>Widget_Toolbar_Button_Navigation</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.R.style.TextAppearance_DeviceDefault_Widget_ActionBar_Subtitle_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_DeviceDefault_Widget_ActionBar_Subtitle_Inverse" target="_top"><code>TextAppearance_DeviceDefault_Widget_ActionBar_Subtitle_Inverse</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_DeviceDefault_Widget_ActionBar_Title_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_DeviceDefault_Widget_ActionBar_Title_Inverse" target="_top"><code>TextAppearance_DeviceDefault_Widget_ActionBar_Title_Inverse</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_DeviceDefault_Widget_ActionMode_Subtitle_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_DeviceDefault_Widget_ActionMode_Subtitle_Inverse" target="_top"><code>TextAppearance_DeviceDefault_Widget_ActionMode_Subtitle_Inverse</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_DeviceDefault_Widget_ActionMode_Title_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_DeviceDefault_Widget_ActionMode_Title_Inverse" target="_top"><code>TextAppearance_DeviceDefault_Widget_ActionMode_Title_Inverse</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_DeviceDefault_Light_ActionBar_Solid_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_DeviceDefault_Light_ActionBar_Solid_Inverse" target="_top"><code>Widget_DeviceDefault_Light_ActionBar_Solid_Inverse</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_DeviceDefault_Light_ActionBar_TabBar_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_DeviceDefault_Light_ActionBar_TabBar_Inverse" target="_top"><code>Widget_DeviceDefault_Light_ActionBar_TabBar_Inverse</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_DeviceDefault_Light_ActionBar_TabText_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_DeviceDefault_Light_ActionBar_TabText_Inverse" target="_top"><code>Widget_DeviceDefault_Light_ActionBar_TabText_Inverse</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_DeviceDefault_Light_ActionBar_TabView_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_DeviceDefault_Light_ActionBar_TabView_Inverse" target="_top"><code>Widget_DeviceDefault_Light_ActionBar_TabView_Inverse</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_DeviceDefault_Light_ActionMode_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_DeviceDefault_Light_ActionMode_Inverse" target="_top"><code>Widget_DeviceDefault_Light_ActionMode_Inverse</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.accessibilityservice.AccessibilityService.html b/docs/html/sdk/api_diff/21/changes/android.accessibilityservice.AccessibilityService.html
new file mode 100644
index 0000000..41c6c99
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.accessibilityservice.AccessibilityService.html
@@ -0,0 +1,144 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.accessibilityservice.AccessibilityService
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.accessibilityservice.<A HREF="../../../../reference/android/accessibilityservice/AccessibilityService.html" target="_top"><font size="+2"><code>AccessibilityService</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.accessibilityservice.AccessibilityService.findFocus_added(int)"></A>
+  <nobr><code>AccessibilityNodeInfo</code>&nbsp;<A HREF="../../../../reference/android/accessibilityservice/AccessibilityService.html#findFocus(int)" target="_top"><code>findFocus</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.accessibilityservice.AccessibilityService.getWindows_added()"></A>
+  <nobr><code>List&lt;AccessibilityWindowInfo&gt;</code>&nbsp;<A HREF="../../../../reference/android/accessibilityservice/AccessibilityService.html#getWindows()" target="_top"><code>getWindows</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.accessibilityservice.AccessibilityService.GLOBAL_ACTION_POWER_DIALOG"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/accessibilityservice/AccessibilityService.html#GLOBAL_ACTION_POWER_DIALOG" target="_top"><code>GLOBAL_ACTION_POWER_DIALOG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.accessibilityservice.AccessibilityServiceInfo.html b/docs/html/sdk/api_diff/21/changes/android.accessibilityservice.AccessibilityServiceInfo.html
new file mode 100644
index 0000000..d2e7c94
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.accessibilityservice.AccessibilityServiceInfo.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.accessibilityservice.AccessibilityServiceInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.accessibilityservice.<A HREF="../../../../reference/android/accessibilityservice/AccessibilityServiceInfo.html" target="_top"><font size="+2"><code>AccessibilityServiceInfo</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.accessibilityservice.AccessibilityServiceInfo.FLAG_RETRIEVE_INTERACTIVE_WINDOWS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/accessibilityservice/AccessibilityServiceInfo.html#FLAG_RETRIEVE_INTERACTIVE_WINDOWS" target="_top"><code>FLAG_RETRIEVE_INTERACTIVE_WINDOWS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.accounts.AccountManager.html b/docs/html/sdk/api_diff/21/changes/android.accounts.AccountManager.html
new file mode 100644
index 0000000..90dacf1
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.accounts.AccountManager.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.accounts.AccountManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.accounts.<A HREF="../../../../reference/android/accounts/AccountManager.html" target="_top"><font size="+2"><code>AccountManager</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.accounts.AccountManager.getPreviousName_added(android.accounts.Account)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/accounts/AccountManager.html#getPreviousName(android.accounts.Account)" target="_top"><code>getPreviousName</code></A>(<code>Account</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.accounts.AccountManager.renameAccount_added(android.accounts.Account, java.lang.String, android.accounts.AccountManagerCallback<android.accounts.Account>, android.os.Handler)"></A>
+  <nobr><code>AccountManagerFuture&lt;Account&gt;</code>&nbsp;<A HREF="../../../../reference/android/accounts/AccountManager.html#renameAccount(android.accounts.Account, java.lang.String, android.accounts.AccountManagerCallback<android.accounts.Account>, android.os.Handler)" target="_top"><code>renameAccount</code></A>(<code>Account,</nobr> String<nobr>,</nobr> AccountManagerCallback&lt;Account&gt;<nobr>,</nobr> Handler<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.animation.AnimatorInflater.html b/docs/html/sdk/api_diff/21/changes/android.animation.AnimatorInflater.html
new file mode 100644
index 0000000..0d3f870
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.animation.AnimatorInflater.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.animation.AnimatorInflater
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.animation.<A HREF="../../../../reference/android/animation/AnimatorInflater.html" target="_top"><font size="+2"><code>AnimatorInflater</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.animation.AnimatorInflater.loadStateListAnimator_added(android.content.Context, int)"></A>
+  <nobr><code>StateListAnimator</code>&nbsp;<A HREF="../../../../reference/android/animation/AnimatorInflater.html#loadStateListAnimator(android.content.Context, int)" target="_top"><code>loadStateListAnimator</code></A>(<code>Context,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.animation.ObjectAnimator.html b/docs/html/sdk/api_diff/21/changes/android.animation.ObjectAnimator.html
new file mode 100644
index 0000000..4e352a2
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.animation.ObjectAnimator.html
@@ -0,0 +1,220 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.animation.ObjectAnimator
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.animation.<A HREF="../../../../reference/android/animation/ObjectAnimator.html" target="_top"><font size="+2"><code>ObjectAnimator</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.animation.ObjectAnimator.ofArgb_added(T, android.util.Property<T, java.lang.Integer>, int...)"></A>
+  <nobr><code>ObjectAnimator</code>&nbsp;<A HREF="../../../../reference/android/animation/ObjectAnimator.html#ofArgb(T, android.util.Property<T, java.lang.Integer>, int...)" target="_top"><code>ofArgb</code></A>(<code>T,</nobr> Property&lt;T<nobr>,</nobr> Integer&gt;<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.ObjectAnimator.ofArgb_added(java.lang.Object, java.lang.String, int...)"></A>
+  <nobr><code>ObjectAnimator</code>&nbsp;<A HREF="../../../../reference/android/animation/ObjectAnimator.html#ofArgb(java.lang.Object, java.lang.String, int...)" target="_top"><code>ofArgb</code></A>(<code>Object,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.ObjectAnimator.ofFloat_added(T, android.util.Property<T, java.lang.Float>, android.util.Property<T, java.lang.Float>, android.graphics.Path)"></A>
+  <nobr><code>ObjectAnimator</code>&nbsp;<A HREF="../../../../reference/android/animation/ObjectAnimator.html#ofFloat(T, android.util.Property<T, java.lang.Float>, android.util.Property<T, java.lang.Float>, android.graphics.Path)" target="_top"><code>ofFloat</code></A>(<code>T,</nobr> Property&lt;T<nobr>,</nobr> Float&gt;<nobr>,</nobr> Property&lt;T<nobr>,</nobr> Float&gt;<nobr>,</nobr> Path<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.ObjectAnimator.ofFloat_added(java.lang.Object, java.lang.String, java.lang.String, android.graphics.Path)"></A>
+  <nobr><code>ObjectAnimator</code>&nbsp;<A HREF="../../../../reference/android/animation/ObjectAnimator.html#ofFloat(java.lang.Object, java.lang.String, java.lang.String, android.graphics.Path)" target="_top"><code>ofFloat</code></A>(<code>Object,</nobr> String<nobr>,</nobr> String<nobr>,</nobr> Path<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.ObjectAnimator.ofInt_added(T, android.util.Property<T, java.lang.Integer>, android.util.Property<T, java.lang.Integer>, android.graphics.Path)"></A>
+  <nobr><code>ObjectAnimator</code>&nbsp;<A HREF="../../../../reference/android/animation/ObjectAnimator.html#ofInt(T, android.util.Property<T, java.lang.Integer>, android.util.Property<T, java.lang.Integer>, android.graphics.Path)" target="_top"><code>ofInt</code></A>(<code>T,</nobr> Property&lt;T<nobr>,</nobr> Integer&gt;<nobr>,</nobr> Property&lt;T<nobr>,</nobr> Integer&gt;<nobr>,</nobr> Path<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.ObjectAnimator.ofInt_added(java.lang.Object, java.lang.String, java.lang.String, android.graphics.Path)"></A>
+  <nobr><code>ObjectAnimator</code>&nbsp;<A HREF="../../../../reference/android/animation/ObjectAnimator.html#ofInt(java.lang.Object, java.lang.String, java.lang.String, android.graphics.Path)" target="_top"><code>ofInt</code></A>(<code>Object,</nobr> String<nobr>,</nobr> String<nobr>,</nobr> Path<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.ObjectAnimator.ofMultiFloat_added(java.lang.Object, java.lang.String, android.animation.TypeConverter<T, float[]>, android.animation.TypeEvaluator<T>, T...)"></A>
+  <nobr><code>ObjectAnimator</code>&nbsp;<A HREF="../../../../reference/android/animation/ObjectAnimator.html#ofMultiFloat(java.lang.Object, java.lang.String, android.animation.TypeConverter<T, float[]>, android.animation.TypeEvaluator<T>, T...)" target="_top"><code>ofMultiFloat</code></A>(<code>Object,</nobr> String<nobr>,</nobr> TypeConverter&lt;T<nobr>,</nobr> float[]&gt;<nobr>,</nobr> TypeEvaluator&lt;T&gt;<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.ObjectAnimator.ofMultiFloat_added(java.lang.Object, java.lang.String, android.graphics.Path)"></A>
+  <nobr><code>ObjectAnimator</code>&nbsp;<A HREF="../../../../reference/android/animation/ObjectAnimator.html#ofMultiFloat(java.lang.Object, java.lang.String, android.graphics.Path)" target="_top"><code>ofMultiFloat</code></A>(<code>Object,</nobr> String<nobr>,</nobr> Path<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.ObjectAnimator.ofMultiFloat_added(java.lang.Object, java.lang.String, float[][])"></A>
+  <nobr><code>ObjectAnimator</code>&nbsp;<A HREF="../../../../reference/android/animation/ObjectAnimator.html#ofMultiFloat(java.lang.Object, java.lang.String, float[][])" target="_top"><code>ofMultiFloat</code></A>(<code>Object,</nobr> String<nobr>,</nobr> float[][]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.ObjectAnimator.ofMultiInt_added(java.lang.Object, java.lang.String, android.animation.TypeConverter<T, int[]>, android.animation.TypeEvaluator<T>, T...)"></A>
+  <nobr><code>ObjectAnimator</code>&nbsp;<A HREF="../../../../reference/android/animation/ObjectAnimator.html#ofMultiInt(java.lang.Object, java.lang.String, android.animation.TypeConverter<T, int[]>, android.animation.TypeEvaluator<T>, T...)" target="_top"><code>ofMultiInt</code></A>(<code>Object,</nobr> String<nobr>,</nobr> TypeConverter&lt;T<nobr>,</nobr> int[]&gt;<nobr>,</nobr> TypeEvaluator&lt;T&gt;<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.ObjectAnimator.ofMultiInt_added(java.lang.Object, java.lang.String, android.graphics.Path)"></A>
+  <nobr><code>ObjectAnimator</code>&nbsp;<A HREF="../../../../reference/android/animation/ObjectAnimator.html#ofMultiInt(java.lang.Object, java.lang.String, android.graphics.Path)" target="_top"><code>ofMultiInt</code></A>(<code>Object,</nobr> String<nobr>,</nobr> Path<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.ObjectAnimator.ofMultiInt_added(java.lang.Object, java.lang.String, int[][])"></A>
+  <nobr><code>ObjectAnimator</code>&nbsp;<A HREF="../../../../reference/android/animation/ObjectAnimator.html#ofMultiInt(java.lang.Object, java.lang.String, int[][])" target="_top"><code>ofMultiInt</code></A>(<code>Object,</nobr> String<nobr>,</nobr> int[][]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.ObjectAnimator.ofObject_added(T, android.util.Property<T, P>, android.animation.TypeConverter<V, P>, android.animation.TypeEvaluator<V>, V...)"></A>
+  <nobr><code>ObjectAnimator</code>&nbsp;<A HREF="../../../../reference/android/animation/ObjectAnimator.html#ofObject(T, android.util.Property<T, P>, android.animation.TypeConverter<V, P>, android.animation.TypeEvaluator<V>, V...)" target="_top"><code>ofObject</code></A>(<code>T,</nobr> Property&lt;T<nobr>,</nobr> P&gt;<nobr>,</nobr> TypeConverter&lt;V<nobr>,</nobr> P&gt;<nobr>,</nobr> TypeEvaluator&lt;V&gt;<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.ObjectAnimator.ofObject_added(T, android.util.Property<T, V>, android.animation.TypeConverter<android.graphics.PointF, V>, android.graphics.Path)"></A>
+  <nobr><code>ObjectAnimator</code>&nbsp;<A HREF="../../../../reference/android/animation/ObjectAnimator.html#ofObject(T, android.util.Property<T, V>, android.animation.TypeConverter<android.graphics.PointF, V>, android.graphics.Path)" target="_top"><code>ofObject</code></A>(<code>T,</nobr> Property&lt;T<nobr>,</nobr> V&gt;<nobr>,</nobr> TypeConverter&lt;PointF<nobr>,</nobr> V&gt;<nobr>,</nobr> Path<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.ObjectAnimator.ofObject_added(java.lang.Object, java.lang.String, android.animation.TypeConverter<android.graphics.PointF, ?>, android.graphics.Path)"></A>
+  <nobr><code>ObjectAnimator</code>&nbsp;<A HREF="../../../../reference/android/animation/ObjectAnimator.html#ofObject(java.lang.Object, java.lang.String, android.animation.TypeConverter<android.graphics.PointF, ?>, android.graphics.Path)" target="_top"><code>ofObject</code></A>(<code>Object,</nobr> String<nobr>,</nobr> TypeConverter&lt;PointF<nobr>,</nobr> ?&gt;<nobr>,</nobr> Path<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.animation.PropertyValuesHolder.html b/docs/html/sdk/api_diff/21/changes/android.animation.PropertyValuesHolder.html
new file mode 100644
index 0000000..2e2c1e1
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.animation.PropertyValuesHolder.html
@@ -0,0 +1,199 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.animation.PropertyValuesHolder
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.animation.<A HREF="../../../../reference/android/animation/PropertyValuesHolder.html" target="_top"><font size="+2"><code>PropertyValuesHolder</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.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, android.animation.TypeConverter<T, float[]>, android.animation.TypeEvaluator<T>, android.animation.Keyframe...)"></A>
+  <nobr><code>PropertyValuesHolder</code>&nbsp;<A HREF="../../../../reference/android/animation/PropertyValuesHolder.html#ofMultiFloat(java.lang.String, android.animation.TypeConverter<T, float[]>, android.animation.TypeEvaluator<T>, android.animation.Keyframe...)" target="_top"><code>ofMultiFloat</code></A>(<code>String,</nobr> TypeConverter&lt;T<nobr>,</nobr> float[]&gt;<nobr>,</nobr> TypeEvaluator&lt;T&gt;<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, android.animation.TypeConverter<V, float[]>, android.animation.TypeEvaluator<V>, V...)"></A>
+  <nobr><code>PropertyValuesHolder</code>&nbsp;<A HREF="../../../../reference/android/animation/PropertyValuesHolder.html#ofMultiFloat(java.lang.String, android.animation.TypeConverter<V, float[]>, android.animation.TypeEvaluator<V>, V...)" target="_top"><code>ofMultiFloat</code></A>(<code>String,</nobr> TypeConverter&lt;V<nobr>,</nobr> float[]&gt;<nobr>,</nobr> TypeEvaluator&lt;V&gt;<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, android.graphics.Path)"></A>
+  <nobr><code>PropertyValuesHolder</code>&nbsp;<A HREF="../../../../reference/android/animation/PropertyValuesHolder.html#ofMultiFloat(java.lang.String, android.graphics.Path)" target="_top"><code>ofMultiFloat</code></A>(<code>String,</nobr> Path<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, float[][])"></A>
+  <nobr><code>PropertyValuesHolder</code>&nbsp;<A HREF="../../../../reference/android/animation/PropertyValuesHolder.html#ofMultiFloat(java.lang.String, float[][])" target="_top"><code>ofMultiFloat</code></A>(<code>String,</nobr> float[][]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, android.animation.TypeConverter<T, int[]>, android.animation.TypeEvaluator<T>, android.animation.Keyframe...)"></A>
+  <nobr><code>PropertyValuesHolder</code>&nbsp;<A HREF="../../../../reference/android/animation/PropertyValuesHolder.html#ofMultiInt(java.lang.String, android.animation.TypeConverter<T, int[]>, android.animation.TypeEvaluator<T>, android.animation.Keyframe...)" target="_top"><code>ofMultiInt</code></A>(<code>String,</nobr> TypeConverter&lt;T<nobr>,</nobr> int[]&gt;<nobr>,</nobr> TypeEvaluator&lt;T&gt;<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, android.animation.TypeConverter<V, int[]>, android.animation.TypeEvaluator<V>, V...)"></A>
+  <nobr><code>PropertyValuesHolder</code>&nbsp;<A HREF="../../../../reference/android/animation/PropertyValuesHolder.html#ofMultiInt(java.lang.String, android.animation.TypeConverter<V, int[]>, android.animation.TypeEvaluator<V>, V...)" target="_top"><code>ofMultiInt</code></A>(<code>String,</nobr> TypeConverter&lt;V<nobr>,</nobr> int[]&gt;<nobr>,</nobr> TypeEvaluator&lt;V&gt;<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, android.graphics.Path)"></A>
+  <nobr><code>PropertyValuesHolder</code>&nbsp;<A HREF="../../../../reference/android/animation/PropertyValuesHolder.html#ofMultiInt(java.lang.String, android.graphics.Path)" target="_top"><code>ofMultiInt</code></A>(<code>String,</nobr> Path<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, int[][])"></A>
+  <nobr><code>PropertyValuesHolder</code>&nbsp;<A HREF="../../../../reference/android/animation/PropertyValuesHolder.html#ofMultiInt(java.lang.String, int[][])" target="_top"><code>ofMultiInt</code></A>(<code>String,</nobr> int[][]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.PropertyValuesHolder.ofObject_added(android.util.Property<?, V>, android.animation.TypeConverter<T, V>, android.animation.TypeEvaluator<T>, T...)"></A>
+  <nobr><code>PropertyValuesHolder</code>&nbsp;<A HREF="../../../../reference/android/animation/PropertyValuesHolder.html#ofObject(android.util.Property<?, V>, android.animation.TypeConverter<T, V>, android.animation.TypeEvaluator<T>, T...)" target="_top"><code>ofObject</code></A>(<code>Property&lt;?,</nobr> V&gt;<nobr>,</nobr> TypeConverter&lt;T<nobr>,</nobr> V&gt;<nobr>,</nobr> TypeEvaluator&lt;T&gt;<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.PropertyValuesHolder.ofObject_added(android.util.Property<?, V>, android.animation.TypeConverter<android.graphics.PointF, V>, android.graphics.Path)"></A>
+  <nobr><code>PropertyValuesHolder</code>&nbsp;<A HREF="../../../../reference/android/animation/PropertyValuesHolder.html#ofObject(android.util.Property<?, V>, android.animation.TypeConverter<android.graphics.PointF, V>, android.graphics.Path)" target="_top"><code>ofObject</code></A>(<code>Property&lt;?,</nobr> V&gt;<nobr>,</nobr> TypeConverter&lt;PointF<nobr>,</nobr> V&gt;<nobr>,</nobr> Path<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.PropertyValuesHolder.ofObject_added(java.lang.String, android.animation.TypeConverter<android.graphics.PointF, ?>, android.graphics.Path)"></A>
+  <nobr><code>PropertyValuesHolder</code>&nbsp;<A HREF="../../../../reference/android/animation/PropertyValuesHolder.html#ofObject(java.lang.String, android.animation.TypeConverter<android.graphics.PointF, ?>, android.graphics.Path)" target="_top"><code>ofObject</code></A>(<code>String,</nobr> TypeConverter&lt;PointF<nobr>,</nobr> ?&gt;<nobr>,</nobr> Path<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation.PropertyValuesHolder.setConverter_added(android.animation.TypeConverter)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/animation/PropertyValuesHolder.html#setConverter(android.animation.TypeConverter)" target="_top"><code>setConverter</code></A>(<code>TypeConverter</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.animation.RectEvaluator.html b/docs/html/sdk/api_diff/21/changes/android.animation.RectEvaluator.html
new file mode 100644
index 0000000..becaa2d
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.animation.RectEvaluator.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.animation.RectEvaluator
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.animation.<A HREF="../../../../reference/android/animation/RectEvaluator.html" target="_top"><font size="+2"><code>RectEvaluator</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.animation.RectEvaluator.ctor_added(android.graphics.Rect)"></A>
+  <nobr><A HREF="../../../../reference/android/animation/RectEvaluator.html#RectEvaluator(android.graphics.Rect)" target="_top"><code>RectEvaluator</code></A>(<code>Rect</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.animation.ValueAnimator.html b/docs/html/sdk/api_diff/21/changes/android.animation.ValueAnimator.html
new file mode 100644
index 0000000..caeab43
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.animation.ValueAnimator.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.animation.ValueAnimator
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.animation.<A HREF="../../../../reference/android/animation/ValueAnimator.html" target="_top"><font size="+2"><code>ValueAnimator</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.animation.ValueAnimator.ofArgb_added(int...)"></A>
+  <nobr><code>ValueAnimator</code>&nbsp;<A HREF="../../../../reference/android/animation/ValueAnimator.html#ofArgb(int...)" target="_top"><code>ofArgb</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.ActionBar.OnNavigationListener.html b/docs/html/sdk/api_diff/21/changes/android.app.ActionBar.OnNavigationListener.html
new file mode 100644
index 0000000..c42fbc6
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.ActionBar.OnNavigationListener.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ActionBar.OnNavigationListener
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.app.<A HREF="../../../../reference/android/app/ActionBar.OnNavigationListener.html" target="_top"><font size="+2"><code>ActionBar.OnNavigationListener</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.ActionBar.Tab.html b/docs/html/sdk/api_diff/21/changes/android.app.ActionBar.Tab.html
new file mode 100644
index 0000000..b26e3aa
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.ActionBar.Tab.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ActionBar.Tab
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ActionBar.Tab.html" target="_top"><font size="+2"><code>ActionBar.Tab</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.ActionBar.TabListener.html b/docs/html/sdk/api_diff/21/changes/android.app.ActionBar.TabListener.html
new file mode 100644
index 0000000..ae2b7ab
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.ActionBar.TabListener.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ActionBar.TabListener
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.app.<A HREF="../../../../reference/android/app/ActionBar.TabListener.html" target="_top"><font size="+2"><code>ActionBar.TabListener</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.ActionBar.html b/docs/html/sdk/api_diff/21/changes/android.app.ActionBar.html
new file mode 100644
index 0000000..aa5c5f3
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.ActionBar.html
@@ -0,0 +1,380 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ActionBar
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ActionBar.html" target="_top"><font size="+2"><code>ActionBar</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.ActionBar.getElevation_added()"></A>
+  <nobr><code>float</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#getElevation()" target="_top"><code>getElevation</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.getHideOffset_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#getHideOffset()" target="_top"><code>getHideOffset</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.isHideOnContentScrollEnabled_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#isHideOnContentScrollEnabled()" target="_top"><code>isHideOnContentScrollEnabled</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.setElevation_added(float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#setElevation(float)" target="_top"><code>setElevation</code></A>(<code>float</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.setHideOffset_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#setHideOffset(int)" target="_top"><code>setHideOffset</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.setHideOnContentScrollEnabled_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#setHideOnContentScrollEnabled(boolean)" target="_top"><code>setHideOnContentScrollEnabled</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.ActionBar.getNavigationItemCount_changed()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#getNavigationItemCount()" target="_top"><code>getNavigationItemCount</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.getNavigationMode_changed()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#getNavigationMode()" target="_top"><code>getNavigationMode</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.getSelectedNavigationIndex_changed()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#getSelectedNavigationIndex()" target="_top"><code>getSelectedNavigationIndex</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.getSelectedTab_changed()"></A>
+  <nobr><code>Tab</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#getSelectedTab()" target="_top"><code>getSelectedTab</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.getTabAt_changed(int)"></A>
+  <nobr><code>Tab</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#getTabAt(int)" target="_top"><code>getTabAt</code></A>(<code>int</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.getTabCount_changed()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#getTabCount()" target="_top"><code>getTabCount</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.newTab_changed()"></A>
+  <nobr><code>Tab</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#newTab()" target="_top"><code>newTab</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.removeAllTabs_changed()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#removeAllTabs()" target="_top"><code>removeAllTabs</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.removeTab_changed(android.app.ActionBar.Tab)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#removeTab(android.app.ActionBar.Tab)" target="_top"><code>removeTab</code></A>(<code>Tab</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.removeTabAt_changed(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#removeTabAt(int)" target="_top"><code>removeTabAt</code></A>(<code>int</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.selectTab_changed(android.app.ActionBar.Tab)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#selectTab(android.app.ActionBar.Tab)" target="_top"><code>selectTab</code></A>(<code>Tab</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.setListNavigationCallbacks_changed(android.widget.SpinnerAdapter, android.app.ActionBar.OnNavigationListener)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#setListNavigationCallbacks(android.widget.SpinnerAdapter, android.app.ActionBar.OnNavigationListener)" target="_top"><code>setListNavigationCallbacks</code></A>(<code>SpinnerAdapter,</nobr> OnNavigationListener<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.setNavigationMode_changed(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#setNavigationMode(int)" target="_top"><code>setNavigationMode</code></A>(<code>int</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.setSelectedNavigationItem_changed(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#setSelectedNavigationItem(int)" target="_top"><code>setSelectedNavigationItem</code></A>(<code>int</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#addTab(android.app.ActionBar.Tab)" target="_top"><code>addTab</code></A>(<code>Tab</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab, boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#addTab(android.app.ActionBar.Tab, boolean)" target="_top"><code>addTab</code></A>(<code>Tab,</nobr> boolean<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#addTab(android.app.ActionBar.Tab, int)" target="_top"><code>addTab</code></A>(<code>Tab,</nobr> int<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab, int, boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#addTab(android.app.ActionBar.Tab, int, boolean)" target="_top"><code>addTab</code></A>(<code>Tab,</nobr> int<nobr>,</nobr> boolean<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.app.ActionBar.NAVIGATION_MODE_LIST"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#NAVIGATION_MODE_LIST" target="_top"><code>NAVIGATION_MODE_LIST</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.NAVIGATION_MODE_STANDARD"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#NAVIGATION_MODE_STANDARD" target="_top"><code>NAVIGATION_MODE_STANDARD</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.NAVIGATION_MODE_TABS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#NAVIGATION_MODE_TABS" target="_top"><code>NAVIGATION_MODE_TABS</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.Activity.html b/docs/html/sdk/api_diff/21/changes/android.app.Activity.html
new file mode 100644
index 0000000..0a66010
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.Activity.html
@@ -0,0 +1,301 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.finishAfterTransition_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#finishAfterTransition()" target="_top"><code>finishAfterTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.finishAndRemoveTask_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#finishAndRemoveTask()" target="_top"><code>finishAndRemoveTask</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.getContentScene_added()"></A>
+  <nobr><code>Scene</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#getContentScene()" target="_top"><code>getContentScene</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.getContentTransitionManager_added()"></A>
+  <nobr><code>TransitionManager</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#getContentTransitionManager()" target="_top"><code>getContentTransitionManager</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.getMediaController_added()"></A>
+  <nobr><code>MediaController</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#getMediaController()" target="_top"><code>getMediaController</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.onActivityReenter_added(int, android.content.Intent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#onActivityReenter(int, android.content.Intent)" target="_top"><code>onActivityReenter</code></A>(<code>int,</nobr> Intent<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.onCreate_added(android.os.Bundle, android.os.PersistableBundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#onCreate(android.os.Bundle, android.os.PersistableBundle)" target="_top"><code>onCreate</code></A>(<code>Bundle,</nobr> PersistableBundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.onEnterAnimationComplete_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#onEnterAnimationComplete()" target="_top"><code>onEnterAnimationComplete</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.onPostCreate_added(android.os.Bundle, android.os.PersistableBundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#onPostCreate(android.os.Bundle, android.os.PersistableBundle)" target="_top"><code>onPostCreate</code></A>(<code>Bundle,</nobr> PersistableBundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.onRestoreInstanceState_added(android.os.Bundle, android.os.PersistableBundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#onRestoreInstanceState(android.os.Bundle, android.os.PersistableBundle)" target="_top"><code>onRestoreInstanceState</code></A>(<code>Bundle,</nobr> PersistableBundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.onSaveInstanceState_added(android.os.Bundle, android.os.PersistableBundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#onSaveInstanceState(android.os.Bundle, android.os.PersistableBundle)" target="_top"><code>onSaveInstanceState</code></A>(<code>Bundle,</nobr> PersistableBundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.onVisibleBehindCanceled_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#onVisibleBehindCanceled()" target="_top"><code>onVisibleBehindCanceled</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.postponeEnterTransition_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#postponeEnterTransition()" target="_top"><code>postponeEnterTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.releaseInstance_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#releaseInstance()" target="_top"><code>releaseInstance</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.requestVisibleBehind_added(boolean)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#requestVisibleBehind(boolean)" target="_top"><code>requestVisibleBehind</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.setActionBar_added(android.widget.Toolbar)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#setActionBar(android.widget.Toolbar)" target="_top"><code>setActionBar</code></A>(<code>Toolbar</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.setContentTransitionManager_added(android.transition.TransitionManager)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#setContentTransitionManager(android.transition.TransitionManager)" target="_top"><code>setContentTransitionManager</code></A>(<code>TransitionManager</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.setEnterSharedElementCallback_added(android.app.SharedElementCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#setEnterSharedElementCallback(android.app.SharedElementCallback)" target="_top"><code>setEnterSharedElementCallback</code></A>(<code>SharedElementCallback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.setExitSharedElementCallback_added(android.app.SharedElementCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#setExitSharedElementCallback(android.app.SharedElementCallback)" target="_top"><code>setExitSharedElementCallback</code></A>(<code>SharedElementCallback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.setMediaController_added(android.media.session.MediaController)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#setMediaController(android.media.session.MediaController)" target="_top"><code>setMediaController</code></A>(<code>MediaController</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.setTaskDescription_added(android.app.ActivityManager.TaskDescription)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#setTaskDescription(android.app.ActivityManager.TaskDescription)" target="_top"><code>setTaskDescription</code></A>(<code>TaskDescription</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.startLockTask_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#startLockTask()" target="_top"><code>startLockTask</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.startPostponedEnterTransition_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#startPostponedEnterTransition()" target="_top"><code>startPostponedEnterTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.stopLockTask_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#stopLockTask()" target="_top"><code>stopLockTask</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Activity.setTitleColor_changed(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#setTitleColor(int)" target="_top"><code>setTitleColor</code></A>(<code>int</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.ActivityManager.RecentTaskInfo.html b/docs/html/sdk/api_diff/21/changes/android.app.ActivityManager.RecentTaskInfo.html
new file mode 100644
index 0000000..5e41bde
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.ActivityManager.RecentTaskInfo.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.RecentTaskInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.RecentTaskInfo.html" target="_top"><font size="+2"><code>ActivityManager.RecentTaskInfo</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.RecentTaskInfo.affiliatedTaskId"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/ActivityManager.RecentTaskInfo.html#affiliatedTaskId" target="_top"><code>affiliatedTaskId</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActivityManager.RecentTaskInfo.taskDescription"></A>
+  <nobr><code>TaskDescription</code>&nbsp;<A HREF="../../../../reference/android/app/ActivityManager.RecentTaskInfo.html#taskDescription" target="_top"><code>taskDescription</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.ActivityManager.RunningAppProcessInfo.html b/docs/html/sdk/api_diff/21/changes/android.app.ActivityManager.RunningAppProcessInfo.html
new file mode 100644
index 0000000..ace75fd
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.ActivityManager.RunningAppProcessInfo.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.IMPORTANCE_GONE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/ActivityManager.RunningAppProcessInfo.html#IMPORTANCE_GONE" target="_top"><code>IMPORTANCE_GONE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.ActivityManager.html b/docs/html/sdk/api_diff/21/changes/android.app.ActivityManager.html
new file mode 100644
index 0000000..cb36373
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.ActivityManager.html
@@ -0,0 +1,171 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.addAppTask_added(android.app.Activity, android.content.Intent, android.app.ActivityManager.TaskDescription, android.graphics.Bitmap)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/ActivityManager.html#addAppTask(android.app.Activity, android.content.Intent, android.app.ActivityManager.TaskDescription, android.graphics.Bitmap)" target="_top"><code>addAppTask</code></A>(<code>Activity,</nobr> Intent<nobr>,</nobr> TaskDescription<nobr>,</nobr> Bitmap<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActivityManager.getAppTaskThumbnailSize_added()"></A>
+  <nobr><code>Size</code>&nbsp;<A HREF="../../../../reference/android/app/ActivityManager.html#getAppTaskThumbnailSize()" target="_top"><code>getAppTaskThumbnailSize</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActivityManager.getAppTasks_added()"></A>
+  <nobr><code>List&lt;AppTask&gt;</code>&nbsp;<A HREF="../../../../reference/android/app/ActivityManager.html#getAppTasks()" target="_top"><code>getAppTasks</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActivityManager.isInLockTaskMode_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/ActivityManager.html#isInLockTaskMode()" target="_top"><code>isInLockTaskMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.ActivityManager.getRecentTasks_changed(int, int)"></A>
+  <nobr><code>List&lt;RecentTaskInfo&gt;</code>&nbsp;<A HREF="../../../../reference/android/app/ActivityManager.html#getRecentTasks(int, int)" target="_top"><code>getRecentTasks</code></A>(<code>int,</nobr> int<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActivityManager.getRunningTasks_changed(int)"></A>
+  <nobr><code>List&lt;RunningTaskInfo&gt;</code>&nbsp;<A HREF="../../../../reference/android/app/ActivityManager.html#getRunningTasks(int)" target="_top"><code>getRunningTasks</code></A>(<code>int</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.ActivityOptions.html b/docs/html/sdk/api_diff/21/changes/android.app.ActivityOptions.html
new file mode 100644
index 0000000..c1d797b
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.ActivityOptions.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ActivityOptions
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ActivityOptions.html" target="_top"><font size="+2"><code>ActivityOptions</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.ActivityOptions.makeSceneTransitionAnimation_added(android.app.Activity, android.util.Pair<android.view.View, java.lang.String>...)"></A>
+  <nobr><code>ActivityOptions</code>&nbsp;<A HREF="../../../../reference/android/app/ActivityOptions.html#makeSceneTransitionAnimation(android.app.Activity, android.util.Pair<android.view.View, java.lang.String>...)" target="_top"><code>makeSceneTransitionAnimation</code></A>(<code>Activity,</nobr> Pair&lt;View<nobr>,</nobr> String&gt;<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActivityOptions.makeSceneTransitionAnimation_added(android.app.Activity, android.view.View, java.lang.String)"></A>
+  <nobr><code>ActivityOptions</code>&nbsp;<A HREF="../../../../reference/android/app/ActivityOptions.html#makeSceneTransitionAnimation(android.app.Activity, android.view.View, java.lang.String)" target="_top"><code>makeSceneTransitionAnimation</code></A>(<code>Activity,</nobr> View<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActivityOptions.makeTaskLaunchBehind_added()"></A>
+  <nobr><code>ActivityOptions</code>&nbsp;<A HREF="../../../../reference/android/app/ActivityOptions.html#makeTaskLaunchBehind()" target="_top"><code>makeTaskLaunchBehind</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.AlarmManager.html b/docs/html/sdk/api_diff/21/changes/android.app.AlarmManager.html
new file mode 100644
index 0000000..843ef6f
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.AlarmManager.html
@@ -0,0 +1,144 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AlarmManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/AlarmManager.html" target="_top"><font size="+2"><code>AlarmManager</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.AlarmManager.getNextAlarmClock_added()"></A>
+  <nobr><code>AlarmClockInfo</code>&nbsp;<A HREF="../../../../reference/android/app/AlarmManager.html#getNextAlarmClock()" target="_top"><code>getNextAlarmClock</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.AlarmManager.setAlarmClock_added(android.app.AlarmManager.AlarmClockInfo, android.app.PendingIntent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/AlarmManager.html#setAlarmClock(android.app.AlarmManager.AlarmClockInfo, android.app.PendingIntent)" target="_top"><code>setAlarmClock</code></A>(<code>AlarmClockInfo,</nobr> PendingIntent<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.AlarmManager.ACTION_NEXT_ALARM_CLOCK_CHANGED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/AlarmManager.html#ACTION_NEXT_ALARM_CLOCK_CHANGED" target="_top"><code>ACTION_NEXT_ALARM_CLOCK_CHANGED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.AlertDialog.Builder.html b/docs/html/sdk/api_diff/21/changes/android.app.AlertDialog.Builder.html
new file mode 100644
index 0000000..a57e265
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.AlertDialog.Builder.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AlertDialog.Builder
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/AlertDialog.Builder.html" target="_top"><font size="+2"><code>AlertDialog.Builder</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.AlertDialog.Builder.setView_added(int)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/app/AlertDialog.Builder.html#setView(int)" target="_top"><code>setView</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.AppOpsManager.html b/docs/html/sdk/api_diff/21/changes/android.app.AppOpsManager.html
new file mode 100644
index 0000000..6baf7dd
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.AppOpsManager.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AppOpsManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/AppOpsManager.html" target="_top"><font size="+2"><code>AppOpsManager</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.AppOpsManager.MODE_DEFAULT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/AppOpsManager.html#MODE_DEFAULT" target="_top"><code>MODE_DEFAULT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.AppOpsManager.OPSTR_GET_USAGE_STATS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/AppOpsManager.html#OPSTR_GET_USAGE_STATS" target="_top"><code>OPSTR_GET_USAGE_STATS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.Dialog.html b/docs/html/sdk/api_diff/21/changes/android.app.Dialog.html
new file mode 100644
index 0000000..4bca155
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.Dialog.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.create_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Dialog.html#create()" target="_top"><code>create</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.Fragment.html b/docs/html/sdk/api_diff/21/changes/android.app.Fragment.html
new file mode 100644
index 0000000..b21bbc1
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.Fragment.html
@@ -0,0 +1,241 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Fragment
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Fragment.html" target="_top"><font size="+2"><code>Fragment</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.Fragment.getAllowEnterTransitionOverlap_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#getAllowEnterTransitionOverlap()" target="_top"><code>getAllowEnterTransitionOverlap</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.getAllowReturnTransitionOverlap_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#getAllowReturnTransitionOverlap()" target="_top"><code>getAllowReturnTransitionOverlap</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.getEnterTransition_added()"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#getEnterTransition()" target="_top"><code>getEnterTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.getExitTransition_added()"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#getExitTransition()" target="_top"><code>getExitTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.getReenterTransition_added()"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#getReenterTransition()" target="_top"><code>getReenterTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.getReturnTransition_added()"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#getReturnTransition()" target="_top"><code>getReturnTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.getSharedElementEnterTransition_added()"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#getSharedElementEnterTransition()" target="_top"><code>getSharedElementEnterTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.getSharedElementReturnTransition_added()"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#getSharedElementReturnTransition()" target="_top"><code>getSharedElementReturnTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.setAllowEnterTransitionOverlap_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#setAllowEnterTransitionOverlap(boolean)" target="_top"><code>setAllowEnterTransitionOverlap</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.setAllowReturnTransitionOverlap_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#setAllowReturnTransitionOverlap(boolean)" target="_top"><code>setAllowReturnTransitionOverlap</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.setEnterSharedElementCallback_added(android.app.SharedElementCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#setEnterSharedElementCallback(android.app.SharedElementCallback)" target="_top"><code>setEnterSharedElementCallback</code></A>(<code>SharedElementCallback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.setEnterTransition_added(android.transition.Transition)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#setEnterTransition(android.transition.Transition)" target="_top"><code>setEnterTransition</code></A>(<code>Transition</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.setExitSharedElementCallback_added(android.app.SharedElementCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#setExitSharedElementCallback(android.app.SharedElementCallback)" target="_top"><code>setExitSharedElementCallback</code></A>(<code>SharedElementCallback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.setExitTransition_added(android.transition.Transition)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#setExitTransition(android.transition.Transition)" target="_top"><code>setExitTransition</code></A>(<code>Transition</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.setReenterTransition_added(android.transition.Transition)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#setReenterTransition(android.transition.Transition)" target="_top"><code>setReenterTransition</code></A>(<code>Transition</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.setReturnTransition_added(android.transition.Transition)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#setReturnTransition(android.transition.Transition)" target="_top"><code>setReturnTransition</code></A>(<code>Transition</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.setSharedElementEnterTransition_added(android.transition.Transition)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#setSharedElementEnterTransition(android.transition.Transition)" target="_top"><code>setSharedElementEnterTransition</code></A>(<code>Transition</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.setSharedElementReturnTransition_added(android.transition.Transition)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#setSharedElementReturnTransition(android.transition.Transition)" target="_top"><code>setSharedElementReturnTransition</code></A>(<code>Transition</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.FragmentBreadCrumbs.html b/docs/html/sdk/api_diff/21/changes/android.app.FragmentBreadCrumbs.html
new file mode 100644
index 0000000..d6094b6
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.FragmentBreadCrumbs.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.FragmentBreadCrumbs
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/FragmentBreadCrumbs.html" target="_top"><font size="+2"><code>FragmentBreadCrumbs</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.FragmentTransaction.html b/docs/html/sdk/api_diff/21/changes/android.app.FragmentTransaction.html
new file mode 100644
index 0000000..2e86061
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.FragmentTransaction.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.FragmentTransaction
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/FragmentTransaction.html" target="_top"><font size="+2"><code>FragmentTransaction</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.FragmentTransaction.addSharedElement_added(android.view.View, java.lang.String)"></A>
+  <nobr><code>FragmentTransaction</code>&nbsp;<A HREF="../../../../reference/android/app/FragmentTransaction.html#addSharedElement(android.view.View, java.lang.String)" target="_top"><code>addSharedElement</code></A>(<code>View,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.Instrumentation.html b/docs/html/sdk/api_diff/21/changes/android.app.Instrumentation.html
new file mode 100644
index 0000000..8268bc7
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.Instrumentation.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Instrumentation
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Instrumentation.html" target="_top"><font size="+2"><code>Instrumentation</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.Instrumentation.callActivityOnCreate_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Instrumentation.html#callActivityOnCreate(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)" target="_top"><code>callActivityOnCreate</code></A>(<code>Activity,</nobr> Bundle<nobr>,</nobr> PersistableBundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Instrumentation.callActivityOnPostCreate_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Instrumentation.html#callActivityOnPostCreate(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)" target="_top"><code>callActivityOnPostCreate</code></A>(<code>Activity,</nobr> Bundle<nobr>,</nobr> PersistableBundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Instrumentation.callActivityOnRestoreInstanceState_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Instrumentation.html#callActivityOnRestoreInstanceState(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)" target="_top"><code>callActivityOnRestoreInstanceState</code></A>(<code>Activity,</nobr> Bundle<nobr>,</nobr> PersistableBundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Instrumentation.callActivityOnSaveInstanceState_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Instrumentation.html#callActivityOnSaveInstanceState(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)" target="_top"><code>callActivityOnSaveInstanceState</code></A>(<code>Activity,</nobr> Bundle<nobr>,</nobr> PersistableBundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.KeyguardManager.html b/docs/html/sdk/api_diff/21/changes/android.app.KeyguardManager.html
new file mode 100644
index 0000000..7a93485b
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.KeyguardManager.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.KeyguardManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/KeyguardManager.html" target="_top"><font size="+2"><code>KeyguardManager</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.KeyguardManager.createConfirmDeviceCredentialIntent_added(java.lang.CharSequence, java.lang.CharSequence)"></A>
+  <nobr><code>Intent</code>&nbsp;<A HREF="../../../../reference/android/app/KeyguardManager.html#createConfirmDeviceCredentialIntent(java.lang.CharSequence, java.lang.CharSequence)" target="_top"><code>createConfirmDeviceCredentialIntent</code></A>(<code>CharSequence,</nobr> CharSequence<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.MediaRouteButton.html b/docs/html/sdk/api_diff/21/changes/android.app.MediaRouteButton.html
new file mode 100644
index 0000000..b607161
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.MediaRouteButton.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaRouteButton
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/MediaRouteButton.html" target="_top"><font size="+2"><code>MediaRouteButton</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.app.MediaRouteButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/app/MediaRouteButton.html#MediaRouteButton(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>MediaRouteButton</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.Notification.Builder.html b/docs/html/sdk/api_diff/21/changes/android.app.Notification.Builder.html
new file mode 100644
index 0000000..8a50261
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.Notification.Builder.html
@@ -0,0 +1,197 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Builder
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.Builder.html" target="_top"><font size="+2"><code>Notification.Builder</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.Builder.setSound_removed(android.net.Uri, int)"></A>
+  <nobr><code>Builder</code>&nbsp;setSound(<code>Uri,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Notification.Builder.addPerson_added(java.lang.String)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.Builder.html#addPerson(java.lang.String)" target="_top"><code>addPerson</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.Builder.setCategory_added(java.lang.String)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.Builder.html#setCategory(java.lang.String)" target="_top"><code>setCategory</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.Builder.setColor_added(int)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.Builder.html#setColor(int)" target="_top"><code>setColor</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.Builder.setPublicVersion_added(android.app.Notification)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.Builder.html#setPublicVersion(android.app.Notification)" target="_top"><code>setPublicVersion</code></A>(<code>Notification</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.Builder.setSound_added(android.net.Uri, android.media.AudioAttributes)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.Builder.html#setSound(android.net.Uri, android.media.AudioAttributes)" target="_top"><code>setSound</code></A>(<code>Uri,</nobr> AudioAttributes<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.Builder.setSound_added(android.net.Uri, int)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.Builder.html#setSound(android.net.Uri, int)" target="_top"><code>setSound</code></A>(<code>Uri,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.Builder.setVisibility_added(int)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.Builder.html#setVisibility(int)" target="_top"><code>setVisibility</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Notification.Builder.setTicker_changed(java.lang.CharSequence, android.widget.RemoteViews)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.Builder.html#setTicker(java.lang.CharSequence, android.widget.RemoteViews)" target="_top"><code>setTicker</code></A>(<code>CharSequence,</nobr> RemoteViews<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.Notification.html b/docs/html/sdk/api_diff/21/changes/android.app.Notification.html
new file mode 100644
index 0000000..085d370
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.Notification.html
@@ -0,0 +1,367 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.AUDIO_ATTRIBUTES_DEFAULT"></A>
+  <nobr><code>AudioAttributes</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#AUDIO_ATTRIBUTES_DEFAULT" target="_top"><code>AUDIO_ATTRIBUTES_DEFAULT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.CATEGORY_ALARM"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#CATEGORY_ALARM" target="_top"><code>CATEGORY_ALARM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.CATEGORY_CALL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#CATEGORY_CALL" target="_top"><code>CATEGORY_CALL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.CATEGORY_EMAIL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#CATEGORY_EMAIL" target="_top"><code>CATEGORY_EMAIL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.CATEGORY_ERROR"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#CATEGORY_ERROR" target="_top"><code>CATEGORY_ERROR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.CATEGORY_EVENT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#CATEGORY_EVENT" target="_top"><code>CATEGORY_EVENT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.CATEGORY_MESSAGE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#CATEGORY_MESSAGE" target="_top"><code>CATEGORY_MESSAGE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.CATEGORY_PROGRESS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#CATEGORY_PROGRESS" target="_top"><code>CATEGORY_PROGRESS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.CATEGORY_PROMO"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#CATEGORY_PROMO" target="_top"><code>CATEGORY_PROMO</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.CATEGORY_RECOMMENDATION"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#CATEGORY_RECOMMENDATION" target="_top"><code>CATEGORY_RECOMMENDATION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.CATEGORY_SERVICE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#CATEGORY_SERVICE" target="_top"><code>CATEGORY_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.CATEGORY_SOCIAL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#CATEGORY_SOCIAL" target="_top"><code>CATEGORY_SOCIAL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.CATEGORY_STATUS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#CATEGORY_STATUS" target="_top"><code>CATEGORY_STATUS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.CATEGORY_SYSTEM"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#CATEGORY_SYSTEM" target="_top"><code>CATEGORY_SYSTEM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.CATEGORY_TRANSPORT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#CATEGORY_TRANSPORT" target="_top"><code>CATEGORY_TRANSPORT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.COLOR_DEFAULT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#COLOR_DEFAULT" target="_top"><code>COLOR_DEFAULT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.EXTRA_BACKGROUND_IMAGE_URI"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#EXTRA_BACKGROUND_IMAGE_URI" target="_top"><code>EXTRA_BACKGROUND_IMAGE_URI</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.EXTRA_BIG_TEXT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#EXTRA_BIG_TEXT" target="_top"><code>EXTRA_BIG_TEXT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.EXTRA_COMPACT_ACTIONS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#EXTRA_COMPACT_ACTIONS" target="_top"><code>EXTRA_COMPACT_ACTIONS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.EXTRA_MEDIA_SESSION"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#EXTRA_MEDIA_SESSION" target="_top"><code>EXTRA_MEDIA_SESSION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.EXTRA_TEMPLATE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#EXTRA_TEMPLATE" target="_top"><code>EXTRA_TEMPLATE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.INTENT_CATEGORY_NOTIFICATION_PREFERENCES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#INTENT_CATEGORY_NOTIFICATION_PREFERENCES" target="_top"><code>INTENT_CATEGORY_NOTIFICATION_PREFERENCES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.VISIBILITY_PRIVATE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#VISIBILITY_PRIVATE" target="_top"><code>VISIBILITY_PRIVATE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.VISIBILITY_PUBLIC"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#VISIBILITY_PUBLIC" target="_top"><code>VISIBILITY_PUBLIC</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.VISIBILITY_SECRET"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#VISIBILITY_SECRET" target="_top"><code>VISIBILITY_SECRET</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.audioAttributes"></A>
+  <nobr><code>AudioAttributes</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#audioAttributes" target="_top"><code>audioAttributes</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.category"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#category" target="_top"><code>category</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.color"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#color" target="_top"><code>color</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.headsUpContentView"></A>
+  <nobr><code>RemoteViews</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#headsUpContentView" target="_top"><code>headsUpContentView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.publicVersion"></A>
+  <nobr><code>Notification</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#publicVersion" target="_top"><code>publicVersion</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.visibility"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#visibility" target="_top"><code>visibility</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.app.Notification.STREAM_DEFAULT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#STREAM_DEFAULT" target="_top"><code>STREAM_DEFAULT</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.audioStreamType"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#audioStreamType" target="_top"><code>audioStreamType</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.tickerView"></A>
+  <nobr><code>RemoteViews</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#tickerView" target="_top"><code>tickerView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.SearchManager.html b/docs/html/sdk/api_diff/21/changes/android.app.SearchManager.html
new file mode 100644
index 0000000..27e13ab
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.SearchManager.html
@@ -0,0 +1,199 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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>
+<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_COLUMN_AUDIO_CHANNEL_CONFIG"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/SearchManager.html#SUGGEST_COLUMN_AUDIO_CHANNEL_CONFIG" target="_top"><code>SUGGEST_COLUMN_AUDIO_CHANNEL_CONFIG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.SearchManager.SUGGEST_COLUMN_CONTENT_TYPE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/SearchManager.html#SUGGEST_COLUMN_CONTENT_TYPE" target="_top"><code>SUGGEST_COLUMN_CONTENT_TYPE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.SearchManager.SUGGEST_COLUMN_DURATION"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/SearchManager.html#SUGGEST_COLUMN_DURATION" target="_top"><code>SUGGEST_COLUMN_DURATION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.SearchManager.SUGGEST_COLUMN_IS_LIVE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/SearchManager.html#SUGGEST_COLUMN_IS_LIVE" target="_top"><code>SUGGEST_COLUMN_IS_LIVE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.SearchManager.SUGGEST_COLUMN_PRODUCTION_YEAR"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/SearchManager.html#SUGGEST_COLUMN_PRODUCTION_YEAR" target="_top"><code>SUGGEST_COLUMN_PRODUCTION_YEAR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.SearchManager.SUGGEST_COLUMN_PURCHASE_PRICE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/SearchManager.html#SUGGEST_COLUMN_PURCHASE_PRICE" target="_top"><code>SUGGEST_COLUMN_PURCHASE_PRICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.SearchManager.SUGGEST_COLUMN_RATING_SCORE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/SearchManager.html#SUGGEST_COLUMN_RATING_SCORE" target="_top"><code>SUGGEST_COLUMN_RATING_SCORE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.SearchManager.SUGGEST_COLUMN_RATING_STYLE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/SearchManager.html#SUGGEST_COLUMN_RATING_STYLE" target="_top"><code>SUGGEST_COLUMN_RATING_STYLE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.SearchManager.SUGGEST_COLUMN_RENTAL_PRICE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/SearchManager.html#SUGGEST_COLUMN_RENTAL_PRICE" target="_top"><code>SUGGEST_COLUMN_RENTAL_PRICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.SearchManager.SUGGEST_COLUMN_RESULT_CARD_IMAGE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/SearchManager.html#SUGGEST_COLUMN_RESULT_CARD_IMAGE" target="_top"><code>SUGGEST_COLUMN_RESULT_CARD_IMAGE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.SearchManager.SUGGEST_COLUMN_VIDEO_HEIGHT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/SearchManager.html#SUGGEST_COLUMN_VIDEO_HEIGHT" target="_top"><code>SUGGEST_COLUMN_VIDEO_HEIGHT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.SearchManager.SUGGEST_COLUMN_VIDEO_WIDTH"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/SearchManager.html#SUGGEST_COLUMN_VIDEO_WIDTH" target="_top"><code>SUGGEST_COLUMN_VIDEO_WIDTH</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.UiAutomation.html b/docs/html/sdk/api_diff/21/changes/android.app.UiAutomation.html
new file mode 100644
index 0000000..98afdb7
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.UiAutomation.html
@@ -0,0 +1,164 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.UiAutomation
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/UiAutomation.html" target="_top"><font size="+2"><code>UiAutomation</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.UiAutomation.clearWindowAnimationFrameStats_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/UiAutomation.html#clearWindowAnimationFrameStats()" target="_top"><code>clearWindowAnimationFrameStats</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.UiAutomation.clearWindowContentFrameStats_added(int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/UiAutomation.html#clearWindowContentFrameStats(int)" target="_top"><code>clearWindowContentFrameStats</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.UiAutomation.executeShellCommand_added(java.lang.String)"></A>
+  <nobr><code>ParcelFileDescriptor</code>&nbsp;<A HREF="../../../../reference/android/app/UiAutomation.html#executeShellCommand(java.lang.String)" target="_top"><code>executeShellCommand</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.UiAutomation.findFocus_added(int)"></A>
+  <nobr><code>AccessibilityNodeInfo</code>&nbsp;<A HREF="../../../../reference/android/app/UiAutomation.html#findFocus(int)" target="_top"><code>findFocus</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.UiAutomation.getWindowAnimationFrameStats_added()"></A>
+  <nobr><code>WindowAnimationFrameStats</code>&nbsp;<A HREF="../../../../reference/android/app/UiAutomation.html#getWindowAnimationFrameStats()" target="_top"><code>getWindowAnimationFrameStats</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.UiAutomation.getWindowContentFrameStats_added(int)"></A>
+  <nobr><code>WindowContentFrameStats</code>&nbsp;<A HREF="../../../../reference/android/app/UiAutomation.html#getWindowContentFrameStats(int)" target="_top"><code>getWindowContentFrameStats</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.UiAutomation.getWindows_added()"></A>
+  <nobr><code>List&lt;AccessibilityWindowInfo&gt;</code>&nbsp;<A HREF="../../../../reference/android/app/UiAutomation.html#getWindows()" target="_top"><code>getWindows</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.UiModeManager.html b/docs/html/sdk/api_diff/21/changes/android.app.UiModeManager.html
new file mode 100644
index 0000000..21e665b
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.UiModeManager.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.UiModeManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/UiModeManager.html" target="_top"><font size="+2"><code>UiModeManager</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.UiModeManager.ENABLE_CAR_MODE_ALLOW_SLEEP"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/UiModeManager.html#ENABLE_CAR_MODE_ALLOW_SLEEP" target="_top"><code>ENABLE_CAR_MODE_ALLOW_SLEEP</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.admin.DeviceAdminReceiver.html b/docs/html/sdk/api_diff/21/changes/android.app.admin.DeviceAdminReceiver.html
new file mode 100644
index 0000000..8308b4b
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.admin.DeviceAdminReceiver.html
@@ -0,0 +1,172 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.admin.DeviceAdminReceiver
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.admin.<A HREF="../../../../reference/android/app/admin/DeviceAdminReceiver.html" target="_top"><font size="+2"><code>DeviceAdminReceiver</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.admin.DeviceAdminReceiver.onLockTaskModeEntering_added(android.content.Context, android.content.Intent, java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DeviceAdminReceiver.html#onLockTaskModeEntering(android.content.Context, android.content.Intent, java.lang.String)" target="_top"><code>onLockTaskModeEntering</code></A>(<code>Context,</nobr> Intent<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DeviceAdminReceiver.onLockTaskModeExiting_added(android.content.Context, android.content.Intent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DeviceAdminReceiver.html#onLockTaskModeExiting(android.content.Context, android.content.Intent)" target="_top"><code>onLockTaskModeExiting</code></A>(<code>Context,</nobr> Intent<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DeviceAdminReceiver.onProfileProvisioningComplete_added(android.content.Context, android.content.Intent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DeviceAdminReceiver.html#onProfileProvisioningComplete(android.content.Context, android.content.Intent)" target="_top"><code>onProfileProvisioningComplete</code></A>(<code>Context,</nobr> Intent<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.admin.DeviceAdminReceiver.ACTION_LOCK_TASK_ENTERING"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DeviceAdminReceiver.html#ACTION_LOCK_TASK_ENTERING" target="_top"><code>ACTION_LOCK_TASK_ENTERING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DeviceAdminReceiver.ACTION_LOCK_TASK_EXITING"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DeviceAdminReceiver.html#ACTION_LOCK_TASK_EXITING" target="_top"><code>ACTION_LOCK_TASK_EXITING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DeviceAdminReceiver.ACTION_PROFILE_PROVISIONING_COMPLETE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DeviceAdminReceiver.html#ACTION_PROFILE_PROVISIONING_COMPLETE" target="_top"><code>ACTION_PROFILE_PROVISIONING_COMPLETE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DeviceAdminReceiver.EXTRA_LOCK_TASK_PACKAGE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DeviceAdminReceiver.html#EXTRA_LOCK_TASK_PACKAGE" target="_top"><code>EXTRA_LOCK_TASK_PACKAGE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.admin.DevicePolicyManager.html b/docs/html/sdk/api_diff/21/changes/android.app.admin.DevicePolicyManager.html
new file mode 100644
index 0000000..a00b70c
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.admin.DevicePolicyManager.html
@@ -0,0 +1,662 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.admin.DevicePolicyManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.admin.<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html" target="_top"><font size="+2"><code>DevicePolicyManager</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.admin.DevicePolicyManager.addCrossProfileIntentFilter_added(android.content.ComponentName, android.content.IntentFilter, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#addCrossProfileIntentFilter(android.content.ComponentName, android.content.IntentFilter, int)" target="_top"><code>addCrossProfileIntentFilter</code></A>(<code>ComponentName,</nobr> IntentFilter<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.addCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#addCrossProfileWidgetProvider(android.content.ComponentName, java.lang.String)" target="_top"><code>addCrossProfileWidgetProvider</code></A>(<code>ComponentName,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.addPersistentPreferredActivity_added(android.content.ComponentName, android.content.IntentFilter, android.content.ComponentName)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#addPersistentPreferredActivity(android.content.ComponentName, android.content.IntentFilter, android.content.ComponentName)" target="_top"><code>addPersistentPreferredActivity</code></A>(<code>ComponentName,</nobr> IntentFilter<nobr>,</nobr> ComponentName<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.addUserRestriction_added(android.content.ComponentName, java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#addUserRestriction(android.content.ComponentName, java.lang.String)" target="_top"><code>addUserRestriction</code></A>(<code>ComponentName,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.clearCrossProfileIntentFilters_added(android.content.ComponentName)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#clearCrossProfileIntentFilters(android.content.ComponentName)" target="_top"><code>clearCrossProfileIntentFilters</code></A>(<code>ComponentName</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.clearDeviceOwnerApp_added(java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#clearDeviceOwnerApp(java.lang.String)" target="_top"><code>clearDeviceOwnerApp</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.clearPackagePersistentPreferredActivities_added(android.content.ComponentName, java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#clearPackagePersistentPreferredActivities(android.content.ComponentName, java.lang.String)" target="_top"><code>clearPackagePersistentPreferredActivities</code></A>(<code>ComponentName,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.clearUserRestriction_added(android.content.ComponentName, java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#clearUserRestriction(android.content.ComponentName, java.lang.String)" target="_top"><code>clearUserRestriction</code></A>(<code>ComponentName,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.createAndInitializeUser_added(android.content.ComponentName, java.lang.String, java.lang.String, android.content.ComponentName, android.os.Bundle)"></A>
+  <nobr><code>UserHandle</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#createAndInitializeUser(android.content.ComponentName, java.lang.String, java.lang.String, android.content.ComponentName, android.os.Bundle)" target="_top"><code>createAndInitializeUser</code></A>(<code>ComponentName,</nobr> String<nobr>,</nobr> String<nobr>,</nobr> ComponentName<nobr>,</nobr> Bundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.createUser_added(android.content.ComponentName, java.lang.String)"></A>
+  <nobr><code>UserHandle</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#createUser(android.content.ComponentName, java.lang.String)" target="_top"><code>createUser</code></A>(<code>ComponentName,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.enableSystemApp_added(android.content.ComponentName, android.content.Intent)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#enableSystemApp(android.content.ComponentName, android.content.Intent)" target="_top"><code>enableSystemApp</code></A>(<code>ComponentName,</nobr> Intent<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.enableSystemApp_added(android.content.ComponentName, java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#enableSystemApp(android.content.ComponentName, java.lang.String)" target="_top"><code>enableSystemApp</code></A>(<code>ComponentName,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.getAccountTypesWithManagementDisabled_added()"></A>
+  <nobr><code>String[]</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#getAccountTypesWithManagementDisabled()" target="_top"><code>getAccountTypesWithManagementDisabled</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.getApplicationRestrictions_added(android.content.ComponentName, java.lang.String)"></A>
+  <nobr><code>Bundle</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#getApplicationRestrictions(android.content.ComponentName, java.lang.String)" target="_top"><code>getApplicationRestrictions</code></A>(<code>ComponentName,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.getAutoTimeRequired_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#getAutoTimeRequired()" target="_top"><code>getAutoTimeRequired</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.getCrossProfileCallerIdDisabled_added(android.content.ComponentName)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#getCrossProfileCallerIdDisabled(android.content.ComponentName)" target="_top"><code>getCrossProfileCallerIdDisabled</code></A>(<code>ComponentName</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.getCrossProfileWidgetProviders_added(android.content.ComponentName)"></A>
+  <nobr><code>List&lt;String&gt;</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#getCrossProfileWidgetProviders(android.content.ComponentName)" target="_top"><code>getCrossProfileWidgetProviders</code></A>(<code>ComponentName</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.getInstalledCaCerts_added(android.content.ComponentName)"></A>
+  <nobr><code>List&lt;byte[]&gt;</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#getInstalledCaCerts(android.content.ComponentName)" target="_top"><code>getInstalledCaCerts</code></A>(<code>ComponentName</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.getPermittedAccessibilityServices_added(android.content.ComponentName)"></A>
+  <nobr><code>List&lt;String&gt;</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#getPermittedAccessibilityServices(android.content.ComponentName)" target="_top"><code>getPermittedAccessibilityServices</code></A>(<code>ComponentName</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.getPermittedInputMethods_added(android.content.ComponentName)"></A>
+  <nobr><code>List&lt;String&gt;</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#getPermittedInputMethods(android.content.ComponentName)" target="_top"><code>getPermittedInputMethods</code></A>(<code>ComponentName</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.getScreenCaptureDisabled_added(android.content.ComponentName)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#getScreenCaptureDisabled(android.content.ComponentName)" target="_top"><code>getScreenCaptureDisabled</code></A>(<code>ComponentName</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.hasCaCertInstalled_added(android.content.ComponentName, byte[])"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#hasCaCertInstalled(android.content.ComponentName, byte[])" target="_top"><code>hasCaCertInstalled</code></A>(<code>ComponentName,</nobr> byte[]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.installCaCert_added(android.content.ComponentName, byte[])"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#installCaCert(android.content.ComponentName, byte[])" target="_top"><code>installCaCert</code></A>(<code>ComponentName,</nobr> byte[]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.installKeyPair_added(android.content.ComponentName, java.security.PrivateKey, java.security.cert.Certificate, java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#installKeyPair(android.content.ComponentName, java.security.PrivateKey, java.security.cert.Certificate, java.lang.String)" target="_top"><code>installKeyPair</code></A>(<code>ComponentName,</nobr> PrivateKey<nobr>,</nobr> Certificate<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.isApplicationHidden_added(android.content.ComponentName, java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#isApplicationHidden(android.content.ComponentName, java.lang.String)" target="_top"><code>isApplicationHidden</code></A>(<code>ComponentName,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.isLockTaskPermitted_added(java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#isLockTaskPermitted(java.lang.String)" target="_top"><code>isLockTaskPermitted</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.isMasterVolumeMuted_added(android.content.ComponentName)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#isMasterVolumeMuted(android.content.ComponentName)" target="_top"><code>isMasterVolumeMuted</code></A>(<code>ComponentName</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.isProfileOwnerApp_added(java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#isProfileOwnerApp(java.lang.String)" target="_top"><code>isProfileOwnerApp</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.isUninstallBlocked_added(android.content.ComponentName, java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#isUninstallBlocked(android.content.ComponentName, java.lang.String)" target="_top"><code>isUninstallBlocked</code></A>(<code>ComponentName,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.removeCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#removeCrossProfileWidgetProvider(android.content.ComponentName, java.lang.String)" target="_top"><code>removeCrossProfileWidgetProvider</code></A>(<code>ComponentName,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.removeUser_added(android.content.ComponentName, android.os.UserHandle)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#removeUser(android.content.ComponentName, android.os.UserHandle)" target="_top"><code>removeUser</code></A>(<code>ComponentName,</nobr> UserHandle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setAccountManagementDisabled_added(android.content.ComponentName, java.lang.String, boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setAccountManagementDisabled(android.content.ComponentName, java.lang.String, boolean)" target="_top"><code>setAccountManagementDisabled</code></A>(<code>ComponentName,</nobr> String<nobr>,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setApplicationHidden_added(android.content.ComponentName, java.lang.String, boolean)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setApplicationHidden(android.content.ComponentName, java.lang.String, boolean)" target="_top"><code>setApplicationHidden</code></A>(<code>ComponentName,</nobr> String<nobr>,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setApplicationRestrictions_added(android.content.ComponentName, java.lang.String, android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setApplicationRestrictions(android.content.ComponentName, java.lang.String, android.os.Bundle)" target="_top"><code>setApplicationRestrictions</code></A>(<code>ComponentName,</nobr> String<nobr>,</nobr> Bundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setAutoTimeRequired_added(android.content.ComponentName, boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setAutoTimeRequired(android.content.ComponentName, boolean)" target="_top"><code>setAutoTimeRequired</code></A>(<code>ComponentName,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setCrossProfileCallerIdDisabled_added(android.content.ComponentName, boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setCrossProfileCallerIdDisabled(android.content.ComponentName, boolean)" target="_top"><code>setCrossProfileCallerIdDisabled</code></A>(<code>ComponentName,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setGlobalSetting_added(android.content.ComponentName, java.lang.String, java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setGlobalSetting(android.content.ComponentName, java.lang.String, java.lang.String)" target="_top"><code>setGlobalSetting</code></A>(<code>ComponentName,</nobr> String<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setLockTaskPackages_added(android.content.ComponentName, java.lang.String[])"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setLockTaskPackages(android.content.ComponentName, java.lang.String[])" target="_top"><code>setLockTaskPackages</code></A>(<code>ComponentName,</nobr> String[]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setMasterVolumeMuted_added(android.content.ComponentName, boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setMasterVolumeMuted(android.content.ComponentName, boolean)" target="_top"><code>setMasterVolumeMuted</code></A>(<code>ComponentName,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setPermittedAccessibilityServices_added(android.content.ComponentName, java.util.List<java.lang.String>)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setPermittedAccessibilityServices(android.content.ComponentName, java.util.List<java.lang.String>)" target="_top"><code>setPermittedAccessibilityServices</code></A>(<code>ComponentName,</nobr> List&lt;String&gt;<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setPermittedInputMethods_added(android.content.ComponentName, java.util.List<java.lang.String>)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setPermittedInputMethods(android.content.ComponentName, java.util.List<java.lang.String>)" target="_top"><code>setPermittedInputMethods</code></A>(<code>ComponentName,</nobr> List&lt;String&gt;<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setProfileEnabled_added(android.content.ComponentName)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setProfileEnabled(android.content.ComponentName)" target="_top"><code>setProfileEnabled</code></A>(<code>ComponentName</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setProfileName_added(android.content.ComponentName, java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setProfileName(android.content.ComponentName, java.lang.String)" target="_top"><code>setProfileName</code></A>(<code>ComponentName,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setRecommendedGlobalProxy_added(android.content.ComponentName, android.net.ProxyInfo)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setRecommendedGlobalProxy(android.content.ComponentName, android.net.ProxyInfo)" target="_top"><code>setRecommendedGlobalProxy</code></A>(<code>ComponentName,</nobr> ProxyInfo<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setRestrictionsProvider_added(android.content.ComponentName, android.content.ComponentName)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setRestrictionsProvider(android.content.ComponentName, android.content.ComponentName)" target="_top"><code>setRestrictionsProvider</code></A>(<code>ComponentName,</nobr> ComponentName<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setScreenCaptureDisabled_added(android.content.ComponentName, boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setScreenCaptureDisabled(android.content.ComponentName, boolean)" target="_top"><code>setScreenCaptureDisabled</code></A>(<code>ComponentName,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setSecureSetting_added(android.content.ComponentName, java.lang.String, java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setSecureSetting(android.content.ComponentName, java.lang.String, java.lang.String)" target="_top"><code>setSecureSetting</code></A>(<code>ComponentName,</nobr> String<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setUninstallBlocked_added(android.content.ComponentName, java.lang.String, boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setUninstallBlocked(android.content.ComponentName, java.lang.String, boolean)" target="_top"><code>setUninstallBlocked</code></A>(<code>ComponentName,</nobr> String<nobr>,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.switchUser_added(android.content.ComponentName, android.os.UserHandle)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#switchUser(android.content.ComponentName, android.os.UserHandle)" target="_top"><code>switchUser</code></A>(<code>ComponentName,</nobr> UserHandle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.uninstallAllUserCaCerts_added(android.content.ComponentName)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#uninstallAllUserCaCerts(android.content.ComponentName)" target="_top"><code>uninstallAllUserCaCerts</code></A>(<code>ComponentName</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.uninstallCaCert_added(android.content.ComponentName, byte[])"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#uninstallCaCert(android.content.ComponentName, byte[])" target="_top"><code>uninstallCaCert</code></A>(<code>ComponentName,</nobr> byte[]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.admin.DevicePolicyManager.ACTION_PROVISION_MANAGED_PROFILE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#ACTION_PROVISION_MANAGED_PROFILE" target="_top"><code>ACTION_PROVISION_MANAGED_PROFILE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE" target="_top"><code>EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM" target="_top"><code>EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER" target="_top"><code>EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION" target="_top"><code>EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME" target="_top"><code>EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_EMAIL_ADDRESS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_EMAIL_ADDRESS" target="_top"><code>EXTRA_PROVISIONING_EMAIL_ADDRESS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_LOCALE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_LOCALE" target="_top"><code>EXTRA_PROVISIONING_LOCALE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_LOCAL_TIME"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_LOCAL_TIME" target="_top"><code>EXTRA_PROVISIONING_LOCAL_TIME</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_TIME_ZONE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_TIME_ZONE" target="_top"><code>EXTRA_PROVISIONING_TIME_ZONE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_HIDDEN"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_WIFI_HIDDEN" target="_top"><code>EXTRA_PROVISIONING_WIFI_HIDDEN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PAC_URL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_WIFI_PAC_URL" target="_top"><code>EXTRA_PROVISIONING_WIFI_PAC_URL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PASSWORD"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_WIFI_PASSWORD" target="_top"><code>EXTRA_PROVISIONING_WIFI_PASSWORD</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_BYPASS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_WIFI_PROXY_BYPASS" target="_top"><code>EXTRA_PROVISIONING_WIFI_PROXY_BYPASS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_HOST"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_WIFI_PROXY_HOST" target="_top"><code>EXTRA_PROVISIONING_WIFI_PROXY_HOST</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_PORT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_WIFI_PROXY_PORT" target="_top"><code>EXTRA_PROVISIONING_WIFI_PROXY_PORT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_SECURITY_TYPE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_WIFI_SECURITY_TYPE" target="_top"><code>EXTRA_PROVISIONING_WIFI_SECURITY_TYPE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_SSID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_WIFI_SSID" target="_top"><code>EXTRA_PROVISIONING_WIFI_SSID</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.FLAG_MANAGED_CAN_ACCESS_PARENT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#FLAG_MANAGED_CAN_ACCESS_PARENT" target="_top"><code>FLAG_MANAGED_CAN_ACCESS_PARENT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.FLAG_PARENT_CAN_ACCESS_MANAGED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#FLAG_PARENT_CAN_ACCESS_MANAGED" target="_top"><code>FLAG_PARENT_CAN_ACCESS_MANAGED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_FINGERPRINT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#KEYGUARD_DISABLE_FINGERPRINT" target="_top"><code>KEYGUARD_DISABLE_FINGERPRINT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_SECURE_NOTIFICATIONS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#KEYGUARD_DISABLE_SECURE_NOTIFICATIONS" target="_top"><code>KEYGUARD_DISABLE_SECURE_NOTIFICATIONS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_TRUST_AGENTS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#KEYGUARD_DISABLE_TRUST_AGENTS" target="_top"><code>KEYGUARD_DISABLE_TRUST_AGENTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS" target="_top"><code>KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.MIME_TYPE_PROVISIONING_NFC"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#MIME_TYPE_PROVISIONING_NFC" target="_top"><code>MIME_TYPE_PROVISIONING_NFC</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.PASSWORD_QUALITY_NUMERIC_COMPLEX"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#PASSWORD_QUALITY_NUMERIC_COMPLEX" target="_top"><code>PASSWORD_QUALITY_NUMERIC_COMPLEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.app.backup.BackupAgent.html b/docs/html/sdk/api_diff/21/changes/android.app.backup.BackupAgent.html
new file mode 100644
index 0000000..c05f998
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.app.backup.BackupAgent.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.backup.BackupAgent
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.backup.<A HREF="../../../../reference/android/app/backup/BackupAgent.html" target="_top"><font size="+2"><code>BackupAgent</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.backup.BackupAgent.onRestoreFinished_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/backup/BackupAgent.html#onRestoreFinished()" target="_top"><code>onRestoreFinished</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.appwidget.AppWidgetHost.html b/docs/html/sdk/api_diff/21/changes/android.appwidget.AppWidgetHost.html
new file mode 100644
index 0000000..71f23ef
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.appwidget.AppWidgetHost.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.appwidget.AppWidgetHost
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.appwidget.<A HREF="../../../../reference/android/appwidget/AppWidgetHost.html" target="_top"><font size="+2"><code>AppWidgetHost</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.appwidget.AppWidgetHost.startAppWidgetConfigureActivityForResult_added(android.app.Activity, int, int, int, android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetHost.html#startAppWidgetConfigureActivityForResult(android.app.Activity, int, int, int, android.os.Bundle)" target="_top"><code>startAppWidgetConfigureActivityForResult</code></A>(<code>Activity,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> Bundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.appwidget.AppWidgetManager.html b/docs/html/sdk/api_diff/21/changes/android.appwidget.AppWidgetManager.html
new file mode 100644
index 0000000..fa97697
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.appwidget.AppWidgetManager.html
@@ -0,0 +1,172 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.appwidget.AppWidgetManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.appwidget.<A HREF="../../../../reference/android/appwidget/AppWidgetManager.html" target="_top"><font size="+2"><code>AppWidgetManager</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.appwidget.AppWidgetManager.bindAppWidgetIdIfAllowed_added(int, android.os.UserHandle, android.content.ComponentName, android.os.Bundle)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetManager.html#bindAppWidgetIdIfAllowed(int, android.os.UserHandle, android.content.ComponentName, android.os.Bundle)" target="_top"><code>bindAppWidgetIdIfAllowed</code></A>(<code>int,</nobr> UserHandle<nobr>,</nobr> ComponentName<nobr>,</nobr> Bundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.appwidget.AppWidgetManager.getInstalledProvidersForProfile_added(android.os.UserHandle)"></A>
+  <nobr><code>List&lt;AppWidgetProviderInfo&gt;</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetManager.html#getInstalledProvidersForProfile(android.os.UserHandle)" target="_top"><code>getInstalledProvidersForProfile</code></A>(<code>UserHandle</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.appwidget.AppWidgetManager.ACTION_APPWIDGET_HOST_RESTORED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetManager.html#ACTION_APPWIDGET_HOST_RESTORED" target="_top"><code>ACTION_APPWIDGET_HOST_RESTORED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.appwidget.AppWidgetManager.ACTION_APPWIDGET_RESTORED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetManager.html#ACTION_APPWIDGET_RESTORED" target="_top"><code>ACTION_APPWIDGET_RESTORED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.appwidget.AppWidgetManager.EXTRA_APPWIDGET_OLD_IDS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetManager.html#EXTRA_APPWIDGET_OLD_IDS" target="_top"><code>EXTRA_APPWIDGET_OLD_IDS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.appwidget.AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetManager.html#EXTRA_APPWIDGET_PROVIDER_PROFILE" target="_top"><code>EXTRA_APPWIDGET_PROVIDER_PROFILE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.appwidget.AppWidgetManager.EXTRA_HOST_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetManager.html#EXTRA_HOST_ID" target="_top"><code>EXTRA_HOST_ID</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.appwidget.AppWidgetProvider.html b/docs/html/sdk/api_diff/21/changes/android.appwidget.AppWidgetProvider.html
new file mode 100644
index 0000000..289a0da
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.appwidget.AppWidgetProvider.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.appwidget.AppWidgetProvider
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.appwidget.<A HREF="../../../../reference/android/appwidget/AppWidgetProvider.html" target="_top"><font size="+2"><code>AppWidgetProvider</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.appwidget.AppWidgetProvider.onRestored_added(android.content.Context, int[], int[])"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetProvider.html#onRestored(android.content.Context, int[], int[])" target="_top"><code>onRestored</code></A>(<code>Context,</nobr> int[]<nobr>,</nobr> int[]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.appwidget.AppWidgetProviderInfo.html b/docs/html/sdk/api_diff/21/changes/android.appwidget.AppWidgetProviderInfo.html
new file mode 100644
index 0000000..7a69352
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.appwidget.AppWidgetProviderInfo.html
@@ -0,0 +1,175 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.appwidget.AppWidgetProviderInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.appwidget.<A HREF="../../../../reference/android/appwidget/AppWidgetProviderInfo.html" target="_top"><font size="+2"><code>AppWidgetProviderInfo</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.appwidget.AppWidgetProviderInfo.getProfile_added()"></A>
+  <nobr><code>UserHandle</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetProviderInfo.html#getProfile()" target="_top"><code>getProfile</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.appwidget.AppWidgetProviderInfo.loadIcon_added(android.content.Context, int)"></A>
+  <nobr><code>Drawable</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetProviderInfo.html#loadIcon(android.content.Context, int)" target="_top"><code>loadIcon</code></A>(<code>Context,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.appwidget.AppWidgetProviderInfo.loadLabel_added(android.content.pm.PackageManager)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetProviderInfo.html#loadLabel(android.content.pm.PackageManager)" target="_top"><code>loadLabel</code></A>(<code>PackageManager</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.appwidget.AppWidgetProviderInfo.loadPreviewImage_added(android.content.Context, int)"></A>
+  <nobr><code>Drawable</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetProviderInfo.html#loadPreviewImage(android.content.Context, int)" target="_top"><code>loadPreviewImage</code></A>(<code>Context,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.appwidget.AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetProviderInfo.html#WIDGET_CATEGORY_SEARCHBOX" target="_top"><code>WIDGET_CATEGORY_SEARCHBOX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.appwidget.AppWidgetProviderInfo.label"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetProviderInfo.html#label" target="_top"><code>label</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.bluetooth.BluetoothAdapter.html b/docs/html/sdk/api_diff/21/changes/android.bluetooth.BluetoothAdapter.html
new file mode 100644
index 0000000..9dc51b9
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.bluetooth.BluetoothAdapter.html
@@ -0,0 +1,188 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.bluetooth.BluetoothAdapter
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.bluetooth.<A HREF="../../../../reference/android/bluetooth/BluetoothAdapter.html" target="_top"><font size="+2"><code>BluetoothAdapter</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.bluetooth.BluetoothAdapter.getBluetoothLeAdvertiser_added()"></A>
+  <nobr><code>BluetoothLeAdvertiser</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothAdapter.html#getBluetoothLeAdvertiser()" target="_top"><code>getBluetoothLeAdvertiser</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.BluetoothAdapter.getBluetoothLeScanner_added()"></A>
+  <nobr><code>BluetoothLeScanner</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothAdapter.html#getBluetoothLeScanner()" target="_top"><code>getBluetoothLeScanner</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.BluetoothAdapter.isMultipleAdvertisementSupported_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothAdapter.html#isMultipleAdvertisementSupported()" target="_top"><code>isMultipleAdvertisementSupported</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.BluetoothAdapter.isOffloadedFilteringSupported_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothAdapter.html#isOffloadedFilteringSupported()" target="_top"><code>isOffloadedFilteringSupported</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.BluetoothAdapter.isOffloadedScanBatchingSupported_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothAdapter.html#isOffloadedScanBatchingSupported()" target="_top"><code>isOffloadedScanBatchingSupported</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.bluetooth.BluetoothAdapter.stopLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothAdapter.html#stopLeScan(android.bluetooth.BluetoothAdapter.LeScanCallback)" target="_top"><code>stopLeScan</code></A>(<code>LeScanCallback</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.BluetoothAdapter.startLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothAdapter.html#startLeScan(android.bluetooth.BluetoothAdapter.LeScanCallback)" target="_top"><code>startLeScan</code></A>(<code>LeScanCallback</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.BluetoothAdapter.startLeScan_changed(java.util.UUID[], android.bluetooth.BluetoothAdapter.LeScanCallback)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothAdapter.html#startLeScan(java.util.UUID[], android.bluetooth.BluetoothAdapter.LeScanCallback)" target="_top"><code>startLeScan</code></A>(<code>UUID[],</nobr> LeScanCallback<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.bluetooth.BluetoothGatt.html b/docs/html/sdk/api_diff/21/changes/android.bluetooth.BluetoothGatt.html
new file mode 100644
index 0000000..f5bbde9
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.bluetooth.BluetoothGatt.html
@@ -0,0 +1,165 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.bluetooth.BluetoothGatt
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.bluetooth.<A HREF="../../../../reference/android/bluetooth/BluetoothGatt.html" target="_top"><font size="+2"><code>BluetoothGatt</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.bluetooth.BluetoothGatt.requestConnectionPriority_added(int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothGatt.html#requestConnectionPriority(int)" target="_top"><code>requestConnectionPriority</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.BluetoothGatt.requestMtu_added(int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothGatt.html#requestMtu(int)" target="_top"><code>requestMtu</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_BALANCED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothGatt.html#CONNECTION_PRIORITY_BALANCED" target="_top"><code>CONNECTION_PRIORITY_BALANCED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_HIGH"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothGatt.html#CONNECTION_PRIORITY_HIGH" target="_top"><code>CONNECTION_PRIORITY_HIGH</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_LOW_POWER"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothGatt.html#CONNECTION_PRIORITY_LOW_POWER" target="_top"><code>CONNECTION_PRIORITY_LOW_POWER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.BluetoothGatt.GATT_CONNECTION_CONGESTED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothGatt.html#GATT_CONNECTION_CONGESTED" target="_top"><code>GATT_CONNECTION_CONGESTED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.bluetooth.BluetoothGattCallback.html b/docs/html/sdk/api_diff/21/changes/android.bluetooth.BluetoothGattCallback.html
new file mode 100644
index 0000000..59f786b
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.bluetooth.BluetoothGattCallback.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.bluetooth.BluetoothGattCallback
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.bluetooth.<A HREF="../../../../reference/android/bluetooth/BluetoothGattCallback.html" target="_top"><font size="+2"><code>BluetoothGattCallback</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.bluetooth.BluetoothGattCallback.onMtuChanged_added(android.bluetooth.BluetoothGatt, int, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothGattCallback.html#onMtuChanged(android.bluetooth.BluetoothGatt, int, int)" target="_top"><code>onMtuChanged</code></A>(<code>BluetoothGatt,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.bluetooth.BluetoothGattServerCallback.html b/docs/html/sdk/api_diff/21/changes/android.bluetooth.BluetoothGattServerCallback.html
new file mode 100644
index 0000000..3e838cd
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.bluetooth.BluetoothGattServerCallback.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.bluetooth.BluetoothGattServerCallback
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.bluetooth.<A HREF="../../../../reference/android/bluetooth/BluetoothGattServerCallback.html" target="_top"><font size="+2"><code>BluetoothGattServerCallback</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.bluetooth.BluetoothGattServerCallback.onNotificationSent_added(android.bluetooth.BluetoothDevice, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothGattServerCallback.html#onNotificationSent(android.bluetooth.BluetoothDevice, int)" target="_top"><code>onNotificationSent</code></A>(<code>BluetoothDevice,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.content.ContentResolver.html b/docs/html/sdk/api_diff/21/changes/android.content.ContentResolver.html
new file mode 100644
index 0000000..af6d82c
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.content.ContentResolver.html
@@ -0,0 +1,144 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.cancelSync_added(android.content.SyncRequest)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/content/ContentResolver.html#cancelSync(android.content.SyncRequest)" target="_top"><code>cancelSync</code></A>(<code>SyncRequest</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.ANY_CURSOR_ITEM_TYPE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/ContentResolver.html#ANY_CURSOR_ITEM_TYPE" target="_top"><code>ANY_CURSOR_ITEM_TYPE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.ContentResolver.EXTRA_SIZE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/ContentResolver.html#EXTRA_SIZE" target="_top"><code>EXTRA_SIZE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.content.Context.html b/docs/html/sdk/api_diff/21/changes/android.content.Context.html
new file mode 100644
index 0000000..857d8fe
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.content.Context.html
@@ -0,0 +1,289 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.getCodeCacheDir_added()"></A>
+  <nobr><code>File</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#getCodeCacheDir()" target="_top"><code>getCodeCacheDir</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.getDrawable_added(int)"></A>
+  <nobr><code>Drawable</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#getDrawable(int)" target="_top"><code>getDrawable</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.getExternalMediaDirs_added()"></A>
+  <nobr><code>File[]</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#getExternalMediaDirs()" target="_top"><code>getExternalMediaDirs</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.getNoBackupFilesDir_added()"></A>
+  <nobr><code>File</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#getNoBackupFilesDir()" target="_top"><code>getNoBackupFilesDir</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.removeStickyBroadcast_changed(android.content.Intent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#removeStickyBroadcast(android.content.Intent)" target="_top"><code>removeStickyBroadcast</code></A>(<code>Intent</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.removeStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#removeStickyBroadcastAsUser(android.content.Intent, android.os.UserHandle)" target="_top"><code>removeStickyBroadcastAsUser</code></A>(<code>Intent,</nobr> UserHandle<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.sendStickyBroadcast_changed(android.content.Intent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#sendStickyBroadcast(android.content.Intent)" target="_top"><code>sendStickyBroadcast</code></A>(<code>Intent</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.sendStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#sendStickyBroadcastAsUser(android.content.Intent, android.os.UserHandle)" target="_top"><code>sendStickyBroadcastAsUser</code></A>(<code>Intent,</nobr> UserHandle<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.sendStickyOrderedBroadcast_changed(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;<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 VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.sendStickyOrderedBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#sendStickyOrderedBroadcastAsUser(android.content.Intent, android.os.UserHandle, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" target="_top"><code>sendStickyOrderedBroadcastAsUser</code></A>(<code>Intent,</nobr> UserHandle<nobr>,</nobr> BroadcastReceiver<nobr>,</nobr> Handler<nobr>,</nobr> int<nobr>,</nobr> String<nobr>,</nobr> Bundle<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.APPWIDGET_SERVICE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#APPWIDGET_SERVICE" target="_top"><code>APPWIDGET_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.BATTERY_SERVICE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#BATTERY_SERVICE" target="_top"><code>BATTERY_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.CAMERA_SERVICE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#CAMERA_SERVICE" target="_top"><code>CAMERA_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.JOB_SCHEDULER_SERVICE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#JOB_SCHEDULER_SERVICE" target="_top"><code>JOB_SCHEDULER_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.LAUNCHER_APPS_SERVICE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#LAUNCHER_APPS_SERVICE" target="_top"><code>LAUNCHER_APPS_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.MEDIA_PROJECTION_SERVICE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#MEDIA_PROJECTION_SERVICE" target="_top"><code>MEDIA_PROJECTION_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.MEDIA_SESSION_SERVICE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#MEDIA_SESSION_SERVICE" target="_top"><code>MEDIA_SESSION_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.RESTRICTIONS_SERVICE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#RESTRICTIONS_SERVICE" target="_top"><code>RESTRICTIONS_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.TELECOM_SERVICE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#TELECOM_SERVICE" target="_top"><code>TELECOM_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.TV_INPUT_SERVICE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#TV_INPUT_SERVICE" target="_top"><code>TV_INPUT_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.content.ContextWrapper.html b/docs/html/sdk/api_diff/21/changes/android.content.ContextWrapper.html
new file mode 100644
index 0000000..2d21ca1
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.content.ContextWrapper.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.getCodeCacheDir_added()"></A>
+  <nobr><code>File</code>&nbsp;<A HREF="../../../../reference/android/content/ContextWrapper.html#getCodeCacheDir()" target="_top"><code>getCodeCacheDir</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.ContextWrapper.getExternalMediaDirs_added()"></A>
+  <nobr><code>File[]</code>&nbsp;<A HREF="../../../../reference/android/content/ContextWrapper.html#getExternalMediaDirs()" target="_top"><code>getExternalMediaDirs</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.ContextWrapper.getNoBackupFilesDir_added()"></A>
+  <nobr><code>File</code>&nbsp;<A HREF="../../../../reference/android/content/ContextWrapper.html#getNoBackupFilesDir()" target="_top"><code>getNoBackupFilesDir</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.content.Intent.html b/docs/html/sdk/api_diff/21/changes/android.content.Intent.html
new file mode 100644
index 0000000..679e18d
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.content.Intent.html
@@ -0,0 +1,209 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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_APPLICATION_RESTRICTIONS_CHANGED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Intent.html#ACTION_APPLICATION_RESTRICTIONS_CHANGED" target="_top"><code>ACTION_APPLICATION_RESTRICTIONS_CHANGED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Intent.ACTION_MANAGED_PROFILE_ADDED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Intent.html#ACTION_MANAGED_PROFILE_ADDED" target="_top"><code>ACTION_MANAGED_PROFILE_ADDED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Intent.ACTION_MANAGED_PROFILE_REMOVED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Intent.html#ACTION_MANAGED_PROFILE_REMOVED" target="_top"><code>ACTION_MANAGED_PROFILE_REMOVED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Intent.ACTION_OPEN_DOCUMENT_TREE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Intent.html#ACTION_OPEN_DOCUMENT_TREE" target="_top"><code>ACTION_OPEN_DOCUMENT_TREE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Intent.CATEGORY_LEANBACK_LAUNCHER"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Intent.html#CATEGORY_LEANBACK_LAUNCHER" target="_top"><code>CATEGORY_LEANBACK_LAUNCHER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Intent.html#EXTRA_ASSIST_INPUT_HINT_KEYBOARD" target="_top"><code>EXTRA_ASSIST_INPUT_HINT_KEYBOARD</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Intent.EXTRA_REPLACEMENT_EXTRAS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Intent.html#EXTRA_REPLACEMENT_EXTRAS" target="_top"><code>EXTRA_REPLACEMENT_EXTRAS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Intent.EXTRA_USER"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Intent.html#EXTRA_USER" target="_top"><code>EXTRA_USER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Intent.FLAG_ACTIVITY_NEW_DOCUMENT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/Intent.html#FLAG_ACTIVITY_NEW_DOCUMENT" target="_top"><code>FLAG_ACTIVITY_NEW_DOCUMENT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/Intent.html#FLAG_ACTIVITY_RETAIN_IN_RECENTS" target="_top"><code>FLAG_ACTIVITY_RETAIN_IN_RECENTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Intent.FLAG_GRANT_PREFIX_URI_PERMISSION"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/Intent.html#FLAG_GRANT_PREFIX_URI_PERMISSION" target="_top"><code>FLAG_GRANT_PREFIX_URI_PERMISSION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/Intent.html#FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET" target="_top"><code>FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.content.RestrictionEntry.html b/docs/html/sdk/api_diff/21/changes/android.content.RestrictionEntry.html
new file mode 100644
index 0000000..10d3f9a
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.content.RestrictionEntry.html
@@ -0,0 +1,173 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.RestrictionEntry
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/RestrictionEntry.html" target="_top"><font size="+2"><code>RestrictionEntry</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.content.RestrictionEntry.ctor_added(int, java.lang.String)"></A>
+  <nobr><A HREF="../../../../reference/android/content/RestrictionEntry.html#RestrictionEntry(int, java.lang.String)" target="_top"><code>RestrictionEntry</code></A>(<code>int,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.RestrictionEntry.ctor_added(java.lang.String, int)"></A>
+  <nobr><A HREF="../../../../reference/android/content/RestrictionEntry.html#RestrictionEntry(java.lang.String, int)" target="_top"><code>RestrictionEntry</code></A>(<code>String,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.RestrictionEntry.getIntValue_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/RestrictionEntry.html#getIntValue()" target="_top"><code>getIntValue</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.RestrictionEntry.setIntValue_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/content/RestrictionEntry.html#setIntValue(int)" target="_top"><code>setIntValue</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.RestrictionEntry.TYPE_INTEGER"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/RestrictionEntry.html#TYPE_INTEGER" target="_top"><code>TYPE_INTEGER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.RestrictionEntry.TYPE_STRING"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/RestrictionEntry.html#TYPE_STRING" target="_top"><code>TYPE_STRING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.content.pm.ActivityInfo.html b/docs/html/sdk/api_diff/21/changes/android.content.pm.ActivityInfo.html
new file mode 100644
index 0000000..c0b7e04
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.content.pm.ActivityInfo.html
@@ -0,0 +1,206 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.DOCUMENT_LAUNCH_ALWAYS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ActivityInfo.html#DOCUMENT_LAUNCH_ALWAYS" target="_top"><code>DOCUMENT_LAUNCH_ALWAYS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ActivityInfo.DOCUMENT_LAUNCH_INTO_EXISTING"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ActivityInfo.html#DOCUMENT_LAUNCH_INTO_EXISTING" target="_top"><code>DOCUMENT_LAUNCH_INTO_EXISTING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ActivityInfo.DOCUMENT_LAUNCH_NEVER"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ActivityInfo.html#DOCUMENT_LAUNCH_NEVER" target="_top"><code>DOCUMENT_LAUNCH_NEVER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ActivityInfo.DOCUMENT_LAUNCH_NONE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ActivityInfo.html#DOCUMENT_LAUNCH_NONE" target="_top"><code>DOCUMENT_LAUNCH_NONE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ActivityInfo.FLAG_AUTO_REMOVE_FROM_RECENTS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ActivityInfo.html#FLAG_AUTO_REMOVE_FROM_RECENTS" target="_top"><code>FLAG_AUTO_REMOVE_FROM_RECENTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ActivityInfo.html#FLAG_RELINQUISH_TASK_IDENTITY" target="_top"><code>FLAG_RELINQUISH_TASK_IDENTITY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ActivityInfo.FLAG_RESUME_WHILE_PAUSING"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ActivityInfo.html#FLAG_RESUME_WHILE_PAUSING" target="_top"><code>FLAG_RESUME_WHILE_PAUSING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ActivityInfo.PERSIST_ACROSS_REBOOTS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ActivityInfo.html#PERSIST_ACROSS_REBOOTS" target="_top"><code>PERSIST_ACROSS_REBOOTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ActivityInfo.PERSIST_NEVER"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ActivityInfo.html#PERSIST_NEVER" target="_top"><code>PERSIST_NEVER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ActivityInfo.PERSIST_ROOT_ONLY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ActivityInfo.html#PERSIST_ROOT_ONLY" target="_top"><code>PERSIST_ROOT_ONLY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ActivityInfo.documentLaunchMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ActivityInfo.html#documentLaunchMode" target="_top"><code>documentLaunchMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ActivityInfo.maxRecents"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ActivityInfo.html#maxRecents" target="_top"><code>maxRecents</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ActivityInfo.persistableMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ActivityInfo.html#persistableMode" target="_top"><code>persistableMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.content.pm.ApplicationInfo.html b/docs/html/sdk/api_diff/21/changes/android.content.pm.ApplicationInfo.html
new file mode 100644
index 0000000..8e77f09
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.content.pm.ApplicationInfo.html
@@ -0,0 +1,150 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ApplicationInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ApplicationInfo.html" target="_top"><font size="+2"><code>ApplicationInfo</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.ApplicationInfo.FLAG_FULL_BACKUP_ONLY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ApplicationInfo.html#FLAG_FULL_BACKUP_ONLY" target="_top"><code>FLAG_FULL_BACKUP_ONLY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ApplicationInfo.FLAG_IS_GAME"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ApplicationInfo.html#FLAG_IS_GAME" target="_top"><code>FLAG_IS_GAME</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ApplicationInfo.FLAG_MULTIARCH"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ApplicationInfo.html#FLAG_MULTIARCH" target="_top"><code>FLAG_MULTIARCH</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ApplicationInfo.splitPublicSourceDirs"></A>
+  <nobr><code>String[]</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ApplicationInfo.html#splitPublicSourceDirs" target="_top"><code>splitPublicSourceDirs</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ApplicationInfo.splitSourceDirs"></A>
+  <nobr><code>String[]</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ApplicationInfo.html#splitSourceDirs" target="_top"><code>splitSourceDirs</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.content.pm.InstrumentationInfo.html b/docs/html/sdk/api_diff/21/changes/android.content.pm.InstrumentationInfo.html
new file mode 100644
index 0000000..7e2a792
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.content.pm.InstrumentationInfo.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.InstrumentationInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/InstrumentationInfo.html" target="_top"><font size="+2"><code>InstrumentationInfo</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.InstrumentationInfo.splitPublicSourceDirs"></A>
+  <nobr><code>String[]</code>&nbsp;<A HREF="../../../../reference/android/content/pm/InstrumentationInfo.html#splitPublicSourceDirs" target="_top"><code>splitPublicSourceDirs</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.InstrumentationInfo.splitSourceDirs"></A>
+  <nobr><code>String[]</code>&nbsp;<A HREF="../../../../reference/android/content/pm/InstrumentationInfo.html#splitSourceDirs" target="_top"><code>splitSourceDirs</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.content.pm.PackageInfo.html b/docs/html/sdk/api_diff/21/changes/android.content.pm.PackageInfo.html
new file mode 100644
index 0000000..addc425
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.content.pm.PackageInfo.html
@@ -0,0 +1,157 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.INSTALL_LOCATION_AUTO"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageInfo.html#INSTALL_LOCATION_AUTO" target="_top"><code>INSTALL_LOCATION_AUTO</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageInfo.html#INSTALL_LOCATION_INTERNAL_ONLY" target="_top"><code>INSTALL_LOCATION_INTERNAL_ONLY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageInfo.INSTALL_LOCATION_PREFER_EXTERNAL"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageInfo.html#INSTALL_LOCATION_PREFER_EXTERNAL" target="_top"><code>INSTALL_LOCATION_PREFER_EXTERNAL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageInfo.featureGroups"></A>
+  <nobr><code>FeatureGroupInfo[]</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageInfo.html#featureGroups" target="_top"><code>featureGroups</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageInfo.installLocation"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageInfo.html#installLocation" target="_top"><code>installLocation</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageInfo.splitNames"></A>
+  <nobr><code>String[]</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageInfo.html#splitNames" target="_top"><code>splitNames</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.content.pm.PackageManager.html b/docs/html/sdk/api_diff/21/changes/android.content.pm.PackageManager.html
new file mode 100644
index 0000000..e0a85a3
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.content.pm.PackageManager.html
@@ -0,0 +1,287 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.getLeanbackLaunchIntentForPackage_added(java.lang.String)"></A>
+  <nobr><code>Intent</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#getLeanbackLaunchIntentForPackage(java.lang.String)" target="_top"><code>getLeanbackLaunchIntentForPackage</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.getPackageInstaller_added()"></A>
+  <nobr><code>PackageInstaller</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#getPackageInstaller()" target="_top"><code>getPackageInstaller</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)"></A>
+  <nobr><code>Drawable</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#getUserBadgedDrawableForDensity(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)" target="_top"><code>getUserBadgedDrawableForDensity</code></A>(<code>Drawable,</nobr> UserHandle<nobr>,</nobr> Rect<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)"></A>
+  <nobr><code>Drawable</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#getUserBadgedIcon(android.graphics.drawable.Drawable, android.os.UserHandle)" target="_top"><code>getUserBadgedIcon</code></A>(<code>Drawable,</nobr> UserHandle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)"></A>
+  <nobr><code>CharSequence</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#getUserBadgedLabel(java.lang.CharSequence, android.os.UserHandle)" target="_top"><code>getUserBadgedLabel</code></A>(<code>CharSequence,</nobr> UserHandle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.PackageManager.FEATURE_AUDIO_OUTPUT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_AUDIO_OUTPUT" target="_top"><code>FEATURE_AUDIO_OUTPUT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING" target="_top"><code>FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR" target="_top"><code>FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_RAW"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_CAMERA_CAPABILITY_RAW" target="_top"><code>FEATURE_CAMERA_CAPABILITY_RAW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_CAMERA_LEVEL_FULL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_CAMERA_LEVEL_FULL" target="_top"><code>FEATURE_CAMERA_LEVEL_FULL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_CONNECTION_SERVICE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_CONNECTION_SERVICE" target="_top"><code>FEATURE_CONNECTION_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_GAMEPAD"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_GAMEPAD" target="_top"><code>FEATURE_GAMEPAD</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_LEANBACK"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_LEANBACK" target="_top"><code>FEATURE_LEANBACK</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_LIVE_TV"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_LIVE_TV" target="_top"><code>FEATURE_LIVE_TV</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_MANAGED_USERS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_MANAGED_USERS" target="_top"><code>FEATURE_MANAGED_USERS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_OPENGLES_EXTENSION_PACK"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_OPENGLES_EXTENSION_PACK" target="_top"><code>FEATURE_OPENGLES_EXTENSION_PACK</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_SECURELY_REMOVES_USERS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_SECURELY_REMOVES_USERS" target="_top"><code>FEATURE_SECURELY_REMOVES_USERS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_SENSOR_AMBIENT_TEMPERATURE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_SENSOR_AMBIENT_TEMPERATURE" target="_top"><code>FEATURE_SENSOR_AMBIENT_TEMPERATURE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_SENSOR_HEART_RATE_ECG"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_SENSOR_HEART_RATE_ECG" target="_top"><code>FEATURE_SENSOR_HEART_RATE_ECG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_SENSOR_RELATIVE_HUMIDITY"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_SENSOR_RELATIVE_HUMIDITY" target="_top"><code>FEATURE_SENSOR_RELATIVE_HUMIDITY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_VERIFIED_BOOT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_VERIFIED_BOOT" target="_top"><code>FEATURE_VERIFIED_BOOT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.PackageManager.FEATURE_TELEVISION"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_TELEVISION" target="_top"><code>FEATURE_TELEVISION</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.content.pm.PermissionInfo.html b/docs/html/sdk/api_diff/21/changes/android.content.pm.PermissionInfo.html
new file mode 100644
index 0000000..26431c7
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.content.pm.PermissionInfo.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.PermissionInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/PermissionInfo.html" target="_top"><font size="+2"><code>PermissionInfo</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.PermissionInfo.PROTECTION_FLAG_APPOP"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PermissionInfo.html#PROTECTION_FLAG_APPOP" target="_top"><code>PROTECTION_FLAG_APPOP</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.content.res.AssetManager.AssetInputStream.html b/docs/html/sdk/api_diff/21/changes/android.content.res.AssetManager.AssetInputStream.html
new file mode 100644
index 0000000..8161da9
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.content.res.AssetManager.AssetInputStream.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AssetManager.AssetInputStream
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/AssetManager.AssetInputStream.html" target="_top"><font size="+2"><code>AssetManager.AssetInputStream</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.res.AssetManager.AssetInputStream.getAssetInt_removed()"></A>
+  <nobr><code>int</code>&nbsp;getAssetInt()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.content.res.AssetManager.html b/docs/html/sdk/api_diff/21/changes/android.content.res.AssetManager.html
new file mode 100644
index 0000000..c0e5522
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.content.res.AssetManager.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AssetManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/AssetManager.html" target="_top"><font size="+2"><code>AssetManager</code></font></A>
+</H2>
+<p><font xsize="+1">Added interface <code>java.lang.AutoCloseable</code>.<br></font>
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.content.res.ColorStateList.html b/docs/html/sdk/api_diff/21/changes/android.content.res.ColorStateList.html
new file mode 100644
index 0000000..1f13be8
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.content.res.ColorStateList.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ColorStateList
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ColorStateList.html" target="_top"><font size="+2"><code>ColorStateList</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.res.ColorStateList.isOpaque_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/content/res/ColorStateList.html#isOpaque()" target="_top"><code>isOpaque</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.content.res.Resources.Theme.html b/docs/html/sdk/api_diff/21/changes/android.content.res.Resources.Theme.html
new file mode 100644
index 0000000..57eb43d
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.content.res.Resources.Theme.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Resources.Theme
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Resources.Theme.html" target="_top"><font size="+2"><code>Resources.Theme</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.res.Resources.Theme.getDrawable_added(int)"></A>
+  <nobr><code>Drawable</code>&nbsp;<A HREF="../../../../reference/android/content/res/Resources.Theme.html#getDrawable(int)" target="_top"><code>getDrawable</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.res.Resources.Theme.getResources_added()"></A>
+  <nobr><code>Resources</code>&nbsp;<A HREF="../../../../reference/android/content/res/Resources.Theme.html#getResources()" target="_top"><code>getResources</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.content.res.Resources.html b/docs/html/sdk/api_diff/21/changes/android.content.res.Resources.html
new file mode 100644
index 0000000..d2beb32
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.content.res.Resources.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Resources
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Resources.html" target="_top"><font size="+2"><code>Resources</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.res.Resources.getDrawable_added(int, android.content.res.Resources.Theme)"></A>
+  <nobr><code>Drawable</code>&nbsp;<A HREF="../../../../reference/android/content/res/Resources.html#getDrawable(int, android.content.res.Resources.Theme)" target="_top"><code>getDrawable</code></A>(<code>int,</nobr> Theme<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.res.Resources.getDrawableForDensity_added(int, int, android.content.res.Resources.Theme)"></A>
+  <nobr><code>Drawable</code>&nbsp;<A HREF="../../../../reference/android/content/res/Resources.html#getDrawableForDensity(int, int, android.content.res.Resources.Theme)" target="_top"><code>getDrawableForDensity</code></A>(<code>int,</nobr> int<nobr>,</nobr> Theme<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.content.res.TypedArray.html b/docs/html/sdk/api_diff/21/changes/android.content.res.TypedArray.html
new file mode 100644
index 0000000..1ddfc34
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.content.res.TypedArray.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.TypedArray
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/TypedArray.html" target="_top"><font size="+2"><code>TypedArray</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.res.TypedArray.getChangingConfigurations_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/res/TypedArray.html#getChangingConfigurations()" target="_top"><code>getChangingConfigurations</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.res.TypedArray.getType_added(int)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/res/TypedArray.html#getType(int)" target="_top"><code>getType</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.gesture.GestureOverlayView.html b/docs/html/sdk/api_diff/21/changes/android.gesture.GestureOverlayView.html
new file mode 100644
index 0000000..11c3023
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.gesture.GestureOverlayView.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.gesture.GestureOverlayView
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.gesture.<A HREF="../../../../reference/android/gesture/GestureOverlayView.html" target="_top"><font size="+2"><code>GestureOverlayView</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.gesture.GestureOverlayView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/gesture/GestureOverlayView.html#GestureOverlayView(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>GestureOverlayView</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.graphics.BitmapFactory.Options.html b/docs/html/sdk/api_diff/21/changes/android.graphics.BitmapFactory.Options.html
new file mode 100644
index 0000000..458a566
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.graphics.BitmapFactory.Options.html
@@ -0,0 +1,133 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.BitmapFactory.Options
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/BitmapFactory.Options.html" target="_top"><font size="+2"><code>BitmapFactory.Options</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.graphics.BitmapFactory.Options.inInputShareable"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/graphics/BitmapFactory.Options.html#inInputShareable" target="_top"><code>inInputShareable</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.BitmapFactory.Options.inPurgeable"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/graphics/BitmapFactory.Options.html#inPurgeable" target="_top"><code>inPurgeable</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.graphics.Canvas.html b/docs/html/sdk/api_diff/21/changes/android.graphics.Canvas.html
new file mode 100644
index 0000000..9aeeb06
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.graphics.Canvas.html
@@ -0,0 +1,212 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Canvas
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Canvas.html" target="_top"><font size="+2"><code>Canvas</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.Canvas.drawArc_added(float, float, float, float, float, float, boolean, android.graphics.Paint)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/Canvas.html#drawArc(float, float, float, float, float, float, boolean, android.graphics.Paint)" target="_top"><code>drawArc</code></A>(<code>float,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> boolean<nobr>,</nobr> Paint<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Canvas.drawOval_added(float, float, float, float, android.graphics.Paint)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/Canvas.html#drawOval(float, float, float, float, android.graphics.Paint)" target="_top"><code>drawOval</code></A>(<code>float,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> Paint<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Canvas.drawRoundRect_added(float, float, float, float, float, float, android.graphics.Paint)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/Canvas.html#drawRoundRect(float, float, float, float, float, float, android.graphics.Paint)" target="_top"><code>drawRoundRect</code></A>(<code>float,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> Paint<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Canvas.saveLayer_added(android.graphics.RectF, android.graphics.Paint)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/graphics/Canvas.html#saveLayer(android.graphics.RectF, android.graphics.Paint)" target="_top"><code>saveLayer</code></A>(<code>RectF,</nobr> Paint<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Canvas.saveLayer_added(float, float, float, float, android.graphics.Paint)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/graphics/Canvas.html#saveLayer(float, float, float, float, android.graphics.Paint)" target="_top"><code>saveLayer</code></A>(<code>float,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> Paint<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Canvas.saveLayerAlpha_added(android.graphics.RectF, int)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/graphics/Canvas.html#saveLayerAlpha(android.graphics.RectF, int)" target="_top"><code>saveLayerAlpha</code></A>(<code>RectF,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Canvas.saveLayerAlpha_added(float, float, float, float, int)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/graphics/Canvas.html#saveLayerAlpha(float, float, float, float, int)" target="_top"><code>saveLayerAlpha</code></A>(<code>float,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.graphics.Canvas.clipRegion_changed(android.graphics.Region)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/graphics/Canvas.html#clipRegion(android.graphics.Region)" target="_top"><code>clipRegion</code></A>(<code>Region</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Canvas.clipRegion_changed(android.graphics.Region, android.graphics.Region.Op)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/graphics/Canvas.html#clipRegion(android.graphics.Region, android.graphics.Region.Op)" target="_top"><code>clipRegion</code></A>(<code>Region,</nobr> Op<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Canvas.drawBitmap_changed(int[], int, int, float, float, int, int, boolean, android.graphics.Paint)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/Canvas.html#drawBitmap(int[], int, int, float, float, int, int, boolean, android.graphics.Paint)" target="_top"><code>drawBitmap</code></A>(<code>int[],</nobr> int<nobr>,</nobr> int<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> boolean<nobr>,</nobr> Paint<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Canvas.drawBitmap_changed(int[], int, int, int, int, int, int, boolean, android.graphics.Paint)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/Canvas.html#drawBitmap(int[], int, int, int, int, int, int, boolean, android.graphics.Paint)" target="_top"><code>drawBitmap</code></A>(<code>int[],</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> boolean<nobr>,</nobr> Paint<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.graphics.ImageFormat.html b/docs/html/sdk/api_diff/21/changes/android.graphics.ImageFormat.html
new file mode 100644
index 0000000..9d27bb0
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.graphics.ImageFormat.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ImageFormat
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ImageFormat.html" target="_top"><font size="+2"><code>ImageFormat</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.ImageFormat.RAW10"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/graphics/ImageFormat.html#RAW10" target="_top"><code>RAW10</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.ImageFormat.RAW_SENSOR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/graphics/ImageFormat.html#RAW_SENSOR" target="_top"><code>RAW_SENSOR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.graphics.LayerRasterizer.html b/docs/html/sdk/api_diff/21/changes/android.graphics.LayerRasterizer.html
new file mode 100644
index 0000000..57ed74c8
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.graphics.LayerRasterizer.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.LayerRasterizer
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/LayerRasterizer.html" target="_top"><font size="+2"><code>LayerRasterizer</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.graphics.Matrix.html b/docs/html/sdk/api_diff/21/changes/android.graphics.Matrix.html
new file mode 100644
index 0000000..85fef87
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.graphics.Matrix.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Matrix
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Matrix.html" target="_top"><font size="+2"><code>Matrix</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.Matrix.isAffine_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/graphics/Matrix.html#isAffine()" target="_top"><code>isAffine</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.graphics.Paint.html b/docs/html/sdk/api_diff/21/changes/android.graphics.Paint.html
new file mode 100644
index 0000000..3af1c90
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.graphics.Paint.html
@@ -0,0 +1,185 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Paint
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Paint.html" target="_top"><font size="+2"><code>Paint</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.Paint.getFontFeatureSettings_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/graphics/Paint.html#getFontFeatureSettings()" target="_top"><code>getFontFeatureSettings</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Paint.getLetterSpacing_added()"></A>
+  <nobr><code>float</code>&nbsp;<A HREF="../../../../reference/android/graphics/Paint.html#getLetterSpacing()" target="_top"><code>getLetterSpacing</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Paint.isElegantTextHeight_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/graphics/Paint.html#isElegantTextHeight()" target="_top"><code>isElegantTextHeight</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Paint.setElegantTextHeight_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/Paint.html#setElegantTextHeight(boolean)" target="_top"><code>setElegantTextHeight</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Paint.setFontFeatureSettings_added(java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/Paint.html#setFontFeatureSettings(java.lang.String)" target="_top"><code>setFontFeatureSettings</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Paint.setLetterSpacing_added(float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/Paint.html#setLetterSpacing(float)" target="_top"><code>setLetterSpacing</code></A>(<code>float</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.graphics.Paint.getRasterizer_changed()"></A>
+  <nobr><code>Rasterizer</code>&nbsp;<A HREF="../../../../reference/android/graphics/Paint.html#getRasterizer()" target="_top"><code>getRasterizer</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Paint.setRasterizer_changed(android.graphics.Rasterizer)"></A>
+  <nobr><code>Rasterizer</code>&nbsp;<A HREF="../../../../reference/android/graphics/Paint.html#setRasterizer(android.graphics.Rasterizer)" target="_top"><code>setRasterizer</code></A>(<code>Rasterizer</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.graphics.Path.html b/docs/html/sdk/api_diff/21/changes/android.graphics.Path.html
new file mode 100644
index 0000000..3a3079a
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.graphics.Path.html
@@ -0,0 +1,157 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Path
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Path.html" target="_top"><font size="+2"><code>Path</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.Path.addArc_added(float, float, float, float, float, float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/Path.html#addArc(float, float, float, float, float, float)" target="_top"><code>addArc</code></A>(<code>float,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Path.addOval_added(float, float, float, float, android.graphics.Path.Direction)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/Path.html#addOval(float, float, float, float, android.graphics.Path.Direction)" target="_top"><code>addOval</code></A>(<code>float,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> Direction<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Path.addRoundRect_added(float, float, float, float, float, float, android.graphics.Path.Direction)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/Path.html#addRoundRect(float, float, float, float, float, float, android.graphics.Path.Direction)" target="_top"><code>addRoundRect</code></A>(<code>float,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> Direction<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Path.addRoundRect_added(float, float, float, float, float[], android.graphics.Path.Direction)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/Path.html#addRoundRect(float, float, float, float, float[], android.graphics.Path.Direction)" target="_top"><code>addRoundRect</code></A>(<code>float,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float[]<nobr>,</nobr> Direction<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Path.arcTo_added(float, float, float, float, float, float, boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/Path.html#arcTo(float, float, float, float, float, float, boolean)" target="_top"><code>arcTo</code></A>(<code>float,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Path.isConvex_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/graphics/Path.html#isConvex()" target="_top"><code>isConvex</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.graphics.Rasterizer.html b/docs/html/sdk/api_diff/21/changes/android.graphics.Rasterizer.html
new file mode 100644
index 0000000..ae99a59
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.graphics.Rasterizer.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Rasterizer
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Rasterizer.html" target="_top"><font size="+2"><code>Rasterizer</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.graphics.SurfaceTexture.html b/docs/html/sdk/api_diff/21/changes/android.graphics.SurfaceTexture.html
new file mode 100644
index 0000000..5cba67d
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.graphics.SurfaceTexture.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.SurfaceTexture
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/SurfaceTexture.html" target="_top"><font size="+2"><code>SurfaceTexture</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.SurfaceTexture.setOnFrameAvailableListener_added(android.graphics.SurfaceTexture.OnFrameAvailableListener, android.os.Handler)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/SurfaceTexture.html#setOnFrameAvailableListener(android.graphics.SurfaceTexture.OnFrameAvailableListener, android.os.Handler)" target="_top"><code>setOnFrameAvailableListener</code></A>(<code>OnFrameAvailableListener,</nobr> Handler<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.graphics.drawable.Drawable.ConstantState.html b/docs/html/sdk/api_diff/21/changes/android.graphics.drawable.Drawable.ConstantState.html
new file mode 100644
index 0000000..66f0878
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.graphics.drawable.Drawable.ConstantState.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.canApplyTheme_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/Drawable.ConstantState.html#canApplyTheme()" target="_top"><code>canApplyTheme</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.Drawable.ConstantState.newDrawable_added(android.content.res.Resources, android.content.res.Resources.Theme)"></A>
+  <nobr><code>Drawable</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/Drawable.ConstantState.html#newDrawable(android.content.res.Resources, android.content.res.Resources.Theme)" target="_top"><code>newDrawable</code></A>(<code>Resources,</nobr> Theme<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.graphics.drawable.Drawable.html b/docs/html/sdk/api_diff/21/changes/android.graphics.drawable.Drawable.html
new file mode 100644
index 0000000..4811b49
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.graphics.drawable.Drawable.html
@@ -0,0 +1,206 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.applyTheme_added(android.content.res.Resources.Theme)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/Drawable.html#applyTheme(android.content.res.Resources.Theme)" target="_top"><code>applyTheme</code></A>(<code>Theme</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.Drawable.canApplyTheme_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/Drawable.html#canApplyTheme()" target="_top"><code>canApplyTheme</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.Drawable.createFromXml_added(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.content.res.Resources.Theme)"></A>
+  <nobr><code>Drawable</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/Drawable.html#createFromXml(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.content.res.Resources.Theme)" target="_top"><code>createFromXml</code></A>(<code>Resources,</nobr> XmlPullParser<nobr>,</nobr> Theme<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.Drawable.createFromXmlInner_added(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.util.AttributeSet, android.content.res.Resources.Theme)"></A>
+  <nobr><code>Drawable</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/Drawable.html#createFromXmlInner(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.util.AttributeSet, android.content.res.Resources.Theme)" target="_top"><code>createFromXmlInner</code></A>(<code>Resources,</nobr> XmlPullParser<nobr>,</nobr> AttributeSet<nobr>,</nobr> Theme<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.Drawable.getColorFilter_added()"></A>
+  <nobr><code>ColorFilter</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/Drawable.html#getColorFilter()" target="_top"><code>getColorFilter</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.Drawable.getDirtyBounds_added()"></A>
+  <nobr><code>Rect</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/Drawable.html#getDirtyBounds()" target="_top"><code>getDirtyBounds</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.Drawable.getOutline_added(android.graphics.Outline)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/Drawable.html#getOutline(android.graphics.Outline)" target="_top"><code>getOutline</code></A>(<code>Outline</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.Drawable.inflate_added(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.util.AttributeSet, android.content.res.Resources.Theme)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/Drawable.html#inflate(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.util.AttributeSet, android.content.res.Resources.Theme)" target="_top"><code>inflate</code></A>(<code>Resources,</nobr> XmlPullParser<nobr>,</nobr> AttributeSet<nobr>,</nobr> Theme<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.Drawable.setHotspot_added(float, float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/Drawable.html#setHotspot(float, float)" target="_top"><code>setHotspot</code></A>(<code>float,</nobr> float<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.Drawable.setHotspotBounds_added(int, int, int, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/Drawable.html#setHotspotBounds(int, int, int, int)" target="_top"><code>setHotspotBounds</code></A>(<code>int,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.Drawable.setTint_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/Drawable.html#setTint(int)" target="_top"><code>setTint</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.Drawable.setTintList_added(android.content.res.ColorStateList)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/Drawable.html#setTintList(android.content.res.ColorStateList)" target="_top"><code>setTintList</code></A>(<code>ColorStateList</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.Drawable.setTintMode_added(android.graphics.PorterDuff.Mode)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/Drawable.html#setTintMode(android.graphics.PorterDuff.Mode)" target="_top"><code>setTintMode</code></A>(<code>Mode</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.graphics.drawable.GradientDrawable.html b/docs/html/sdk/api_diff/21/changes/android.graphics.drawable.GradientDrawable.html
new file mode 100644
index 0000000..02e8196
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.graphics.drawable.GradientDrawable.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.GradientDrawable
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/GradientDrawable.html" target="_top"><font size="+2"><code>GradientDrawable</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.GradientDrawable.getGradientRadius_added()"></A>
+  <nobr><code>float</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/GradientDrawable.html#getGradientRadius()" target="_top"><code>getGradientRadius</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.GradientDrawable.setColor_added(android.content.res.ColorStateList)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/GradientDrawable.html#setColor(android.content.res.ColorStateList)" target="_top"><code>setColor</code></A>(<code>ColorStateList</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.GradientDrawable.setStroke_added(int, android.content.res.ColorStateList)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/GradientDrawable.html#setStroke(int, android.content.res.ColorStateList)" target="_top"><code>setStroke</code></A>(<code>int,</nobr> ColorStateList<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.GradientDrawable.setStroke_added(int, android.content.res.ColorStateList, float, float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/GradientDrawable.html#setStroke(int, android.content.res.ColorStateList, float, float)" target="_top"><code>setStroke</code></A>(<code>int,</nobr> ColorStateList<nobr>,</nobr> float<nobr>,</nobr> float<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.graphics.drawable.LayerDrawable.html b/docs/html/sdk/api_diff/21/changes/android.graphics.drawable.LayerDrawable.html
new file mode 100644
index 0000000..7bc507a
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.graphics.drawable.LayerDrawable.html
@@ -0,0 +1,151 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.LayerDrawable
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/LayerDrawable.html" target="_top"><font size="+2"><code>LayerDrawable</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.LayerDrawable.getPaddingMode_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/LayerDrawable.html#getPaddingMode()" target="_top"><code>getPaddingMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.LayerDrawable.setPaddingMode_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/LayerDrawable.html#setPaddingMode(int)" target="_top"><code>setPaddingMode</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.drawable.LayerDrawable.PADDING_MODE_NEST"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/LayerDrawable.html#PADDING_MODE_NEST" target="_top"><code>PADDING_MODE_NEST</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.LayerDrawable.PADDING_MODE_STACK"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/LayerDrawable.html#PADDING_MODE_STACK" target="_top"><code>PADDING_MODE_STACK</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.graphics.drawable.RotateDrawable.html b/docs/html/sdk/api_diff/21/changes/android.graphics.drawable.RotateDrawable.html
new file mode 100644
index 0000000..0f37a38
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.graphics.drawable.RotateDrawable.html
@@ -0,0 +1,206 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.RotateDrawable
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/RotateDrawable.html" target="_top"><font size="+2"><code>RotateDrawable</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.RotateDrawable.getFromDegrees_added()"></A>
+  <nobr><code>float</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/RotateDrawable.html#getFromDegrees()" target="_top"><code>getFromDegrees</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.RotateDrawable.getPivotX_added()"></A>
+  <nobr><code>float</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/RotateDrawable.html#getPivotX()" target="_top"><code>getPivotX</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.RotateDrawable.getPivotY_added()"></A>
+  <nobr><code>float</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/RotateDrawable.html#getPivotY()" target="_top"><code>getPivotY</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.RotateDrawable.getToDegrees_added()"></A>
+  <nobr><code>float</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/RotateDrawable.html#getToDegrees()" target="_top"><code>getToDegrees</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.RotateDrawable.isPivotXRelative_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/RotateDrawable.html#isPivotXRelative()" target="_top"><code>isPivotXRelative</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.RotateDrawable.isPivotYRelative_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/RotateDrawable.html#isPivotYRelative()" target="_top"><code>isPivotYRelative</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.RotateDrawable.setDrawable_added(android.graphics.drawable.Drawable)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/RotateDrawable.html#setDrawable(android.graphics.drawable.Drawable)" target="_top"><code>setDrawable</code></A>(<code>Drawable</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.RotateDrawable.setFromDegrees_added(float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/RotateDrawable.html#setFromDegrees(float)" target="_top"><code>setFromDegrees</code></A>(<code>float</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.RotateDrawable.setPivotX_added(float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/RotateDrawable.html#setPivotX(float)" target="_top"><code>setPivotX</code></A>(<code>float</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.RotateDrawable.setPivotXRelative_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/RotateDrawable.html#setPivotXRelative(boolean)" target="_top"><code>setPivotXRelative</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.RotateDrawable.setPivotY_added(float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/RotateDrawable.html#setPivotY(float)" target="_top"><code>setPivotY</code></A>(<code>float</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.RotateDrawable.setPivotYRelative_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/RotateDrawable.html#setPivotYRelative(boolean)" target="_top"><code>setPivotYRelative</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.RotateDrawable.setToDegrees_added(float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/RotateDrawable.html#setToDegrees(float)" target="_top"><code>setToDegrees</code></A>(<code>float</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.graphics.drawable.shapes.Shape.html b/docs/html/sdk/api_diff/21/changes/android.graphics.drawable.shapes.Shape.html
new file mode 100644
index 0000000..5909df9
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.graphics.drawable.shapes.Shape.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.shapes.Shape
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.shapes.<A HREF="../../../../reference/android/graphics/drawable/shapes/Shape.html" target="_top"><font size="+2"><code>Shape</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.shapes.Shape.getOutline_added(android.graphics.Outline)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/shapes/Shape.html#getOutline(android.graphics.Outline)" target="_top"><code>getOutline</code></A>(<code>Outline</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.hardware.Camera.Area.html b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.Area.html
new file mode 100644
index 0000000..6234560
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.Area.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Area
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.Area.html" target="_top"><font size="+2"><code>Camera.Area</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.hardware.Camera.AutoFocusCallback.html b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.AutoFocusCallback.html
new file mode 100644
index 0000000..9c7ab48
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.AutoFocusCallback.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AutoFocusCallback
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.hardware.<A HREF="../../../../reference/android/hardware/Camera.AutoFocusCallback.html" target="_top"><font size="+2"><code>Camera.AutoFocusCallback</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.hardware.Camera.AutoFocusMoveCallback.html b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.AutoFocusMoveCallback.html
new file mode 100644
index 0000000..4d8e49c
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.AutoFocusMoveCallback.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AutoFocusMoveCallback
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.hardware.<A HREF="../../../../reference/android/hardware/Camera.AutoFocusMoveCallback.html" target="_top"><font size="+2"><code>Camera.AutoFocusMoveCallback</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.hardware.Camera.CameraInfo.html b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.CameraInfo.html
new file mode 100644
index 0000000..3803c32
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.CameraInfo.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.CameraInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.CameraInfo.html" target="_top"><font size="+2"><code>Camera.CameraInfo</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.hardware.Camera.ErrorCallback.html b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.ErrorCallback.html
new file mode 100644
index 0000000..55bb254
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.ErrorCallback.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ErrorCallback
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.hardware.<A HREF="../../../../reference/android/hardware/Camera.ErrorCallback.html" target="_top"><font size="+2"><code>Camera.ErrorCallback</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.hardware.Camera.Face.html b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.Face.html
new file mode 100644
index 0000000..792d6ba
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.Face.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Face
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.Face.html" target="_top"><font size="+2"><code>Camera.Face</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.hardware.Camera.FaceDetectionListener.html b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.FaceDetectionListener.html
new file mode 100644
index 0000000..fd8a966
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.FaceDetectionListener.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.FaceDetectionListener
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.hardware.<A HREF="../../../../reference/android/hardware/Camera.FaceDetectionListener.html" target="_top"><font size="+2"><code>Camera.FaceDetectionListener</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.hardware.Camera.OnZoomChangeListener.html b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.OnZoomChangeListener.html
new file mode 100644
index 0000000..26e560e
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.OnZoomChangeListener.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.OnZoomChangeListener
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.hardware.<A HREF="../../../../reference/android/hardware/Camera.OnZoomChangeListener.html" target="_top"><font size="+2"><code>Camera.OnZoomChangeListener</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.hardware.Camera.Parameters.html b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.Parameters.html
new file mode 100644
index 0000000..8b8463d
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.Parameters.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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>
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.hardware.Camera.PictureCallback.html b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.PictureCallback.html
new file mode 100644
index 0000000..5a72985
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.PictureCallback.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.PictureCallback
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.hardware.<A HREF="../../../../reference/android/hardware/Camera.PictureCallback.html" target="_top"><font size="+2"><code>Camera.PictureCallback</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.hardware.Camera.PreviewCallback.html b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.PreviewCallback.html
new file mode 100644
index 0000000..83f077c
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.PreviewCallback.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.PreviewCallback
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.hardware.<A HREF="../../../../reference/android/hardware/Camera.PreviewCallback.html" target="_top"><font size="+2"><code>Camera.PreviewCallback</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.hardware.Camera.ShutterCallback.html b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.ShutterCallback.html
new file mode 100644
index 0000000..01596155
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.ShutterCallback.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ShutterCallback
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.hardware.<A HREF="../../../../reference/android/hardware/Camera.ShutterCallback.html" target="_top"><font size="+2"><code>Camera.ShutterCallback</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.hardware.Camera.Size.html b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.Size.html
new file mode 100644
index 0000000..95c08c2
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.Size.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Size
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.Size.html" target="_top"><font size="+2"><code>Camera.Size</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.hardware.Camera.html b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.html
new file mode 100644
index 0000000..d328635
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.hardware.Camera.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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>
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.hardware.Sensor.html b/docs/html/sdk/api_diff/21/changes/android.hardware.Sensor.html
new file mode 100644
index 0000000..0231bdb
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.hardware.Sensor.html
@@ -0,0 +1,172 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Sensor
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Sensor.html" target="_top"><font size="+2"><code>Sensor</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.Sensor.getMaxDelay_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/Sensor.html#getMaxDelay()" target="_top"><code>getMaxDelay</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.Sensor.getReportingMode_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/Sensor.html#getReportingMode()" target="_top"><code>getReportingMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.Sensor.isWakeUpSensor_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/hardware/Sensor.html#isWakeUpSensor()" target="_top"><code>isWakeUpSensor</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Sensor.REPORTING_MODE_CONTINUOUS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/Sensor.html#REPORTING_MODE_CONTINUOUS" target="_top"><code>REPORTING_MODE_CONTINUOUS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.Sensor.REPORTING_MODE_ONE_SHOT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/Sensor.html#REPORTING_MODE_ONE_SHOT" target="_top"><code>REPORTING_MODE_ONE_SHOT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.Sensor.REPORTING_MODE_ON_CHANGE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/Sensor.html#REPORTING_MODE_ON_CHANGE" target="_top"><code>REPORTING_MODE_ON_CHANGE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.Sensor.REPORTING_MODE_SPECIAL_TRIGGER"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/Sensor.html#REPORTING_MODE_SPECIAL_TRIGGER" target="_top"><code>REPORTING_MODE_SPECIAL_TRIGGER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.hardware.SensorManager.html b/docs/html/sdk/api_diff/21/changes/android.hardware.SensorManager.html
new file mode 100644
index 0000000..017a16bc
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.hardware.SensorManager.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.SensorManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/SensorManager.html" target="_top"><font size="+2"><code>SensorManager</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.SensorManager.getDefaultSensor_added(int, boolean)"></A>
+  <nobr><code>Sensor</code>&nbsp;<A HREF="../../../../reference/android/hardware/SensorManager.html#getDefaultSensor(int, boolean)" target="_top"><code>getDefaultSensor</code></A>(<code>int,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.hardware.display.DisplayManager.html b/docs/html/sdk/api_diff/21/changes/android.hardware.display.DisplayManager.html
new file mode 100644
index 0000000..2b1cf78
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.hardware.display.DisplayManager.html
@@ -0,0 +1,137 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.display.DisplayManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.display.<A HREF="../../../../reference/android/hardware/display/DisplayManager.html" target="_top"><font size="+2"><code>DisplayManager</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.display.DisplayManager.createVirtualDisplay_added(java.lang.String, int, int, int, android.view.Surface, int, android.hardware.display.VirtualDisplay.Callback, android.os.Handler)"></A>
+  <nobr><code>VirtualDisplay</code>&nbsp;<A HREF="../../../../reference/android/hardware/display/DisplayManager.html#createVirtualDisplay(java.lang.String, int, int, int, android.view.Surface, int, android.hardware.display.VirtualDisplay.Callback, android.os.Handler)" target="_top"><code>createVirtualDisplay</code></A>(<code>String,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> Surface<nobr>,</nobr> int<nobr>,</nobr> Callback<nobr>,</nobr> Handler<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/display/DisplayManager.html#VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR" target="_top"><code>VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.hardware.display.VirtualDisplay.html b/docs/html/sdk/api_diff/21/changes/android.hardware.display.VirtualDisplay.html
new file mode 100644
index 0000000..1fda3fa
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.hardware.display.VirtualDisplay.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.display.VirtualDisplay
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.display.<A HREF="../../../../reference/android/hardware/display/VirtualDisplay.html" target="_top"><font size="+2"><code>VirtualDisplay</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.display.VirtualDisplay.resize_added(int, int, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/hardware/display/VirtualDisplay.html#resize(int, int, int)" target="_top"><code>resize</code></A>(<code>int,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.hardware.usb.UsbDevice.html b/docs/html/sdk/api_diff/21/changes/android.hardware.usb.UsbDevice.html
new file mode 100644
index 0000000..79f7137
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.hardware.usb.UsbDevice.html
@@ -0,0 +1,150 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.usb.UsbDevice
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.usb.<A HREF="../../../../reference/android/hardware/usb/UsbDevice.html" target="_top"><font size="+2"><code>UsbDevice</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.usb.UsbDevice.getConfiguration_added(int)"></A>
+  <nobr><code>UsbConfiguration</code>&nbsp;<A HREF="../../../../reference/android/hardware/usb/UsbDevice.html#getConfiguration(int)" target="_top"><code>getConfiguration</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.usb.UsbDevice.getConfigurationCount_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/usb/UsbDevice.html#getConfigurationCount()" target="_top"><code>getConfigurationCount</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.usb.UsbDevice.getManufacturerName_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/hardware/usb/UsbDevice.html#getManufacturerName()" target="_top"><code>getManufacturerName</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.usb.UsbDevice.getProductName_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/hardware/usb/UsbDevice.html#getProductName()" target="_top"><code>getProductName</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.usb.UsbDevice.getSerialNumber_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/hardware/usb/UsbDevice.html#getSerialNumber()" target="_top"><code>getSerialNumber</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.hardware.usb.UsbDeviceConnection.html b/docs/html/sdk/api_diff/21/changes/android.hardware.usb.UsbDeviceConnection.html
new file mode 100644
index 0000000..74416de
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.hardware.usb.UsbDeviceConnection.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.usb.UsbDeviceConnection
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.usb.<A HREF="../../../../reference/android/hardware/usb/UsbDeviceConnection.html" target="_top"><font size="+2"><code>UsbDeviceConnection</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.usb.UsbDeviceConnection.setConfiguration_added(android.hardware.usb.UsbConfiguration)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/hardware/usb/UsbDeviceConnection.html#setConfiguration(android.hardware.usb.UsbConfiguration)" target="_top"><code>setConfiguration</code></A>(<code>UsbConfiguration</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.usb.UsbDeviceConnection.setInterface_added(android.hardware.usb.UsbInterface)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/hardware/usb/UsbDeviceConnection.html#setInterface(android.hardware.usb.UsbInterface)" target="_top"><code>setInterface</code></A>(<code>UsbInterface</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.hardware.usb.UsbInterface.html b/docs/html/sdk/api_diff/21/changes/android.hardware.usb.UsbInterface.html
new file mode 100644
index 0000000..8815aea
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.hardware.usb.UsbInterface.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.usb.UsbInterface
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.usb.<A HREF="../../../../reference/android/hardware/usb/UsbInterface.html" target="_top"><font size="+2"><code>UsbInterface</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.usb.UsbInterface.getAlternateSetting_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/usb/UsbInterface.html#getAlternateSetting()" target="_top"><code>getAlternateSetting</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.usb.UsbInterface.getName_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/hardware/usb/UsbInterface.html#getName()" target="_top"><code>getName</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.inputmethodservice.ExtractEditText.html b/docs/html/sdk/api_diff/21/changes/android.inputmethodservice.ExtractEditText.html
new file mode 100644
index 0000000..3387782
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.inputmethodservice.ExtractEditText.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ExtractEditText
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ExtractEditText.html" target="_top"><font size="+2"><code>ExtractEditText</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.inputmethodservice.ExtractEditText.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/inputmethodservice/ExtractEditText.html#ExtractEditText(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>ExtractEditText</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.inputmethodservice.InputMethodService.InputMethodSessionImpl.html b/docs/html/sdk/api_diff/21/changes/android.inputmethodservice.InputMethodService.InputMethodSessionImpl.html
new file mode 100644
index 0000000..936cf2a
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.inputmethodservice.InputMethodService.InputMethodSessionImpl.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.InputMethodSessionImpl
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.InputMethodSessionImpl.html" target="_top"><font size="+2"><code>InputMethodService.InputMethodSessionImpl</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.InputMethodSessionImpl.updateCursorAnchorInfo_added(android.view.inputmethod.CursorAnchorInfo)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/inputmethodservice/InputMethodService.InputMethodSessionImpl.html#updateCursorAnchorInfo(android.view.inputmethod.CursorAnchorInfo)" target="_top"><code>updateCursorAnchorInfo</code></A>(<code>CursorAnchorInfo</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.inputmethodservice.InputMethodService.html b/docs/html/sdk/api_diff/21/changes/android.inputmethodservice.InputMethodService.html
new file mode 100644
index 0000000..503206f
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.inputmethodservice.InputMethodService.html
@@ -0,0 +1,157 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.getInputMethodWindowRecommendedHeight_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/inputmethodservice/InputMethodService.html#getInputMethodWindowRecommendedHeight()" target="_top"><code>getInputMethodWindowRecommendedHeight</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.inputmethodservice.InputMethodService.onUpdateCursorAnchorInfo_added(android.view.inputmethod.CursorAnchorInfo)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/inputmethodservice/InputMethodService.html#onUpdateCursorAnchorInfo(android.view.inputmethod.CursorAnchorInfo)" target="_top"><code>onUpdateCursorAnchorInfo</code></A>(<code>CursorAnchorInfo</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.inputmethodservice.InputMethodService.enableHardwareAcceleration_changed()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/inputmethodservice/InputMethodService.html#enableHardwareAcceleration()" target="_top"><code>enableHardwareAcceleration</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.inputmethodservice.InputMethodService.onUpdateCursor_changed(android.graphics.Rect)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/inputmethodservice/InputMethodService.html#onUpdateCursor(android.graphics.Rect)" target="_top"><code>onUpdateCursor</code></A>(<code>Rect</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.inputmethodservice.KeyboardView.html b/docs/html/sdk/api_diff/21/changes/android.inputmethodservice.KeyboardView.html
new file mode 100644
index 0000000..10e6f36
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.inputmethodservice.KeyboardView.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.KeyboardView
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/KeyboardView.html" target="_top"><font size="+2"><code>KeyboardView</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.inputmethodservice.KeyboardView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/inputmethodservice/KeyboardView.html#KeyboardView(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>KeyboardView</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.location.SettingInjectorService.html b/docs/html/sdk/api_diff/21/changes/android.location.SettingInjectorService.html
new file mode 100644
index 0000000..7108939
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.location.SettingInjectorService.html
@@ -0,0 +1,125 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.SettingInjectorService
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/SettingInjectorService.html" target="_top"><font size="+2"><code>SettingInjectorService</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.location.SettingInjectorService.onGetSummary_changed()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/location/SettingInjectorService.html#onGetSummary()" target="_top"><code>onGetSummary</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.AudioFormat.html b/docs/html/sdk/api_diff/21/changes/android.media.AudioFormat.html
new file mode 100644
index 0000000..0d3a47c
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.AudioFormat.html
@@ -0,0 +1,194 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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>
+<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.media.AudioFormat.ctor_removed()"></A>
+  <nobr>AudioFormat()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.AudioFormat.getChannelMask_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioFormat.html#getChannelMask()" target="_top"><code>getChannelMask</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioFormat.getEncoding_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioFormat.html#getEncoding()" target="_top"><code>getEncoding</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioFormat.getSampleRate_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioFormat.html#getSampleRate()" target="_top"><code>getSampleRate</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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_OUT_SIDE_LEFT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_OUT_SIDE_LEFT" target="_top"><code>CHANNEL_OUT_SIDE_LEFT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioFormat.CHANNEL_OUT_SIDE_RIGHT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_OUT_SIDE_RIGHT" target="_top"><code>CHANNEL_OUT_SIDE_RIGHT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioFormat.ENCODING_AC3"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioFormat.html#ENCODING_AC3" target="_top"><code>ENCODING_AC3</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioFormat.ENCODING_E_AC3"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioFormat.html#ENCODING_E_AC3" target="_top"><code>ENCODING_E_AC3</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioFormat.ENCODING_PCM_FLOAT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioFormat.html#ENCODING_PCM_FLOAT" target="_top"><code>ENCODING_PCM_FLOAT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.AudioManager.html b/docs/html/sdk/api_diff/21/changes/android.media.AudioManager.html
new file mode 100644
index 0000000..73842ea
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.AudioManager.html
@@ -0,0 +1,281 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.generateAudioSessionId_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#generateAudioSessionId()" target="_top"><code>generateAudioSessionId</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.isVolumeFixed_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#isVolumeFixed()" target="_top"><code>isVolumeFixed</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.registerRemoteControlClient_changed(android.media.RemoteControlClient)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#registerRemoteControlClient(android.media.RemoteControlClient)" target="_top"><code>registerRemoteControlClient</code></A>(<code>RemoteControlClient</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.registerRemoteController_changed(android.media.RemoteController)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#registerRemoteController(android.media.RemoteController)" target="_top"><code>registerRemoteController</code></A>(<code>RemoteController</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.unregisterRemoteControlClient_changed(android.media.RemoteControlClient)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#unregisterRemoteControlClient(android.media.RemoteControlClient)" target="_top"><code>unregisterRemoteControlClient</code></A>(<code>RemoteControlClient</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.unregisterRemoteController_changed(android.media.RemoteController)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#unregisterRemoteController(android.media.RemoteController)" target="_top"><code>unregisterRemoteController</code></A>(<code>RemoteController</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.app.PendingIntent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#registerMediaButtonEventReceiver(android.app.PendingIntent)" target="_top"><code>registerMediaButtonEventReceiver</code></A>(<code>PendingIntent</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.content.ComponentName)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#registerMediaButtonEventReceiver(android.content.ComponentName)" target="_top"><code>registerMediaButtonEventReceiver</code></A>(<code>ComponentName</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.app.PendingIntent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#unregisterMediaButtonEventReceiver(android.app.PendingIntent)" target="_top"><code>unregisterMediaButtonEventReceiver</code></A>(<code>PendingIntent</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.content.ComponentName)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#unregisterMediaButtonEventReceiver(android.content.ComponentName)" target="_top"><code>unregisterMediaButtonEventReceiver</code></A>(<code>ComponentName</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.ACTION_HDMI_AUDIO_PLUG"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#ACTION_HDMI_AUDIO_PLUG" target="_top"><code>ACTION_HDMI_AUDIO_PLUG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.ACTION_HEADSET_PLUG"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#ACTION_HEADSET_PLUG" target="_top"><code>ACTION_HEADSET_PLUG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.AUDIO_SESSION_ID_GENERATE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#AUDIO_SESSION_ID_GENERATE" target="_top"><code>AUDIO_SESSION_ID_GENERATE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.ERROR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#ERROR" target="_top"><code>ERROR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.ERROR_DEAD_OBJECT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#ERROR_DEAD_OBJECT" target="_top"><code>ERROR_DEAD_OBJECT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.EXTRA_AUDIO_PLUG_STATE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#EXTRA_AUDIO_PLUG_STATE" target="_top"><code>EXTRA_AUDIO_PLUG_STATE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.EXTRA_ENCODINGS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#EXTRA_ENCODINGS" target="_top"><code>EXTRA_ENCODINGS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.EXTRA_MAX_CHANNEL_COUNT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#EXTRA_MAX_CHANNEL_COUNT" target="_top"><code>EXTRA_MAX_CHANNEL_COUNT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.AudioTrack.html b/docs/html/sdk/api_diff/21/changes/android.media.AudioTrack.html
new file mode 100644
index 0000000..72bab19
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.AudioTrack.html
@@ -0,0 +1,191 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AudioTrack
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/AudioTrack.html" target="_top"><font size="+2"><code>AudioTrack</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.media.AudioTrack.ctor_added(android.media.AudioAttributes, android.media.AudioFormat, int, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/media/AudioTrack.html#AudioTrack(android.media.AudioAttributes, android.media.AudioFormat, int, int, int)" target="_top"><code>AudioTrack</code></A>(<code>AudioAttributes,</nobr> AudioFormat<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.AudioTrack.setVolume_added(float)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioTrack.html#setVolume(float)" target="_top"><code>setVolume</code></A>(<code>float</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioTrack.write_added(float[], int, int, int)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioTrack.html#write(float[], int, int, int)" target="_top"><code>write</code></A>(<code>float[],</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioTrack.write_added(java.nio.ByteBuffer, int, int)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioTrack.html#write(java.nio.ByteBuffer, int, int)" target="_top"><code>write</code></A>(<code>ByteBuffer,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.AudioTrack.setStereoVolume_changed(float, float)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioTrack.html#setStereoVolume(float, float)" target="_top"><code>setStereoVolume</code></A>(<code>float,</nobr> float<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.AudioTrack.WRITE_BLOCKING"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioTrack.html#WRITE_BLOCKING" target="_top"><code>WRITE_BLOCKING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioTrack.WRITE_NON_BLOCKING"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioTrack.html#WRITE_NON_BLOCKING" target="_top"><code>WRITE_NON_BLOCKING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.CamcorderProfile.html b/docs/html/sdk/api_diff/21/changes/android.media.CamcorderProfile.html
new file mode 100644
index 0000000..e3fd8ca
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.CamcorderProfile.html
@@ -0,0 +1,171 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.CamcorderProfile
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/CamcorderProfile.html" target="_top"><font size="+2"><code>CamcorderProfile</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.CamcorderProfile.QUALITY_2160P"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/CamcorderProfile.html#QUALITY_2160P" target="_top"><code>QUALITY_2160P</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.CamcorderProfile.QUALITY_HIGH_SPEED_1080P"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/CamcorderProfile.html#QUALITY_HIGH_SPEED_1080P" target="_top"><code>QUALITY_HIGH_SPEED_1080P</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.CamcorderProfile.QUALITY_HIGH_SPEED_2160P"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/CamcorderProfile.html#QUALITY_HIGH_SPEED_2160P" target="_top"><code>QUALITY_HIGH_SPEED_2160P</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.CamcorderProfile.QUALITY_HIGH_SPEED_480P"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/CamcorderProfile.html#QUALITY_HIGH_SPEED_480P" target="_top"><code>QUALITY_HIGH_SPEED_480P</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.CamcorderProfile.QUALITY_HIGH_SPEED_720P"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/CamcorderProfile.html#QUALITY_HIGH_SPEED_720P" target="_top"><code>QUALITY_HIGH_SPEED_720P</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.CamcorderProfile.QUALITY_HIGH_SPEED_HIGH"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/CamcorderProfile.html#QUALITY_HIGH_SPEED_HIGH" target="_top"><code>QUALITY_HIGH_SPEED_HIGH</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.CamcorderProfile.QUALITY_HIGH_SPEED_LOW"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/CamcorderProfile.html#QUALITY_HIGH_SPEED_LOW" target="_top"><code>QUALITY_HIGH_SPEED_LOW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.CamcorderProfile.QUALITY_TIME_LAPSE_2160P"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/CamcorderProfile.html#QUALITY_TIME_LAPSE_2160P" target="_top"><code>QUALITY_TIME_LAPSE_2160P</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.Image.html b/docs/html/sdk/api_diff/21/changes/android.media.Image.html
new file mode 100644
index 0000000..83eec6c
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.Image.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Image
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Image.html" target="_top"><font size="+2"><code>Image</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.Image.getCropRect_added()"></A>
+  <nobr><code>Rect</code>&nbsp;<A HREF="../../../../reference/android/media/Image.html#getCropRect()" target="_top"><code>getCropRect</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.Image.setCropRect_added(android.graphics.Rect)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/Image.html#setCropRect(android.graphics.Rect)" target="_top"><code>setCropRect</code></A>(<code>Rect</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.MediaCodec.CryptoException.html b/docs/html/sdk/api_diff/21/changes/android.media.MediaCodec.CryptoException.html
new file mode 100644
index 0000000..deca066
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.MediaCodec.CryptoException.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaCodec.CryptoException
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/MediaCodec.CryptoException.html" target="_top"><font size="+2"><code>MediaCodec.CryptoException</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.MediaCodec.CryptoException.ERROR_INSUFFICIENT_OUTPUT_PROTECTION"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.CryptoException.html#ERROR_INSUFFICIENT_OUTPUT_PROTECTION" target="_top"><code>ERROR_INSUFFICIENT_OUTPUT_PROTECTION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.MediaCodec.html b/docs/html/sdk/api_diff/21/changes/android.media.MediaCodec.html
new file mode 100644
index 0000000..076d8ec
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.MediaCodec.html
@@ -0,0 +1,277 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaCodec
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/MediaCodec.html" target="_top"><font size="+2"><code>MediaCodec</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.MediaCodec.getInputBuffer_added(int)"></A>
+  <nobr><code>ByteBuffer</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#getInputBuffer(int)" target="_top"><code>getInputBuffer</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodec.getInputFormat_added()"></A>
+  <nobr><code>MediaFormat</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#getInputFormat()" target="_top"><code>getInputFormat</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodec.getInputImage_added(int)"></A>
+  <nobr><code>Image</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#getInputImage(int)" target="_top"><code>getInputImage</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodec.getOutputBuffer_added(int)"></A>
+  <nobr><code>ByteBuffer</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#getOutputBuffer(int)" target="_top"><code>getOutputBuffer</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodec.getOutputFormat_added(int)"></A>
+  <nobr><code>MediaFormat</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#getOutputFormat(int)" target="_top"><code>getOutputFormat</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodec.getOutputImage_added(int)"></A>
+  <nobr><code>Image</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#getOutputImage(int)" target="_top"><code>getOutputImage</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodec.releaseOutputBuffer_added(int, long)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#releaseOutputBuffer(int, long)" target="_top"><code>releaseOutputBuffer</code></A>(<code>int,</nobr> long<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodec.reset_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#reset()" target="_top"><code>reset</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodec.setCallback_added(android.media.MediaCodec.Callback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#setCallback(android.media.MediaCodec.Callback)" target="_top"><code>setCallback</code></A>(<code>Callback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.MediaCodec.createByCodecName_changed(java.lang.String)"></A>
+  <nobr><code>MediaCodec</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#createByCodecName(java.lang.String)" target="_top"><code>createByCodecName</code></A>(<code>String</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in exceptions thrown from no exceptions to <code>java.io.IOException</code>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodec.createDecoderByType_changed(java.lang.String)"></A>
+  <nobr><code>MediaCodec</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#createDecoderByType(java.lang.String)" target="_top"><code>createDecoderByType</code></A>(<code>String</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in exceptions thrown from no exceptions to <code>java.io.IOException</code>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodec.createEncoderByType_changed(java.lang.String)"></A>
+  <nobr><code>MediaCodec</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#createEncoderByType(java.lang.String)" target="_top"><code>createEncoderByType</code></A>(<code>String</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in exceptions thrown from no exceptions to <code>java.io.IOException</code>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodec.getInputBuffers_changed()"></A>
+  <nobr><code>ByteBuffer[]</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#getInputBuffers()" target="_top"><code>getInputBuffers</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodec.getOutputBuffers_changed()"></A>
+  <nobr><code>ByteBuffer[]</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#getOutputBuffers()" target="_top"><code>getOutputBuffers</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.MediaCodec.BUFFER_FLAG_KEY_FRAME"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#BUFFER_FLAG_KEY_FRAME" target="_top"><code>BUFFER_FLAG_KEY_FRAME</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.MediaCodec.BUFFER_FLAG_SYNC_FRAME"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#BUFFER_FLAG_SYNC_FRAME" target="_top"><code>BUFFER_FLAG_SYNC_FRAME</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodec.INFO_OUTPUT_BUFFERS_CHANGED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#INFO_OUTPUT_BUFFERS_CHANGED" target="_top"><code>INFO_OUTPUT_BUFFERS_CHANGED</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.MediaCodecInfo.CodecCapabilities.html b/docs/html/sdk/api_diff/21/changes/android.media.MediaCodecInfo.CodecCapabilities.html
new file mode 100644
index 0000000..0f07aa8
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.MediaCodecInfo.CodecCapabilities.html
@@ -0,0 +1,200 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaCodecInfo.CodecCapabilities
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/MediaCodecInfo.CodecCapabilities.html" target="_top"><font size="+2"><code>MediaCodecInfo.CodecCapabilities</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.MediaCodecInfo.CodecCapabilities.createFromProfileLevel_added(java.lang.String, int, int)"></A>
+  <nobr><code>CodecCapabilities</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecCapabilities.html#createFromProfileLevel(java.lang.String, int, int)" target="_top"><code>createFromProfileLevel</code></A>(<code>String,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecCapabilities.getAudioCapabilities_added()"></A>
+  <nobr><code>AudioCapabilities</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecCapabilities.html#getAudioCapabilities()" target="_top"><code>getAudioCapabilities</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecCapabilities.getDefaultFormat_added()"></A>
+  <nobr><code>MediaFormat</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecCapabilities.html#getDefaultFormat()" target="_top"><code>getDefaultFormat</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecCapabilities.getEncoderCapabilities_added()"></A>
+  <nobr><code>EncoderCapabilities</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecCapabilities.html#getEncoderCapabilities()" target="_top"><code>getEncoderCapabilities</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecCapabilities.getMimeType_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecCapabilities.html#getMimeType()" target="_top"><code>getMimeType</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecCapabilities.getVideoCapabilities_added()"></A>
+  <nobr><code>VideoCapabilities</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecCapabilities.html#getVideoCapabilities()" target="_top"><code>getVideoCapabilities</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecCapabilities.isFeatureRequired_added(java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecCapabilities.html#isFeatureRequired(java.lang.String)" target="_top"><code>isFeatureRequired</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecCapabilities.isFormatSupported_added(android.media.MediaFormat)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecCapabilities.html#isFormatSupported(android.media.MediaFormat)" target="_top"><code>isFormatSupported</code></A>(<code>MediaFormat</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.MediaCodecInfo.CodecCapabilities.COLOR_FormatYUV420Flexible"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecCapabilities.html#COLOR_FormatYUV420Flexible" target="_top"><code>COLOR_FormatYUV420Flexible</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecCapabilities.FEATURE_SecurePlayback"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecCapabilities.html#FEATURE_SecurePlayback" target="_top"><code>FEATURE_SecurePlayback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecCapabilities.FEATURE_TunneledPlayback"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecCapabilities.html#FEATURE_TunneledPlayback" target="_top"><code>FEATURE_TunneledPlayback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.MediaCodecInfo.CodecProfileLevel.html b/docs/html/sdk/api_diff/21/changes/android.media.MediaCodecInfo.CodecProfileLevel.html
new file mode 100644
index 0000000..d6a95ad
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.MediaCodecInfo.CodecProfileLevel.html
@@ -0,0 +1,318 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaCodecInfo.CodecProfileLevel
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/MediaCodecInfo.CodecProfileLevel.html" target="_top"><font size="+2"><code>MediaCodecInfo.CodecProfileLevel</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.MediaCodecInfo.CodecProfileLevel.AVCLevel52"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#AVCLevel52" target="_top"><code>AVCLevel52</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel1"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCHighTierLevel1" target="_top"><code>HEVCHighTierLevel1</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel2"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCHighTierLevel2" target="_top"><code>HEVCHighTierLevel2</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel21"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCHighTierLevel21" target="_top"><code>HEVCHighTierLevel21</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel3"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCHighTierLevel3" target="_top"><code>HEVCHighTierLevel3</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel31"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCHighTierLevel31" target="_top"><code>HEVCHighTierLevel31</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel4"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCHighTierLevel4" target="_top"><code>HEVCHighTierLevel4</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel41"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCHighTierLevel41" target="_top"><code>HEVCHighTierLevel41</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel5"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCHighTierLevel5" target="_top"><code>HEVCHighTierLevel5</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel51"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCHighTierLevel51" target="_top"><code>HEVCHighTierLevel51</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel52"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCHighTierLevel52" target="_top"><code>HEVCHighTierLevel52</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel6"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCHighTierLevel6" target="_top"><code>HEVCHighTierLevel6</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel61"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCHighTierLevel61" target="_top"><code>HEVCHighTierLevel61</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel62"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCHighTierLevel62" target="_top"><code>HEVCHighTierLevel62</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel1"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCMainTierLevel1" target="_top"><code>HEVCMainTierLevel1</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel2"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCMainTierLevel2" target="_top"><code>HEVCMainTierLevel2</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel21"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCMainTierLevel21" target="_top"><code>HEVCMainTierLevel21</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel3"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCMainTierLevel3" target="_top"><code>HEVCMainTierLevel3</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel31"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCMainTierLevel31" target="_top"><code>HEVCMainTierLevel31</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel4"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCMainTierLevel4" target="_top"><code>HEVCMainTierLevel4</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel41"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCMainTierLevel41" target="_top"><code>HEVCMainTierLevel41</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel5"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCMainTierLevel5" target="_top"><code>HEVCMainTierLevel5</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel51"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCMainTierLevel51" target="_top"><code>HEVCMainTierLevel51</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel52"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCMainTierLevel52" target="_top"><code>HEVCMainTierLevel52</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel6"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCMainTierLevel6" target="_top"><code>HEVCMainTierLevel6</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel61"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCMainTierLevel61" target="_top"><code>HEVCMainTierLevel61</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel62"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCMainTierLevel62" target="_top"><code>HEVCMainTierLevel62</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCProfileMain"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCProfileMain" target="_top"><code>HEVCProfileMain</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecProfileLevel.HEVCProfileMain10"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#HEVCProfileMain10" target="_top"><code>HEVCProfileMain10</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.MediaCodecList.html b/docs/html/sdk/api_diff/21/changes/android.media.MediaCodecList.html
new file mode 100644
index 0000000..5c176de
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.MediaCodecList.html
@@ -0,0 +1,201 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaCodecList
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/MediaCodecList.html" target="_top"><font size="+2"><code>MediaCodecList</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.media.MediaCodecList.ctor_added(int)"></A>
+  <nobr><A HREF="../../../../reference/android/media/MediaCodecList.html#MediaCodecList(int)" target="_top"><code>MediaCodecList</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.MediaCodecList.findDecoderForFormat_added(android.media.MediaFormat)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecList.html#findDecoderForFormat(android.media.MediaFormat)" target="_top"><code>findDecoderForFormat</code></A>(<code>MediaFormat</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecList.findEncoderForFormat_added(android.media.MediaFormat)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecList.html#findEncoderForFormat(android.media.MediaFormat)" target="_top"><code>findEncoderForFormat</code></A>(<code>MediaFormat</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecList.getCodecInfos_added()"></A>
+  <nobr><code>MediaCodecInfo[]</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecList.html#getCodecInfos()" target="_top"><code>getCodecInfos</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.MediaCodecList.getCodecCount_changed()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecList.html#getCodecCount()" target="_top"><code>getCodecCount</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecList.getCodecInfoAt_changed(int)"></A>
+  <nobr><code>MediaCodecInfo</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecList.html#getCodecInfoAt(int)" target="_top"><code>getCodecInfoAt</code></A>(<code>int</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.MediaCodecList.ALL_CODECS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecList.html#ALL_CODECS" target="_top"><code>ALL_CODECS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecList.REGULAR_CODECS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecList.html#REGULAR_CODECS" target="_top"><code>REGULAR_CODECS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.MediaDrm.html b/docs/html/sdk/api_diff/21/changes/android.media.MediaDrm.html
new file mode 100644
index 0000000..f113c13
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.MediaDrm.html
@@ -0,0 +1,125 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaDrm
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/MediaDrm.html" target="_top"><font size="+2"><code>MediaDrm</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.media.MediaDrm.openSession_changed()"></A>
+  <nobr><code>byte[]</code>&nbsp;<A HREF="../../../../reference/android/media/MediaDrm.html#openSession()" target="_top"><code>openSession</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in exceptions thrown from <code>android.media.NotProvisionedException</code> to (<code>android.media.NotProvisionedException, android.media.ResourceBusyException</code>).<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.MediaFormat.html b/docs/html/sdk/api_diff/21/changes/android.media.MediaFormat.html
new file mode 100644
index 0000000..64c577a
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.MediaFormat.html
@@ -0,0 +1,389 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaFormat
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/MediaFormat.html" target="_top"><font size="+2"><code>MediaFormat</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.MediaFormat.getFeatureEnabled_added(java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#getFeatureEnabled(java.lang.String)" target="_top"><code>getFeatureEnabled</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.setFeatureEnabled_added(java.lang.String, boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#setFeatureEnabled(java.lang.String, boolean)" target="_top"><code>setFeatureEnabled</code></A>(<code>String,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.MediaFormat.KEY_AAC_DRC_ATTENUATION_FACTOR"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_AAC_DRC_ATTENUATION_FACTOR" target="_top"><code>KEY_AAC_DRC_ATTENUATION_FACTOR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.KEY_AAC_DRC_BOOST_FACTOR"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_AAC_DRC_BOOST_FACTOR" target="_top"><code>KEY_AAC_DRC_BOOST_FACTOR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.KEY_AAC_DRC_HEAVY_COMPRESSION"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_AAC_DRC_HEAVY_COMPRESSION" target="_top"><code>KEY_AAC_DRC_HEAVY_COMPRESSION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.KEY_AAC_DRC_TARGET_REFERENCE_LEVEL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_AAC_DRC_TARGET_REFERENCE_LEVEL" target="_top"><code>KEY_AAC_DRC_TARGET_REFERENCE_LEVEL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.KEY_AAC_ENCODED_TARGET_LEVEL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_AAC_ENCODED_TARGET_LEVEL" target="_top"><code>KEY_AAC_ENCODED_TARGET_LEVEL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT" target="_top"><code>KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.KEY_AAC_SBR_MODE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_AAC_SBR_MODE" target="_top"><code>KEY_AAC_SBR_MODE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.KEY_AUDIO_SESSION_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_AUDIO_SESSION_ID" target="_top"><code>KEY_AUDIO_SESSION_ID</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.KEY_BITRATE_MODE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_BITRATE_MODE" target="_top"><code>KEY_BITRATE_MODE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.KEY_CAPTURE_RATE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_CAPTURE_RATE" target="_top"><code>KEY_CAPTURE_RATE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.KEY_COMPLEXITY"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_COMPLEXITY" target="_top"><code>KEY_COMPLEXITY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.KEY_PROFILE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_PROFILE" target="_top"><code>KEY_PROFILE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.KEY_TEMPORAL_LAYERING"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_TEMPORAL_LAYERING" target="_top"><code>KEY_TEMPORAL_LAYERING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_AAC"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_AAC" target="_top"><code>MIMETYPE_AUDIO_AAC</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_AC3"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_AC3" target="_top"><code>MIMETYPE_AUDIO_AC3</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_AMR_NB"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_AMR_NB" target="_top"><code>MIMETYPE_AUDIO_AMR_NB</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_AMR_WB"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_AMR_WB" target="_top"><code>MIMETYPE_AUDIO_AMR_WB</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_FLAC"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_FLAC" target="_top"><code>MIMETYPE_AUDIO_FLAC</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_G711_ALAW"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_G711_ALAW" target="_top"><code>MIMETYPE_AUDIO_G711_ALAW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_G711_MLAW"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_G711_MLAW" target="_top"><code>MIMETYPE_AUDIO_G711_MLAW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_MPEG"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_MPEG" target="_top"><code>MIMETYPE_AUDIO_MPEG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_MSGSM"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_MSGSM" target="_top"><code>MIMETYPE_AUDIO_MSGSM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_OPUS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_OPUS" target="_top"><code>MIMETYPE_AUDIO_OPUS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_QCELP"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_QCELP" target="_top"><code>MIMETYPE_AUDIO_QCELP</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_RAW"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_RAW" target="_top"><code>MIMETYPE_AUDIO_RAW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_VORBIS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_VORBIS" target="_top"><code>MIMETYPE_AUDIO_VORBIS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_TEXT_CEA_608"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_TEXT_CEA_608" target="_top"><code>MIMETYPE_TEXT_CEA_608</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_TEXT_VTT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_TEXT_VTT" target="_top"><code>MIMETYPE_TEXT_VTT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_VIDEO_AVC"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_VIDEO_AVC" target="_top"><code>MIMETYPE_VIDEO_AVC</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_VIDEO_H263"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_VIDEO_H263" target="_top"><code>MIMETYPE_VIDEO_H263</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_VIDEO_HEVC"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_VIDEO_HEVC" target="_top"><code>MIMETYPE_VIDEO_HEVC</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_VIDEO_MPEG2"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_VIDEO_MPEG2" target="_top"><code>MIMETYPE_VIDEO_MPEG2</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_VIDEO_MPEG4"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_VIDEO_MPEG4" target="_top"><code>MIMETYPE_VIDEO_MPEG4</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_VIDEO_RAW"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_VIDEO_RAW" target="_top"><code>MIMETYPE_VIDEO_RAW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_VIDEO_VP8"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_VIDEO_VP8" target="_top"><code>MIMETYPE_VIDEO_VP8</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_VIDEO_VP9"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_VIDEO_VP9" target="_top"><code>MIMETYPE_VIDEO_VP9</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.MediaMetadataEditor.html b/docs/html/sdk/api_diff/21/changes/android.media.MediaMetadataEditor.html
new file mode 100644
index 0000000..25cd29d
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.MediaMetadataEditor.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaMetadataEditor
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/MediaMetadataEditor.html" target="_top"><font size="+2"><code>MediaMetadataEditor</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.MediaMuxer.OutputFormat.html b/docs/html/sdk/api_diff/21/changes/android.media.MediaMuxer.OutputFormat.html
new file mode 100644
index 0000000..977d35a
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.MediaMuxer.OutputFormat.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaMuxer.OutputFormat
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/MediaMuxer.OutputFormat.html" target="_top"><font size="+2"><code>MediaMuxer.OutputFormat</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.MediaMuxer.OutputFormat.MUXER_OUTPUT_WEBM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaMuxer.OutputFormat.html#MUXER_OUTPUT_WEBM" target="_top"><code>MUXER_OUTPUT_WEBM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.MediaPlayer.TrackInfo.html b/docs/html/sdk/api_diff/21/changes/android.media.MediaPlayer.TrackInfo.html
new file mode 100644
index 0000000..3f5861e
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.MediaPlayer.TrackInfo.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.TrackInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.TrackInfo.html" target="_top"><font size="+2"><code>MediaPlayer.TrackInfo</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.TrackInfo.MEDIA_TRACK_TYPE_SUBTITLE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaPlayer.TrackInfo.html#MEDIA_TRACK_TYPE_SUBTITLE" target="_top"><code>MEDIA_TRACK_TYPE_SUBTITLE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.MediaPlayer.html b/docs/html/sdk/api_diff/21/changes/android.media.MediaPlayer.html
new file mode 100644
index 0000000..34efac3
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.MediaPlayer.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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>
+<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.MediaPlayer.create_added(android.content.Context, android.net.Uri, android.view.SurfaceHolder, android.media.AudioAttributes, int)"></A>
+  <nobr><code>MediaPlayer</code>&nbsp;<A HREF="../../../../reference/android/media/MediaPlayer.html#create(android.content.Context, android.net.Uri, android.view.SurfaceHolder, android.media.AudioAttributes, int)" target="_top"><code>create</code></A>(<code>Context,</nobr> Uri<nobr>,</nobr> SurfaceHolder<nobr>,</nobr> AudioAttributes<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaPlayer.create_added(android.content.Context, int, android.media.AudioAttributes, int)"></A>
+  <nobr><code>MediaPlayer</code>&nbsp;<A HREF="../../../../reference/android/media/MediaPlayer.html#create(android.content.Context, int, android.media.AudioAttributes, int)" target="_top"><code>create</code></A>(<code>Context,</nobr> int<nobr>,</nobr> AudioAttributes<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaPlayer.getSelectedTrack_added(int)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaPlayer.html#getSelectedTrack(int)" target="_top"><code>getSelectedTrack</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaPlayer.setAudioAttributes_added(android.media.AudioAttributes)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/MediaPlayer.html#setAudioAttributes(android.media.AudioAttributes)" target="_top"><code>setAudioAttributes</code></A>(<code>AudioAttributes</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.MediaRecorder.AudioEncoder.html b/docs/html/sdk/api_diff/21/changes/android.media.MediaRecorder.AudioEncoder.html
new file mode 100644
index 0000000..1275a4d
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.MediaRecorder.AudioEncoder.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaRecorder.AudioEncoder
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/MediaRecorder.AudioEncoder.html" target="_top"><font size="+2"><code>MediaRecorder.AudioEncoder</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.MediaRecorder.AudioEncoder.VORBIS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaRecorder.AudioEncoder.html#VORBIS" target="_top"><code>VORBIS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.MediaRecorder.OutputFormat.html b/docs/html/sdk/api_diff/21/changes/android.media.MediaRecorder.OutputFormat.html
new file mode 100644
index 0000000..5c10c5f
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.MediaRecorder.OutputFormat.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaRecorder.OutputFormat
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/MediaRecorder.OutputFormat.html" target="_top"><font size="+2"><code>MediaRecorder.OutputFormat</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.MediaRecorder.OutputFormat.WEBM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaRecorder.OutputFormat.html#WEBM" target="_top"><code>WEBM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.MediaRecorder.VideoEncoder.html b/docs/html/sdk/api_diff/21/changes/android.media.MediaRecorder.VideoEncoder.html
new file mode 100644
index 0000000..970f7ae
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.MediaRecorder.VideoEncoder.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaRecorder.VideoEncoder
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/MediaRecorder.VideoEncoder.html" target="_top"><font size="+2"><code>MediaRecorder.VideoEncoder</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.MediaRecorder.VideoEncoder.VP8"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaRecorder.VideoEncoder.html#VP8" target="_top"><code>VP8</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.MediaRecorder.VideoSource.html b/docs/html/sdk/api_diff/21/changes/android.media.MediaRecorder.VideoSource.html
new file mode 100644
index 0000000..0a0fdb1
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.MediaRecorder.VideoSource.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaRecorder.VideoSource
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/MediaRecorder.VideoSource.html" target="_top"><font size="+2"><code>MediaRecorder.VideoSource</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.MediaRecorder.VideoSource.SURFACE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaRecorder.VideoSource.html#SURFACE" target="_top"><code>SURFACE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.MediaRecorder.html b/docs/html/sdk/api_diff/21/changes/android.media.MediaRecorder.html
new file mode 100644
index 0000000..a05fa09
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.MediaRecorder.html
@@ -0,0 +1,140 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaRecorder
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/MediaRecorder.html" target="_top"><font size="+2"><code>MediaRecorder</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.MediaRecorder.getSurface_added()"></A>
+  <nobr><code>Surface</code>&nbsp;<A HREF="../../../../reference/android/media/MediaRecorder.html#getSurface()" target="_top"><code>getSurface</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.MediaRecorder.setCamera_changed(android.hardware.Camera)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/MediaRecorder.html#setCamera(android.hardware.Camera)" target="_top"><code>setCamera</code></A>(<code>Camera</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.Rating.html b/docs/html/sdk/api_diff/21/changes/android.media.Rating.html
new file mode 100644
index 0000000..194d613
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.Rating.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Rating
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Rating.html" target="_top"><font size="+2"><code>Rating</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.Rating.RATING_NONE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/Rating.html#RATING_NONE" target="_top"><code>RATING_NONE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.RemoteControlClient.MetadataEditor.html b/docs/html/sdk/api_diff/21/changes/android.media.RemoteControlClient.MetadataEditor.html
new file mode 100644
index 0000000..2b018e9
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.RemoteControlClient.MetadataEditor.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.RemoteControlClient.MetadataEditor
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/RemoteControlClient.MetadataEditor.html" target="_top"><font size="+2"><code>RemoteControlClient.MetadataEditor</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.RemoteControlClient.html b/docs/html/sdk/api_diff/21/changes/android.media.RemoteControlClient.html
new file mode 100644
index 0000000..17e66f8
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.RemoteControlClient.html
@@ -0,0 +1,123 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.RemoteControlClient
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/RemoteControlClient.html" target="_top"><font size="+2"><code>RemoteControlClient</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<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.RemoteControlClient.getMediaSession_added()"></A>
+  <nobr><code>MediaSession</code>&nbsp;<A HREF="../../../../reference/android/media/RemoteControlClient.html#getMediaSession()" target="_top"><code>getMediaSession</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.RemoteController.html b/docs/html/sdk/api_diff/21/changes/android.media.RemoteController.html
new file mode 100644
index 0000000..c78a592
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.RemoteController.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.RemoteController
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/RemoteController.html" target="_top"><font size="+2"><code>RemoteController</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.Ringtone.html b/docs/html/sdk/api_diff/21/changes/android.media.Ringtone.html
new file mode 100644
index 0000000..fc4bfc3
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.Ringtone.html
@@ -0,0 +1,157 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Ringtone
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Ringtone.html" target="_top"><font size="+2"><code>Ringtone</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.Ringtone.getAudioAttributes_added()"></A>
+  <nobr><code>AudioAttributes</code>&nbsp;<A HREF="../../../../reference/android/media/Ringtone.html#getAudioAttributes()" target="_top"><code>getAudioAttributes</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.Ringtone.setAudioAttributes_added(android.media.AudioAttributes)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/Ringtone.html#setAudioAttributes(android.media.AudioAttributes)" target="_top"><code>setAudioAttributes</code></A>(<code>AudioAttributes</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Ringtone.getStreamType_changed()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/Ringtone.html#getStreamType()" target="_top"><code>getStreamType</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.Ringtone.setStreamType_changed(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/Ringtone.html#setStreamType(int)" target="_top"><code>setStreamType</code></A>(<code>int</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.SoundPool.html b/docs/html/sdk/api_diff/21/changes/android.media.SoundPool.html
new file mode 100644
index 0000000..abd59b4a
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.SoundPool.html
@@ -0,0 +1,125 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.SoundPool
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/SoundPool.html" target="_top"><font size="+2"><code>SoundPool</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.media.SoundPool.ctor_changed(int, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/media/SoundPool.html#SoundPool(int, int, int)" target="_top"><code>SoundPool</code></A>(<code>int,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.media.audiofx.Virtualizer.html b/docs/html/sdk/api_diff/21/changes/android.media.audiofx.Virtualizer.html
new file mode 100644
index 0000000..fbca427
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.media.audiofx.Virtualizer.html
@@ -0,0 +1,179 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.audiofx.Virtualizer
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.audiofx.<A HREF="../../../../reference/android/media/audiofx/Virtualizer.html" target="_top"><font size="+2"><code>Virtualizer</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.audiofx.Virtualizer.canVirtualize_added(int, int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/media/audiofx/Virtualizer.html#canVirtualize(int, int)" target="_top"><code>canVirtualize</code></A>(<code>int,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.audiofx.Virtualizer.forceVirtualizationMode_added(int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/media/audiofx/Virtualizer.html#forceVirtualizationMode(int)" target="_top"><code>forceVirtualizationMode</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.audiofx.Virtualizer.getSpeakerAngles_added(int, int, int[])"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/media/audiofx/Virtualizer.html#getSpeakerAngles(int, int, int[])" target="_top"><code>getSpeakerAngles</code></A>(<code>int,</nobr> int<nobr>,</nobr> int[]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.audiofx.Virtualizer.getVirtualizationMode_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/audiofx/Virtualizer.html#getVirtualizationMode()" target="_top"><code>getVirtualizationMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.audiofx.Virtualizer.VIRTUALIZATION_MODE_AUTO"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/audiofx/Virtualizer.html#VIRTUALIZATION_MODE_AUTO" target="_top"><code>VIRTUALIZATION_MODE_AUTO</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_BINAURAL"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/audiofx/Virtualizer.html#VIRTUALIZATION_MODE_BINAURAL" target="_top"><code>VIRTUALIZATION_MODE_BINAURAL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_OFF"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/audiofx/Virtualizer.html#VIRTUALIZATION_MODE_OFF" target="_top"><code>VIRTUALIZATION_MODE_OFF</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_TRANSAURAL"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/audiofx/Virtualizer.html#VIRTUALIZATION_MODE_TRANSAURAL" target="_top"><code>VIRTUALIZATION_MODE_TRANSAURAL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.net.ConnectivityManager.html b/docs/html/sdk/api_diff/21/changes/android.net.ConnectivityManager.html
new file mode 100644
index 0000000..6cdb995
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.net.ConnectivityManager.html
@@ -0,0 +1,279 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.net.ConnectivityManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.net.<A HREF="../../../../reference/android/net/ConnectivityManager.html" target="_top"><font size="+2"><code>ConnectivityManager</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.net.ConnectivityManager.addDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/net/ConnectivityManager.html#addDefaultNetworkActiveListener(android.net.ConnectivityManager.OnNetworkActiveListener)" target="_top"><code>addDefaultNetworkActiveListener</code></A>(<code>OnNetworkActiveListener</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.ConnectivityManager.getAllNetworks_added()"></A>
+  <nobr><code>Network[]</code>&nbsp;<A HREF="../../../../reference/android/net/ConnectivityManager.html#getAllNetworks()" target="_top"><code>getAllNetworks</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.ConnectivityManager.getLinkProperties_added(android.net.Network)"></A>
+  <nobr><code>LinkProperties</code>&nbsp;<A HREF="../../../../reference/android/net/ConnectivityManager.html#getLinkProperties(android.net.Network)" target="_top"><code>getLinkProperties</code></A>(<code>Network</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.ConnectivityManager.getNetworkCapabilities_added(android.net.Network)"></A>
+  <nobr><code>NetworkCapabilities</code>&nbsp;<A HREF="../../../../reference/android/net/ConnectivityManager.html#getNetworkCapabilities(android.net.Network)" target="_top"><code>getNetworkCapabilities</code></A>(<code>Network</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.ConnectivityManager.getNetworkInfo_added(android.net.Network)"></A>
+  <nobr><code>NetworkInfo</code>&nbsp;<A HREF="../../../../reference/android/net/ConnectivityManager.html#getNetworkInfo(android.net.Network)" target="_top"><code>getNetworkInfo</code></A>(<code>Network</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.ConnectivityManager.getProcessDefaultNetwork_added()"></A>
+  <nobr><code>Network</code>&nbsp;<A HREF="../../../../reference/android/net/ConnectivityManager.html#getProcessDefaultNetwork()" target="_top"><code>getProcessDefaultNetwork</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.ConnectivityManager.isDefaultNetworkActive_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/net/ConnectivityManager.html#isDefaultNetworkActive()" target="_top"><code>isDefaultNetworkActive</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.ConnectivityManager.registerNetworkCallback_added(android.net.NetworkRequest, android.net.ConnectivityManager.NetworkCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/net/ConnectivityManager.html#registerNetworkCallback(android.net.NetworkRequest, android.net.ConnectivityManager.NetworkCallback)" target="_top"><code>registerNetworkCallback</code></A>(<code>NetworkRequest,</nobr> NetworkCallback<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.ConnectivityManager.removeDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/net/ConnectivityManager.html#removeDefaultNetworkActiveListener(android.net.ConnectivityManager.OnNetworkActiveListener)" target="_top"><code>removeDefaultNetworkActiveListener</code></A>(<code>OnNetworkActiveListener</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.ConnectivityManager.reportBadNetwork_added(android.net.Network)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/net/ConnectivityManager.html#reportBadNetwork(android.net.Network)" target="_top"><code>reportBadNetwork</code></A>(<code>Network</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.ConnectivityManager.requestNetwork_added(android.net.NetworkRequest, android.net.ConnectivityManager.NetworkCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/net/ConnectivityManager.html#requestNetwork(android.net.NetworkRequest, android.net.ConnectivityManager.NetworkCallback)" target="_top"><code>requestNetwork</code></A>(<code>NetworkRequest,</nobr> NetworkCallback<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.ConnectivityManager.setProcessDefaultNetwork_added(android.net.Network)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/net/ConnectivityManager.html#setProcessDefaultNetwork(android.net.Network)" target="_top"><code>setProcessDefaultNetwork</code></A>(<code>Network</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.ConnectivityManager.unregisterNetworkCallback_added(android.net.ConnectivityManager.NetworkCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/net/ConnectivityManager.html#unregisterNetworkCallback(android.net.ConnectivityManager.NetworkCallback)" target="_top"><code>unregisterNetworkCallback</code></A>(<code>NetworkCallback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.net.ConnectivityManager.getNetworkPreference_changed()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/net/ConnectivityManager.html#getNetworkPreference()" target="_top"><code>getNetworkPreference</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.ConnectivityManager.requestRouteToHost_changed(int, int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/net/ConnectivityManager.html#requestRouteToHost(int, int)" target="_top"><code>requestRouteToHost</code></A>(<code>int,</nobr> int<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.ConnectivityManager.setNetworkPreference_changed(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/net/ConnectivityManager.html#setNetworkPreference(int)" target="_top"><code>setNetworkPreference</code></A>(<code>int</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.ConnectivityManager.startUsingNetworkFeature_changed(int, java.lang.String)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/net/ConnectivityManager.html#startUsingNetworkFeature(int, java.lang.String)" target="_top"><code>startUsingNetworkFeature</code></A>(<code>int,</nobr> String<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.ConnectivityManager.stopUsingNetworkFeature_changed(int, java.lang.String)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/net/ConnectivityManager.html#stopUsingNetworkFeature(int, java.lang.String)" target="_top"><code>stopUsingNetworkFeature</code></A>(<code>int,</nobr> String<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.net.ConnectivityManager.TYPE_VPN"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/net/ConnectivityManager.html#TYPE_VPN" target="_top"><code>TYPE_VPN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.net.Proxy.html b/docs/html/sdk/api_diff/21/changes/android.net.Proxy.html
new file mode 100644
index 0000000..be8461d
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.net.Proxy.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.net.Proxy
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.net.<A HREF="../../../../reference/android/net/Proxy.html" target="_top"><font size="+2"><code>Proxy</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.net.Proxy.EXTRA_PROXY_INFO"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/net/Proxy.html#EXTRA_PROXY_INFO" target="_top"><code>EXTRA_PROXY_INFO</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.net.VpnService.Builder.html b/docs/html/sdk/api_diff/21/changes/android.net.VpnService.Builder.html
new file mode 100644
index 0000000..980fed5
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.net.VpnService.Builder.html
@@ -0,0 +1,150 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.net.VpnService.Builder
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.net.<A HREF="../../../../reference/android/net/VpnService.Builder.html" target="_top"><font size="+2"><code>VpnService.Builder</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.net.VpnService.Builder.addAllowedApplication_added(java.lang.String)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/net/VpnService.Builder.html#addAllowedApplication(java.lang.String)" target="_top"><code>addAllowedApplication</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.VpnService.Builder.addDisallowedApplication_added(java.lang.String)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/net/VpnService.Builder.html#addDisallowedApplication(java.lang.String)" target="_top"><code>addDisallowedApplication</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.VpnService.Builder.allowBypass_added()"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/net/VpnService.Builder.html#allowBypass()" target="_top"><code>allowBypass</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.VpnService.Builder.allowFamily_added(int)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/net/VpnService.Builder.html#allowFamily(int)" target="_top"><code>allowFamily</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.VpnService.Builder.setBlocking_added(boolean)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/net/VpnService.Builder.html#setBlocking(boolean)" target="_top"><code>setBlocking</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.net.http.X509TrustManagerExtensions.html b/docs/html/sdk/api_diff/21/changes/android.net.http.X509TrustManagerExtensions.html
new file mode 100644
index 0000000..2066ba4
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.net.http.X509TrustManagerExtensions.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.net.http.X509TrustManagerExtensions
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.net.http.<A HREF="../../../../reference/android/net/http/X509TrustManagerExtensions.html" target="_top"><font size="+2"><code>X509TrustManagerExtensions</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.net.http.X509TrustManagerExtensions.isUserAddedCertificate_added(java.security.cert.X509Certificate)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/net/http/X509TrustManagerExtensions.html#isUserAddedCertificate(java.security.cert.X509Certificate)" target="_top"><code>isUserAddedCertificate</code></A>(<code>X509Certificate</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.net.nsd.NsdServiceInfo.html b/docs/html/sdk/api_diff/21/changes/android.net.nsd.NsdServiceInfo.html
new file mode 100644
index 0000000..52c2fc1
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.net.nsd.NsdServiceInfo.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.net.nsd.NsdServiceInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.net.nsd.<A HREF="../../../../reference/android/net/nsd/NsdServiceInfo.html" target="_top"><font size="+2"><code>NsdServiceInfo</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.net.nsd.NsdServiceInfo.getAttributes_added()"></A>
+  <nobr>(<code>Map&lt;String, byte[]&gt;</code>)&nbsp;<A HREF="../../../../reference/android/net/nsd/NsdServiceInfo.html#getAttributes()" target="_top"><code>getAttributes</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.nsd.NsdServiceInfo.removeAttribute_added(java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/net/nsd/NsdServiceInfo.html#removeAttribute(java.lang.String)" target="_top"><code>removeAttribute</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.nsd.NsdServiceInfo.setAttribute_added(java.lang.String, java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/net/nsd/NsdServiceInfo.html#setAttribute(java.lang.String, java.lang.String)" target="_top"><code>setAttribute</code></A>(<code>String,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.net.wifi.WifiConfiguration.html b/docs/html/sdk/api_diff/21/changes/android.net.wifi.WifiConfiguration.html
new file mode 100644
index 0000000..9132010
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.net.wifi.WifiConfiguration.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.net.wifi.WifiConfiguration
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.net.wifi.<A HREF="../../../../reference/android/net/wifi/WifiConfiguration.html" target="_top"><font size="+2"><code>WifiConfiguration</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.net.wifi.WifiConfiguration.FQDN"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiConfiguration.html#FQDN" target="_top"><code>FQDN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.net.wifi.WifiEnterpriseConfig.Eap.html b/docs/html/sdk/api_diff/21/changes/android.net.wifi.WifiEnterpriseConfig.Eap.html
new file mode 100644
index 0000000..b8e69d0
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.net.wifi.WifiEnterpriseConfig.Eap.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.net.wifi.WifiEnterpriseConfig.Eap
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.net.wifi.<A HREF="../../../../reference/android/net/wifi/WifiEnterpriseConfig.Eap.html" target="_top"><font size="+2"><code>WifiEnterpriseConfig.Eap</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.net.wifi.WifiEnterpriseConfig.Eap.AKA"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiEnterpriseConfig.Eap.html#AKA" target="_top"><code>AKA</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi.WifiEnterpriseConfig.Eap.SIM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiEnterpriseConfig.Eap.html#SIM" target="_top"><code>SIM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.net.wifi.WifiInfo.html b/docs/html/sdk/api_diff/21/changes/android.net.wifi.WifiInfo.html
new file mode 100644
index 0000000..204c42d
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.net.wifi.WifiInfo.html
@@ -0,0 +1,137 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.net.wifi.WifiInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.net.wifi.<A HREF="../../../../reference/android/net/wifi/WifiInfo.html" target="_top"><font size="+2"><code>WifiInfo</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.net.wifi.WifiInfo.getFrequency_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiInfo.html#getFrequency()" target="_top"><code>getFrequency</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.net.wifi.WifiInfo.FREQUENCY_UNITS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiInfo.html#FREQUENCY_UNITS" target="_top"><code>FREQUENCY_UNITS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.net.wifi.WifiManager.html b/docs/html/sdk/api_diff/21/changes/android.net.wifi.WifiManager.html
new file mode 100644
index 0000000..e05eb89
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.net.wifi.WifiManager.html
@@ -0,0 +1,214 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.net.wifi.WifiManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.net.wifi.<A HREF="../../../../reference/android/net/wifi/WifiManager.html" target="_top"><font size="+2"><code>WifiManager</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.net.wifi.WifiManager.cancelWps_added(android.net.wifi.WifiManager.WpsCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#cancelWps(android.net.wifi.WifiManager.WpsCallback)" target="_top"><code>cancelWps</code></A>(<code>WpsCallback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi.WifiManager.is5GHzBandSupported_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#is5GHzBandSupported()" target="_top"><code>is5GHzBandSupported</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi.WifiManager.isDeviceToApRttSupported_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#isDeviceToApRttSupported()" target="_top"><code>isDeviceToApRttSupported</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi.WifiManager.isEnhancedPowerReportingSupported_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#isEnhancedPowerReportingSupported()" target="_top"><code>isEnhancedPowerReportingSupported</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi.WifiManager.isP2pSupported_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#isP2pSupported()" target="_top"><code>isP2pSupported</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi.WifiManager.isPreferredNetworkOffloadSupported_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#isPreferredNetworkOffloadSupported()" target="_top"><code>isPreferredNetworkOffloadSupported</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi.WifiManager.isTdlsSupported_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#isTdlsSupported()" target="_top"><code>isTdlsSupported</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi.WifiManager.startWps_added(android.net.wifi.WpsInfo, android.net.wifi.WifiManager.WpsCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#startWps(android.net.wifi.WpsInfo, android.net.wifi.WifiManager.WpsCallback)" target="_top"><code>startWps</code></A>(<code>WpsInfo,</nobr> WpsCallback<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.net.wifi.WifiManager.WPS_AUTH_FAILURE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#WPS_AUTH_FAILURE" target="_top"><code>WPS_AUTH_FAILURE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi.WifiManager.WPS_OVERLAP_ERROR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#WPS_OVERLAP_ERROR" target="_top"><code>WPS_OVERLAP_ERROR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi.WifiManager.WPS_TIMED_OUT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#WPS_TIMED_OUT" target="_top"><code>WPS_TIMED_OUT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi.WifiManager.WPS_TKIP_ONLY_PROHIBITED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#WPS_TKIP_ONLY_PROHIBITED" target="_top"><code>WPS_TKIP_ONLY_PROHIBITED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi.WifiManager.WPS_WEP_PROHIBITED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#WPS_WEP_PROHIBITED" target="_top"><code>WPS_WEP_PROHIBITED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.net.wifi.WpsInfo.html b/docs/html/sdk/api_diff/21/changes/android.net.wifi.WpsInfo.html
new file mode 100644
index 0000000..4d11b73
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.net.wifi.WpsInfo.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.net.wifi.WpsInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.net.wifi.<A HREF="../../../../reference/android/net/wifi/WpsInfo.html" target="_top"><font size="+2"><code>WpsInfo</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.net.wifi.WpsInfo.BSSID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WpsInfo.html#BSSID" target="_top"><code>BSSID</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.nfc.NdefRecord.html b/docs/html/sdk/api_diff/21/changes/android.nfc.NdefRecord.html
new file mode 100644
index 0000000..d5eabc1
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.nfc.NdefRecord.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.nfc.NdefRecord
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.nfc.<A HREF="../../../../reference/android/nfc/NdefRecord.html" target="_top"><font size="+2"><code>NdefRecord</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.nfc.NdefRecord.createTextRecord_added(java.lang.String, java.lang.String)"></A>
+  <nobr><code>NdefRecord</code>&nbsp;<A HREF="../../../../reference/android/nfc/NdefRecord.html#createTextRecord(java.lang.String, java.lang.String)" target="_top"><code>createTextRecord</code></A>(<code>String,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.nfc.NfcAdapter.html b/docs/html/sdk/api_diff/21/changes/android.nfc.NfcAdapter.html
new file mode 100644
index 0000000..0bd70da
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.nfc.NfcAdapter.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.nfc.NfcAdapter
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.nfc.<A HREF="../../../../reference/android/nfc/NfcAdapter.html" target="_top"><font size="+2"><code>NfcAdapter</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.nfc.NfcAdapter.invokeBeam_added(android.app.Activity)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/nfc/NfcAdapter.html#invokeBeam(android.app.Activity)" target="_top"><code>invokeBeam</code></A>(<code>Activity</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.nfc.cardemulation.CardEmulation.html b/docs/html/sdk/api_diff/21/changes/android.nfc.cardemulation.CardEmulation.html
new file mode 100644
index 0000000..43a0001
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.nfc.cardemulation.CardEmulation.html
@@ -0,0 +1,164 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.nfc.cardemulation.CardEmulation
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.nfc.cardemulation.<A HREF="../../../../reference/android/nfc/cardemulation/CardEmulation.html" target="_top"><font size="+2"><code>CardEmulation</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.nfc.cardemulation.CardEmulation.categoryAllowsForegroundPreference_added(java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/nfc/cardemulation/CardEmulation.html#categoryAllowsForegroundPreference(java.lang.String)" target="_top"><code>categoryAllowsForegroundPreference</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.nfc.cardemulation.CardEmulation.getAidsForService_added(android.content.ComponentName, java.lang.String)"></A>
+  <nobr><code>List&lt;String&gt;</code>&nbsp;<A HREF="../../../../reference/android/nfc/cardemulation/CardEmulation.html#getAidsForService(android.content.ComponentName, java.lang.String)" target="_top"><code>getAidsForService</code></A>(<code>ComponentName,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.nfc.cardemulation.CardEmulation.registerAidsForService_added(android.content.ComponentName, java.lang.String, java.util.List<java.lang.String>)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/nfc/cardemulation/CardEmulation.html#registerAidsForService(android.content.ComponentName, java.lang.String, java.util.List<java.lang.String>)" target="_top"><code>registerAidsForService</code></A>(<code>ComponentName,</nobr> String<nobr>,</nobr> List&lt;String&gt;<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.nfc.cardemulation.CardEmulation.removeAidsForService_added(android.content.ComponentName, java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/nfc/cardemulation/CardEmulation.html#removeAidsForService(android.content.ComponentName, java.lang.String)" target="_top"><code>removeAidsForService</code></A>(<code>ComponentName,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.nfc.cardemulation.CardEmulation.setPreferredService_added(android.app.Activity, android.content.ComponentName)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/nfc/cardemulation/CardEmulation.html#setPreferredService(android.app.Activity, android.content.ComponentName)" target="_top"><code>setPreferredService</code></A>(<code>Activity,</nobr> ComponentName<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.nfc.cardemulation.CardEmulation.supportsAidPrefixRegistration_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/nfc/cardemulation/CardEmulation.html#supportsAidPrefixRegistration()" target="_top"><code>supportsAidPrefixRegistration</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.nfc.cardemulation.CardEmulation.unsetPreferredService_added(android.app.Activity)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/nfc/cardemulation/CardEmulation.html#unsetPreferredService(android.app.Activity)" target="_top"><code>unsetPreferredService</code></A>(<code>Activity</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.opengl.EGLObjectHandle.html b/docs/html/sdk/api_diff/21/changes/android.opengl.EGLObjectHandle.html
new file mode 100644
index 0000000..4741207
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.opengl.EGLObjectHandle.html
@@ -0,0 +1,173 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.EGLObjectHandle
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/EGLObjectHandle.html" target="_top"><font size="+2"><code>EGLObjectHandle</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.opengl.EGLObjectHandle.ctor_added(long)"></A>
+  <nobr><A HREF="../../../../reference/android/opengl/EGLObjectHandle.html#EGLObjectHandle(long)" target="_top"><code>EGLObjectHandle</code></A>(<code>long</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.opengl.EGLObjectHandle.ctor_changed(int)"></A>
+  <nobr><A HREF="../../../../reference/android/opengl/EGLObjectHandle.html#EGLObjectHandle(int)" target="_top"><code>EGLObjectHandle</code></A>(<code>int</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.EGLObjectHandle.getNativeHandle_added()"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/android/opengl/EGLObjectHandle.html#getNativeHandle()" target="_top"><code>getNativeHandle</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.opengl.EGLObjectHandle.getHandle_changed()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/opengl/EGLObjectHandle.html#getHandle()" target="_top"><code>getHandle</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.opengl.GLES20.html b/docs/html/sdk/api_diff/21/changes/android.opengl.GLES20.html
new file mode 100644
index 0000000..554d73b
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.opengl.GLES20.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.GLES20
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/GLES20.html" target="_top"><font size="+2"><code>GLES20</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.opengl.GLES20.glGetActiveAttrib_removed(int, int, int, java.nio.IntBuffer, java.nio.IntBuffer, java.nio.IntBuffer, byte)"></A>
+  <nobr><code>void</code>&nbsp;glGetActiveAttrib(<code>int,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> IntBuffer<nobr>,</nobr> IntBuffer<nobr>,</nobr> IntBuffer<nobr>,</nobr> byte<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.opengl.GLES20.glGetActiveUniform_removed(int, int, int, java.nio.IntBuffer, java.nio.IntBuffer, java.nio.IntBuffer, byte)"></A>
+  <nobr><code>void</code>&nbsp;glGetActiveUniform(<code>int,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> IntBuffer<nobr>,</nobr> IntBuffer<nobr>,</nobr> IntBuffer<nobr>,</nobr> byte<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.opengl.GLES20.glGetShaderSource_removed(int, int, java.nio.IntBuffer, byte)"></A>
+  <nobr><code>void</code>&nbsp;glGetShaderSource(<code>int,</nobr> int<nobr>,</nobr> IntBuffer<nobr>,</nobr> byte<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.os.BatteryManager.html b/docs/html/sdk/api_diff/21/changes/android.os.BatteryManager.html
new file mode 100644
index 0000000..0ee7a8a
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.os.BatteryManager.html
@@ -0,0 +1,172 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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>
+<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.BatteryManager.getIntProperty_added(int)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/os/BatteryManager.html#getIntProperty(int)" target="_top"><code>getIntProperty</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.BatteryManager.getLongProperty_added(int)"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/android/os/BatteryManager.html#getLongProperty(int)" target="_top"><code>getLongProperty</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.BATTERY_PROPERTY_CAPACITY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/os/BatteryManager.html#BATTERY_PROPERTY_CAPACITY" target="_top"><code>BATTERY_PROPERTY_CAPACITY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.BatteryManager.BATTERY_PROPERTY_CHARGE_COUNTER"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/os/BatteryManager.html#BATTERY_PROPERTY_CHARGE_COUNTER" target="_top"><code>BATTERY_PROPERTY_CHARGE_COUNTER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.BatteryManager.BATTERY_PROPERTY_CURRENT_AVERAGE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/os/BatteryManager.html#BATTERY_PROPERTY_CURRENT_AVERAGE" target="_top"><code>BATTERY_PROPERTY_CURRENT_AVERAGE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.BatteryManager.BATTERY_PROPERTY_CURRENT_NOW"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/os/BatteryManager.html#BATTERY_PROPERTY_CURRENT_NOW" target="_top"><code>BATTERY_PROPERTY_CURRENT_NOW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.BatteryManager.BATTERY_PROPERTY_ENERGY_COUNTER"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/os/BatteryManager.html#BATTERY_PROPERTY_ENERGY_COUNTER" target="_top"><code>BATTERY_PROPERTY_ENERGY_COUNTER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.os.Build.VERSION_CODES.html b/docs/html/sdk/api_diff/21/changes/android.os.Build.VERSION_CODES.html
new file mode 100644
index 0000000..a68f53c
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.os.Build.VERSION_CODES.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.L"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/os/Build.VERSION_CODES.html#L" target="_top"><code>L</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Build.VERSION_CODES.LOLLIPOP"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/os/Build.VERSION_CODES.html#LOLLIPOP" target="_top"><code>LOLLIPOP</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.os.Build.html b/docs/html/sdk/api_diff/21/changes/android.os.Build.html
new file mode 100644
index 0000000..34a9b87
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.os.Build.html
@@ -0,0 +1,162 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.html" target="_top"><font size="+2"><code>Build</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.SUPPORTED_32_BIT_ABIS"></A>
+  <nobr><code>String[]</code>&nbsp;<A HREF="../../../../reference/android/os/Build.html#SUPPORTED_32_BIT_ABIS" target="_top"><code>SUPPORTED_32_BIT_ABIS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Build.SUPPORTED_64_BIT_ABIS"></A>
+  <nobr><code>String[]</code>&nbsp;<A HREF="../../../../reference/android/os/Build.html#SUPPORTED_64_BIT_ABIS" target="_top"><code>SUPPORTED_64_BIT_ABIS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Build.SUPPORTED_ABIS"></A>
+  <nobr><code>String[]</code>&nbsp;<A HREF="../../../../reference/android/os/Build.html#SUPPORTED_ABIS" target="_top"><code>SUPPORTED_ABIS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.os.Build.CPU_ABI"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/Build.html#CPU_ABI" target="_top"><code>CPU_ABI</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Build.CPU_ABI2"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/Build.html#CPU_ABI2" target="_top"><code>CPU_ABI2</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.os.Bundle.html b/docs/html/sdk/api_diff/21/changes/android.os.Bundle.html
new file mode 100644
index 0000000..a86441c
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.os.Bundle.html
@@ -0,0 +1,421 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Bundle
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Bundle.html" target="_top"><font size="+2"><code>Bundle</code></font></A>
+</H2>
+<p><font xsize="+1">The superclass changed from <code>java.lang.Object</code> to <code>android.os.BaseBundle</code>.<br></font>
+<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.os.Bundle.ctor_added(android.os.PersistableBundle)"></A>
+  <nobr><A HREF="../../../../reference/android/os/Bundle.html#Bundle(android.os.PersistableBundle)" target="_top"><code>Bundle</code></A>(<code>PersistableBundle</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.getDouble_removed(java.lang.String)"></A>
+  <nobr><code>double</code>&nbsp;getDouble(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.getDouble_removed(java.lang.String, double)"></A>
+  <nobr><code>double</code>&nbsp;getDouble(<code>String,</nobr> double<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.getInt_removed(java.lang.String)"></A>
+  <nobr><code>int</code>&nbsp;getInt(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.getInt_removed(java.lang.String, int)"></A>
+  <nobr><code>int</code>&nbsp;getInt(<code>String,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.getLong_removed(java.lang.String)"></A>
+  <nobr><code>long</code>&nbsp;getLong(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.getLong_removed(java.lang.String, long)"></A>
+  <nobr><code>long</code>&nbsp;getLong(<code>String,</nobr> long<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.getString_removed(java.lang.String)"></A>
+  <nobr><code>String</code>&nbsp;getString(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.getString_removed(java.lang.String, java.lang.String)"></A>
+  <nobr><code>String</code>&nbsp;getString(<code>String,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Bundle.getSize_added(java.lang.String)"></A>
+  <nobr><code>Size</code>&nbsp;<A HREF="../../../../reference/android/os/Bundle.html#getSize(java.lang.String)" target="_top"><code>getSize</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.getSizeF_added(java.lang.String)"></A>
+  <nobr><code>SizeF</code>&nbsp;<A HREF="../../../../reference/android/os/Bundle.html#getSizeF(java.lang.String)" target="_top"><code>getSizeF</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.putSize_added(java.lang.String, android.util.Size)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/Bundle.html#putSize(java.lang.String, android.util.Size)" target="_top"><code>putSize</code></A>(<code>String,</nobr> Size<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.putSizeF_added(java.lang.String, android.util.SizeF)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/Bundle.html#putSizeF(java.lang.String, android.util.SizeF)" target="_top"><code>putSizeF</code></A>(<code>String,</nobr> SizeF<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.os.Bundle.clear_changed()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/BaseBundle.html#clear()" target="_top"><code>clear</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Method was locally defined, but is now inherited from <a href="../../../../reference/android/os/BaseBundle.html#clear()" target="_top"><code>BaseBundle</code></a>.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.containsKey_changed(java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/os/BaseBundle.html#containsKey(java.lang.String)" target="_top"><code>containsKey</code></A>(<code>String</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Method was locally defined, but is now inherited from <a href="../../../../reference/android/os/BaseBundle.html#containsKey(java.lang.String)" target="_top"><code>BaseBundle</code></a>.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.get_changed(java.lang.String)"></A>
+  <nobr><code>Object</code>&nbsp;<A HREF="../../../../reference/android/os/BaseBundle.html#get(java.lang.String)" target="_top"><code>get</code></A>(<code>String</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Method was locally defined, but is now inherited from <a href="../../../../reference/android/os/BaseBundle.html#get(java.lang.String)" target="_top"><code>BaseBundle</code></a>.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.getDoubleArray_changed(java.lang.String)"></A>
+  <nobr><code>double[]</code>&nbsp;<A HREF="../../../../reference/android/os/BaseBundle.html#getDoubleArray(java.lang.String)" target="_top"><code>getDoubleArray</code></A>(<code>String</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Method was locally defined, but is now inherited from <a href="../../../../reference/android/os/BaseBundle.html#getDoubleArray(java.lang.String)" target="_top"><code>BaseBundle</code></a>.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.getIntArray_changed(java.lang.String)"></A>
+  <nobr><code>int[]</code>&nbsp;<A HREF="../../../../reference/android/os/BaseBundle.html#getIntArray(java.lang.String)" target="_top"><code>getIntArray</code></A>(<code>String</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Method was locally defined, but is now inherited from <a href="../../../../reference/android/os/BaseBundle.html#getIntArray(java.lang.String)" target="_top"><code>BaseBundle</code></a>.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.getLongArray_changed(java.lang.String)"></A>
+  <nobr><code>long[]</code>&nbsp;<A HREF="../../../../reference/android/os/BaseBundle.html#getLongArray(java.lang.String)" target="_top"><code>getLongArray</code></A>(<code>String</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Method was locally defined, but is now inherited from <a href="../../../../reference/android/os/BaseBundle.html#getLongArray(java.lang.String)" target="_top"><code>BaseBundle</code></a>.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.getStringArray_changed(java.lang.String)"></A>
+  <nobr><code>String[]</code>&nbsp;<A HREF="../../../../reference/android/os/BaseBundle.html#getStringArray(java.lang.String)" target="_top"><code>getStringArray</code></A>(<code>String</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Method was locally defined, but is now inherited from <a href="../../../../reference/android/os/BaseBundle.html#getStringArray(java.lang.String)" target="_top"><code>BaseBundle</code></a>.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.isEmpty_changed()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/os/BaseBundle.html#isEmpty()" target="_top"><code>isEmpty</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Method was locally defined, but is now inherited from <a href="../../../../reference/android/os/BaseBundle.html#isEmpty()" target="_top"><code>BaseBundle</code></a>.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.keySet_changed()"></A>
+  <nobr><code>Set&lt;String&gt;</code>&nbsp;<A HREF="../../../../reference/android/os/BaseBundle.html#keySet()" target="_top"><code>keySet</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Method was locally defined, but is now inherited from <a href="../../../../reference/android/os/BaseBundle.html#keySet()" target="_top"><code>BaseBundle</code></a>.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.putDouble_changed(java.lang.String, double)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/BaseBundle.html#putDouble(java.lang.String, double)" target="_top"><code>putDouble</code></A>(<code>String,</nobr> double<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Method was locally defined, but is now inherited from <a href="../../../../reference/android/os/BaseBundle.html#putDouble(java.lang.String, double)" target="_top"><code>BaseBundle</code></a>.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.putDoubleArray_changed(java.lang.String, double[])"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/BaseBundle.html#putDoubleArray(java.lang.String, double[])" target="_top"><code>putDoubleArray</code></A>(<code>String,</nobr> double[]<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Method was locally defined, but is now inherited from <a href="../../../../reference/android/os/BaseBundle.html#putDoubleArray(java.lang.String, double[])" target="_top"><code>BaseBundle</code></a>.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.putInt_changed(java.lang.String, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/BaseBundle.html#putInt(java.lang.String, int)" target="_top"><code>putInt</code></A>(<code>String,</nobr> int<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Method was locally defined, but is now inherited from <a href="../../../../reference/android/os/BaseBundle.html#putInt(java.lang.String, int)" target="_top"><code>BaseBundle</code></a>.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.putIntArray_changed(java.lang.String, int[])"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/BaseBundle.html#putIntArray(java.lang.String, int[])" target="_top"><code>putIntArray</code></A>(<code>String,</nobr> int[]<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Method was locally defined, but is now inherited from <a href="../../../../reference/android/os/BaseBundle.html#putIntArray(java.lang.String, int[])" target="_top"><code>BaseBundle</code></a>.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.putLong_changed(java.lang.String, long)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/BaseBundle.html#putLong(java.lang.String, long)" target="_top"><code>putLong</code></A>(<code>String,</nobr> long<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Method was locally defined, but is now inherited from <a href="../../../../reference/android/os/BaseBundle.html#putLong(java.lang.String, long)" target="_top"><code>BaseBundle</code></a>.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.putLongArray_changed(java.lang.String, long[])"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/BaseBundle.html#putLongArray(java.lang.String, long[])" target="_top"><code>putLongArray</code></A>(<code>String,</nobr> long[]<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Method was locally defined, but is now inherited from <a href="../../../../reference/android/os/BaseBundle.html#putLongArray(java.lang.String, long[])" target="_top"><code>BaseBundle</code></a>.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.putString_changed(java.lang.String, java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/BaseBundle.html#putString(java.lang.String, java.lang.String)" target="_top"><code>putString</code></A>(<code>String,</nobr> String<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Method was locally defined, but is now inherited from <a href="../../../../reference/android/os/BaseBundle.html#putString(java.lang.String, java.lang.String)" target="_top"><code>BaseBundle</code></a>.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.putStringArray_changed(java.lang.String, java.lang.String[])"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/BaseBundle.html#putStringArray(java.lang.String, java.lang.String[])" target="_top"><code>putStringArray</code></A>(<code>String,</nobr> String[]<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Method was locally defined, but is now inherited from <a href="../../../../reference/android/os/BaseBundle.html#putStringArray(java.lang.String, java.lang.String[])" target="_top"><code>BaseBundle</code></a>.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.remove_changed(java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/BaseBundle.html#remove(java.lang.String)" target="_top"><code>remove</code></A>(<code>String</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Method was locally defined, but is now inherited from <a href="../../../../reference/android/os/BaseBundle.html#remove(java.lang.String)" target="_top"><code>BaseBundle</code></a>.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.size_changed()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/os/BaseBundle.html#size()" target="_top"><code>size</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Method was locally defined, but is now inherited from <a href="../../../../reference/android/os/BaseBundle.html#size()" target="_top"><code>BaseBundle</code></a>.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.os.Debug.html b/docs/html/sdk/api_diff/21/changes/android.os.Debug.html
new file mode 100644
index 0000000..a1c6e46
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.os.Debug.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.html" target="_top"><font size="+2"><code>Debug</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.Debug.startMethodTracingSampling_added(java.lang.String, int, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/Debug.html#startMethodTracingSampling(java.lang.String, int, int)" target="_top"><code>startMethodTracingSampling</code></A>(<code>String,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.os.Environment.html b/docs/html/sdk/api_diff/21/changes/android.os.Environment.html
new file mode 100644
index 0000000..f30b631
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.os.Environment.html
@@ -0,0 +1,154 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Environment
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Environment.html" target="_top"><font size="+2"><code>Environment</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.Environment.getExternalStorageState_added(java.io.File)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/Environment.html#getExternalStorageState(java.io.File)" target="_top"><code>getExternalStorageState</code></A>(<code>File</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Environment.isExternalStorageEmulated_added(java.io.File)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/os/Environment.html#isExternalStorageEmulated(java.io.File)" target="_top"><code>isExternalStorageEmulated</code></A>(<code>File</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Environment.isExternalStorageRemovable_added(java.io.File)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/os/Environment.html#isExternalStorageRemovable(java.io.File)" target="_top"><code>isExternalStorageRemovable</code></A>(<code>File</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.os.Environment.getStorageState_changed(java.io.File)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/Environment.html#getStorageState(java.io.File)" target="_top"><code>getStorageState</code></A>(<code>File</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.os.Message.html b/docs/html/sdk/api_diff/21/changes/android.os.Message.html
new file mode 100644
index 0000000..1b53bd8
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.os.Message.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Message
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Message.html" target="_top"><font size="+2"><code>Message</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.Message.sendingUid"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/os/Message.html#sendingUid" target="_top"><code>sendingUid</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.os.Parcel.html b/docs/html/sdk/api_diff/21/changes/android.os.Parcel.html
new file mode 100644
index 0000000..021db60
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.os.Parcel.html
@@ -0,0 +1,179 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Parcel
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Parcel.html" target="_top"><font size="+2"><code>Parcel</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Parcel.obtain_removed(int)"></A>
+  <nobr><code>Parcel</code>&nbsp;obtain(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Parcel.readPersistableBundle_added()"></A>
+  <nobr><code>PersistableBundle</code>&nbsp;<A HREF="../../../../reference/android/os/Parcel.html#readPersistableBundle()" target="_top"><code>readPersistableBundle</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Parcel.readPersistableBundle_added(java.lang.ClassLoader)"></A>
+  <nobr><code>PersistableBundle</code>&nbsp;<A HREF="../../../../reference/android/os/Parcel.html#readPersistableBundle(java.lang.ClassLoader)" target="_top"><code>readPersistableBundle</code></A>(<code>ClassLoader</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Parcel.readSize_added()"></A>
+  <nobr><code>Size</code>&nbsp;<A HREF="../../../../reference/android/os/Parcel.html#readSize()" target="_top"><code>readSize</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Parcel.readSizeF_added()"></A>
+  <nobr><code>SizeF</code>&nbsp;<A HREF="../../../../reference/android/os/Parcel.html#readSizeF()" target="_top"><code>readSizeF</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Parcel.writePersistableBundle_added(android.os.PersistableBundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/Parcel.html#writePersistableBundle(android.os.PersistableBundle)" target="_top"><code>writePersistableBundle</code></A>(<code>PersistableBundle</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Parcel.writeSize_added(android.util.Size)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/Parcel.html#writeSize(android.util.Size)" target="_top"><code>writeSize</code></A>(<code>Size</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Parcel.writeSizeF_added(android.util.SizeF)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/Parcel.html#writeSizeF(android.util.SizeF)" target="_top"><code>writeSizeF</code></A>(<code>SizeF</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.os.PowerManager.WakeLock.html b/docs/html/sdk/api_diff/21/changes/android.os.PowerManager.WakeLock.html
new file mode 100644
index 0000000..8c29b5e
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.os.PowerManager.WakeLock.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.PowerManager.WakeLock
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/PowerManager.WakeLock.html" target="_top"><font size="+2"><code>PowerManager.WakeLock</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.PowerManager.WakeLock.release_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/PowerManager.WakeLock.html#release(int)" target="_top"><code>release</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.os.PowerManager.html b/docs/html/sdk/api_diff/21/changes/android.os.PowerManager.html
new file mode 100644
index 0000000..7c5bc43
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.os.PowerManager.html
@@ -0,0 +1,187 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.PowerManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/PowerManager.html" target="_top"><font size="+2"><code>PowerManager</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.PowerManager.goToSleep_removed(long)"></A>
+  <nobr><code>void</code>&nbsp;goToSleep(<code>long</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.PowerManager.userActivity_removed(long, boolean)"></A>
+  <nobr><code>void</code>&nbsp;userActivity(<code>long,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.PowerManager.wakeUp_removed(long)"></A>
+  <nobr><code>void</code>&nbsp;wakeUp(<code>long</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.PowerManager.isPowerSaveMode_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/os/PowerManager.html#isPowerSaveMode()" target="_top"><code>isPowerSaveMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.PowerManager.isWakeLockLevelSupported_added(int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/os/PowerManager.html#isWakeLockLevelSupported(int)" target="_top"><code>isWakeLockLevelSupported</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.PowerManager.ACTION_POWER_SAVE_MODE_CHANGED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/PowerManager.html#ACTION_POWER_SAVE_MODE_CHANGED" target="_top"><code>ACTION_POWER_SAVE_MODE_CHANGED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.PowerManager.PROXIMITY_SCREEN_OFF_WAKE_LOCK"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/os/PowerManager.html#PROXIMITY_SCREEN_OFF_WAKE_LOCK" target="_top"><code>PROXIMITY_SCREEN_OFF_WAKE_LOCK</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.PowerManager.RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/os/PowerManager.html#RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY" target="_top"><code>RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.os.UserManager.html b/docs/html/sdk/api_diff/21/changes/android.os.UserManager.html
new file mode 100644
index 0000000..6e19f24
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.os.UserManager.html
@@ -0,0 +1,287 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.UserManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/UserManager.html" target="_top"><font size="+2"><code>UserManager</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.UserManager.getUserProfiles_added()"></A>
+  <nobr><code>List&lt;UserHandle&gt;</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#getUserProfiles()" target="_top"><code>getUserProfiles</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.hasUserRestriction_added(java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#hasUserRestriction(java.lang.String)" target="_top"><code>hasUserRestriction</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.os.UserManager.setUserRestriction_changed(java.lang.String, boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#setUserRestriction(java.lang.String, boolean)" target="_top"><code>setUserRestriction</code></A>(<code>String,</nobr> boolean<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.setUserRestrictions_changed(android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#setUserRestrictions(android.os.Bundle)" target="_top"><code>setUserRestrictions</code></A>(<code>Bundle</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.setUserRestrictions_changed(android.os.Bundle, android.os.UserHandle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#setUserRestrictions(android.os.Bundle, android.os.UserHandle)" target="_top"><code>setUserRestrictions</code></A>(<code>Bundle,</nobr> UserHandle<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.UserManager.DISALLOW_ADD_USER"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#DISALLOW_ADD_USER" target="_top"><code>DISALLOW_ADD_USER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.DISALLOW_ADJUST_VOLUME"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#DISALLOW_ADJUST_VOLUME" target="_top"><code>DISALLOW_ADJUST_VOLUME</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.DISALLOW_APPS_CONTROL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#DISALLOW_APPS_CONTROL" target="_top"><code>DISALLOW_APPS_CONTROL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.DISALLOW_CONFIG_CELL_BROADCASTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#DISALLOW_CONFIG_CELL_BROADCASTS" target="_top"><code>DISALLOW_CONFIG_CELL_BROADCASTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#DISALLOW_CONFIG_MOBILE_NETWORKS" target="_top"><code>DISALLOW_CONFIG_MOBILE_NETWORKS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.DISALLOW_CONFIG_TETHERING"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#DISALLOW_CONFIG_TETHERING" target="_top"><code>DISALLOW_CONFIG_TETHERING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.DISALLOW_CONFIG_VPN"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#DISALLOW_CONFIG_VPN" target="_top"><code>DISALLOW_CONFIG_VPN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.DISALLOW_CREATE_WINDOWS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#DISALLOW_CREATE_WINDOWS" target="_top"><code>DISALLOW_CREATE_WINDOWS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.DISALLOW_CROSS_PROFILE_COPY_PASTE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#DISALLOW_CROSS_PROFILE_COPY_PASTE" target="_top"><code>DISALLOW_CROSS_PROFILE_COPY_PASTE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.DISALLOW_DEBUGGING_FEATURES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#DISALLOW_DEBUGGING_FEATURES" target="_top"><code>DISALLOW_DEBUGGING_FEATURES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.DISALLOW_FACTORY_RESET"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#DISALLOW_FACTORY_RESET" target="_top"><code>DISALLOW_FACTORY_RESET</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.DISALLOW_MOUNT_PHYSICAL_MEDIA"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#DISALLOW_MOUNT_PHYSICAL_MEDIA" target="_top"><code>DISALLOW_MOUNT_PHYSICAL_MEDIA</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.DISALLOW_OUTGOING_CALLS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#DISALLOW_OUTGOING_CALLS" target="_top"><code>DISALLOW_OUTGOING_CALLS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.DISALLOW_SMS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#DISALLOW_SMS" target="_top"><code>DISALLOW_SMS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.DISALLOW_UNMUTE_MICROPHONE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#DISALLOW_UNMUTE_MICROPHONE" target="_top"><code>DISALLOW_UNMUTE_MICROPHONE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.ENSURE_VERIFY_APPS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#ENSURE_VERIFY_APPS" target="_top"><code>ENSURE_VERIFY_APPS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.os.Vibrator.html b/docs/html/sdk/api_diff/21/changes/android.os.Vibrator.html
new file mode 100644
index 0000000..ec19681
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.os.Vibrator.html
@@ -0,0 +1,169 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Vibrator
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Vibrator.html" target="_top"><font size="+2"><code>Vibrator</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Vibrator.vibrate_removed(long[], int)"></A>
+  <nobr><code>void</code>&nbsp;vibrate(<code>long[],</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Vibrator.vibrate_added(long, android.media.AudioAttributes)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/Vibrator.html#vibrate(long, android.media.AudioAttributes)" target="_top"><code>vibrate</code></A>(<code>long,</nobr> AudioAttributes<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Vibrator.vibrate_added(long[], int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/Vibrator.html#vibrate(long[], int)" target="_top"><code>vibrate</code></A>(<code>long[],</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Vibrator.vibrate_added(long[], int, android.media.AudioAttributes)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/Vibrator.html#vibrate(long[], int, android.media.AudioAttributes)" target="_top"><code>vibrate</code></A>(<code>long[],</nobr> int<nobr>,</nobr> AudioAttributes<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.os.Vibrator.vibrate_changed(long)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/Vibrator.html#vibrate(long)" target="_top"><code>vibrate</code></A>(<code>long</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed from abstract to non-abstract.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.preference.CheckBoxPreference.html b/docs/html/sdk/api_diff/21/changes/android.preference.CheckBoxPreference.html
new file mode 100644
index 0000000..c42b6ae
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.preference.CheckBoxPreference.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.preference.CheckBoxPreference
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.preference.<A HREF="../../../../reference/android/preference/CheckBoxPreference.html" target="_top"><font size="+2"><code>CheckBoxPreference</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.preference.CheckBoxPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/preference/CheckBoxPreference.html#CheckBoxPreference(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>CheckBoxPreference</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.preference.DialogPreference.html b/docs/html/sdk/api_diff/21/changes/android.preference.DialogPreference.html
new file mode 100644
index 0000000..651ec2d
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.preference.DialogPreference.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.preference.DialogPreference
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.preference.<A HREF="../../../../reference/android/preference/DialogPreference.html" target="_top"><font size="+2"><code>DialogPreference</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.preference.DialogPreference.ctor_added(android.content.Context)"></A>
+  <nobr><A HREF="../../../../reference/android/preference/DialogPreference.html#DialogPreference(android.content.Context)" target="_top"><code>DialogPreference</code></A>(<code>Context</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.preference.DialogPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/preference/DialogPreference.html#DialogPreference(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>DialogPreference</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.preference.EditTextPreference.html b/docs/html/sdk/api_diff/21/changes/android.preference.EditTextPreference.html
new file mode 100644
index 0000000..a1edbba
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.preference.EditTextPreference.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.preference.EditTextPreference
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.preference.<A HREF="../../../../reference/android/preference/EditTextPreference.html" target="_top"><font size="+2"><code>EditTextPreference</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.preference.EditTextPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/preference/EditTextPreference.html#EditTextPreference(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>EditTextPreference</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.preference.ListPreference.html b/docs/html/sdk/api_diff/21/changes/android.preference.ListPreference.html
new file mode 100644
index 0000000..dd36497bc
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.preference.ListPreference.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.preference.ListPreference
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.preference.<A HREF="../../../../reference/android/preference/ListPreference.html" target="_top"><font size="+2"><code>ListPreference</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.preference.ListPreference.ctor_added(android.content.Context, android.util.AttributeSet, int)"></A>
+  <nobr><A HREF="../../../../reference/android/preference/ListPreference.html#ListPreference(android.content.Context, android.util.AttributeSet, int)" target="_top"><code>ListPreference</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.preference.ListPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/preference/ListPreference.html#ListPreference(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>ListPreference</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.preference.MultiSelectListPreference.html b/docs/html/sdk/api_diff/21/changes/android.preference.MultiSelectListPreference.html
new file mode 100644
index 0000000..0a42317
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.preference.MultiSelectListPreference.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.preference.MultiSelectListPreference
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.preference.<A HREF="../../../../reference/android/preference/MultiSelectListPreference.html" target="_top"><font size="+2"><code>MultiSelectListPreference</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.preference.MultiSelectListPreference.ctor_added(android.content.Context, android.util.AttributeSet, int)"></A>
+  <nobr><A HREF="../../../../reference/android/preference/MultiSelectListPreference.html#MultiSelectListPreference(android.content.Context, android.util.AttributeSet, int)" target="_top"><code>MultiSelectListPreference</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.preference.MultiSelectListPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/preference/MultiSelectListPreference.html#MultiSelectListPreference(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>MultiSelectListPreference</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.preference.Preference.html b/docs/html/sdk/api_diff/21/changes/android.preference.Preference.html
new file mode 100644
index 0000000..d56e2ef1
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.preference.Preference.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.preference.Preference
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.preference.<A HREF="../../../../reference/android/preference/Preference.html" target="_top"><font size="+2"><code>Preference</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.preference.Preference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/preference/Preference.html#Preference(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>Preference</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.preference.PreferenceCategory.html b/docs/html/sdk/api_diff/21/changes/android.preference.PreferenceCategory.html
new file mode 100644
index 0000000..a7d84db
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.preference.PreferenceCategory.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.preference.PreferenceCategory
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.preference.<A HREF="../../../../reference/android/preference/PreferenceCategory.html" target="_top"><font size="+2"><code>PreferenceCategory</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.preference.PreferenceCategory.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/preference/PreferenceCategory.html#PreferenceCategory(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>PreferenceCategory</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.preference.PreferenceGroup.html b/docs/html/sdk/api_diff/21/changes/android.preference.PreferenceGroup.html
new file mode 100644
index 0000000..e3217c6
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.preference.PreferenceGroup.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.preference.PreferenceGroup
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.preference.<A HREF="../../../../reference/android/preference/PreferenceGroup.html" target="_top"><font size="+2"><code>PreferenceGroup</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.preference.PreferenceGroup.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/preference/PreferenceGroup.html#PreferenceGroup(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>PreferenceGroup</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.preference.RingtonePreference.html b/docs/html/sdk/api_diff/21/changes/android.preference.RingtonePreference.html
new file mode 100644
index 0000000..08c8155
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.preference.RingtonePreference.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.preference.RingtonePreference
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.preference.<A HREF="../../../../reference/android/preference/RingtonePreference.html" target="_top"><font size="+2"><code>RingtonePreference</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.preference.RingtonePreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/preference/RingtonePreference.html#RingtonePreference(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>RingtonePreference</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.preference.SwitchPreference.html b/docs/html/sdk/api_diff/21/changes/android.preference.SwitchPreference.html
new file mode 100644
index 0000000..32effebc
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.preference.SwitchPreference.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.preference.SwitchPreference
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.preference.<A HREF="../../../../reference/android/preference/SwitchPreference.html" target="_top"><font size="+2"><code>SwitchPreference</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.preference.SwitchPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/preference/SwitchPreference.html#SwitchPreference(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>SwitchPreference</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.preference.TwoStatePreference.html b/docs/html/sdk/api_diff/21/changes/android.preference.TwoStatePreference.html
new file mode 100644
index 0000000..34ebcc6
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.preference.TwoStatePreference.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.preference.TwoStatePreference
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.preference.<A HREF="../../../../reference/android/preference/TwoStatePreference.html" target="_top"><font size="+2"><code>TwoStatePreference</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.preference.TwoStatePreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/preference/TwoStatePreference.html#TwoStatePreference(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>TwoStatePreference</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.printservice.PrintService.html b/docs/html/sdk/api_diff/21/changes/android.printservice.PrintService.html
new file mode 100644
index 0000000..88e7733
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.printservice.PrintService.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.printservice.PrintService
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.printservice.<A HREF="../../../../reference/android/printservice/PrintService.html" target="_top"><font size="+2"><code>PrintService</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.printservice.PrintService.EXTRA_PRINTER_INFO"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/printservice/PrintService.html#EXTRA_PRINTER_INFO" target="_top"><code>EXTRA_PRINTER_INFO</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.CallLog.Calls.html b/docs/html/sdk/api_diff/21/changes/android.provider.CallLog.Calls.html
new file mode 100644
index 0000000..3f5c806
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.CallLog.Calls.html
@@ -0,0 +1,234 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.CallLog.Calls
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/CallLog.Calls.html" target="_top"><font size="+2"><code>CallLog.Calls</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.CallLog.Calls.CACHED_FORMATTED_NUMBER"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/CallLog.Calls.html#CACHED_FORMATTED_NUMBER" target="_top"><code>CACHED_FORMATTED_NUMBER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.CallLog.Calls.CACHED_LOOKUP_URI"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/CallLog.Calls.html#CACHED_LOOKUP_URI" target="_top"><code>CACHED_LOOKUP_URI</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.CallLog.Calls.CACHED_MATCHED_NUMBER"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/CallLog.Calls.html#CACHED_MATCHED_NUMBER" target="_top"><code>CACHED_MATCHED_NUMBER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.CallLog.Calls.CACHED_NORMALIZED_NUMBER"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/CallLog.Calls.html#CACHED_NORMALIZED_NUMBER" target="_top"><code>CACHED_NORMALIZED_NUMBER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.CallLog.Calls.CACHED_PHOTO_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/CallLog.Calls.html#CACHED_PHOTO_ID" target="_top"><code>CACHED_PHOTO_ID</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.CallLog.Calls.CONTENT_URI_WITH_VOICEMAIL"></A>
+  <nobr><code>Uri</code>&nbsp;<A HREF="../../../../reference/android/provider/CallLog.Calls.html#CONTENT_URI_WITH_VOICEMAIL" target="_top"><code>CONTENT_URI_WITH_VOICEMAIL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.CallLog.Calls.COUNTRY_ISO"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/CallLog.Calls.html#COUNTRY_ISO" target="_top"><code>COUNTRY_ISO</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.CallLog.Calls.DATA_USAGE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/CallLog.Calls.html#DATA_USAGE" target="_top"><code>DATA_USAGE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.CallLog.Calls.EXTRA_CALL_TYPE_FILTER"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/CallLog.Calls.html#EXTRA_CALL_TYPE_FILTER" target="_top"><code>EXTRA_CALL_TYPE_FILTER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.CallLog.Calls.FEATURES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/CallLog.Calls.html#FEATURES" target="_top"><code>FEATURES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.CallLog.Calls.FEATURES_VIDEO"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/provider/CallLog.Calls.html#FEATURES_VIDEO" target="_top"><code>FEATURES_VIDEO</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.CallLog.Calls.GEOCODED_LOCATION"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/CallLog.Calls.html#GEOCODED_LOCATION" target="_top"><code>GEOCODED_LOCATION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.CallLog.Calls.PHONE_ACCOUNT_COMPONENT_NAME"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/CallLog.Calls.html#PHONE_ACCOUNT_COMPONENT_NAME" target="_top"><code>PHONE_ACCOUNT_COMPONENT_NAME</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.CallLog.Calls.PHONE_ACCOUNT_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/CallLog.Calls.html#PHONE_ACCOUNT_ID" target="_top"><code>PHONE_ACCOUNT_ID</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.CallLog.Calls.TRANSCRIPTION"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/CallLog.Calls.html#TRANSCRIPTION" target="_top"><code>TRANSCRIPTION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.CallLog.Calls.VOICEMAIL_TYPE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/provider/CallLog.Calls.html#VOICEMAIL_TYPE" target="_top"><code>VOICEMAIL_TYPE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.CallLog.Calls.VOICEMAIL_URI"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/CallLog.Calls.html#VOICEMAIL_URI" target="_top"><code>VOICEMAIL_URI</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.CommonDataKinds.Contactables.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.Contactables.html
new file mode 100644
index 0000000..6c17dd6
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.Contactables.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Contactables
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.CommonDataKinds.Contactables.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Contactables</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.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Contactables.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Contactables.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Contactables.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.CommonDataKinds.Email.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.Email.html
new file mode 100644
index 0000000..c3ed1c1
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.Email.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Email
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.CommonDataKinds.Email.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Email</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.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Email.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Email.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Email.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.CommonDataKinds.Event.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.Event.html
new file mode 100644
index 0000000..fde6330
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.Event.html
@@ -0,0 +1,151 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Event
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.CommonDataKinds.Event.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Event</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.ContactsContract.CommonDataKinds.Event.getTypeLabel_added(android.content.res.Resources, int, java.lang.CharSequence)"></A>
+  <nobr><code>CharSequence</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Event.html#getTypeLabel(android.content.res.Resources, int, java.lang.CharSequence)" target="_top"><code>getTypeLabel</code></A>(<code>Resources,</nobr> int<nobr>,</nobr> CharSequence<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Event.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Event.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Event.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.CommonDataKinds.GroupMembership.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.GroupMembership.html
new file mode 100644
index 0000000..66a7967
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.GroupMembership.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.CommonDataKinds.GroupMembership.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.GroupMembership</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.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.GroupMembership.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.GroupMembership.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.GroupMembership.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.CommonDataKinds.Identity.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.Identity.html
new file mode 100644
index 0000000..7daf8a2
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.Identity.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Identity
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.CommonDataKinds.Identity.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Identity</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.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Identity.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Identity.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Identity.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.CommonDataKinds.Im.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.Im.html
new file mode 100644
index 0000000..780315b
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.Im.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Im
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.CommonDataKinds.Im.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Im</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.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Im.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Im.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Im.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.CommonDataKinds.Nickname.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.Nickname.html
new file mode 100644
index 0000000..7fe4083
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.Nickname.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Nickname
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.CommonDataKinds.Nickname.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Nickname</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.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Nickname.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Nickname.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Nickname.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.CommonDataKinds.Note.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.Note.html
new file mode 100644
index 0000000..0d2e6cf
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.Note.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Note
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.CommonDataKinds.Note.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Note</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.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Note.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Note.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Note.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.CommonDataKinds.Organization.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.Organization.html
new file mode 100644
index 0000000..0c90fd8
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.Organization.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Organization
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.CommonDataKinds.Organization.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Organization</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.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Organization.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Organization.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Organization.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.CommonDataKinds.Phone.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.Phone.html
new file mode 100644
index 0000000..b3dfe68
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.Phone.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Phone
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.CommonDataKinds.Phone.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Phone</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.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Phone.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Phone.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Phone.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.CommonDataKinds.Photo.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.Photo.html
new file mode 100644
index 0000000..9d3048a
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.Photo.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Photo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.CommonDataKinds.Photo.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Photo</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.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Photo.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Photo.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Photo.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.CommonDataKinds.Relation.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.Relation.html
new file mode 100644
index 0000000..516203d
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.Relation.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Relation
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.CommonDataKinds.Relation.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Relation</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.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Relation.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Relation.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Relation.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.CommonDataKinds.SipAddress.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.SipAddress.html
new file mode 100644
index 0000000..60e7b0d
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.SipAddress.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.SipAddress
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.CommonDataKinds.SipAddress.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.SipAddress</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.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.SipAddress.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.SipAddress.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.SipAddress.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.CommonDataKinds.StructuredName.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.StructuredName.html
new file mode 100644
index 0000000..561b86a
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.StructuredName.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.StructuredName
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.CommonDataKinds.StructuredName.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.StructuredName</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.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.StructuredName.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.StructuredName.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.StructuredName.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.StructuredName.FULL_NAME_STYLE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.StructuredName.html#FULL_NAME_STYLE" target="_top"><code>FULL_NAME_STYLE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html
new file mode 100644
index 0000000..0169465
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.StructuredPostal
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.CommonDataKinds.StructuredPostal.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.StructuredPostal</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.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.StructuredPostal.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.StructuredPostal.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.StructuredPostal.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.CommonDataKinds.Website.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.Website.html
new file mode 100644
index 0000000..12acf5c
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.CommonDataKinds.Website.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Website
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.CommonDataKinds.Website.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Website</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.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Website.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Website.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Website.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.ContactOptionsColumns.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.ContactOptionsColumns.html
new file mode 100644
index 0000000..ef02519
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.ContactOptionsColumns.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.ContactOptionsColumns
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.ContactOptionsColumns.html" target="_top"><font size="+2"><code>ContactsContract.ContactOptionsColumns</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.ContactsContract.ContactOptionsColumns.PINNED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.ContactOptionsColumns.html#PINNED" target="_top"><code>PINNED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.Contacts.Entity.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.Contacts.Entity.html
new file mode 100644
index 0000000..36ff620
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.Contacts.Entity.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.Contacts.Entity
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.Contacts.Entity.html" target="_top"><font size="+2"><code>ContactsContract.Contacts.Entity</code></font></A>
+</H2>
+<p><font xsize="+1">Added interface <code>android.provider.ContactsContract.DataUsageStatColumns</code>.<br></font>
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.Contacts.StreamItems.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.Contacts.StreamItems.html
new file mode 100644
index 0000000..51eeee1
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.Contacts.StreamItems.html
@@ -0,0 +1,125 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.Contacts.StreamItems
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.Contacts.StreamItems.html" target="_top"><font size="+2"><code>ContactsContract.Contacts.StreamItems</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.ContactsContract.Contacts.StreamItems.CONTENT_DIRECTORY"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.Contacts.StreamItems.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>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.Contacts.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.Contacts.html
new file mode 100644
index 0000000..e9c4852
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.Contacts.html
@@ -0,0 +1,165 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.Contacts.html" target="_top"><font size="+2"><code>ContactsContract.Contacts</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.ContactsContract.Contacts.isEnterpriseContactId_added(long)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.Contacts.html#isEnterpriseContactId(long)" target="_top"><code>isEnterpriseContactId</code></A>(<code>long</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.ContactsContract.Contacts.CONTENT_FREQUENT_URI"></A>
+  <nobr><code>Uri</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.Contacts.html#CONTENT_FREQUENT_URI" target="_top"><code>CONTENT_FREQUENT_URI</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.Contacts.CONTENT_MULTI_VCARD_URI"></A>
+  <nobr><code>Uri</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.Contacts.html#CONTENT_MULTI_VCARD_URI" target="_top"><code>CONTENT_MULTI_VCARD_URI</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.Contacts.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.Contacts.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.Contacts.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.ContactsColumns.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.ContactsColumns.html
new file mode 100644
index 0000000..ff8e016
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.ContactsColumns.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.ContactsColumns
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.ContactsColumns.html" target="_top"><font size="+2"><code>ContactsContract.ContactsColumns</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.ContactsContract.ContactsColumns.IN_DEFAULT_DIRECTORY"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.ContactsColumns.html#IN_DEFAULT_DIRECTORY" target="_top"><code>IN_DEFAULT_DIRECTORY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.ContactsColumns.NAME_RAW_CONTACT_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.ContactsColumns.html#NAME_RAW_CONTACT_ID" target="_top"><code>NAME_RAW_CONTACT_ID</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.Data.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.Data.html
new file mode 100644
index 0000000..ec00563
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.Data.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.Data
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.Data.html" target="_top"><font size="+2"><code>ContactsContract.Data</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.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.Data.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.Data.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.Data.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.DataColumns.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.DataColumns.html
new file mode 100644
index 0000000..1294d29
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.DataColumns.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.DataColumns
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.DataColumns.html" target="_top"><font size="+2"><code>ContactsContract.DataColumns</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.ContactsContract.DataColumns.RES_PACKAGE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.DataColumns.html#RES_PACKAGE" target="_top"><code>RES_PACKAGE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.GroupsColumns.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.GroupsColumns.html
new file mode 100644
index 0000000..6c5b8b0
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.GroupsColumns.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.GroupsColumns.html" target="_top"><font size="+2"><code>ContactsContract.GroupsColumns</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.ContactsContract.GroupsColumns.RES_PACKAGE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.GroupsColumns.html#RES_PACKAGE" target="_top"><code>RES_PACKAGE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.GroupsColumns.TITLE_RES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.GroupsColumns.html#TITLE_RES" target="_top"><code>TITLE_RES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.PhoneLookup.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.PhoneLookup.html
new file mode 100644
index 0000000..156801a
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.PhoneLookup.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.PhoneLookup
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.PhoneLookup.html" target="_top"><font size="+2"><code>ContactsContract.PhoneLookup</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.ContactsContract.PhoneLookup.ENTERPRISE_CONTENT_FILTER_URI"></A>
+  <nobr><code>Uri</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.PhoneLookup.html#ENTERPRISE_CONTENT_FILTER_URI" target="_top"><code>ENTERPRISE_CONTENT_FILTER_URI</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.PhoneLookup.QUERY_PARAMETER_SIP_ADDRESS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.PhoneLookup.html#QUERY_PARAMETER_SIP_ADDRESS" target="_top"><code>QUERY_PARAMETER_SIP_ADDRESS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.QuickContact.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.QuickContact.html
new file mode 100644
index 0000000..b3aafbe
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.QuickContact.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.QuickContact
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.QuickContact.html" target="_top"><font size="+2"><code>ContactsContract.QuickContact</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.ContactsContract.QuickContact.ACTION_QUICK_CONTACT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.QuickContact.html#ACTION_QUICK_CONTACT" target="_top"><code>ACTION_QUICK_CONTACT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.QuickContact.EXTRA_EXCLUDE_MIMES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.QuickContact.html#EXTRA_EXCLUDE_MIMES" target="_top"><code>EXTRA_EXCLUDE_MIMES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.RawContacts.StreamItems.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.RawContacts.StreamItems.html
new file mode 100644
index 0000000..2bd1f48
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.RawContacts.StreamItems.html
@@ -0,0 +1,125 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.RawContacts.StreamItems
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.RawContacts.StreamItems.html" target="_top"><font size="+2"><code>ContactsContract.RawContacts.StreamItems</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.ContactsContract.RawContacts.StreamItems.CONTENT_DIRECTORY"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.RawContacts.StreamItems.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>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.RawContactsColumns.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.RawContactsColumns.html
new file mode 100644
index 0000000..f3aec3f
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.RawContactsColumns.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.RawContactsColumns
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.RawContactsColumns.html" target="_top"><font size="+2"><code>ContactsContract.RawContactsColumns</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.ContactsContract.RawContactsColumns.ACCOUNT_TYPE_AND_DATA_SET"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.RawContactsColumns.html#ACCOUNT_TYPE_AND_DATA_SET" target="_top"><code>ACCOUNT_TYPE_AND_DATA_SET</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.StreamItemPhotos.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.StreamItemPhotos.html
new file mode 100644
index 0000000..739c3eb
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.StreamItemPhotos.html
@@ -0,0 +1,125 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.StreamItemPhotos
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.StreamItemPhotos.html" target="_top"><font size="+2"><code>ContactsContract.StreamItemPhotos</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.ContactsContract.StreamItemPhotos.PHOTO"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemPhotos.html#PHOTO" target="_top"><code>PHOTO</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.StreamItemPhotosColumns.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.StreamItemPhotosColumns.html
new file mode 100644
index 0000000..1c4cce3
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.StreamItemPhotosColumns.html
@@ -0,0 +1,188 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.StreamItemPhotosColumns
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.StreamItemPhotosColumns.html" target="_top"><font size="+2"><code>ContactsContract.StreamItemPhotosColumns</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.ContactsContract.StreamItemPhotosColumns.PHOTO_FILE_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemPhotosColumns.html#PHOTO_FILE_ID" target="_top"><code>PHOTO_FILE_ID</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemPhotosColumns.PHOTO_URI"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemPhotosColumns.html#PHOTO_URI" target="_top"><code>PHOTO_URI</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemPhotosColumns.SORT_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemPhotosColumns.html#SORT_INDEX" target="_top"><code>SORT_INDEX</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemPhotosColumns.STREAM_ITEM_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemPhotosColumns.html#STREAM_ITEM_ID" target="_top"><code>STREAM_ITEM_ID</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemPhotosColumns.SYNC1"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemPhotosColumns.html#SYNC1" target="_top"><code>SYNC1</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemPhotosColumns.SYNC2"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemPhotosColumns.html#SYNC2" target="_top"><code>SYNC2</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemPhotosColumns.SYNC3"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemPhotosColumns.html#SYNC3" target="_top"><code>SYNC3</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemPhotosColumns.SYNC4"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemPhotosColumns.html#SYNC4" target="_top"><code>SYNC4</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.StreamItems.StreamItemPhotos.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.StreamItems.StreamItemPhotos.html
new file mode 100644
index 0000000..f0417c6
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.StreamItems.StreamItemPhotos.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.StreamItems.StreamItemPhotos
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.StreamItems.StreamItemPhotos.html" target="_top"><font size="+2"><code>ContactsContract.StreamItems.StreamItemPhotos</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.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_DIRECTORY"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItems.StreamItemPhotos.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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_ITEM_TYPE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItems.StreamItemPhotos.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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_TYPE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItems.StreamItemPhotos.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>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.StreamItems.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.StreamItems.html
new file mode 100644
index 0000000..096e77c
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.StreamItems.html
@@ -0,0 +1,170 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.StreamItems
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.StreamItems.html" target="_top"><font size="+2"><code>ContactsContract.StreamItems</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.ContactsContract.StreamItems.CONTENT_ITEM_TYPE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItems.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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItems.CONTENT_LIMIT_URI"></A>
+  <nobr><code>Uri</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItems.html#CONTENT_LIMIT_URI" target="_top"><code>CONTENT_LIMIT_URI</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItems.CONTENT_PHOTO_URI"></A>
+  <nobr><code>Uri</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItems.html#CONTENT_PHOTO_URI" target="_top"><code>CONTENT_PHOTO_URI</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItems.CONTENT_TYPE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItems.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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItems.CONTENT_URI"></A>
+  <nobr><code>Uri</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItems.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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItems.MAX_ITEMS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItems.html#MAX_ITEMS" target="_top"><code>MAX_ITEMS</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.StreamItemsColumns.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.StreamItemsColumns.html
new file mode 100644
index 0000000..e5b4c4b
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.StreamItemsColumns.html
@@ -0,0 +1,269 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.StreamItemsColumns
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.StreamItemsColumns.html" target="_top"><font size="+2"><code>ContactsContract.StreamItemsColumns</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.ContactsContract.StreamItemsColumns.ACCOUNT_NAME"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#ACCOUNT_NAME" target="_top"><code>ACCOUNT_NAME</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.ACCOUNT_TYPE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#ACCOUNT_TYPE" target="_top"><code>ACCOUNT_TYPE</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.COMMENTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#COMMENTS" target="_top"><code>COMMENTS</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.CONTACT_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#CONTACT_ID" target="_top"><code>CONTACT_ID</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.CONTACT_LOOKUP_KEY"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#CONTACT_LOOKUP_KEY" target="_top"><code>CONTACT_LOOKUP_KEY</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.DATA_SET"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#DATA_SET" target="_top"><code>DATA_SET</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.RAW_CONTACT_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#RAW_CONTACT_ID" target="_top"><code>RAW_CONTACT_ID</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.RAW_CONTACT_SOURCE_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#RAW_CONTACT_SOURCE_ID" target="_top"><code>RAW_CONTACT_SOURCE_ID</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.RES_ICON"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#RES_ICON" target="_top"><code>RES_ICON</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.RES_LABEL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#RES_LABEL" target="_top"><code>RES_LABEL</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.RES_PACKAGE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#RES_PACKAGE" target="_top"><code>RES_PACKAGE</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.SYNC1"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#SYNC1" target="_top"><code>SYNC1</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.SYNC2"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#SYNC2" target="_top"><code>SYNC2</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.SYNC3"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#SYNC3" target="_top"><code>SYNC3</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.SYNC4"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#SYNC4" target="_top"><code>SYNC4</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.TEXT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#TEXT" target="_top"><code>TEXT</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.TIMESTAMP"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#TIMESTAMP" target="_top"><code>TIMESTAMP</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.ContactsContract.html b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.html
new file mode 100644
index 0000000..db2b3d4
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.ContactsContract.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ContactsContract.html" target="_top"><font size="+2"><code>ContactsContract</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.ContactsContract.DEFERRED_SNIPPETING"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.html#DEFERRED_SNIPPETING" target="_top"><code>DEFERRED_SNIPPETING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.DEFERRED_SNIPPETING_QUERY"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.html#DEFERRED_SNIPPETING_QUERY" target="_top"><code>DEFERRED_SNIPPETING_QUERY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.REMOVE_DUPLICATE_ENTRIES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.html#REMOVE_DUPLICATE_ENTRIES" target="_top"><code>REMOVE_DUPLICATE_ENTRIES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.STREQUENT_PHONE_ONLY"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.html#STREQUENT_PHONE_ONLY" target="_top"><code>STREQUENT_PHONE_ONLY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.DocumentsContract.Document.html b/docs/html/sdk/api_diff/21/changes/android.provider.DocumentsContract.Document.html
new file mode 100644
index 0000000..e7f7fa7
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.DocumentsContract.Document.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.DocumentsContract.Document
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/DocumentsContract.Document.html" target="_top"><font size="+2"><code>DocumentsContract.Document</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.DocumentsContract.Document.FLAG_SUPPORTS_RENAME"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/provider/DocumentsContract.Document.html#FLAG_SUPPORTS_RENAME" target="_top"><code>FLAG_SUPPORTS_RENAME</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.DocumentsContract.Root.html b/docs/html/sdk/api_diff/21/changes/android.provider.DocumentsContract.Root.html
new file mode 100644
index 0000000..f09cd07
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.DocumentsContract.Root.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.DocumentsContract.Root
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/DocumentsContract.Root.html" target="_top"><font size="+2"><code>DocumentsContract.Root</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.DocumentsContract.Root.FLAG_SUPPORTS_IS_CHILD"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/provider/DocumentsContract.Root.html#FLAG_SUPPORTS_IS_CHILD" target="_top"><code>FLAG_SUPPORTS_IS_CHILD</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.DocumentsContract.html b/docs/html/sdk/api_diff/21/changes/android.provider.DocumentsContract.html
new file mode 100644
index 0000000..dfdbc81
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.DocumentsContract.html
@@ -0,0 +1,157 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.DocumentsContract
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/DocumentsContract.html" target="_top"><font size="+2"><code>DocumentsContract</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.DocumentsContract.buildChildDocumentsUriUsingTree_added(android.net.Uri, java.lang.String)"></A>
+  <nobr><code>Uri</code>&nbsp;<A HREF="../../../../reference/android/provider/DocumentsContract.html#buildChildDocumentsUriUsingTree(android.net.Uri, java.lang.String)" target="_top"><code>buildChildDocumentsUriUsingTree</code></A>(<code>Uri,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.DocumentsContract.buildDocumentUriUsingTree_added(android.net.Uri, java.lang.String)"></A>
+  <nobr><code>Uri</code>&nbsp;<A HREF="../../../../reference/android/provider/DocumentsContract.html#buildDocumentUriUsingTree(android.net.Uri, java.lang.String)" target="_top"><code>buildDocumentUriUsingTree</code></A>(<code>Uri,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.DocumentsContract.buildTreeDocumentUri_added(java.lang.String, java.lang.String)"></A>
+  <nobr><code>Uri</code>&nbsp;<A HREF="../../../../reference/android/provider/DocumentsContract.html#buildTreeDocumentUri(java.lang.String, java.lang.String)" target="_top"><code>buildTreeDocumentUri</code></A>(<code>String,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.DocumentsContract.createDocument_added(android.content.ContentResolver, android.net.Uri, java.lang.String, java.lang.String)"></A>
+  <nobr><code>Uri</code>&nbsp;<A HREF="../../../../reference/android/provider/DocumentsContract.html#createDocument(android.content.ContentResolver, android.net.Uri, java.lang.String, java.lang.String)" target="_top"><code>createDocument</code></A>(<code>ContentResolver,</nobr> Uri<nobr>,</nobr> String<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.DocumentsContract.getTreeDocumentId_added(android.net.Uri)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/DocumentsContract.html#getTreeDocumentId(android.net.Uri)" target="_top"><code>getTreeDocumentId</code></A>(<code>Uri</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.DocumentsContract.renameDocument_added(android.content.ContentResolver, android.net.Uri, java.lang.String)"></A>
+  <nobr><code>Uri</code>&nbsp;<A HREF="../../../../reference/android/provider/DocumentsContract.html#renameDocument(android.content.ContentResolver, android.net.Uri, java.lang.String)" target="_top"><code>renameDocument</code></A>(<code>ContentResolver,</nobr> Uri<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.DocumentsProvider.html b/docs/html/sdk/api_diff/21/changes/android.provider.DocumentsProvider.html
new file mode 100644
index 0000000..00a01575
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.DocumentsProvider.html
@@ -0,0 +1,150 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.DocumentsProvider
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/DocumentsProvider.html" target="_top"><font size="+2"><code>DocumentsProvider</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.DocumentsProvider.isChildDocument_added(java.lang.String, java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/provider/DocumentsProvider.html#isChildDocument(java.lang.String, java.lang.String)" target="_top"><code>isChildDocument</code></A>(<code>String,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.DocumentsProvider.openAssetFile_added(android.net.Uri, java.lang.String)"></A>
+  <nobr><code>AssetFileDescriptor</code>&nbsp;<A HREF="../../../../reference/android/provider/DocumentsProvider.html#openAssetFile(android.net.Uri, java.lang.String)" target="_top"><code>openAssetFile</code></A>(<code>Uri,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.DocumentsProvider.openAssetFile_added(android.net.Uri, java.lang.String, android.os.CancellationSignal)"></A>
+  <nobr><code>AssetFileDescriptor</code>&nbsp;<A HREF="../../../../reference/android/provider/DocumentsProvider.html#openAssetFile(android.net.Uri, java.lang.String, android.os.CancellationSignal)" target="_top"><code>openAssetFile</code></A>(<code>Uri,</nobr> String<nobr>,</nobr> CancellationSignal<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.DocumentsProvider.renameDocument_added(java.lang.String, java.lang.String)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/DocumentsProvider.html#renameDocument(java.lang.String, java.lang.String)" target="_top"><code>renameDocument</code></A>(<code>String,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.DocumentsProvider.revokeDocumentPermission_added(java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/provider/DocumentsProvider.html#revokeDocumentPermission(java.lang.String)" target="_top"><code>revokeDocumentPermission</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.MediaStore.Audio.Media.html b/docs/html/sdk/api_diff/21/changes/android.provider.MediaStore.Audio.Media.html
new file mode 100644
index 0000000..f05e160
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.MediaStore.Audio.Media.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Audio.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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.Audio.Media.html" target="_top"><font size="+2"><code>MediaStore.Audio.Media</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.MediaStore.Audio.Media.ENTRY_CONTENT_TYPE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/MediaStore.Audio.Media.html#ENTRY_CONTENT_TYPE" target="_top"><code>ENTRY_CONTENT_TYPE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.MediaStore.html b/docs/html/sdk/api_diff/21/changes/android.provider.MediaStore.html
new file mode 100644
index 0000000..023bd9a
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.MediaStore.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.html" target="_top"><font size="+2"><code>MediaStore</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.MediaStore.EXTRA_MEDIA_GENRE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/MediaStore.html#EXTRA_MEDIA_GENRE" target="_top"><code>EXTRA_MEDIA_GENRE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.MediaStore.EXTRA_MEDIA_PLAYLIST"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/MediaStore.html#EXTRA_MEDIA_PLAYLIST" target="_top"><code>EXTRA_MEDIA_PLAYLIST</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.MediaStore.EXTRA_MEDIA_RADIO_CHANNEL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/MediaStore.html#EXTRA_MEDIA_RADIO_CHANNEL" target="_top"><code>EXTRA_MEDIA_RADIO_CHANNEL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.Settings.Global.html b/docs/html/sdk/api_diff/21/changes/android.provider.Settings.Global.html
new file mode 100644
index 0000000..e30e80e
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.Settings.Global.html
@@ -0,0 +1,124 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Global
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.Global.html" target="_top"><font size="+2"><code>Settings.Global</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.provider.Settings.Global.INSTALL_NON_MARKET_APPS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Settings.Global.html#INSTALL_NON_MARKET_APPS" target="_top"><code>INSTALL_NON_MARKET_APPS</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.Settings.Secure.html b/docs/html/sdk/api_diff/21/changes/android.provider.Settings.Secure.html
new file mode 100644
index 0000000..a81e18f
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.Settings.Secure.html
@@ -0,0 +1,146 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Secure
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.Secure.html" target="_top"><font size="+2"><code>Settings.Secure</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.Secure.ACCESSIBILITY_DISPLAY_INVERSION_ENABLED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Settings.Secure.html#ACCESSIBILITY_DISPLAY_INVERSION_ENABLED" target="_top"><code>ACCESSIBILITY_DISPLAY_INVERSION_ENABLED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.Settings.Secure.SKIP_FIRST_USE_HINTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Settings.Secure.html#SKIP_FIRST_USE_HINTS" target="_top"><code>SKIP_FIRST_USE_HINTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Settings.Secure.INSTALL_NON_MARKET_APPS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Settings.Secure.html#INSTALL_NON_MARKET_APPS" target="_top"><code>INSTALL_NON_MARKET_APPS</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change from deprecated to undeprecated.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.Settings.System.html b/docs/html/sdk/api_diff/21/changes/android.provider.Settings.System.html
new file mode 100644
index 0000000..4fec475
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.Settings.System.html
@@ -0,0 +1,124 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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="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.Settings.System.NEXT_ALARM_FORMATTED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Settings.System.html#NEXT_ALARM_FORMATTED" target="_top"><code>NEXT_ALARM_FORMATTED</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.Settings.html b/docs/html/sdk/api_diff/21/changes/android.provider.Settings.html
new file mode 100644
index 0000000..d74b8d9
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.Settings.html
@@ -0,0 +1,150 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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_CAST_SETTINGS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Settings.html#ACTION_CAST_SETTINGS" target="_top"><code>ACTION_CAST_SETTINGS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.Settings.ACTION_HOME_SETTINGS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Settings.html#ACTION_HOME_SETTINGS" target="_top"><code>ACTION_HOME_SETTINGS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.Settings.ACTION_SHOW_REGULATORY_INFO"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Settings.html#ACTION_SHOW_REGULATORY_INFO" target="_top"><code>ACTION_SHOW_REGULATORY_INFO</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.Settings.ACTION_USAGE_ACCESS_SETTINGS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Settings.html#ACTION_USAGE_ACCESS_SETTINGS" target="_top"><code>ACTION_USAGE_ACCESS_SETTINGS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.Settings.ACTION_VOICE_INPUT_SETTINGS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Settings.html#ACTION_VOICE_INPUT_SETTINGS" target="_top"><code>ACTION_VOICE_INPUT_SETTINGS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.Telephony.BaseMmsColumns.html b/docs/html/sdk/api_diff/21/changes/android.provider.Telephony.BaseMmsColumns.html
new file mode 100644
index 0000000..7a78b9c
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.Telephony.BaseMmsColumns.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Telephony.BaseMmsColumns
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Telephony.BaseMmsColumns.html" target="_top"><font size="+2"><code>Telephony.BaseMmsColumns</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.Telephony.BaseMmsColumns.CREATOR"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Telephony.BaseMmsColumns.html#CREATOR" target="_top"><code>CREATOR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.Telephony.BaseMmsColumns.MESSAGE_BOX_FAILED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/provider/Telephony.BaseMmsColumns.html#MESSAGE_BOX_FAILED" target="_top"><code>MESSAGE_BOX_FAILED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.Telephony.TextBasedSmsColumns.html b/docs/html/sdk/api_diff/21/changes/android.provider.Telephony.TextBasedSmsColumns.html
new file mode 100644
index 0000000..370c24c
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.Telephony.TextBasedSmsColumns.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Telephony.TextBasedSmsColumns
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Telephony.TextBasedSmsColumns.html" target="_top"><font size="+2"><code>Telephony.TextBasedSmsColumns</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.Telephony.TextBasedSmsColumns.CREATOR"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Telephony.TextBasedSmsColumns.html#CREATOR" target="_top"><code>CREATOR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.Telephony.ThreadsColumns.html b/docs/html/sdk/api_diff/21/changes/android.provider.Telephony.ThreadsColumns.html
new file mode 100644
index 0000000..556e1dc6
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.Telephony.ThreadsColumns.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Telephony.ThreadsColumns
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Telephony.ThreadsColumns.html" target="_top"><font size="+2"><code>Telephony.ThreadsColumns</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.Telephony.ThreadsColumns.ARCHIVED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Telephony.ThreadsColumns.html#ARCHIVED" target="_top"><code>ARCHIVED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.provider.VoicemailContract.Voicemails.html b/docs/html/sdk/api_diff/21/changes/android.provider.VoicemailContract.Voicemails.html
new file mode 100644
index 0000000..e1755cf
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.provider.VoicemailContract.Voicemails.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.VoicemailContract.Voicemails
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/VoicemailContract.Voicemails.html" target="_top"><font size="+2"><code>VoicemailContract.Voicemails</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.VoicemailContract.Voicemails.TRANSCRIPTION"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/VoicemailContract.Voicemails.html#TRANSCRIPTION" target="_top"><code>TRANSCRIPTION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.renderscript.Allocation.html b/docs/html/sdk/api_diff/21/changes/android.renderscript.Allocation.html
new file mode 100644
index 0000000..6b882e9
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.renderscript.Allocation.html
@@ -0,0 +1,157 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.renderscript.Allocation
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.renderscript.<A HREF="../../../../reference/android/renderscript/Allocation.html" target="_top"><font size="+2"><code>Allocation</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.renderscript.Allocation.copy1DRangeFrom_added(int, int, java.lang.Object)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/Allocation.html#copy1DRangeFrom(int, int, java.lang.Object)" target="_top"><code>copy1DRangeFrom</code></A>(<code>int,</nobr> int<nobr>,</nobr> Object<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.Allocation.copy1DRangeFromUnchecked_added(int, int, java.lang.Object)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/Allocation.html#copy1DRangeFromUnchecked(int, int, java.lang.Object)" target="_top"><code>copy1DRangeFromUnchecked</code></A>(<code>int,</nobr> int<nobr>,</nobr> Object<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.Allocation.copy2DRangeFrom_added(int, int, int, int, java.lang.Object)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/Allocation.html#copy2DRangeFrom(int, int, int, int, java.lang.Object)" target="_top"><code>copy2DRangeFrom</code></A>(<code>int,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> Object<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.Allocation.copyFrom_added(java.lang.Object)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/Allocation.html#copyFrom(java.lang.Object)" target="_top"><code>copyFrom</code></A>(<code>Object</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.Allocation.copyFromUnchecked_added(java.lang.Object)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/Allocation.html#copyFromUnchecked(java.lang.Object)" target="_top"><code>copyFromUnchecked</code></A>(<code>Object</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.Allocation.copyTo_added(java.lang.Object)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/Allocation.html#copyTo(java.lang.Object)" target="_top"><code>copyTo</code></A>(<code>Object</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.renderscript.RenderScript.html b/docs/html/sdk/api_diff/21/changes/android.renderscript.RenderScript.html
new file mode 100644
index 0000000..868a01d
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.renderscript.RenderScript.html
@@ -0,0 +1,151 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.renderscript.RenderScript
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.renderscript.<A HREF="../../../../reference/android/renderscript/RenderScript.html" target="_top"><font size="+2"><code>RenderScript</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.renderscript.RenderScript.create_added(android.content.Context, android.renderscript.RenderScript.ContextType, int)"></A>
+  <nobr><code>RenderScript</code>&nbsp;<A HREF="../../../../reference/android/renderscript/RenderScript.html#create(android.content.Context, android.renderscript.RenderScript.ContextType, int)" target="_top"><code>create</code></A>(<code>Context,</nobr> ContextType<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.renderscript.RenderScript.CREATE_FLAG_LOW_LATENCY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/renderscript/RenderScript.html#CREATE_FLAG_LOW_LATENCY" target="_top"><code>CREATE_FLAG_LOW_LATENCY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.RenderScript.CREATE_FLAG_LOW_POWER"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/renderscript/RenderScript.html#CREATE_FLAG_LOW_POWER" target="_top"><code>CREATE_FLAG_LOW_POWER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.RenderScript.CREATE_FLAG_NONE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/renderscript/RenderScript.html#CREATE_FLAG_NONE" target="_top"><code>CREATE_FLAG_NONE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.renderscript.ScriptC.html b/docs/html/sdk/api_diff/21/changes/android.renderscript.ScriptC.html
new file mode 100644
index 0000000..128891d
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.renderscript.ScriptC.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.renderscript.ScriptC
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.renderscript.<A HREF="../../../../reference/android/renderscript/ScriptC.html" target="_top"><font size="+2"><code>ScriptC</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.renderscript.ScriptC.ctor_added(android.renderscript.RenderScript, java.lang.String, byte[], byte[])"></A>
+  <nobr><A HREF="../../../../reference/android/renderscript/ScriptC.html#ScriptC(android.renderscript.RenderScript, java.lang.String, byte[], byte[])" target="_top"><code>ScriptC</code></A>(<code>RenderScript,</nobr> String<nobr>,</nobr> byte[]<nobr>,</nobr> byte[]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.ScriptC.ctor_added(long, android.renderscript.RenderScript)"></A>
+  <nobr><A HREF="../../../../reference/android/renderscript/ScriptC.html#ScriptC(long, android.renderscript.RenderScript)" target="_top"><code>ScriptC</code></A>(<code>long,</nobr> RenderScript<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.renderscript.ScriptIntrinsic3DLUT.html b/docs/html/sdk/api_diff/21/changes/android.renderscript.ScriptIntrinsic3DLUT.html
new file mode 100644
index 0000000..f586acd
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.renderscript.ScriptIntrinsic3DLUT.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.renderscript.ScriptIntrinsic3DLUT
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.renderscript.<A HREF="../../../../reference/android/renderscript/ScriptIntrinsic3DLUT.html" target="_top"><font size="+2"><code>ScriptIntrinsic3DLUT</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.renderscript.ScriptIntrinsic3DLUT.forEach_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/ScriptIntrinsic3DLUT.html#forEach(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" target="_top"><code>forEach</code></A>(<code>Allocation,</nobr> Allocation<nobr>,</nobr> LaunchOptions<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.renderscript.ScriptIntrinsicBlend.html b/docs/html/sdk/api_diff/21/changes/android.renderscript.ScriptIntrinsicBlend.html
new file mode 100644
index 0000000..368f89f
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.renderscript.ScriptIntrinsicBlend.html
@@ -0,0 +1,220 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.renderscript.ScriptIntrinsicBlend
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.renderscript.<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicBlend.html" target="_top"><font size="+2"><code>ScriptIntrinsicBlend</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.renderscript.ScriptIntrinsicBlend.forEachAdd_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicBlend.html#forEachAdd(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" target="_top"><code>forEachAdd</code></A>(<code>Allocation,</nobr> Allocation<nobr>,</nobr> LaunchOptions<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.ScriptIntrinsicBlend.forEachClear_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicBlend.html#forEachClear(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" target="_top"><code>forEachClear</code></A>(<code>Allocation,</nobr> Allocation<nobr>,</nobr> LaunchOptions<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.ScriptIntrinsicBlend.forEachDst_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicBlend.html#forEachDst(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" target="_top"><code>forEachDst</code></A>(<code>Allocation,</nobr> Allocation<nobr>,</nobr> LaunchOptions<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.ScriptIntrinsicBlend.forEachDstAtop_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicBlend.html#forEachDstAtop(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" target="_top"><code>forEachDstAtop</code></A>(<code>Allocation,</nobr> Allocation<nobr>,</nobr> LaunchOptions<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.ScriptIntrinsicBlend.forEachDstIn_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicBlend.html#forEachDstIn(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" target="_top"><code>forEachDstIn</code></A>(<code>Allocation,</nobr> Allocation<nobr>,</nobr> LaunchOptions<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.ScriptIntrinsicBlend.forEachDstOut_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicBlend.html#forEachDstOut(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" target="_top"><code>forEachDstOut</code></A>(<code>Allocation,</nobr> Allocation<nobr>,</nobr> LaunchOptions<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.ScriptIntrinsicBlend.forEachDstOver_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicBlend.html#forEachDstOver(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" target="_top"><code>forEachDstOver</code></A>(<code>Allocation,</nobr> Allocation<nobr>,</nobr> LaunchOptions<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.ScriptIntrinsicBlend.forEachMultiply_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicBlend.html#forEachMultiply(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" target="_top"><code>forEachMultiply</code></A>(<code>Allocation,</nobr> Allocation<nobr>,</nobr> LaunchOptions<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.ScriptIntrinsicBlend.forEachSrc_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicBlend.html#forEachSrc(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" target="_top"><code>forEachSrc</code></A>(<code>Allocation,</nobr> Allocation<nobr>,</nobr> LaunchOptions<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.ScriptIntrinsicBlend.forEachSrcAtop_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicBlend.html#forEachSrcAtop(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" target="_top"><code>forEachSrcAtop</code></A>(<code>Allocation,</nobr> Allocation<nobr>,</nobr> LaunchOptions<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.ScriptIntrinsicBlend.forEachSrcIn_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicBlend.html#forEachSrcIn(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" target="_top"><code>forEachSrcIn</code></A>(<code>Allocation,</nobr> Allocation<nobr>,</nobr> LaunchOptions<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.ScriptIntrinsicBlend.forEachSrcOut_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicBlend.html#forEachSrcOut(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" target="_top"><code>forEachSrcOut</code></A>(<code>Allocation,</nobr> Allocation<nobr>,</nobr> LaunchOptions<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.ScriptIntrinsicBlend.forEachSrcOver_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicBlend.html#forEachSrcOver(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" target="_top"><code>forEachSrcOver</code></A>(<code>Allocation,</nobr> Allocation<nobr>,</nobr> LaunchOptions<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.ScriptIntrinsicBlend.forEachSubtract_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicBlend.html#forEachSubtract(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" target="_top"><code>forEachSubtract</code></A>(<code>Allocation,</nobr> Allocation<nobr>,</nobr> LaunchOptions<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.ScriptIntrinsicBlend.forEachXor_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicBlend.html#forEachXor(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" target="_top"><code>forEachXor</code></A>(<code>Allocation,</nobr> Allocation<nobr>,</nobr> LaunchOptions<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.renderscript.ScriptIntrinsicBlur.html b/docs/html/sdk/api_diff/21/changes/android.renderscript.ScriptIntrinsicBlur.html
new file mode 100644
index 0000000..abc6cb5
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.renderscript.ScriptIntrinsicBlur.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.renderscript.ScriptIntrinsicBlur
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.renderscript.<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicBlur.html" target="_top"><font size="+2"><code>ScriptIntrinsicBlur</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.renderscript.ScriptIntrinsicBlur.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicBlur.html#forEach(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" target="_top"><code>forEach</code></A>(<code>Allocation,</nobr> LaunchOptions<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.renderscript.ScriptIntrinsicColorMatrix.html b/docs/html/sdk/api_diff/21/changes/android.renderscript.ScriptIntrinsicColorMatrix.html
new file mode 100644
index 0000000..012c879
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.renderscript.ScriptIntrinsicColorMatrix.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.renderscript.ScriptIntrinsicColorMatrix
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.renderscript.<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicColorMatrix.html" target="_top"><font size="+2"><code>ScriptIntrinsicColorMatrix</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.renderscript.ScriptIntrinsicColorMatrix.forEach_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicColorMatrix.html#forEach(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" target="_top"><code>forEach</code></A>(<code>Allocation,</nobr> Allocation<nobr>,</nobr> LaunchOptions<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.renderscript.ScriptIntrinsicConvolve3x3.html b/docs/html/sdk/api_diff/21/changes/android.renderscript.ScriptIntrinsicConvolve3x3.html
new file mode 100644
index 0000000..949e08c
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.renderscript.ScriptIntrinsicConvolve3x3.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.renderscript.ScriptIntrinsicConvolve3x3
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.renderscript.<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicConvolve3x3.html" target="_top"><font size="+2"><code>ScriptIntrinsicConvolve3x3</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.renderscript.ScriptIntrinsicConvolve3x3.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicConvolve3x3.html#forEach(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" target="_top"><code>forEach</code></A>(<code>Allocation,</nobr> LaunchOptions<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.renderscript.ScriptIntrinsicConvolve5x5.html b/docs/html/sdk/api_diff/21/changes/android.renderscript.ScriptIntrinsicConvolve5x5.html
new file mode 100644
index 0000000..0a8f494
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.renderscript.ScriptIntrinsicConvolve5x5.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.renderscript.ScriptIntrinsicConvolve5x5
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.renderscript.<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicConvolve5x5.html" target="_top"><font size="+2"><code>ScriptIntrinsicConvolve5x5</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.renderscript.ScriptIntrinsicConvolve5x5.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicConvolve5x5.html#forEach(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" target="_top"><code>forEach</code></A>(<code>Allocation,</nobr> LaunchOptions<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.renderscript.ScriptIntrinsicHistogram.html b/docs/html/sdk/api_diff/21/changes/android.renderscript.ScriptIntrinsicHistogram.html
new file mode 100644
index 0000000..370edb8
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.renderscript.ScriptIntrinsicHistogram.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.renderscript.ScriptIntrinsicHistogram
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.renderscript.<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicHistogram.html" target="_top"><font size="+2"><code>ScriptIntrinsicHistogram</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.renderscript.ScriptIntrinsicHistogram.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicHistogram.html#forEach(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" target="_top"><code>forEach</code></A>(<code>Allocation,</nobr> LaunchOptions<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.ScriptIntrinsicHistogram.forEach_Dot_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicHistogram.html#forEach_Dot(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" target="_top"><code>forEach_Dot</code></A>(<code>Allocation,</nobr> LaunchOptions<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.renderscript.ScriptIntrinsicLUT.html b/docs/html/sdk/api_diff/21/changes/android.renderscript.ScriptIntrinsicLUT.html
new file mode 100644
index 0000000..accb714
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.renderscript.ScriptIntrinsicLUT.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.renderscript.ScriptIntrinsicLUT
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.renderscript.<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicLUT.html" target="_top"><font size="+2"><code>ScriptIntrinsicLUT</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.renderscript.ScriptIntrinsicLUT.forEach_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/ScriptIntrinsicLUT.html#forEach(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" target="_top"><code>forEach</code></A>(<code>Allocation,</nobr> Allocation<nobr>,</nobr> LaunchOptions<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.renderscript.Type.html b/docs/html/sdk/api_diff/21/changes/android.renderscript.Type.html
new file mode 100644
index 0000000..fde5690
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.renderscript.Type.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.renderscript.Type
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.renderscript.<A HREF="../../../../reference/android/renderscript/Type.html" target="_top"><font size="+2"><code>Type</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.renderscript.Type.createX_added(android.renderscript.RenderScript, android.renderscript.Element, int)"></A>
+  <nobr><code>Type</code>&nbsp;<A HREF="../../../../reference/android/renderscript/Type.html#createX(android.renderscript.RenderScript, android.renderscript.Element, int)" target="_top"><code>createX</code></A>(<code>RenderScript,</nobr> Element<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.Type.createXY_added(android.renderscript.RenderScript, android.renderscript.Element, int, int)"></A>
+  <nobr><code>Type</code>&nbsp;<A HREF="../../../../reference/android/renderscript/Type.html#createXY(android.renderscript.RenderScript, android.renderscript.Element, int, int)" target="_top"><code>createXY</code></A>(<code>RenderScript,</nobr> Element<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.Type.createXYZ_added(android.renderscript.RenderScript, android.renderscript.Element, int, int, int)"></A>
+  <nobr><code>Type</code>&nbsp;<A HREF="../../../../reference/android/renderscript/Type.html#createXYZ(android.renderscript.RenderScript, android.renderscript.Element, int, int, int)" target="_top"><code>createXYZ</code></A>(<code>RenderScript,</nobr> Element<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.service.dreams.DreamService.html b/docs/html/sdk/api_diff/21/changes/android.service.dreams.DreamService.html
new file mode 100644
index 0000000..f7e71aa
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.service.dreams.DreamService.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.service.dreams.DreamService
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.service.dreams.<A HREF="../../../../reference/android/service/dreams/DreamService.html" target="_top"><font size="+2"><code>DreamService</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.service.dreams.DreamService.onWakeUp_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/dreams/DreamService.html#onWakeUp()" target="_top"><code>onWakeUp</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.dreams.DreamService.wakeUp_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/dreams/DreamService.html#wakeUp()" target="_top"><code>wakeUp</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.service.notification.NotificationListenerService.html b/docs/html/sdk/api_diff/21/changes/android.service.notification.NotificationListenerService.html
new file mode 100644
index 0000000..488003b
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.service.notification.NotificationListenerService.html
@@ -0,0 +1,299 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.service.notification.NotificationListenerService
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.service.notification.<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html" target="_top"><font size="+2"><code>NotificationListenerService</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.cancelNotification_removed(java.lang.String, java.lang.String, int)"></A>
+  <nobr><code>void</code>&nbsp;cancelNotification(<code>String,</nobr> String<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.service.notification.NotificationListenerService.cancelNotification_added(java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#cancelNotification(java.lang.String)" target="_top"><code>cancelNotification</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.cancelNotification_added(java.lang.String, java.lang.String, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#cancelNotification(java.lang.String, java.lang.String, int)" target="_top"><code>cancelNotification</code></A>(<code>String,</nobr> String<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.cancelNotifications_added(java.lang.String[])"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#cancelNotifications(java.lang.String[])" target="_top"><code>cancelNotifications</code></A>(<code>String[]</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.getActiveNotifications_added(java.lang.String[])"></A>
+  <nobr><code>StatusBarNotification[]</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#getActiveNotifications(java.lang.String[])" target="_top"><code>getActiveNotifications</code></A>(<code>String[]</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.getCurrentInterruptionFilter_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#getCurrentInterruptionFilter()" target="_top"><code>getCurrentInterruptionFilter</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.getCurrentListenerHints_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#getCurrentListenerHints()" target="_top"><code>getCurrentListenerHints</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.getCurrentRanking_added()"></A>
+  <nobr><code>RankingMap</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#getCurrentRanking()" target="_top"><code>getCurrentRanking</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.onInterruptionFilterChanged_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#onInterruptionFilterChanged(int)" target="_top"><code>onInterruptionFilterChanged</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.onListenerConnected_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#onListenerConnected()" target="_top"><code>onListenerConnected</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.onListenerHintsChanged_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#onListenerHintsChanged(int)" target="_top"><code>onListenerHintsChanged</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.onNotificationPosted_added(android.service.notification.StatusBarNotification, android.service.notification.NotificationListenerService.RankingMap)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#onNotificationPosted(android.service.notification.StatusBarNotification, android.service.notification.NotificationListenerService.RankingMap)" target="_top"><code>onNotificationPosted</code></A>(<code>StatusBarNotification,</nobr> RankingMap<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.onNotificationRankingUpdate_added(android.service.notification.NotificationListenerService.RankingMap)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#onNotificationRankingUpdate(android.service.notification.NotificationListenerService.RankingMap)" target="_top"><code>onNotificationRankingUpdate</code></A>(<code>RankingMap</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.onNotificationRemoved_added(android.service.notification.StatusBarNotification, android.service.notification.NotificationListenerService.RankingMap)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#onNotificationRemoved(android.service.notification.StatusBarNotification, android.service.notification.NotificationListenerService.RankingMap)" target="_top"><code>onNotificationRemoved</code></A>(<code>StatusBarNotification,</nobr> RankingMap<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.requestInterruptionFilter_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#requestInterruptionFilter(int)" target="_top"><code>requestInterruptionFilter</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.requestListenerHints_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#requestListenerHints(int)" target="_top"><code>requestListenerHints</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.service.notification.NotificationListenerService.onNotificationPosted_changed(android.service.notification.StatusBarNotification)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#onNotificationPosted(android.service.notification.StatusBarNotification)" target="_top"><code>onNotificationPosted</code></A>(<code>StatusBarNotification</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed from abstract to non-abstract.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.onNotificationRemoved_changed(android.service.notification.StatusBarNotification)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#onNotificationRemoved(android.service.notification.StatusBarNotification)" target="_top"><code>onNotificationRemoved</code></A>(<code>StatusBarNotification</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed from abstract to non-abstract.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.service.notification.NotificationListenerService.HINT_HOST_DISABLE_EFFECTS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#HINT_HOST_DISABLE_EFFECTS" target="_top"><code>HINT_HOST_DISABLE_EFFECTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_ALL"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#INTERRUPTION_FILTER_ALL" target="_top"><code>INTERRUPTION_FILTER_ALL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_NONE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#INTERRUPTION_FILTER_NONE" target="_top"><code>INTERRUPTION_FILTER_NONE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_PRIORITY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#INTERRUPTION_FILTER_PRIORITY" target="_top"><code>INTERRUPTION_FILTER_PRIORITY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.service.notification.StatusBarNotification.html b/docs/html/sdk/api_diff/21/changes/android.service.notification.StatusBarNotification.html
new file mode 100644
index 0000000..c3799f4
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.service.notification.StatusBarNotification.html
@@ -0,0 +1,147 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.service.notification.StatusBarNotification
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.service.notification.<A HREF="../../../../reference/android/service/notification/StatusBarNotification.html" target="_top"><font size="+2"><code>StatusBarNotification</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.service.notification.StatusBarNotification.getGroupKey_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/service/notification/StatusBarNotification.html#getGroupKey()" target="_top"><code>getGroupKey</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.StatusBarNotification.getUser_added()"></A>
+  <nobr><code>UserHandle</code>&nbsp;<A HREF="../../../../reference/android/service/notification/StatusBarNotification.html#getUser()" target="_top"><code>getUser</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.service.notification.StatusBarNotification.getUserId_changed()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/service/notification/StatusBarNotification.html#getUserId()" target="_top"><code>getUserId</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.service.wallpaper.WallpaperService.Engine.html b/docs/html/sdk/api_diff/21/changes/android.service.wallpaper.WallpaperService.Engine.html
new file mode 100644
index 0000000..389a671
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.service.wallpaper.WallpaperService.Engine.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.service.wallpaper.WallpaperService.Engine
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.service.wallpaper.<A HREF="../../../../reference/android/service/wallpaper/WallpaperService.Engine.html" target="_top"><font size="+2"><code>WallpaperService.Engine</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.service.wallpaper.WallpaperService.Engine.onApplyWindowInsets_added(android.view.WindowInsets)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/wallpaper/WallpaperService.Engine.html#onApplyWindowInsets(android.view.WindowInsets)" target="_top"><code>onApplyWindowInsets</code></A>(<code>WindowInsets</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.speech.tts.SynthesisCallback.html b/docs/html/sdk/api_diff/21/changes/android.speech.tts.SynthesisCallback.html
new file mode 100644
index 0000000..3c3b0e8
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.speech.tts.SynthesisCallback.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.speech.tts.SynthesisCallback
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.speech.tts.<A HREF="../../../../reference/android/speech/tts/SynthesisCallback.html" target="_top"><font size="+2"><code>SynthesisCallback</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.speech.tts.SynthesisCallback.error_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/SynthesisCallback.html#error(int)" target="_top"><code>error</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.SynthesisCallback.hasFinished_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/SynthesisCallback.html#hasFinished()" target="_top"><code>hasFinished</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.SynthesisCallback.hasStarted_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/SynthesisCallback.html#hasStarted()" target="_top"><code>hasStarted</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.speech.tts.SynthesisRequest.html b/docs/html/sdk/api_diff/21/changes/android.speech.tts.SynthesisRequest.html
new file mode 100644
index 0000000..ec71cc8
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.speech.tts.SynthesisRequest.html
@@ -0,0 +1,162 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.speech.tts.SynthesisRequest
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.speech.tts.<A HREF="../../../../reference/android/speech/tts/SynthesisRequest.html" target="_top"><font size="+2"><code>SynthesisRequest</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.speech.tts.SynthesisRequest.ctor_added(java.lang.CharSequence, android.os.Bundle)"></A>
+  <nobr><A HREF="../../../../reference/android/speech/tts/SynthesisRequest.html#SynthesisRequest(java.lang.CharSequence, android.os.Bundle)" target="_top"><code>SynthesisRequest</code></A>(<code>CharSequence,</nobr> Bundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.speech.tts.SynthesisRequest.getCharSequenceText_added()"></A>
+  <nobr><code>CharSequence</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/SynthesisRequest.html#getCharSequenceText()" target="_top"><code>getCharSequenceText</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.SynthesisRequest.getVoiceName_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/SynthesisRequest.html#getVoiceName()" target="_top"><code>getVoiceName</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.speech.tts.SynthesisRequest.getText_changed()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/SynthesisRequest.html#getText()" target="_top"><code>getText</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.speech.tts.TextToSpeech.Engine.html b/docs/html/sdk/api_diff/21/changes/android.speech.tts.TextToSpeech.Engine.html
new file mode 100644
index 0000000..a5afc30
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.speech.tts.TextToSpeech.Engine.html
@@ -0,0 +1,169 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.speech.tts.TextToSpeech.Engine
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.speech.tts.<A HREF="../../../../reference/android/speech/tts/TextToSpeech.Engine.html" target="_top"><font size="+2"><code>TextToSpeech.Engine</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.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_RETRIES_COUNT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.Engine.html#KEY_FEATURE_NETWORK_RETRIES_COUNT" target="_top"><code>KEY_FEATURE_NETWORK_RETRIES_COUNT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_TIMEOUT_MS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.Engine.html#KEY_FEATURE_NETWORK_TIMEOUT_MS" target="_top"><code>KEY_FEATURE_NETWORK_TIMEOUT_MS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NOT_INSTALLED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.Engine.html#KEY_FEATURE_NOT_INSTALLED" target="_top"><code>KEY_FEATURE_NOT_INSTALLED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.Engine.KEY_PARAM_SESSION_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.Engine.html#KEY_PARAM_SESSION_ID" target="_top"><code>KEY_PARAM_SESSION_ID</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.speech.tts.TextToSpeech.Engine.KEY_FEATURE_EMBEDDED_SYNTHESIS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.Engine.html#KEY_FEATURE_EMBEDDED_SYNTHESIS" target="_top"><code>KEY_FEATURE_EMBEDDED_SYNTHESIS</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_SYNTHESIS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.Engine.html#KEY_FEATURE_NETWORK_SYNTHESIS" target="_top"><code>KEY_FEATURE_NETWORK_SYNTHESIS</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.speech.tts.TextToSpeech.html b/docs/html/sdk/api_diff/21/changes/android.speech.tts.TextToSpeech.html
new file mode 100644
index 0000000..f41f4ad
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.speech.tts.TextToSpeech.html
@@ -0,0 +1,380 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.speech.tts.TextToSpeech
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.speech.tts.<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html" target="_top"><font size="+2"><code>TextToSpeech</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.addEarcon_removed(java.lang.String, java.lang.String)"></A>
+  <nobr><code>int</code>&nbsp;addEarcon(<code>String,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.io.File)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#addEarcon(java.lang.String, java.io.File)" target="_top"><code>addEarcon</code></A>(<code>String,</nobr> File<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.lang.String)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#addEarcon(java.lang.String, java.lang.String)" target="_top"><code>addEarcon</code></A>(<code>String,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.io.File)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#addSpeech(java.lang.CharSequence, java.io.File)" target="_top"><code>addSpeech</code></A>(<code>CharSequence,</nobr> File<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.lang.String, int)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#addSpeech(java.lang.CharSequence, java.lang.String, int)" target="_top"><code>addSpeech</code></A>(<code>CharSequence,</nobr> String<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.getAvailableLanguages_added()"></A>
+  <nobr><code>Set&lt;Locale&gt;</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#getAvailableLanguages()" target="_top"><code>getAvailableLanguages</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.getDefaultVoice_added()"></A>
+  <nobr><code>Voice</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#getDefaultVoice()" target="_top"><code>getDefaultVoice</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.getVoice_added()"></A>
+  <nobr><code>Voice</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#getVoice()" target="_top"><code>getVoice</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.getVoices_added()"></A>
+  <nobr><code>Set&lt;Voice&gt;</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#getVoices()" target="_top"><code>getVoices</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.playEarcon_added(java.lang.String, int, android.os.Bundle, java.lang.String)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#playEarcon(java.lang.String, int, android.os.Bundle, java.lang.String)" target="_top"><code>playEarcon</code></A>(<code>String,</nobr> int<nobr>,</nobr> Bundle<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.playSilentUtterance_added(long, int, java.lang.String)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#playSilentUtterance(long, int, java.lang.String)" target="_top"><code>playSilentUtterance</code></A>(<code>long,</nobr> int<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.setAudioAttributes_added(android.media.AudioAttributes)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#setAudioAttributes(android.media.AudioAttributes)" target="_top"><code>setAudioAttributes</code></A>(<code>AudioAttributes</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.setVoice_added(android.speech.tts.Voice)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#setVoice(android.speech.tts.Voice)" target="_top"><code>setVoice</code></A>(<code>Voice</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.speak_added(java.lang.CharSequence, int, android.os.Bundle, java.lang.String)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#speak(java.lang.CharSequence, int, android.os.Bundle, java.lang.String)" target="_top"><code>speak</code></A>(<code>CharSequence,</nobr> int<nobr>,</nobr> Bundle<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.synthesizeToFile_added(java.lang.CharSequence, android.os.Bundle, java.io.File, java.lang.String)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#synthesizeToFile(java.lang.CharSequence, android.os.Bundle, java.io.File, java.lang.String)" target="_top"><code>synthesizeToFile</code></A>(<code>CharSequence,</nobr> Bundle<nobr>,</nobr> File<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.speech.tts.TextToSpeech.areDefaultsEnforced_changed()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#areDefaultsEnforced()" target="_top"><code>areDefaultsEnforced</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.getDefaultLanguage_changed()"></A>
+  <nobr><code>Locale</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#getDefaultLanguage()" target="_top"><code>getDefaultLanguage</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.getFeatures_changed(java.util.Locale)"></A>
+  <nobr><code>Set&lt;String&gt;</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#getFeatures(java.util.Locale)" target="_top"><code>getFeatures</code></A>(<code>Locale</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.getLanguage_changed()"></A>
+  <nobr><code>Locale</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#getLanguage()" target="_top"><code>getLanguage</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.playSilence_changed(long, int, java.util.HashMap<java.lang.String, java.lang.String>)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#playSilence(long, int, java.util.HashMap<java.lang.String, java.lang.String>)" target="_top"><code>playSilence</code></A>(<code>long,</nobr> int<nobr>,</nobr> HashMap&lt;String<nobr>,</nobr> String&gt;<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.playEarcon_changed(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#playEarcon(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)" target="_top"><code>playEarcon</code></A>(<code>String,</nobr> int<nobr>,</nobr> HashMap&lt;String<nobr>,</nobr> String&gt;<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.speak_changed(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#speak(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)" target="_top"><code>speak</code></A>(<code>String,</nobr> int<nobr>,</nobr> HashMap&lt;String<nobr>,</nobr> String&gt;<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.synthesizeToFile_changed(java.lang.String, java.util.HashMap<java.lang.String, java.lang.String>, java.lang.String)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#synthesizeToFile(java.lang.String, java.util.HashMap<java.lang.String, java.lang.String>, java.lang.String)" target="_top"><code>synthesizeToFile</code></A>(<code>String,</nobr> HashMap&lt;String<nobr>,</nobr> String&gt;<nobr>,</nobr> String<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.speech.tts.TextToSpeech.ERROR_INVALID_REQUEST"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#ERROR_INVALID_REQUEST" target="_top"><code>ERROR_INVALID_REQUEST</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.ERROR_NETWORK"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#ERROR_NETWORK" target="_top"><code>ERROR_NETWORK</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.ERROR_NETWORK_TIMEOUT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#ERROR_NETWORK_TIMEOUT" target="_top"><code>ERROR_NETWORK_TIMEOUT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.ERROR_NOT_INSTALLED_YET"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#ERROR_NOT_INSTALLED_YET" target="_top"><code>ERROR_NOT_INSTALLED_YET</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.ERROR_OUTPUT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#ERROR_OUTPUT" target="_top"><code>ERROR_OUTPUT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.ERROR_SERVICE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#ERROR_SERVICE" target="_top"><code>ERROR_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.ERROR_SYNTHESIS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#ERROR_SYNTHESIS" target="_top"><code>ERROR_SYNTHESIS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.STOPPED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#STOPPED" target="_top"><code>STOPPED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.speech.tts.TextToSpeechService.html b/docs/html/sdk/api_diff/21/changes/android.speech.tts.TextToSpeechService.html
new file mode 100644
index 0000000..a5b0015
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.speech.tts.TextToSpeechService.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.speech.tts.TextToSpeechService
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.speech.tts.<A HREF="../../../../reference/android/speech/tts/TextToSpeechService.html" target="_top"><font size="+2"><code>TextToSpeechService</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.speech.tts.TextToSpeechService.onGetDefaultVoiceNameFor_added(java.lang.String, java.lang.String, java.lang.String)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeechService.html#onGetDefaultVoiceNameFor(java.lang.String, java.lang.String, java.lang.String)" target="_top"><code>onGetDefaultVoiceNameFor</code></A>(<code>String,</nobr> String<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeechService.onGetVoices_added()"></A>
+  <nobr><code>List&lt;Voice&gt;</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeechService.html#onGetVoices()" target="_top"><code>onGetVoices</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeechService.onIsValidVoiceName_added(java.lang.String)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeechService.html#onIsValidVoiceName(java.lang.String)" target="_top"><code>onIsValidVoiceName</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeechService.onLoadVoice_added(java.lang.String)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeechService.html#onLoadVoice(java.lang.String)" target="_top"><code>onLoadVoice</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.speech.tts.UtteranceProgressListener.html b/docs/html/sdk/api_diff/21/changes/android.speech.tts.UtteranceProgressListener.html
new file mode 100644
index 0000000..7caef92
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.speech.tts.UtteranceProgressListener.html
@@ -0,0 +1,144 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.speech.tts.UtteranceProgressListener
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.speech.tts.<A HREF="../../../../reference/android/speech/tts/UtteranceProgressListener.html" target="_top"><font size="+2"><code>UtteranceProgressListener</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.UtteranceProgressListener.onError_removed(java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;onError(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.speech.tts.UtteranceProgressListener.onError_added(java.lang.String, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/UtteranceProgressListener.html#onError(java.lang.String, int)" target="_top"><code>onError</code></A>(<code>String,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.UtteranceProgressListener.onError_added(java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/UtteranceProgressListener.html#onError(java.lang.String)" target="_top"><code>onError</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.telephony.PhoneNumberFormattingTextWatcher.html b/docs/html/sdk/api_diff/21/changes/android.telephony.PhoneNumberFormattingTextWatcher.html
new file mode 100644
index 0000000..e897324
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.telephony.PhoneNumberFormattingTextWatcher.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.PhoneNumberFormattingTextWatcher
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/PhoneNumberFormattingTextWatcher.html" target="_top"><font size="+2"><code>PhoneNumberFormattingTextWatcher</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.telephony.PhoneNumberFormattingTextWatcher.ctor_added(java.lang.String)"></A>
+  <nobr><A HREF="../../../../reference/android/telephony/PhoneNumberFormattingTextWatcher.html#PhoneNumberFormattingTextWatcher(java.lang.String)" target="_top"><code>PhoneNumberFormattingTextWatcher</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.telephony.PhoneNumberUtils.html b/docs/html/sdk/api_diff/21/changes/android.telephony.PhoneNumberUtils.html
new file mode 100644
index 0000000..e421df3
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.telephony.PhoneNumberUtils.html
@@ -0,0 +1,238 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.PhoneNumberUtils.formatNumber_removed(java.lang.String)"></A>
+  <nobr><code>String</code>&nbsp;formatNumber(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.PhoneNumberUtils.formatNumber_removed(android.text.Editable, int)"></A>
+  <nobr><code>void</code>&nbsp;formatNumber(<code>Editable,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.formatNumber_added(java.lang.String, java.lang.String)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/PhoneNumberUtils.html#formatNumber(java.lang.String, java.lang.String)" target="_top"><code>formatNumber</code></A>(<code>String,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.PhoneNumberUtils.formatNumber_added(java.lang.String, java.lang.String, java.lang.String)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/PhoneNumberUtils.html#formatNumber(java.lang.String, java.lang.String, java.lang.String)" target="_top"><code>formatNumber</code></A>(<code>String,</nobr> String<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.PhoneNumberUtils.formatNumber_added(java.lang.String)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/PhoneNumberUtils.html#formatNumber(java.lang.String)" target="_top"><code>formatNumber</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.PhoneNumberUtils.formatNumber_added(android.text.Editable, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/telephony/PhoneNumberUtils.html#formatNumber(android.text.Editable, int)" target="_top"><code>formatNumber</code></A>(<code>Editable,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.PhoneNumberUtils.formatNumberToE164_added(java.lang.String, java.lang.String)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/PhoneNumberUtils.html#formatNumberToE164(java.lang.String, java.lang.String)" target="_top"><code>formatNumberToE164</code></A>(<code>String,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.PhoneNumberUtils.isLocalEmergencyNumber_added(android.content.Context, java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/telephony/PhoneNumberUtils.html#isLocalEmergencyNumber(android.content.Context, java.lang.String)" target="_top"><code>isLocalEmergencyNumber</code></A>(<code>Context,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.PhoneNumberUtils.isVoiceMailNumber_added(java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/telephony/PhoneNumberUtils.html#isVoiceMailNumber(java.lang.String)" target="_top"><code>isVoiceMailNumber</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.PhoneNumberUtils.normalizeNumber_added(java.lang.String)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/PhoneNumberUtils.html#normalizeNumber(java.lang.String)" target="_top"><code>normalizeNumber</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.PhoneNumberUtils.replaceUnicodeDigits_added(java.lang.String)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/PhoneNumberUtils.html#replaceUnicodeDigits(java.lang.String)" target="_top"><code>replaceUnicodeDigits</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.PhoneNumberUtils.formatJapaneseNumber_changed(android.text.Editable)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/telephony/PhoneNumberUtils.html#formatJapaneseNumber(android.text.Editable)" target="_top"><code>formatJapaneseNumber</code></A>(<code>Editable</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.PhoneNumberUtils.formatNanpNumber_changed(android.text.Editable)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/telephony/PhoneNumberUtils.html#formatNanpNumber(android.text.Editable)" target="_top"><code>formatNanpNumber</code></A>(<code>Editable</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.PhoneNumberUtils.getFormatTypeForLocale_changed(java.util.Locale)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/telephony/PhoneNumberUtils.html#getFormatTypeForLocale(java.util.Locale)" target="_top"><code>getFormatTypeForLocale</code></A>(<code>Locale</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.telephony.SmsManager.html b/docs/html/sdk/api_diff/21/changes/android.telephony.SmsManager.html
new file mode 100644
index 0000000..2e6a173
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.telephony.SmsManager.html
@@ -0,0 +1,403 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.SmsManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/SmsManager.html" target="_top"><font size="+2"><code>SmsManager</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.SmsManager.downloadMultimediaMessage_added(android.content.Context, java.lang.String, android.net.Uri, android.os.Bundle, android.app.PendingIntent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#downloadMultimediaMessage(android.content.Context, java.lang.String, android.net.Uri, android.os.Bundle, android.app.PendingIntent)" target="_top"><code>downloadMultimediaMessage</code></A>(<code>Context,</nobr> String<nobr>,</nobr> Uri<nobr>,</nobr> Bundle<nobr>,</nobr> PendingIntent<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.getCarrierConfigValues_added()"></A>
+  <nobr><code>Bundle</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#getCarrierConfigValues()" target="_top"><code>getCarrierConfigValues</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.sendMultimediaMessage_added(android.content.Context, android.net.Uri, java.lang.String, android.os.Bundle, android.app.PendingIntent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#sendMultimediaMessage(android.content.Context, android.net.Uri, java.lang.String, android.os.Bundle, android.app.PendingIntent)" target="_top"><code>sendMultimediaMessage</code></A>(<code>Context,</nobr> Uri<nobr>,</nobr> String<nobr>,</nobr> Bundle<nobr>,</nobr> PendingIntent<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.SmsManager.EXTRA_MMS_DATA"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#EXTRA_MMS_DATA" target="_top"><code>EXTRA_MMS_DATA</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_ALIAS_ENABLED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_ALIAS_ENABLED" target="_top"><code>MMS_CONFIG_ALIAS_ENABLED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_ALIAS_MAX_CHARS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_ALIAS_MAX_CHARS" target="_top"><code>MMS_CONFIG_ALIAS_MAX_CHARS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_ALIAS_MIN_CHARS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_ALIAS_MIN_CHARS" target="_top"><code>MMS_CONFIG_ALIAS_MIN_CHARS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_ALLOW_ATTACH_AUDIO"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_ALLOW_ATTACH_AUDIO" target="_top"><code>MMS_CONFIG_ALLOW_ATTACH_AUDIO</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_APPEND_TRANSACTION_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_APPEND_TRANSACTION_ID" target="_top"><code>MMS_CONFIG_APPEND_TRANSACTION_ID</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_EMAIL_GATEWAY_NUMBER"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_EMAIL_GATEWAY_NUMBER" target="_top"><code>MMS_CONFIG_EMAIL_GATEWAY_NUMBER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_GROUP_MMS_ENABLED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_GROUP_MMS_ENABLED" target="_top"><code>MMS_CONFIG_GROUP_MMS_ENABLED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_HTTP_PARAMS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_HTTP_PARAMS" target="_top"><code>MMS_CONFIG_HTTP_PARAMS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_HTTP_SOCKET_TIMEOUT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_HTTP_SOCKET_TIMEOUT" target="_top"><code>MMS_CONFIG_HTTP_SOCKET_TIMEOUT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_MAX_IMAGE_HEIGHT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_MAX_IMAGE_HEIGHT" target="_top"><code>MMS_CONFIG_MAX_IMAGE_HEIGHT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_MAX_IMAGE_WIDTH"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_MAX_IMAGE_WIDTH" target="_top"><code>MMS_CONFIG_MAX_IMAGE_WIDTH</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_MAX_MESSAGE_SIZE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_MAX_MESSAGE_SIZE" target="_top"><code>MMS_CONFIG_MAX_MESSAGE_SIZE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE" target="_top"><code>MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED" target="_top"><code>MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_MMS_ENABLED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_MMS_ENABLED" target="_top"><code>MMS_CONFIG_MMS_ENABLED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_MMS_READ_REPORT_ENABLED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_MMS_READ_REPORT_ENABLED" target="_top"><code>MMS_CONFIG_MMS_READ_REPORT_ENABLED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_MULTIPART_SMS_ENABLED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_MULTIPART_SMS_ENABLED" target="_top"><code>MMS_CONFIG_MULTIPART_SMS_ENABLED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_NAI_SUFFIX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_NAI_SUFFIX" target="_top"><code>MMS_CONFIG_NAI_SUFFIX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED" target="_top"><code>MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_RECIPIENT_LIMIT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_RECIPIENT_LIMIT" target="_top"><code>MMS_CONFIG_RECIPIENT_LIMIT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES" target="_top"><code>MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED" target="_top"><code>MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD" target="_top"><code>MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD" target="_top"><code>MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_SUBJECT_MAX_LENGTH"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_SUBJECT_MAX_LENGTH" target="_top"><code>MMS_CONFIG_SUBJECT_MAX_LENGTH</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION" target="_top"><code>MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_UA_PROF_TAG_NAME"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_UA_PROF_TAG_NAME" target="_top"><code>MMS_CONFIG_UA_PROF_TAG_NAME</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_UA_PROF_URL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_UA_PROF_URL" target="_top"><code>MMS_CONFIG_UA_PROF_URL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_USER_AGENT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_USER_AGENT" target="_top"><code>MMS_CONFIG_USER_AGENT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_ERROR_CONFIGURATION_ERROR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_ERROR_CONFIGURATION_ERROR" target="_top"><code>MMS_ERROR_CONFIGURATION_ERROR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_ERROR_HTTP_FAILURE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_ERROR_HTTP_FAILURE" target="_top"><code>MMS_ERROR_HTTP_FAILURE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_ERROR_INVALID_APN"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_ERROR_INVALID_APN" target="_top"><code>MMS_ERROR_INVALID_APN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_ERROR_IO_ERROR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_ERROR_IO_ERROR" target="_top"><code>MMS_ERROR_IO_ERROR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_ERROR_RETRY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_ERROR_RETRY" target="_top"><code>MMS_ERROR_RETRY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_ERROR_UNABLE_CONNECT_MMS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_ERROR_UNABLE_CONNECT_MMS" target="_top"><code>MMS_ERROR_UNABLE_CONNECT_MMS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_ERROR_UNSPECIFIED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_ERROR_UNSPECIFIED" target="_top"><code>MMS_ERROR_UNSPECIFIED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.telephony.TelephonyManager.html b/docs/html/sdk/api_diff/21/changes/android.telephony.TelephonyManager.html
new file mode 100644
index 0000000..ee48e9e
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.telephony.TelephonyManager.html
@@ -0,0 +1,164 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.iccCloseLogicalChannel_added(int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/telephony/TelephonyManager.html#iccCloseLogicalChannel(int)" target="_top"><code>iccCloseLogicalChannel</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.TelephonyManager.iccExchangeSimIO_added(int, int, int, int, int, java.lang.String)"></A>
+  <nobr><code>byte[]</code>&nbsp;<A HREF="../../../../reference/android/telephony/TelephonyManager.html#iccExchangeSimIO(int, int, int, int, int, java.lang.String)" target="_top"><code>iccExchangeSimIO</code></A>(<code>int,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.TelephonyManager.iccOpenLogicalChannel_added(java.lang.String)"></A>
+  <nobr><code>IccOpenLogicalChannelResponse</code>&nbsp;<A HREF="../../../../reference/android/telephony/TelephonyManager.html#iccOpenLogicalChannel(java.lang.String)" target="_top"><code>iccOpenLogicalChannel</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.TelephonyManager.iccTransmitApduBasicChannel_added(int, int, int, int, int, java.lang.String)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/TelephonyManager.html#iccTransmitApduBasicChannel(int, int, int, int, int, java.lang.String)" target="_top"><code>iccTransmitApduBasicChannel</code></A>(<code>int,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.TelephonyManager.iccTransmitApduLogicalChannel_added(int, int, int, int, int, int, java.lang.String)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/TelephonyManager.html#iccTransmitApduLogicalChannel(int, int, int, int, int, int, java.lang.String)" target="_top"><code>iccTransmitApduLogicalChannel</code></A>(<code>int,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.TelephonyManager.isSmsCapable_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/telephony/TelephonyManager.html#isSmsCapable()" target="_top"><code>isSmsCapable</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.TelephonyManager.sendEnvelopeWithStatus_added(java.lang.String)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/TelephonyManager.html#sendEnvelopeWithStatus(java.lang.String)" target="_top"><code>sendEnvelopeWithStatus</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.test.mock.MockContext.html b/docs/html/sdk/api_diff/21/changes/android.test.mock.MockContext.html
new file mode 100644
index 0000000..09f6ac1
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.test.mock.MockContext.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.getCodeCacheDir_added()"></A>
+  <nobr><code>File</code>&nbsp;<A HREF="../../../../reference/android/test/mock/MockContext.html#getCodeCacheDir()" target="_top"><code>getCodeCacheDir</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.test.mock.MockContext.getExternalMediaDirs_added()"></A>
+  <nobr><code>File[]</code>&nbsp;<A HREF="../../../../reference/android/test/mock/MockContext.html#getExternalMediaDirs()" target="_top"><code>getExternalMediaDirs</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.test.mock.MockContext.getNoBackupFilesDir_added()"></A>
+  <nobr><code>File</code>&nbsp;<A HREF="../../../../reference/android/test/mock/MockContext.html#getNoBackupFilesDir()" target="_top"><code>getNoBackupFilesDir</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.test.mock.MockPackageManager.html b/docs/html/sdk/api_diff/21/changes/android.test.mock.MockPackageManager.html
new file mode 100644
index 0000000..ca18388
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.test.mock.MockPackageManager.html
@@ -0,0 +1,150 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.getLeanbackLaunchIntentForPackage_added(java.lang.String)"></A>
+  <nobr><code>Intent</code>&nbsp;<A HREF="../../../../reference/android/test/mock/MockPackageManager.html#getLeanbackLaunchIntentForPackage(java.lang.String)" target="_top"><code>getLeanbackLaunchIntentForPackage</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.test.mock.MockPackageManager.getPackageInstaller_added()"></A>
+  <nobr><code>PackageInstaller</code>&nbsp;<A HREF="../../../../reference/android/test/mock/MockPackageManager.html#getPackageInstaller()" target="_top"><code>getPackageInstaller</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.test.mock.MockPackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)"></A>
+  <nobr><code>Drawable</code>&nbsp;<A HREF="../../../../reference/android/test/mock/MockPackageManager.html#getUserBadgedDrawableForDensity(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)" target="_top"><code>getUserBadgedDrawableForDensity</code></A>(<code>Drawable,</nobr> UserHandle<nobr>,</nobr> Rect<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.test.mock.MockPackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)"></A>
+  <nobr><code>Drawable</code>&nbsp;<A HREF="../../../../reference/android/test/mock/MockPackageManager.html#getUserBadgedIcon(android.graphics.drawable.Drawable, android.os.UserHandle)" target="_top"><code>getUserBadgedIcon</code></A>(<code>Drawable,</nobr> UserHandle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.test.mock.MockPackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)"></A>
+  <nobr><code>CharSequence</code>&nbsp;<A HREF="../../../../reference/android/test/mock/MockPackageManager.html#getUserBadgedLabel(java.lang.CharSequence, android.os.UserHandle)" target="_top"><code>getUserBadgedLabel</code></A>(<code>CharSequence,</nobr> UserHandle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.text.InputFilter.LengthFilter.html b/docs/html/sdk/api_diff/21/changes/android.text.InputFilter.LengthFilter.html
new file mode 100644
index 0000000..a579424
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.text.InputFilter.LengthFilter.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.InputFilter.LengthFilter
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/InputFilter.LengthFilter.html" target="_top"><font size="+2"><code>InputFilter.LengthFilter</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.InputFilter.LengthFilter.getMax_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/text/InputFilter.LengthFilter.html#getMax()" target="_top"><code>getMax</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.text.SpannableStringBuilder.html b/docs/html/sdk/api_diff/21/changes/android.text.SpannableStringBuilder.html
new file mode 100644
index 0000000..26965de
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.text.SpannableStringBuilder.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.SpannableStringBuilder
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/SpannableStringBuilder.html" target="_top"><font size="+2"><code>SpannableStringBuilder</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.SpannableStringBuilder.append_added(java.lang.CharSequence, java.lang.Object, int)"></A>
+  <nobr><code>SpannableStringBuilder</code>&nbsp;<A HREF="../../../../reference/android/text/SpannableStringBuilder.html#append(java.lang.CharSequence, java.lang.Object, int)" target="_top"><code>append</code></A>(<code>CharSequence,</nobr> Object<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.transition.AutoTransition.html b/docs/html/sdk/api_diff/21/changes/android.transition.AutoTransition.html
new file mode 100644
index 0000000..41c73cf
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.transition.AutoTransition.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.transition.AutoTransition
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.transition.<A HREF="../../../../reference/android/transition/AutoTransition.html" target="_top"><font size="+2"><code>AutoTransition</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.transition.AutoTransition.ctor_added(android.content.Context, android.util.AttributeSet)"></A>
+  <nobr><A HREF="../../../../reference/android/transition/AutoTransition.html#AutoTransition(android.content.Context, android.util.AttributeSet)" target="_top"><code>AutoTransition</code></A>(<code>Context,</nobr> AttributeSet<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.transition.ChangeBounds.html b/docs/html/sdk/api_diff/21/changes/android.transition.ChangeBounds.html
new file mode 100644
index 0000000..9980f98
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.transition.ChangeBounds.html
@@ -0,0 +1,140 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.transition.ChangeBounds
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.transition.<A HREF="../../../../reference/android/transition/ChangeBounds.html" target="_top"><font size="+2"><code>ChangeBounds</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.transition.ChangeBounds.ctor_added(android.content.Context, android.util.AttributeSet)"></A>
+  <nobr><A HREF="../../../../reference/android/transition/ChangeBounds.html#ChangeBounds(android.content.Context, android.util.AttributeSet)" target="_top"><code>ChangeBounds</code></A>(<code>Context,</nobr> AttributeSet<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.transition.ChangeBounds.setReparent_changed(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/transition/ChangeBounds.html#setReparent(boolean)" target="_top"><code>setReparent</code></A>(<code>boolean</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.transition.Fade.html b/docs/html/sdk/api_diff/21/changes/android.transition.Fade.html
new file mode 100644
index 0000000..ac53730
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.transition.Fade.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.transition.Fade
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.transition.<A HREF="../../../../reference/android/transition/Fade.html" target="_top"><font size="+2"><code>Fade</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.transition.Fade.ctor_added(android.content.Context, android.util.AttributeSet)"></A>
+  <nobr><A HREF="../../../../reference/android/transition/Fade.html#Fade(android.content.Context, android.util.AttributeSet)" target="_top"><code>Fade</code></A>(<code>Context,</nobr> AttributeSet<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.transition.Scene.html b/docs/html/sdk/api_diff/21/changes/android.transition.Scene.html
new file mode 100644
index 0000000..98484a5
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.transition.Scene.html
@@ -0,0 +1,140 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.transition.Scene
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.transition.<A HREF="../../../../reference/android/transition/Scene.html" target="_top"><font size="+2"><code>Scene</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.transition.Scene.ctor_added(android.view.ViewGroup, android.view.View)"></A>
+  <nobr><A HREF="../../../../reference/android/transition/Scene.html#Scene(android.view.ViewGroup, android.view.View)" target="_top"><code>Scene</code></A>(<code>ViewGroup,</nobr> View<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.transition.Scene.ctor_changed(android.view.ViewGroup, android.view.ViewGroup)"></A>
+  <nobr><A HREF="../../../../reference/android/transition/Scene.html#Scene(android.view.ViewGroup, android.view.ViewGroup)" target="_top"><code>Scene</code></A>(<code>ViewGroup,</nobr> ViewGroup<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.transition.Transition.html b/docs/html/sdk/api_diff/21/changes/android.transition.Transition.html
new file mode 100644
index 0000000..43566f0
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.transition.Transition.html
@@ -0,0 +1,278 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.transition.Transition
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.transition.<A HREF="../../../../reference/android/transition/Transition.html" target="_top"><font size="+2"><code>Transition</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.transition.Transition.ctor_added(android.content.Context, android.util.AttributeSet)"></A>
+  <nobr><A HREF="../../../../reference/android/transition/Transition.html#Transition(android.content.Context, android.util.AttributeSet)" target="_top"><code>Transition</code></A>(<code>Context,</nobr> AttributeSet<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.transition.Transition.addTarget_added(java.lang.Class)"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/transition/Transition.html#addTarget(java.lang.Class)" target="_top"><code>addTarget</code></A>(<code>Class</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Transition.addTarget_added(java.lang.String)"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/transition/Transition.html#addTarget(java.lang.String)" target="_top"><code>addTarget</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Transition.canRemoveViews_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/transition/Transition.html#canRemoveViews()" target="_top"><code>canRemoveViews</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Transition.excludeTarget_added(java.lang.String, boolean)"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/transition/Transition.html#excludeTarget(java.lang.String, boolean)" target="_top"><code>excludeTarget</code></A>(<code>String,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Transition.getEpicenter_added()"></A>
+  <nobr><code>Rect</code>&nbsp;<A HREF="../../../../reference/android/transition/Transition.html#getEpicenter()" target="_top"><code>getEpicenter</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Transition.getEpicenterCallback_added()"></A>
+  <nobr><code>EpicenterCallback</code>&nbsp;<A HREF="../../../../reference/android/transition/Transition.html#getEpicenterCallback()" target="_top"><code>getEpicenterCallback</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Transition.getPathMotion_added()"></A>
+  <nobr><code>PathMotion</code>&nbsp;<A HREF="../../../../reference/android/transition/Transition.html#getPathMotion()" target="_top"><code>getPathMotion</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Transition.getPropagation_added()"></A>
+  <nobr><code>TransitionPropagation</code>&nbsp;<A HREF="../../../../reference/android/transition/Transition.html#getPropagation()" target="_top"><code>getPropagation</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Transition.getTargetNames_added()"></A>
+  <nobr><code>List&lt;String&gt;</code>&nbsp;<A HREF="../../../../reference/android/transition/Transition.html#getTargetNames()" target="_top"><code>getTargetNames</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Transition.getTargetTypes_added()"></A>
+  <nobr><code>List&lt;Class&gt;</code>&nbsp;<A HREF="../../../../reference/android/transition/Transition.html#getTargetTypes()" target="_top"><code>getTargetTypes</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Transition.removeTarget_added(java.lang.Class)"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/transition/Transition.html#removeTarget(java.lang.Class)" target="_top"><code>removeTarget</code></A>(<code>Class</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Transition.removeTarget_added(java.lang.String)"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/transition/Transition.html#removeTarget(java.lang.String)" target="_top"><code>removeTarget</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Transition.setEpicenterCallback_added(android.transition.Transition.EpicenterCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/transition/Transition.html#setEpicenterCallback(android.transition.Transition.EpicenterCallback)" target="_top"><code>setEpicenterCallback</code></A>(<code>EpicenterCallback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Transition.setMatchOrder_added(int...)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/transition/Transition.html#setMatchOrder(int...)" target="_top"><code>setMatchOrder</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Transition.setPathMotion_added(android.transition.PathMotion)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/transition/Transition.html#setPathMotion(android.transition.PathMotion)" target="_top"><code>setPathMotion</code></A>(<code>PathMotion</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Transition.setPropagation_added(android.transition.TransitionPropagation)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/transition/Transition.html#setPropagation(android.transition.TransitionPropagation)" target="_top"><code>setPropagation</code></A>(<code>TransitionPropagation</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.transition.Transition.MATCH_ID"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/transition/Transition.html#MATCH_ID" target="_top"><code>MATCH_ID</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Transition.MATCH_INSTANCE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/transition/Transition.html#MATCH_INSTANCE" target="_top"><code>MATCH_INSTANCE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Transition.MATCH_ITEM_ID"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/transition/Transition.html#MATCH_ITEM_ID" target="_top"><code>MATCH_ITEM_ID</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Transition.MATCH_NAME"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/transition/Transition.html#MATCH_NAME" target="_top"><code>MATCH_NAME</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.transition.TransitionSet.html b/docs/html/sdk/api_diff/21/changes/android.transition.TransitionSet.html
new file mode 100644
index 0000000..2cf8771
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.transition.TransitionSet.html
@@ -0,0 +1,144 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.transition.TransitionSet
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.transition.<A HREF="../../../../reference/android/transition/TransitionSet.html" target="_top"><font size="+2"><code>TransitionSet</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.transition.TransitionSet.ctor_added(android.content.Context, android.util.AttributeSet)"></A>
+  <nobr><A HREF="../../../../reference/android/transition/TransitionSet.html#TransitionSet(android.content.Context, android.util.AttributeSet)" target="_top"><code>TransitionSet</code></A>(<code>Context,</nobr> AttributeSet<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.transition.TransitionSet.getTransitionAt_added(int)"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/transition/TransitionSet.html#getTransitionAt(int)" target="_top"><code>getTransitionAt</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.TransitionSet.getTransitionCount_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/transition/TransitionSet.html#getTransitionCount()" target="_top"><code>getTransitionCount</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.transition.Visibility.html b/docs/html/sdk/api_diff/21/changes/android.transition.Visibility.html
new file mode 100644
index 0000000..4bb2a06
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.transition.Visibility.html
@@ -0,0 +1,180 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.transition.Visibility
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.transition.<A HREF="../../../../reference/android/transition/Visibility.html" target="_top"><font size="+2"><code>Visibility</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.transition.Visibility.ctor_added(android.content.Context, android.util.AttributeSet)"></A>
+  <nobr><A HREF="../../../../reference/android/transition/Visibility.html#Visibility(android.content.Context, android.util.AttributeSet)" target="_top"><code>Visibility</code></A>(<code>Context,</nobr> AttributeSet<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.transition.Visibility.getMode_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/transition/Visibility.html#getMode()" target="_top"><code>getMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Visibility.onAppear_added(android.view.ViewGroup, android.view.View, android.transition.TransitionValues, android.transition.TransitionValues)"></A>
+  <nobr><code>Animator</code>&nbsp;<A HREF="../../../../reference/android/transition/Visibility.html#onAppear(android.view.ViewGroup, android.view.View, android.transition.TransitionValues, android.transition.TransitionValues)" target="_top"><code>onAppear</code></A>(<code>ViewGroup,</nobr> View<nobr>,</nobr> TransitionValues<nobr>,</nobr> TransitionValues<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Visibility.onDisappear_added(android.view.ViewGroup, android.view.View, android.transition.TransitionValues, android.transition.TransitionValues)"></A>
+  <nobr><code>Animator</code>&nbsp;<A HREF="../../../../reference/android/transition/Visibility.html#onDisappear(android.view.ViewGroup, android.view.View, android.transition.TransitionValues, android.transition.TransitionValues)" target="_top"><code>onDisappear</code></A>(<code>ViewGroup,</nobr> View<nobr>,</nobr> TransitionValues<nobr>,</nobr> TransitionValues<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Visibility.setMode_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/transition/Visibility.html#setMode(int)" target="_top"><code>setMode</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.transition.Visibility.MODE_IN"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/transition/Visibility.html#MODE_IN" target="_top"><code>MODE_IN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Visibility.MODE_OUT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/transition/Visibility.html#MODE_OUT" target="_top"><code>MODE_OUT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.util.ArrayMap.html b/docs/html/sdk/api_diff/21/changes/android.util.ArrayMap.html
new file mode 100644
index 0000000..0396206
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.util.ArrayMap.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ArrayMap
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.util.<A HREF="../../../../reference/android/util/ArrayMap.html" target="_top"><font size="+2"><code>ArrayMap</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.util.ArrayMap.indexOfKey_added(java.lang.Object)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/util/ArrayMap.html#indexOfKey(java.lang.Object)" target="_top"><code>indexOfKey</code></A>(<code>Object</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.util.DisplayMetrics.html b/docs/html/sdk/api_diff/21/changes/android.util.DisplayMetrics.html
new file mode 100644
index 0000000..fb4ef89
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.util.DisplayMetrics.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.DisplayMetrics
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.util.<A HREF="../../../../reference/android/util/DisplayMetrics.html" target="_top"><font size="+2"><code>DisplayMetrics</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.util.DisplayMetrics.DENSITY_560"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/util/DisplayMetrics.html#DENSITY_560" target="_top"><code>DENSITY_560</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.util.LruCache.html b/docs/html/sdk/api_diff/21/changes/android.util.LruCache.html
new file mode 100644
index 0000000..3b4510c8
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.util.LruCache.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.LruCache
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.util.<A HREF="../../../../reference/android/util/LruCache.html" target="_top"><font size="+2"><code>LruCache</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.util.LruCache.resize_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/util/LruCache.html#resize(int)" target="_top"><code>resize</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.util.Patterns.html b/docs/html/sdk/api_diff/21/changes/android.util.Patterns.html
new file mode 100644
index 0000000..9139974
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.util.Patterns.html
@@ -0,0 +1,142 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Patterns
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.util.<A HREF="../../../../reference/android/util/Patterns.html" target="_top"><font size="+2"><code>Patterns</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.util.Patterns.TOP_LEVEL_DOMAIN"></A>
+  <nobr><code>Pattern</code>&nbsp;<A HREF="../../../../reference/android/util/Patterns.html#TOP_LEVEL_DOMAIN" target="_top"><code>TOP_LEVEL_DOMAIN</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.util.Patterns.TOP_LEVEL_DOMAIN_STR"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/util/Patterns.html#TOP_LEVEL_DOMAIN_STR" target="_top"><code>TOP_LEVEL_DOMAIN_STR</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.util.Patterns.TOP_LEVEL_DOMAIN_STR_FOR_WEB_URL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/util/Patterns.html#TOP_LEVEL_DOMAIN_STR_FOR_WEB_URL" target="_top"><code>TOP_LEVEL_DOMAIN_STR_FOR_WEB_URL</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.Display.html b/docs/html/sdk/api_diff/21/changes/android.view.Display.html
new file mode 100644
index 0000000..7aaa68b
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.Display.html
@@ -0,0 +1,173 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Display
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Display.html" target="_top"><font size="+2"><code>Display</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.Display.getAppVsyncOffsetNanos_added()"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/android/view/Display.html#getAppVsyncOffsetNanos()" target="_top"><code>getAppVsyncOffsetNanos</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Display.getPresentationDeadlineNanos_added()"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/android/view/Display.html#getPresentationDeadlineNanos()" target="_top"><code>getPresentationDeadlineNanos</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Display.getSupportedRefreshRates_added()"></A>
+  <nobr><code>float[]</code>&nbsp;<A HREF="../../../../reference/android/view/Display.html#getSupportedRefreshRates()" target="_top"><code>getSupportedRefreshRates</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Display.STATE_DOZING"></A>
+  <code>int</code>&nbsp;STATE_DOZING
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Display.STATE_DOZE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/Display.html#STATE_DOZE" target="_top"><code>STATE_DOZE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Display.STATE_DOZE_SUSPEND"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/Display.html#STATE_DOZE_SUSPEND" target="_top"><code>STATE_DOZE_SUSPEND</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.HapticFeedbackConstants.html b/docs/html/sdk/api_diff/21/changes/android.view.HapticFeedbackConstants.html
new file mode 100644
index 0000000..8976d45
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.HapticFeedbackConstants.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.CLOCK_TICK"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/HapticFeedbackConstants.html#CLOCK_TICK" target="_top"><code>CLOCK_TICK</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.InputDevice.html b/docs/html/sdk/api_diff/21/changes/android.view.InputDevice.html
new file mode 100644
index 0000000..3cc782c
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.InputDevice.html
@@ -0,0 +1,137 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.InputDevice
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/InputDevice.html" target="_top"><font size="+2"><code>InputDevice</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.InputDevice.supportsSource_added(int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/InputDevice.html#supportsSource(int)" target="_top"><code>supportsSource</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.InputDevice.SOURCE_HDMI"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/InputDevice.html#SOURCE_HDMI" target="_top"><code>SOURCE_HDMI</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.KeyEvent.html b/docs/html/sdk/api_diff/21/changes/android.view.KeyEvent.html
new file mode 100644
index 0000000..19f37a1
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.KeyEvent.html
@@ -0,0 +1,360 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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>
+<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.KeyEvent.KEYCODE_11"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_11" target="_top"><code>KEYCODE_11</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_12"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_12" target="_top"><code>KEYCODE_12</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_HELP"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_HELP" target="_top"><code>KEYCODE_HELP</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_LAST_CHANNEL"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_LAST_CHANNEL" target="_top"><code>KEYCODE_LAST_CHANNEL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_MEDIA_TOP_MENU"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_MEDIA_TOP_MENU" target="_top"><code>KEYCODE_MEDIA_TOP_MENU</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_PAIRING"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_PAIRING" target="_top"><code>KEYCODE_PAIRING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_ANTENNA_CABLE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_ANTENNA_CABLE" target="_top"><code>KEYCODE_TV_ANTENNA_CABLE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_AUDIO_DESCRIPTION" target="_top"><code>KEYCODE_TV_AUDIO_DESCRIPTION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN" target="_top"><code>KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP" target="_top"><code>KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_CONTENTS_MENU"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_CONTENTS_MENU" target="_top"><code>KEYCODE_TV_CONTENTS_MENU</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_DATA_SERVICE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_DATA_SERVICE" target="_top"><code>KEYCODE_TV_DATA_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_INPUT_COMPONENT_1"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_INPUT_COMPONENT_1" target="_top"><code>KEYCODE_TV_INPUT_COMPONENT_1</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_INPUT_COMPONENT_2"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_INPUT_COMPONENT_2" target="_top"><code>KEYCODE_TV_INPUT_COMPONENT_2</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_INPUT_COMPOSITE_1"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_INPUT_COMPOSITE_1" target="_top"><code>KEYCODE_TV_INPUT_COMPOSITE_1</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_INPUT_COMPOSITE_2"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_INPUT_COMPOSITE_2" target="_top"><code>KEYCODE_TV_INPUT_COMPOSITE_2</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_1"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_INPUT_HDMI_1" target="_top"><code>KEYCODE_TV_INPUT_HDMI_1</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_2"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_INPUT_HDMI_2" target="_top"><code>KEYCODE_TV_INPUT_HDMI_2</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_3"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_INPUT_HDMI_3" target="_top"><code>KEYCODE_TV_INPUT_HDMI_3</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_4"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_INPUT_HDMI_4" target="_top"><code>KEYCODE_TV_INPUT_HDMI_4</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_INPUT_VGA_1"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_INPUT_VGA_1" target="_top"><code>KEYCODE_TV_INPUT_VGA_1</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_MEDIA_CONTEXT_MENU"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_MEDIA_CONTEXT_MENU" target="_top"><code>KEYCODE_TV_MEDIA_CONTEXT_MENU</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_NETWORK"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_NETWORK" target="_top"><code>KEYCODE_TV_NETWORK</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_NUMBER_ENTRY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_NUMBER_ENTRY" target="_top"><code>KEYCODE_TV_NUMBER_ENTRY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_RADIO_SERVICE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_RADIO_SERVICE" target="_top"><code>KEYCODE_TV_RADIO_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_SATELLITE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_SATELLITE" target="_top"><code>KEYCODE_TV_SATELLITE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_SATELLITE_BS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_SATELLITE_BS" target="_top"><code>KEYCODE_TV_SATELLITE_BS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_SATELLITE_CS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_SATELLITE_CS" target="_top"><code>KEYCODE_TV_SATELLITE_CS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_SATELLITE_SERVICE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_SATELLITE_SERVICE" target="_top"><code>KEYCODE_TV_SATELLITE_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_TELETEXT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_TELETEXT" target="_top"><code>KEYCODE_TV_TELETEXT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_TERRESTRIAL_ANALOG"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_TERRESTRIAL_ANALOG" target="_top"><code>KEYCODE_TV_TERRESTRIAL_ANALOG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_TERRESTRIAL_DIGITAL"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_TERRESTRIAL_DIGITAL" target="_top"><code>KEYCODE_TV_TERRESTRIAL_DIGITAL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_TIMER_PROGRAMMING"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_TIMER_PROGRAMMING" target="_top"><code>KEYCODE_TV_TIMER_PROGRAMMING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_ZOOM_MODE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_ZOOM_MODE" target="_top"><code>KEYCODE_TV_ZOOM_MODE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_VOICE_ASSIST"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_VOICE_ASSIST" target="_top"><code>KEYCODE_VOICE_ASSIST</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.MotionEvent.html b/docs/html/sdk/api_diff/21/changes/android.view.MotionEvent.html
new file mode 100644
index 0000000..e7f94a2
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.MotionEvent.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.isButtonPressed_added(int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/MotionEvent.html#isButtonPressed(int)" target="_top"><code>isButtonPressed</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.SurfaceView.html b/docs/html/sdk/api_diff/21/changes/android.view.SurfaceView.html
new file mode 100644
index 0000000..17d4fff
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.SurfaceView.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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>
+<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.view.SurfaceView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/view/SurfaceView.html#SurfaceView(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>SurfaceView</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.TextureView.html b/docs/html/sdk/api_diff/21/changes/android.view.TextureView.html
new file mode 100644
index 0000000..d6e3af1
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.TextureView.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.TextureView
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/TextureView.html" target="_top"><font size="+2"><code>TextureView</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.view.TextureView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/view/TextureView.html#TextureView(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>TextureView</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.View.html b/docs/html/sdk/api_diff/21/changes/android.view.View.html
new file mode 100644
index 0000000..1dfe865
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.View.html
@@ -0,0 +1,426 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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>
+<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.view.View.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/view/View.html#View(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>View</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.initializeFadingEdge_removed(android.content.res.TypedArray)"></A>
+  <nobr><code>void</code>&nbsp;initializeFadingEdge(<code>TypedArray</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.initializeScrollbars_removed(android.content.res.TypedArray)"></A>
+  <nobr><code>void</code>&nbsp;initializeScrollbars(<code>TypedArray</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.computeSystemWindowInsets_added(android.view.WindowInsets, android.graphics.Rect)"></A>
+  <nobr><code>WindowInsets</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#computeSystemWindowInsets(android.view.WindowInsets, android.graphics.Rect)" target="_top"><code>computeSystemWindowInsets</code></A>(<code>WindowInsets,</nobr> Rect<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.dispatchNestedFling_added(float, float, boolean)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#dispatchNestedFling(float, float, boolean)" target="_top"><code>dispatchNestedFling</code></A>(<code>float,</nobr> float<nobr>,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.dispatchNestedPreFling_added(float, float)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#dispatchNestedPreFling(float, float)" target="_top"><code>dispatchNestedPreFling</code></A>(<code>float,</nobr> float<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.dispatchNestedPreScroll_added(int, int, int[], int[])"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#dispatchNestedPreScroll(int, int, int[], int[])" target="_top"><code>dispatchNestedPreScroll</code></A>(<code>int,</nobr> int<nobr>,</nobr> int[]<nobr>,</nobr> int[]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.dispatchNestedScroll_added(int, int, int, int, int[])"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#dispatchNestedScroll(int, int, int, int, int[])" target="_top"><code>dispatchNestedScroll</code></A>(<code>int,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int[]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.drawableHotspotChanged_added(float, float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#drawableHotspotChanged(float, float)" target="_top"><code>drawableHotspotChanged</code></A>(<code>float,</nobr> float<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.getBackgroundTintList_added()"></A>
+  <nobr><code>ColorStateList</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#getBackgroundTintList()" target="_top"><code>getBackgroundTintList</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.getBackgroundTintMode_added()"></A>
+  <nobr><code>Mode</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#getBackgroundTintMode()" target="_top"><code>getBackgroundTintMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.getClipToOutline_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#getClipToOutline()" target="_top"><code>getClipToOutline</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.getElevation_added()"></A>
+  <nobr><code>float</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#getElevation()" target="_top"><code>getElevation</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.getOutlineProvider_added()"></A>
+  <nobr><code>ViewOutlineProvider</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#getOutlineProvider()" target="_top"><code>getOutlineProvider</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.getStateListAnimator_added()"></A>
+  <nobr><code>StateListAnimator</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#getStateListAnimator()" target="_top"><code>getStateListAnimator</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.getTransitionName_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#getTransitionName()" target="_top"><code>getTransitionName</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.getTranslationZ_added()"></A>
+  <nobr><code>float</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#getTranslationZ()" target="_top"><code>getTranslationZ</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.getZ_added()"></A>
+  <nobr><code>float</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#getZ()" target="_top"><code>getZ</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.hasNestedScrollingParent_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#hasNestedScrollingParent()" target="_top"><code>hasNestedScrollingParent</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.invalidateOutline_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#invalidateOutline()" target="_top"><code>invalidateOutline</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.isAccessibilityFocused_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#isAccessibilityFocused()" target="_top"><code>isAccessibilityFocused</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.isImportantForAccessibility_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#isImportantForAccessibility()" target="_top"><code>isImportantForAccessibility</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.isNestedScrollingEnabled_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#isNestedScrollingEnabled()" target="_top"><code>isNestedScrollingEnabled</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.requestUnbufferedDispatch_added(android.view.MotionEvent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#requestUnbufferedDispatch(android.view.MotionEvent)" target="_top"><code>requestUnbufferedDispatch</code></A>(<code>MotionEvent</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.setBackgroundTintList_added(android.content.res.ColorStateList)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#setBackgroundTintList(android.content.res.ColorStateList)" target="_top"><code>setBackgroundTintList</code></A>(<code>ColorStateList</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.setBackgroundTintMode_added(android.graphics.PorterDuff.Mode)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#setBackgroundTintMode(android.graphics.PorterDuff.Mode)" target="_top"><code>setBackgroundTintMode</code></A>(<code>Mode</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.setClipToOutline_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#setClipToOutline(boolean)" target="_top"><code>setClipToOutline</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.setElevation_added(float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#setElevation(float)" target="_top"><code>setElevation</code></A>(<code>float</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.setNestedScrollingEnabled_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#setNestedScrollingEnabled(boolean)" target="_top"><code>setNestedScrollingEnabled</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.setOutlineProvider_added(android.view.ViewOutlineProvider)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#setOutlineProvider(android.view.ViewOutlineProvider)" target="_top"><code>setOutlineProvider</code></A>(<code>ViewOutlineProvider</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.setStateListAnimator_added(android.animation.StateListAnimator)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#setStateListAnimator(android.animation.StateListAnimator)" target="_top"><code>setStateListAnimator</code></A>(<code>StateListAnimator</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.setTransitionName_added(java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#setTransitionName(java.lang.String)" target="_top"><code>setTransitionName</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.setTranslationZ_added(float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#setTranslationZ(float)" target="_top"><code>setTranslationZ</code></A>(<code>float</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.setZ_added(float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#setZ(float)" target="_top"><code>setZ</code></A>(<code>float</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.startNestedScroll_added(int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#startNestedScroll(int)" target="_top"><code>startNestedScroll</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.stopNestedScroll_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#stopNestedScroll()" target="_top"><code>stopNestedScroll</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.View.SCROLL_AXIS_HORIZONTAL"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#SCROLL_AXIS_HORIZONTAL" target="_top"><code>SCROLL_AXIS_HORIZONTAL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.SCROLL_AXIS_NONE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#SCROLL_AXIS_NONE" target="_top"><code>SCROLL_AXIS_NONE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.SCROLL_AXIS_VERTICAL"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#SCROLL_AXIS_VERTICAL" target="_top"><code>SCROLL_AXIS_VERTICAL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.TRANSLATION_Z"></A>
+  <nobr><code>Property</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#TRANSLATION_Z" target="_top"><code>TRANSLATION_Z</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.Z"></A>
+  <nobr><code>Property</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#Z" target="_top"><code>Z</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.ViewGroup.html b/docs/html/sdk/api_diff/21/changes/android.view.ViewGroup.html
new file mode 100644
index 0000000..aa24125
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.ViewGroup.html
@@ -0,0 +1,221 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ViewGroup
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ViewGroup.html" target="_top"><font size="+2"><code>ViewGroup</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.view.ViewGroup.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/view/ViewGroup.html#ViewGroup(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>ViewGroup</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.ViewGroup.getClipToPadding_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/ViewGroup.html#getClipToPadding()" target="_top"><code>getClipToPadding</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.ViewGroup.getNestedScrollAxes_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/ViewGroup.html#getNestedScrollAxes()" target="_top"><code>getNestedScrollAxes</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.ViewGroup.getTouchscreenBlocksFocus_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/ViewGroup.html#getTouchscreenBlocksFocus()" target="_top"><code>getTouchscreenBlocksFocus</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.ViewGroup.isTransitionGroup_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/ViewGroup.html#isTransitionGroup()" target="_top"><code>isTransitionGroup</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.ViewGroup.onNestedFling_added(android.view.View, float, float, boolean)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/ViewGroup.html#onNestedFling(android.view.View, float, float, boolean)" target="_top"><code>onNestedFling</code></A>(<code>View,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.ViewGroup.onNestedPreFling_added(android.view.View, float, float)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/ViewGroup.html#onNestedPreFling(android.view.View, float, float)" target="_top"><code>onNestedPreFling</code></A>(<code>View,</nobr> float<nobr>,</nobr> float<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.ViewGroup.onNestedPreScroll_added(android.view.View, int, int, int[])"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/ViewGroup.html#onNestedPreScroll(android.view.View, int, int, int[])" target="_top"><code>onNestedPreScroll</code></A>(<code>View,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int[]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.ViewGroup.onNestedScroll_added(android.view.View, int, int, int, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/ViewGroup.html#onNestedScroll(android.view.View, int, int, int, int)" target="_top"><code>onNestedScroll</code></A>(<code>View,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.ViewGroup.onNestedScrollAccepted_added(android.view.View, android.view.View, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/ViewGroup.html#onNestedScrollAccepted(android.view.View, android.view.View, int)" target="_top"><code>onNestedScrollAccepted</code></A>(<code>View,</nobr> View<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.ViewGroup.onStartNestedScroll_added(android.view.View, android.view.View, int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/ViewGroup.html#onStartNestedScroll(android.view.View, android.view.View, int)" target="_top"><code>onStartNestedScroll</code></A>(<code>View,</nobr> View<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.ViewGroup.onStopNestedScroll_added(android.view.View)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/ViewGroup.html#onStopNestedScroll(android.view.View)" target="_top"><code>onStopNestedScroll</code></A>(<code>View</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.ViewGroup.setTouchscreenBlocksFocus_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/ViewGroup.html#setTouchscreenBlocksFocus(boolean)" target="_top"><code>setTouchscreenBlocksFocus</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.ViewGroup.setTransitionGroup_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/ViewGroup.html#setTransitionGroup(boolean)" target="_top"><code>setTransitionGroup</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.ViewParent.html b/docs/html/sdk/api_diff/21/changes/android.view.ViewParent.html
new file mode 100644
index 0000000..1da6bcd
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.ViewParent.html
@@ -0,0 +1,164 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ViewParent
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ViewParent.html" target="_top"><font size="+2"><code>ViewParent</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.ViewParent.onNestedFling_added(android.view.View, float, float, boolean)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/ViewParent.html#onNestedFling(android.view.View, float, float, boolean)" target="_top"><code>onNestedFling</code></A>(<code>View,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.ViewParent.onNestedPreFling_added(android.view.View, float, float)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/ViewParent.html#onNestedPreFling(android.view.View, float, float)" target="_top"><code>onNestedPreFling</code></A>(<code>View,</nobr> float<nobr>,</nobr> float<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.ViewParent.onNestedPreScroll_added(android.view.View, int, int, int[])"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/ViewParent.html#onNestedPreScroll(android.view.View, int, int, int[])" target="_top"><code>onNestedPreScroll</code></A>(<code>View,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int[]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.ViewParent.onNestedScroll_added(android.view.View, int, int, int, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/ViewParent.html#onNestedScroll(android.view.View, int, int, int, int)" target="_top"><code>onNestedScroll</code></A>(<code>View,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.ViewParent.onNestedScrollAccepted_added(android.view.View, android.view.View, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/ViewParent.html#onNestedScrollAccepted(android.view.View, android.view.View, int)" target="_top"><code>onNestedScrollAccepted</code></A>(<code>View,</nobr> View<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.ViewParent.onStartNestedScroll_added(android.view.View, android.view.View, int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/ViewParent.html#onStartNestedScroll(android.view.View, android.view.View, int)" target="_top"><code>onStartNestedScroll</code></A>(<code>View,</nobr> View<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.ViewParent.onStopNestedScroll_added(android.view.View)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/ViewParent.html#onStopNestedScroll(android.view.View)" target="_top"><code>onStopNestedScroll</code></A>(<code>View</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.ViewPropertyAnimator.html b/docs/html/sdk/api_diff/21/changes/android.view.ViewPropertyAnimator.html
new file mode 100644
index 0000000..cd92065
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.ViewPropertyAnimator.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ViewPropertyAnimator
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ViewPropertyAnimator.html" target="_top"><font size="+2"><code>ViewPropertyAnimator</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.ViewPropertyAnimator.translationZ_added(float)"></A>
+  <nobr><code>ViewPropertyAnimator</code>&nbsp;<A HREF="../../../../reference/android/view/ViewPropertyAnimator.html#translationZ(float)" target="_top"><code>translationZ</code></A>(<code>float</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.ViewPropertyAnimator.translationZBy_added(float)"></A>
+  <nobr><code>ViewPropertyAnimator</code>&nbsp;<A HREF="../../../../reference/android/view/ViewPropertyAnimator.html#translationZBy(float)" target="_top"><code>translationZBy</code></A>(<code>float</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.ViewPropertyAnimator.z_added(float)"></A>
+  <nobr><code>ViewPropertyAnimator</code>&nbsp;<A HREF="../../../../reference/android/view/ViewPropertyAnimator.html#z(float)" target="_top"><code>z</code></A>(<code>float</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.ViewPropertyAnimator.zBy_added(float)"></A>
+  <nobr><code>ViewPropertyAnimator</code>&nbsp;<A HREF="../../../../reference/android/view/ViewPropertyAnimator.html#zBy(float)" target="_top"><code>zBy</code></A>(<code>float</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.ViewStub.html b/docs/html/sdk/api_diff/21/changes/android.view.ViewStub.html
new file mode 100644
index 0000000..41d5d12
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.ViewStub.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ViewStub
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ViewStub.html" target="_top"><font size="+2"><code>ViewStub</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.view.ViewStub.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/view/ViewStub.html#ViewStub(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>ViewStub</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.Window.html b/docs/html/sdk/api_diff/21/changes/android.view.Window.html
new file mode 100644
index 0000000..03735ed
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.Window.html
@@ -0,0 +1,400 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Window.html" target="_top"><font size="+2"><code>Window</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.getAllowEnterTransitionOverlap_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getAllowEnterTransitionOverlap()" target="_top"><code>getAllowEnterTransitionOverlap</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.getAllowReturnTransitionOverlap_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getAllowReturnTransitionOverlap()" target="_top"><code>getAllowReturnTransitionOverlap</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.getContentScene_added()"></A>
+  <nobr><code>Scene</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getContentScene()" target="_top"><code>getContentScene</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.getEnterTransition_added()"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getEnterTransition()" target="_top"><code>getEnterTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.getExitTransition_added()"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getExitTransition()" target="_top"><code>getExitTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.getMediaController_added()"></A>
+  <nobr><code>MediaController</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getMediaController()" target="_top"><code>getMediaController</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.getNavigationBarColor_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getNavigationBarColor()" target="_top"><code>getNavigationBarColor</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.getReenterTransition_added()"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getReenterTransition()" target="_top"><code>getReenterTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.getReturnTransition_added()"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getReturnTransition()" target="_top"><code>getReturnTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.getSharedElementEnterTransition_added()"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getSharedElementEnterTransition()" target="_top"><code>getSharedElementEnterTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.getSharedElementExitTransition_added()"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getSharedElementExitTransition()" target="_top"><code>getSharedElementExitTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.getSharedElementReenterTransition_added()"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getSharedElementReenterTransition()" target="_top"><code>getSharedElementReenterTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.getSharedElementReturnTransition_added()"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getSharedElementReturnTransition()" target="_top"><code>getSharedElementReturnTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.getSharedElementsUseOverlay_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getSharedElementsUseOverlay()" target="_top"><code>getSharedElementsUseOverlay</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.getStatusBarColor_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getStatusBarColor()" target="_top"><code>getStatusBarColor</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.getTransitionBackgroundFadeDuration_added()"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getTransitionBackgroundFadeDuration()" target="_top"><code>getTransitionBackgroundFadeDuration</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.getTransitionManager_added()"></A>
+  <nobr><code>TransitionManager</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getTransitionManager()" target="_top"><code>getTransitionManager</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setAllowEnterTransitionOverlap_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setAllowEnterTransitionOverlap(boolean)" target="_top"><code>setAllowEnterTransitionOverlap</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setAllowReturnTransitionOverlap_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setAllowReturnTransitionOverlap(boolean)" target="_top"><code>setAllowReturnTransitionOverlap</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setEnterTransition_added(android.transition.Transition)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setEnterTransition(android.transition.Transition)" target="_top"><code>setEnterTransition</code></A>(<code>Transition</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setExitTransition_added(android.transition.Transition)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setExitTransition(android.transition.Transition)" target="_top"><code>setExitTransition</code></A>(<code>Transition</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setMediaController_added(android.media.session.MediaController)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setMediaController(android.media.session.MediaController)" target="_top"><code>setMediaController</code></A>(<code>MediaController</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setNavigationBarColor_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setNavigationBarColor(int)" target="_top"><code>setNavigationBarColor</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setReenterTransition_added(android.transition.Transition)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setReenterTransition(android.transition.Transition)" target="_top"><code>setReenterTransition</code></A>(<code>Transition</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setReturnTransition_added(android.transition.Transition)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setReturnTransition(android.transition.Transition)" target="_top"><code>setReturnTransition</code></A>(<code>Transition</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setSharedElementEnterTransition_added(android.transition.Transition)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setSharedElementEnterTransition(android.transition.Transition)" target="_top"><code>setSharedElementEnterTransition</code></A>(<code>Transition</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setSharedElementExitTransition_added(android.transition.Transition)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setSharedElementExitTransition(android.transition.Transition)" target="_top"><code>setSharedElementExitTransition</code></A>(<code>Transition</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setSharedElementReenterTransition_added(android.transition.Transition)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setSharedElementReenterTransition(android.transition.Transition)" target="_top"><code>setSharedElementReenterTransition</code></A>(<code>Transition</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setSharedElementReturnTransition_added(android.transition.Transition)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setSharedElementReturnTransition(android.transition.Transition)" target="_top"><code>setSharedElementReturnTransition</code></A>(<code>Transition</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setSharedElementsUseOverlay_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setSharedElementsUseOverlay(boolean)" target="_top"><code>setSharedElementsUseOverlay</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setStatusBarColor_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setStatusBarColor(int)" target="_top"><code>setStatusBarColor</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setTransitionBackgroundFadeDuration_added(long)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setTransitionBackgroundFadeDuration(long)" target="_top"><code>setTransitionBackgroundFadeDuration</code></A>(<code>long</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setTransitionManager_added(android.transition.TransitionManager)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setTransitionManager(android.transition.TransitionManager)" target="_top"><code>setTransitionManager</code></A>(<code>TransitionManager</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Window.setTitleColor_changed(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setTitleColor(int)" target="_top"><code>setTitleColor</code></A>(<code>int</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Window.FEATURE_ACTIVITY_TRANSITIONS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#FEATURE_ACTIVITY_TRANSITIONS" target="_top"><code>FEATURE_ACTIVITY_TRANSITIONS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.FEATURE_CONTENT_TRANSITIONS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#FEATURE_CONTENT_TRANSITIONS" target="_top"><code>FEATURE_CONTENT_TRANSITIONS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME" target="_top"><code>NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.STATUS_BAR_BACKGROUND_TRANSITION_NAME"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#STATUS_BAR_BACKGROUND_TRANSITION_NAME" target="_top"><code>STATUS_BAR_BACKGROUND_TRANSITION_NAME</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.WindowInsets.html b/docs/html/sdk/api_diff/21/changes/android.view.WindowInsets.html
new file mode 100644
index 0000000..a17ddec
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.WindowInsets.html
@@ -0,0 +1,171 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.WindowInsets
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/WindowInsets.html" target="_top"><font size="+2"><code>WindowInsets</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.WindowInsets.consumeStableInsets_added()"></A>
+  <nobr><code>WindowInsets</code>&nbsp;<A HREF="../../../../reference/android/view/WindowInsets.html#consumeStableInsets()" target="_top"><code>consumeStableInsets</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.WindowInsets.getStableInsetBottom_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/WindowInsets.html#getStableInsetBottom()" target="_top"><code>getStableInsetBottom</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.WindowInsets.getStableInsetLeft_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/WindowInsets.html#getStableInsetLeft()" target="_top"><code>getStableInsetLeft</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.WindowInsets.getStableInsetRight_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/WindowInsets.html#getStableInsetRight()" target="_top"><code>getStableInsetRight</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.WindowInsets.getStableInsetTop_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/WindowInsets.html#getStableInsetTop()" target="_top"><code>getStableInsetTop</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.WindowInsets.hasStableInsets_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/WindowInsets.html#hasStableInsets()" target="_top"><code>hasStableInsets</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.WindowInsets.isConsumed_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/WindowInsets.html#isConsumed()" target="_top"><code>isConsumed</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.WindowInsets.replaceSystemWindowInsets_added(android.graphics.Rect)"></A>
+  <nobr><code>WindowInsets</code>&nbsp;<A HREF="../../../../reference/android/view/WindowInsets.html#replaceSystemWindowInsets(android.graphics.Rect)" target="_top"><code>replaceSystemWindowInsets</code></A>(<code>Rect</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.WindowManager.LayoutParams.html b/docs/html/sdk/api_diff/21/changes/android.view.WindowManager.LayoutParams.html
new file mode 100644
index 0000000..e498f91
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.WindowManager.LayoutParams.html
@@ -0,0 +1,144 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.WindowManager.LayoutParams.TYPE_KEYGUARD"></A>
+  <code>int</code>&nbsp;TYPE_KEYGUARD
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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_DRAWS_SYSTEM_BAR_BACKGROUNDS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/WindowManager.LayoutParams.html#FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS" target="_top"><code>FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.WindowManager.LayoutParams.preferredRefreshRate"></A>
+  <nobr><code>float</code>&nbsp;<A HREF="../../../../reference/android/view/WindowManager.LayoutParams.html#preferredRefreshRate" target="_top"><code>preferredRefreshRate</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.accessibility.AccessibilityEvent.html b/docs/html/sdk/api_diff/21/changes/android.view.accessibility.AccessibilityEvent.html
new file mode 100644
index 0000000..aa641ec
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.accessibility.AccessibilityEvent.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.accessibility.AccessibilityEvent
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.accessibility.<A HREF="../../../../reference/android/view/accessibility/AccessibilityEvent.html" target="_top"><font size="+2"><code>AccessibilityEvent</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.accessibility.AccessibilityEvent.TYPE_WINDOWS_CHANGED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityEvent.html#TYPE_WINDOWS_CHANGED" target="_top"><code>TYPE_WINDOWS_CHANGED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html b/docs/html/sdk/api_diff/21/changes/android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html
new file mode 100644
index 0000000..ef78906
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html
@@ -0,0 +1,158 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.accessibility.AccessibilityNodeInfo.CollectionInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.accessibility.<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.CollectionInfo.html" target="_top"><font size="+2"><code>AccessibilityNodeInfo.CollectionInfo</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.accessibility.AccessibilityNodeInfo.CollectionInfo.getSelectionMode_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.CollectionInfo.html#getSelectionMode()" target="_top"><code>getSelectionMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.obtain_added(int, int, boolean, int)"></A>
+  <nobr><code>CollectionInfo</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.CollectionInfo.html#obtain(int, int, boolean, int)" target="_top"><code>obtain</code></A>(<code>int,</nobr> int<nobr>,</nobr> boolean<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.accessibility.AccessibilityNodeInfo.CollectionInfo.SELECTION_MODE_MULTIPLE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.CollectionInfo.html#SELECTION_MODE_MULTIPLE" target="_top"><code>SELECTION_MODE_MULTIPLE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.SELECTION_MODE_NONE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.CollectionInfo.html#SELECTION_MODE_NONE" target="_top"><code>SELECTION_MODE_NONE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.SELECTION_MODE_SINGLE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.CollectionInfo.html#SELECTION_MODE_SINGLE" target="_top"><code>SELECTION_MODE_SINGLE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.html b/docs/html/sdk/api_diff/21/changes/android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.html
new file mode 100644
index 0000000..068c5e0
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.accessibility.AccessibilityNodeInfo.CollectionItemInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.accessibility.<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.CollectionItemInfo.html" target="_top"><font size="+2"><code>AccessibilityNodeInfo.CollectionItemInfo</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.accessibility.AccessibilityNodeInfo.CollectionItemInfo.isSelected_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.CollectionItemInfo.html#isSelected()" target="_top"><code>isSelected</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.obtain_added(int, int, int, int, boolean, boolean)"></A>
+  <nobr><code>CollectionItemInfo</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.CollectionItemInfo.html#obtain(int, int, int, int, boolean, boolean)" target="_top"><code>obtain</code></A>(<code>int,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> boolean<nobr>,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.accessibility.AccessibilityNodeInfo.html b/docs/html/sdk/api_diff/21/changes/android.view.accessibility.AccessibilityNodeInfo.html
new file mode 100644
index 0000000..85cf4e4
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.accessibility.AccessibilityNodeInfo.html
@@ -0,0 +1,242 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.accessibility.AccessibilityNodeInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.accessibility.<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.html" target="_top"><font size="+2"><code>AccessibilityNodeInfo</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.accessibility.AccessibilityNodeInfo.addAction_added(android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.html#addAction(android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction)" target="_top"><code>addAction</code></A>(<code>AccessibilityAction</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.AccessibilityNodeInfo.getActionList_added()"></A>
+  <nobr><code>List&lt;AccessibilityAction&gt;</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.html#getActionList()" target="_top"><code>getActionList</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.AccessibilityNodeInfo.getError_added()"></A>
+  <nobr><code>CharSequence</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.html#getError()" target="_top"><code>getError</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.AccessibilityNodeInfo.getMaxTextLength_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.html#getMaxTextLength()" target="_top"><code>getMaxTextLength</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.AccessibilityNodeInfo.getWindow_added()"></A>
+  <nobr><code>AccessibilityWindowInfo</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.html#getWindow()" target="_top"><code>getWindow</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.AccessibilityNodeInfo.removeAction_added(android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.html#removeAction(android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction)" target="_top"><code>removeAction</code></A>(<code>AccessibilityAction</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.AccessibilityNodeInfo.removeAction_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.html#removeAction(int)" target="_top"><code>removeAction</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.AccessibilityNodeInfo.removeChild_added(android.view.View)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.html#removeChild(android.view.View)" target="_top"><code>removeChild</code></A>(<code>View</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.AccessibilityNodeInfo.removeChild_added(android.view.View, int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.html#removeChild(android.view.View, int)" target="_top"><code>removeChild</code></A>(<code>View,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.AccessibilityNodeInfo.setError_added(java.lang.CharSequence)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.html#setError(java.lang.CharSequence)" target="_top"><code>setError</code></A>(<code>CharSequence</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.AccessibilityNodeInfo.setMaxTextLength_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.html#setMaxTextLength(int)" target="_top"><code>setMaxTextLength</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.accessibility.AccessibilityNodeInfo.getActions_changed()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.html#getActions()" target="_top"><code>getActions</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.AccessibilityNodeInfo.addAction_changed(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.html#addAction(int)" target="_top"><code>addAction</code></A>(<code>int</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.accessibility.AccessibilityNodeInfo.ACTION_ARGUMENT_SET_TEXT_CHARSEQUENCE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.html#ACTION_ARGUMENT_SET_TEXT_CHARSEQUENCE" target="_top"><code>ACTION_ARGUMENT_SET_TEXT_CHARSEQUENCE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.AccessibilityNodeInfo.ACTION_SET_TEXT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.html#ACTION_SET_TEXT" target="_top"><code>ACTION_SET_TEXT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.accessibility.AccessibilityNodeProvider.html b/docs/html/sdk/api_diff/21/changes/android.view.accessibility.AccessibilityNodeProvider.html
new file mode 100644
index 0000000..21cd9e9
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.accessibility.AccessibilityNodeProvider.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.accessibility.AccessibilityNodeProvider
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.accessibility.<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeProvider.html" target="_top"><font size="+2"><code>AccessibilityNodeProvider</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.accessibility.AccessibilityNodeProvider.HOST_VIEW_ID"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeProvider.html#HOST_VIEW_ID" target="_top"><code>HOST_VIEW_ID</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.accessibility.CaptioningManager.CaptionStyle.html b/docs/html/sdk/api_diff/21/changes/android.view.accessibility.CaptioningManager.CaptionStyle.html
new file mode 100644
index 0000000..8bcde00
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.accessibility.CaptioningManager.CaptionStyle.html
@@ -0,0 +1,186 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.accessibility.CaptioningManager.CaptionStyle
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.accessibility.<A HREF="../../../../reference/android/view/accessibility/CaptioningManager.CaptionStyle.html" target="_top"><font size="+2"><code>CaptioningManager.CaptionStyle</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.accessibility.CaptioningManager.CaptionStyle.hasBackgroundColor_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/CaptioningManager.CaptionStyle.html#hasBackgroundColor()" target="_top"><code>hasBackgroundColor</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.CaptioningManager.CaptionStyle.hasEdgeColor_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/CaptioningManager.CaptionStyle.html#hasEdgeColor()" target="_top"><code>hasEdgeColor</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.CaptioningManager.CaptionStyle.hasEdgeType_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/CaptioningManager.CaptionStyle.html#hasEdgeType()" target="_top"><code>hasEdgeType</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.CaptioningManager.CaptionStyle.hasForegroundColor_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/CaptioningManager.CaptionStyle.html#hasForegroundColor()" target="_top"><code>hasForegroundColor</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.CaptioningManager.CaptionStyle.hasWindowColor_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/CaptioningManager.CaptionStyle.html#hasWindowColor()" target="_top"><code>hasWindowColor</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.accessibility.CaptioningManager.CaptionStyle.EDGE_TYPE_DEPRESSED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/CaptioningManager.CaptionStyle.html#EDGE_TYPE_DEPRESSED" target="_top"><code>EDGE_TYPE_DEPRESSED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.CaptioningManager.CaptionStyle.EDGE_TYPE_RAISED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/CaptioningManager.CaptionStyle.html#EDGE_TYPE_RAISED" target="_top"><code>EDGE_TYPE_RAISED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.CaptioningManager.CaptionStyle.EDGE_TYPE_UNSPECIFIED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/CaptioningManager.CaptionStyle.html#EDGE_TYPE_UNSPECIFIED" target="_top"><code>EDGE_TYPE_UNSPECIFIED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.CaptioningManager.CaptionStyle.windowColor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/CaptioningManager.CaptionStyle.html#windowColor" target="_top"><code>windowColor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.inputmethod.BaseInputConnection.html b/docs/html/sdk/api_diff/21/changes/android.view.inputmethod.BaseInputConnection.html
new file mode 100644
index 0000000..eb69f9f
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.inputmethod.BaseInputConnection.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.inputmethod.BaseInputConnection
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.inputmethod.<A HREF="../../../../reference/android/view/inputmethod/BaseInputConnection.html" target="_top"><font size="+2"><code>BaseInputConnection</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.inputmethod.BaseInputConnection.requestCursorUpdates_added(int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/BaseInputConnection.html#requestCursorUpdates(int)" target="_top"><code>requestCursorUpdates</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.inputmethod.InputConnection.html b/docs/html/sdk/api_diff/21/changes/android.view.inputmethod.InputConnection.html
new file mode 100644
index 0000000..8a49a62
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.inputmethod.InputConnection.html
@@ -0,0 +1,144 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.inputmethod.InputConnection
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.inputmethod.<A HREF="../../../../reference/android/view/inputmethod/InputConnection.html" target="_top"><font size="+2"><code>InputConnection</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.inputmethod.InputConnection.requestCursorUpdates_added(int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/InputConnection.html#requestCursorUpdates(int)" target="_top"><code>requestCursorUpdates</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.inputmethod.InputConnection.CURSOR_UPDATE_IMMEDIATE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/InputConnection.html#CURSOR_UPDATE_IMMEDIATE" target="_top"><code>CURSOR_UPDATE_IMMEDIATE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.inputmethod.InputConnection.CURSOR_UPDATE_MONITOR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/InputConnection.html#CURSOR_UPDATE_MONITOR" target="_top"><code>CURSOR_UPDATE_MONITOR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.inputmethod.InputConnectionWrapper.html b/docs/html/sdk/api_diff/21/changes/android.view.inputmethod.InputConnectionWrapper.html
new file mode 100644
index 0000000..350e372
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.inputmethod.InputConnectionWrapper.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.inputmethod.InputConnectionWrapper
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.inputmethod.<A HREF="../../../../reference/android/view/inputmethod/InputConnectionWrapper.html" target="_top"><font size="+2"><code>InputConnectionWrapper</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.inputmethod.InputConnectionWrapper.requestCursorUpdates_added(int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/InputConnectionWrapper.html#requestCursorUpdates(int)" target="_top"><code>requestCursorUpdates</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.inputmethod.InputMethodManager.html b/docs/html/sdk/api_diff/21/changes/android.view.inputmethod.InputMethodManager.html
new file mode 100644
index 0000000..9bc24b4
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.inputmethod.InputMethodManager.html
@@ -0,0 +1,150 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.inputmethod.InputMethodManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.inputmethod.<A HREF="../../../../reference/android/view/inputmethod/InputMethodManager.html" target="_top"><font size="+2"><code>InputMethodManager</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.inputmethod.InputMethodManager.updateCursorAnchorInfo_added(android.view.View, android.view.inputmethod.CursorAnchorInfo)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/InputMethodManager.html#updateCursorAnchorInfo(android.view.View, android.view.inputmethod.CursorAnchorInfo)" target="_top"><code>updateCursorAnchorInfo</code></A>(<code>View,</nobr> CursorAnchorInfo<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.inputmethod.InputMethodManager.isWatchingCursor_changed(android.view.View)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/InputMethodManager.html#isWatchingCursor(android.view.View)" target="_top"><code>isWatchingCursor</code></A>(<code>View</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.inputmethod.InputMethodManager.updateCursor_changed(android.view.View, int, int, int, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/InputMethodManager.html#updateCursor(android.view.View, int, int, int, int)" target="_top"><code>updateCursor</code></A>(<code>View,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.inputmethod.InputMethodSession.html b/docs/html/sdk/api_diff/21/changes/android.view.inputmethod.InputMethodSession.html
new file mode 100644
index 0000000..7813f37
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.inputmethod.InputMethodSession.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.inputmethod.InputMethodSession
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.inputmethod.<A HREF="../../../../reference/android/view/inputmethod/InputMethodSession.html" target="_top"><font size="+2"><code>InputMethodSession</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.inputmethod.InputMethodSession.updateCursorAnchorInfo_added(android.view.inputmethod.CursorAnchorInfo)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/InputMethodSession.html#updateCursorAnchorInfo(android.view.inputmethod.CursorAnchorInfo)" target="_top"><code>updateCursorAnchorInfo</code></A>(<code>CursorAnchorInfo</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.view.textservice.TextInfo.html b/docs/html/sdk/api_diff/21/changes/android.view.textservice.TextInfo.html
new file mode 100644
index 0000000..083e39a
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.view.textservice.TextInfo.html
@@ -0,0 +1,137 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.textservice.TextInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.textservice.<A HREF="../../../../reference/android/view/textservice/TextInfo.html" target="_top"><font size="+2"><code>TextInfo</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.view.textservice.TextInfo.ctor_added(java.lang.CharSequence, int, int, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/view/textservice/TextInfo.html#TextInfo(java.lang.CharSequence, int, int, int, int)" target="_top"><code>TextInfo</code></A>(<code>CharSequence,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.textservice.TextInfo.getCharSequence_added()"></A>
+  <nobr><code>CharSequence</code>&nbsp;<A HREF="../../../../reference/android/view/textservice/TextInfo.html#getCharSequence()" target="_top"><code>getCharSequence</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.webkit.CookieManager.html b/docs/html/sdk/api_diff/21/changes/android.webkit.CookieManager.html
new file mode 100644
index 0000000..ebc5550
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.webkit.CookieManager.html
@@ -0,0 +1,195 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.CookieManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/CookieManager.html" target="_top"><font size="+2"><code>CookieManager</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.CookieManager.acceptThirdPartyCookies_added(android.webkit.WebView)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/webkit/CookieManager.html#acceptThirdPartyCookies(android.webkit.WebView)" target="_top"><code>acceptThirdPartyCookies</code></A>(<code>WebView</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.CookieManager.flush_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/CookieManager.html#flush()" target="_top"><code>flush</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.CookieManager.removeAllCookies_added(android.webkit.ValueCallback<java.lang.Boolean>)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/CookieManager.html#removeAllCookies(android.webkit.ValueCallback<java.lang.Boolean>)" target="_top"><code>removeAllCookies</code></A>(<code>ValueCallback&lt;Boolean&gt;</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.CookieManager.removeSessionCookies_added(android.webkit.ValueCallback<java.lang.Boolean>)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/CookieManager.html#removeSessionCookies(android.webkit.ValueCallback<java.lang.Boolean>)" target="_top"><code>removeSessionCookies</code></A>(<code>ValueCallback&lt;Boolean&gt;</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.CookieManager.setAcceptThirdPartyCookies_added(android.webkit.WebView, boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/CookieManager.html#setAcceptThirdPartyCookies(android.webkit.WebView, boolean)" target="_top"><code>setAcceptThirdPartyCookies</code></A>(<code>WebView,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.CookieManager.setCookie_added(java.lang.String, java.lang.String, android.webkit.ValueCallback<java.lang.Boolean>)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/CookieManager.html#setCookie(java.lang.String, java.lang.String, android.webkit.ValueCallback<java.lang.Boolean>)" target="_top"><code>setCookie</code></A>(<code>String,</nobr> String<nobr>,</nobr> ValueCallback&lt;Boolean&gt;<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.CookieManager.removeAllCookie_changed()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/CookieManager.html#removeAllCookie()" target="_top"><code>removeAllCookie</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.CookieManager.removeExpiredCookie_changed()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/CookieManager.html#removeExpiredCookie()" target="_top"><code>removeExpiredCookie</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.CookieManager.removeSessionCookie_changed()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/CookieManager.html#removeSessionCookie()" target="_top"><code>removeSessionCookie</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.webkit.CookieSyncManager.html b/docs/html/sdk/api_diff/21/changes/android.webkit.CookieSyncManager.html
new file mode 100644
index 0000000..c2a4108
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.webkit.CookieSyncManager.html
@@ -0,0 +1,161 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.CookieSyncManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/CookieSyncManager.html" target="_top"><font size="+2"><code>CookieSyncManager</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.CookieSyncManager.syncFromRamToFlash_changed()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/CookieSyncManager.html#syncFromRamToFlash()" target="_top"><code>syncFromRamToFlash</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.webkit.CookieSyncManager.LOGTAG"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/webkit/CookieSyncManager.html#LOGTAG" target="_top"><code>LOGTAG</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Field was inherited from <code>android.webkit.WebSyncManager</code>, but is now defined locally.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.CookieSyncManager.mDataBase"></A>
+  <nobr><code>WebViewDatabase</code>&nbsp;<A HREF="../../../../reference/android/webkit/CookieSyncManager.html#mDataBase" target="_top"><code>mDataBase</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Field was inherited from <code>android.webkit.WebSyncManager</code>, but is now defined locally.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.CookieSyncManager.mHandler"></A>
+  <nobr><code>Handler</code>&nbsp;<A HREF="../../../../reference/android/webkit/CookieSyncManager.html#mHandler" target="_top"><code>mHandler</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Field was inherited from <code>android.webkit.WebSyncManager</code>, but is now defined locally.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.webkit.WebChromeClient.html b/docs/html/sdk/api_diff/21/changes/android.webkit.WebChromeClient.html
new file mode 100644
index 0000000..068c1b1
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.webkit.WebChromeClient.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.onPermissionRequest_added(android.webkit.PermissionRequest)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebChromeClient.html#onPermissionRequest(android.webkit.PermissionRequest)" target="_top"><code>onPermissionRequest</code></A>(<code>PermissionRequest</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebChromeClient.onPermissionRequestCanceled_added(android.webkit.PermissionRequest)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebChromeClient.html#onPermissionRequestCanceled(android.webkit.PermissionRequest)" target="_top"><code>onPermissionRequestCanceled</code></A>(<code>PermissionRequest</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebChromeClient.onShowFileChooser_added(android.webkit.WebView, android.webkit.ValueCallback<android.net.Uri[]>, android.webkit.WebChromeClient.FileChooserParams)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebChromeClient.html#onShowFileChooser(android.webkit.WebView, android.webkit.ValueCallback<android.net.Uri[]>, android.webkit.WebChromeClient.FileChooserParams)" target="_top"><code>onShowFileChooser</code></A>(<code>WebView,</nobr> ValueCallback&lt;Uri[]&gt;<nobr>,</nobr> FileChooserParams<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.webkit.WebResourceResponse.html b/docs/html/sdk/api_diff/21/changes/android.webkit.WebResourceResponse.html
new file mode 100644
index 0000000..d1eb5a6
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.webkit.WebResourceResponse.html
@@ -0,0 +1,165 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.WebResourceResponse
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/WebResourceResponse.html" target="_top"><font size="+2"><code>WebResourceResponse</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.webkit.WebResourceResponse.ctor_added(java.lang.String, java.lang.String, int, java.lang.String, java.util.Map<java.lang.String, java.lang.String>, java.io.InputStream)"></A>
+  <nobr><A HREF="../../../../reference/android/webkit/WebResourceResponse.html#WebResourceResponse(java.lang.String, java.lang.String, int, java.lang.String, java.util.Map<java.lang.String, java.lang.String>, java.io.InputStream)" target="_top"><code>WebResourceResponse</code></A>(<code>String,</nobr> String<nobr>,</nobr> int<nobr>,</nobr> String<nobr>,</nobr> Map&lt;String<nobr>,</nobr> String&gt;<nobr>,</nobr> InputStream<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.WebResourceResponse.getReasonPhrase_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebResourceResponse.html#getReasonPhrase()" target="_top"><code>getReasonPhrase</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebResourceResponse.getResponseHeaders_added()"></A>
+  <nobr>(<code>Map&lt;String, String&gt;</code>)&nbsp;<A HREF="../../../../reference/android/webkit/WebResourceResponse.html#getResponseHeaders()" target="_top"><code>getResponseHeaders</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebResourceResponse.getStatusCode_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebResourceResponse.html#getStatusCode()" target="_top"><code>getStatusCode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebResourceResponse.setResponseHeaders_added(java.util.Map<java.lang.String, java.lang.String>)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebResourceResponse.html#setResponseHeaders(java.util.Map<java.lang.String, java.lang.String>)" target="_top"><code>setResponseHeaders</code></A>(<code>Map&lt;String,</nobr> String&gt;<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebResourceResponse.setStatusCodeAndReasonPhrase_added(int, java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebResourceResponse.html#setStatusCodeAndReasonPhrase(int, java.lang.String)" target="_top"><code>setStatusCodeAndReasonPhrase</code></A>(<code>int,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.webkit.WebSettings.html b/docs/html/sdk/api_diff/21/changes/android.webkit.WebSettings.html
new file mode 100644
index 0000000..87064b3
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.webkit.WebSettings.html
@@ -0,0 +1,158 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.getMixedContentMode_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebSettings.html#getMixedContentMode()" target="_top"><code>getMixedContentMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebSettings.setMixedContentMode_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebSettings.html#setMixedContentMode(int)" target="_top"><code>setMixedContentMode</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.WebSettings.MIXED_CONTENT_ALWAYS_ALLOW"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebSettings.html#MIXED_CONTENT_ALWAYS_ALLOW" target="_top"><code>MIXED_CONTENT_ALWAYS_ALLOW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebSettings.MIXED_CONTENT_COMPATIBILITY_MODE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebSettings.html#MIXED_CONTENT_COMPATIBILITY_MODE" target="_top"><code>MIXED_CONTENT_COMPATIBILITY_MODE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebSettings.MIXED_CONTENT_NEVER_ALLOW"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebSettings.html#MIXED_CONTENT_NEVER_ALLOW" target="_top"><code>MIXED_CONTENT_NEVER_ALLOW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.webkit.WebSyncManager.html b/docs/html/sdk/api_diff/21/changes/android.webkit.WebSyncManager.html
new file mode 100644
index 0000000..b5d3fe8
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.webkit.WebSyncManager.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.WebSyncManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/WebSyncManager.html" target="_top"><font size="+2"><code>WebSyncManager</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.webkit.WebView.html b/docs/html/sdk/api_diff/21/changes/android.webkit.WebView.html
new file mode 100644
index 0000000..a39fc79
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.webkit.WebView.html
@@ -0,0 +1,180 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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>
+<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.webkit.WebView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/webkit/WebView.html#WebView(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>WebView</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebView.createPrintDocumentAdapter_removed()"></A>
+  <nobr><code>PrintDocumentAdapter</code>&nbsp;createPrintDocumentAdapter()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.clearClientCertPreferences_added(java.lang.Runnable)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebView.html#clearClientCertPreferences(java.lang.Runnable)" target="_top"><code>clearClientCertPreferences</code></A>(<code>Runnable</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebView.createPrintDocumentAdapter_added(java.lang.String)"></A>
+  <nobr><code>PrintDocumentAdapter</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebView.html#createPrintDocumentAdapter(java.lang.String)" target="_top"><code>createPrintDocumentAdapter</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebView.createPrintDocumentAdapter_added()"></A>
+  <nobr><code>PrintDocumentAdapter</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebView.html#createPrintDocumentAdapter()" target="_top"><code>createPrintDocumentAdapter</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebView.enableSlowWholeDocumentDraw_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebView.html#enableSlowWholeDocumentDraw()" target="_top"><code>enableSlowWholeDocumentDraw</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebView.zoomBy_added(float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebView.html#zoomBy(float)" target="_top"><code>zoomBy</code></A>(<code>float</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.webkit.WebViewClient.html b/docs/html/sdk/api_diff/21/changes/android.webkit.WebViewClient.html
new file mode 100644
index 0000000..07b681a
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.webkit.WebViewClient.html
@@ -0,0 +1,176 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebViewClient.shouldInterceptRequest_removed(android.webkit.WebView, java.lang.String)"></A>
+  <nobr><code>WebResourceResponse</code>&nbsp;shouldInterceptRequest(<code>WebView,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.WebViewClient.onReceivedClientCertRequest_added(android.webkit.WebView, android.webkit.ClientCertRequest)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebViewClient.html#onReceivedClientCertRequest(android.webkit.WebView, android.webkit.ClientCertRequest)" target="_top"><code>onReceivedClientCertRequest</code></A>(<code>WebView,</nobr> ClientCertRequest<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebViewClient.onUnhandledInputEvent_added(android.webkit.WebView, android.view.InputEvent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebViewClient.html#onUnhandledInputEvent(android.webkit.WebView, android.view.InputEvent)" target="_top"><code>onUnhandledInputEvent</code></A>(<code>WebView,</nobr> InputEvent<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, android.webkit.WebResourceRequest)"></A>
+  <nobr><code>WebResourceResponse</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebViewClient.html#shouldInterceptRequest(android.webkit.WebView, android.webkit.WebResourceRequest)" target="_top"><code>shouldInterceptRequest</code></A>(<code>WebView,</nobr> WebResourceRequest<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, java.lang.String)"></A>
+  <nobr><code>WebResourceResponse</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebViewClient.html#shouldInterceptRequest(android.webkit.WebView, java.lang.String)" target="_top"><code>shouldInterceptRequest</code></A>(<code>WebView,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.WebViewClient.onUnhandledKeyEvent_changed(android.webkit.WebView, android.view.KeyEvent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebViewClient.html#onUnhandledKeyEvent(android.webkit.WebView, android.view.KeyEvent)" target="_top"><code>onUnhandledKeyEvent</code></A>(<code>WebView,</nobr> KeyEvent<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.AbsListView.html b/docs/html/sdk/api_diff/21/changes/android.widget.AbsListView.html
new file mode 100644
index 0000000..d6f1e49
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.AbsListView.html
@@ -0,0 +1,151 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AbsListView
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/AbsListView.html" target="_top"><font size="+2"><code>AbsListView</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.widget.AbsListView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/AbsListView.html#AbsListView(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>AbsListView</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.AbsListView.fling_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/AbsListView.html#fling(int)" target="_top"><code>fling</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.AbsListView.setFastScrollStyle_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/AbsListView.html#setFastScrollStyle(int)" target="_top"><code>setFastScrollStyle</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.AbsListView.setSelectionFromTop_added(int, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/AbsListView.html#setSelectionFromTop(int, int)" target="_top"><code>setSelectionFromTop</code></A>(<code>int,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.AbsSeekBar.html b/docs/html/sdk/api_diff/21/changes/android.widget.AbsSeekBar.html
new file mode 100644
index 0000000..8735c19
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.AbsSeekBar.html
@@ -0,0 +1,172 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AbsSeekBar
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/AbsSeekBar.html" target="_top"><font size="+2"><code>AbsSeekBar</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.widget.AbsSeekBar.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/AbsSeekBar.html#AbsSeekBar(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>AbsSeekBar</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.AbsSeekBar.getSplitTrack_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/widget/AbsSeekBar.html#getSplitTrack()" target="_top"><code>getSplitTrack</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.AbsSeekBar.getThumbTintList_added()"></A>
+  <nobr><code>ColorStateList</code>&nbsp;<A HREF="../../../../reference/android/widget/AbsSeekBar.html#getThumbTintList()" target="_top"><code>getThumbTintList</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.AbsSeekBar.getThumbTintMode_added()"></A>
+  <nobr><code>Mode</code>&nbsp;<A HREF="../../../../reference/android/widget/AbsSeekBar.html#getThumbTintMode()" target="_top"><code>getThumbTintMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.AbsSeekBar.setSplitTrack_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/AbsSeekBar.html#setSplitTrack(boolean)" target="_top"><code>setSplitTrack</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.AbsSeekBar.setThumbTintList_added(android.content.res.ColorStateList)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/AbsSeekBar.html#setThumbTintList(android.content.res.ColorStateList)" target="_top"><code>setThumbTintList</code></A>(<code>ColorStateList</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.AbsSeekBar.setThumbTintMode_added(android.graphics.PorterDuff.Mode)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/AbsSeekBar.html#setThumbTintMode(android.graphics.PorterDuff.Mode)" target="_top"><code>setThumbTintMode</code></A>(<code>Mode</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.AbsSpinner.html b/docs/html/sdk/api_diff/21/changes/android.widget.AbsSpinner.html
new file mode 100644
index 0000000..b6313d5
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.AbsSpinner.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AbsSpinner
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/AbsSpinner.html" target="_top"><font size="+2"><code>AbsSpinner</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.widget.AbsSpinner.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/AbsSpinner.html#AbsSpinner(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>AbsSpinner</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.AbsoluteLayout.html b/docs/html/sdk/api_diff/21/changes/android.widget.AbsoluteLayout.html
new file mode 100644
index 0000000..47b0674
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.AbsoluteLayout.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AbsoluteLayout
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/AbsoluteLayout.html" target="_top"><font size="+2"><code>AbsoluteLayout</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.widget.AbsoluteLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/AbsoluteLayout.html#AbsoluteLayout(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>AbsoluteLayout</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.AdapterView.html b/docs/html/sdk/api_diff/21/changes/android.widget.AdapterView.html
new file mode 100644
index 0000000..f6767a5
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.AdapterView.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AdapterView
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/AdapterView.html" target="_top"><font size="+2"><code>AdapterView</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.widget.AdapterView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/AdapterView.html#AdapterView(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>AdapterView</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.AdapterViewAnimator.html b/docs/html/sdk/api_diff/21/changes/android.widget.AdapterViewAnimator.html
new file mode 100644
index 0000000..432c1b4
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.AdapterViewAnimator.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AdapterViewAnimator
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/AdapterViewAnimator.html" target="_top"><font size="+2"><code>AdapterViewAnimator</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.widget.AdapterViewAnimator.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/AdapterViewAnimator.html#AdapterViewAnimator(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>AdapterViewAnimator</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.AdapterViewFlipper.html b/docs/html/sdk/api_diff/21/changes/android.widget.AdapterViewFlipper.html
new file mode 100644
index 0000000..0784add
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.AdapterViewFlipper.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AdapterViewFlipper
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/AdapterViewFlipper.html" target="_top"><font size="+2"><code>AdapterViewFlipper</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.widget.AdapterViewFlipper.ctor_added(android.content.Context, android.util.AttributeSet, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/AdapterViewFlipper.html#AdapterViewFlipper(android.content.Context, android.util.AttributeSet, int)" target="_top"><code>AdapterViewFlipper</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.AdapterViewFlipper.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/AdapterViewFlipper.html#AdapterViewFlipper(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>AdapterViewFlipper</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.AnalogClock.html b/docs/html/sdk/api_diff/21/changes/android.widget.AnalogClock.html
new file mode 100644
index 0000000..7b7bd7c
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.AnalogClock.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AnalogClock
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/AnalogClock.html" target="_top"><font size="+2"><code>AnalogClock</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.widget.AnalogClock.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/AnalogClock.html#AnalogClock(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>AnalogClock</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.AutoCompleteTextView.html b/docs/html/sdk/api_diff/21/changes/android.widget.AutoCompleteTextView.html
new file mode 100644
index 0000000..7779f8b
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.AutoCompleteTextView.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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>
+<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.widget.AutoCompleteTextView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/AutoCompleteTextView.html#AutoCompleteTextView(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>AutoCompleteTextView</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.Button.html b/docs/html/sdk/api_diff/21/changes/android.widget.Button.html
new file mode 100644
index 0000000..8c164bb
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.Button.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Button
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Button.html" target="_top"><font size="+2"><code>Button</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.widget.Button.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/Button.html#Button(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>Button</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.CalendarView.html b/docs/html/sdk/api_diff/21/changes/android.widget.CalendarView.html
new file mode 100644
index 0000000..141b243
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.CalendarView.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.CalendarView
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/CalendarView.html" target="_top"><font size="+2"><code>CalendarView</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.widget.CalendarView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/CalendarView.html#CalendarView(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>CalendarView</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.CheckBox.html b/docs/html/sdk/api_diff/21/changes/android.widget.CheckBox.html
new file mode 100644
index 0000000..3d517e1
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.CheckBox.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.CheckBox
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/CheckBox.html" target="_top"><font size="+2"><code>CheckBox</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.widget.CheckBox.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/CheckBox.html#CheckBox(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>CheckBox</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.CheckedTextView.html b/docs/html/sdk/api_diff/21/changes/android.widget.CheckedTextView.html
new file mode 100644
index 0000000..38ffc5a
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.CheckedTextView.html
@@ -0,0 +1,158 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.CheckedTextView
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/CheckedTextView.html" target="_top"><font size="+2"><code>CheckedTextView</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.widget.CheckedTextView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/CheckedTextView.html#CheckedTextView(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>CheckedTextView</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.CheckedTextView.getCheckMarkTintList_added()"></A>
+  <nobr><code>ColorStateList</code>&nbsp;<A HREF="../../../../reference/android/widget/CheckedTextView.html#getCheckMarkTintList()" target="_top"><code>getCheckMarkTintList</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.CheckedTextView.getCheckMarkTintMode_added()"></A>
+  <nobr><code>Mode</code>&nbsp;<A HREF="../../../../reference/android/widget/CheckedTextView.html#getCheckMarkTintMode()" target="_top"><code>getCheckMarkTintMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.CheckedTextView.setCheckMarkTintList_added(android.content.res.ColorStateList)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/CheckedTextView.html#setCheckMarkTintList(android.content.res.ColorStateList)" target="_top"><code>setCheckMarkTintList</code></A>(<code>ColorStateList</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.CheckedTextView.setCheckMarkTintMode_added(android.graphics.PorterDuff.Mode)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/CheckedTextView.html#setCheckMarkTintMode(android.graphics.PorterDuff.Mode)" target="_top"><code>setCheckMarkTintMode</code></A>(<code>Mode</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.Chronometer.html b/docs/html/sdk/api_diff/21/changes/android.widget.Chronometer.html
new file mode 100644
index 0000000..626b31e
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.Chronometer.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Chronometer
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Chronometer.html" target="_top"><font size="+2"><code>Chronometer</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.widget.Chronometer.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/Chronometer.html#Chronometer(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>Chronometer</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.CompoundButton.html b/docs/html/sdk/api_diff/21/changes/android.widget.CompoundButton.html
new file mode 100644
index 0000000..460d4b1
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.CompoundButton.html
@@ -0,0 +1,158 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.CompoundButton
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/CompoundButton.html" target="_top"><font size="+2"><code>CompoundButton</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.widget.CompoundButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/CompoundButton.html#CompoundButton(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>CompoundButton</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.CompoundButton.getButtonTintList_added()"></A>
+  <nobr><code>ColorStateList</code>&nbsp;<A HREF="../../../../reference/android/widget/CompoundButton.html#getButtonTintList()" target="_top"><code>getButtonTintList</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.CompoundButton.getButtonTintMode_added()"></A>
+  <nobr><code>Mode</code>&nbsp;<A HREF="../../../../reference/android/widget/CompoundButton.html#getButtonTintMode()" target="_top"><code>getButtonTintMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.CompoundButton.setButtonTintList_added(android.content.res.ColorStateList)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/CompoundButton.html#setButtonTintList(android.content.res.ColorStateList)" target="_top"><code>setButtonTintList</code></A>(<code>ColorStateList</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.CompoundButton.setButtonTintMode_added(android.graphics.PorterDuff.Mode)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/CompoundButton.html#setButtonTintMode(android.graphics.PorterDuff.Mode)" target="_top"><code>setButtonTintMode</code></A>(<code>Mode</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.DatePicker.html b/docs/html/sdk/api_diff/21/changes/android.widget.DatePicker.html
new file mode 100644
index 0000000..88003ca
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.DatePicker.html
@@ -0,0 +1,144 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.DatePicker
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/DatePicker.html" target="_top"><font size="+2"><code>DatePicker</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.widget.DatePicker.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/DatePicker.html#DatePicker(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>DatePicker</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.DatePicker.getFirstDayOfWeek_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/widget/DatePicker.html#getFirstDayOfWeek()" target="_top"><code>getFirstDayOfWeek</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.DatePicker.setFirstDayOfWeek_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/DatePicker.html#setFirstDayOfWeek(int)" target="_top"><code>setFirstDayOfWeek</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.EdgeEffect.html b/docs/html/sdk/api_diff/21/changes/android.widget.EdgeEffect.html
new file mode 100644
index 0000000..9bb37a8
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.EdgeEffect.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.EdgeEffect
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/EdgeEffect.html" target="_top"><font size="+2"><code>EdgeEffect</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.EdgeEffect.getColor_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/widget/EdgeEffect.html#getColor()" target="_top"><code>getColor</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.EdgeEffect.getMaxHeight_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/widget/EdgeEffect.html#getMaxHeight()" target="_top"><code>getMaxHeight</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.EdgeEffect.onPull_added(float, float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/EdgeEffect.html#onPull(float, float)" target="_top"><code>onPull</code></A>(<code>float,</nobr> float<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.EdgeEffect.setColor_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/EdgeEffect.html#setColor(int)" target="_top"><code>setColor</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.EditText.html b/docs/html/sdk/api_diff/21/changes/android.widget.EditText.html
new file mode 100644
index 0000000..e5577d6
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.EditText.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.EditText
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/EditText.html" target="_top"><font size="+2"><code>EditText</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.widget.EditText.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/EditText.html#EditText(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>EditText</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.ExpandableListView.html b/docs/html/sdk/api_diff/21/changes/android.widget.ExpandableListView.html
new file mode 100644
index 0000000..8b89a81
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.ExpandableListView.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ExpandableListView
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ExpandableListView.html" target="_top"><font size="+2"><code>ExpandableListView</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.widget.ExpandableListView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/ExpandableListView.html#ExpandableListView(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>ExpandableListView</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.FrameLayout.html b/docs/html/sdk/api_diff/21/changes/android.widget.FrameLayout.html
new file mode 100644
index 0000000..940665f
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.FrameLayout.html
@@ -0,0 +1,158 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.FrameLayout
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/FrameLayout.html" target="_top"><font size="+2"><code>FrameLayout</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.widget.FrameLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/FrameLayout.html#FrameLayout(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>FrameLayout</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.FrameLayout.getForegroundTintList_added()"></A>
+  <nobr><code>ColorStateList</code>&nbsp;<A HREF="../../../../reference/android/widget/FrameLayout.html#getForegroundTintList()" target="_top"><code>getForegroundTintList</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.FrameLayout.getForegroundTintMode_added()"></A>
+  <nobr><code>Mode</code>&nbsp;<A HREF="../../../../reference/android/widget/FrameLayout.html#getForegroundTintMode()" target="_top"><code>getForegroundTintMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.FrameLayout.setForegroundTintList_added(android.content.res.ColorStateList)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/FrameLayout.html#setForegroundTintList(android.content.res.ColorStateList)" target="_top"><code>setForegroundTintList</code></A>(<code>ColorStateList</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.FrameLayout.setForegroundTintMode_added(android.graphics.PorterDuff.Mode)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/FrameLayout.html#setForegroundTintMode(android.graphics.PorterDuff.Mode)" target="_top"><code>setForegroundTintMode</code></A>(<code>Mode</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.Gallery.html b/docs/html/sdk/api_diff/21/changes/android.widget.Gallery.html
new file mode 100644
index 0000000..a97a289
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.Gallery.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Gallery
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Gallery.html" target="_top"><font size="+2"><code>Gallery</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.widget.Gallery.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/Gallery.html#Gallery(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>Gallery</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.GridLayout.html b/docs/html/sdk/api_diff/21/changes/android.widget.GridLayout.html
new file mode 100644
index 0000000..b4cf662
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.GridLayout.html
@@ -0,0 +1,158 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.GridLayout
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/GridLayout.html" target="_top"><font size="+2"><code>GridLayout</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.widget.GridLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/GridLayout.html#GridLayout(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>GridLayout</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.GridLayout.spec_added(int, android.widget.GridLayout.Alignment, float)"></A>
+  <nobr><code>Spec</code>&nbsp;<A HREF="../../../../reference/android/widget/GridLayout.html#spec(int, android.widget.GridLayout.Alignment, float)" target="_top"><code>spec</code></A>(<code>int,</nobr> Alignment<nobr>,</nobr> float<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.GridLayout.spec_added(int, float)"></A>
+  <nobr><code>Spec</code>&nbsp;<A HREF="../../../../reference/android/widget/GridLayout.html#spec(int, float)" target="_top"><code>spec</code></A>(<code>int,</nobr> float<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.GridLayout.spec_added(int, int, android.widget.GridLayout.Alignment, float)"></A>
+  <nobr><code>Spec</code>&nbsp;<A HREF="../../../../reference/android/widget/GridLayout.html#spec(int, int, android.widget.GridLayout.Alignment, float)" target="_top"><code>spec</code></A>(<code>int,</nobr> int<nobr>,</nobr> Alignment<nobr>,</nobr> float<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.GridLayout.spec_added(int, int, float)"></A>
+  <nobr><code>Spec</code>&nbsp;<A HREF="../../../../reference/android/widget/GridLayout.html#spec(int, int, float)" target="_top"><code>spec</code></A>(<code>int,</nobr> int<nobr>,</nobr> float<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.GridView.html b/docs/html/sdk/api_diff/21/changes/android.widget.GridView.html
new file mode 100644
index 0000000..a6b41e2
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.GridView.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.GridView
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/GridView.html" target="_top"><font size="+2"><code>GridView</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.widget.GridView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/GridView.html#GridView(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>GridView</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.HorizontalScrollView.html b/docs/html/sdk/api_diff/21/changes/android.widget.HorizontalScrollView.html
new file mode 100644
index 0000000..a40824f
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.HorizontalScrollView.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.HorizontalScrollView
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/HorizontalScrollView.html" target="_top"><font size="+2"><code>HorizontalScrollView</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.widget.HorizontalScrollView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/HorizontalScrollView.html#HorizontalScrollView(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>HorizontalScrollView</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.ImageButton.html b/docs/html/sdk/api_diff/21/changes/android.widget.ImageButton.html
new file mode 100644
index 0000000..f21a9b9
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.ImageButton.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ImageButton
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ImageButton.html" target="_top"><font size="+2"><code>ImageButton</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.widget.ImageButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/ImageButton.html#ImageButton(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>ImageButton</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.ImageView.html b/docs/html/sdk/api_diff/21/changes/android.widget.ImageView.html
new file mode 100644
index 0000000..0e3a11c
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.ImageView.html
@@ -0,0 +1,158 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ImageView
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ImageView.html" target="_top"><font size="+2"><code>ImageView</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.widget.ImageView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/ImageView.html#ImageView(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>ImageView</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.ImageView.getImageTintList_added()"></A>
+  <nobr><code>ColorStateList</code>&nbsp;<A HREF="../../../../reference/android/widget/ImageView.html#getImageTintList()" target="_top"><code>getImageTintList</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ImageView.getImageTintMode_added()"></A>
+  <nobr><code>Mode</code>&nbsp;<A HREF="../../../../reference/android/widget/ImageView.html#getImageTintMode()" target="_top"><code>getImageTintMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ImageView.setImageTintList_added(android.content.res.ColorStateList)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/ImageView.html#setImageTintList(android.content.res.ColorStateList)" target="_top"><code>setImageTintList</code></A>(<code>ColorStateList</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ImageView.setImageTintMode_added(android.graphics.PorterDuff.Mode)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/ImageView.html#setImageTintMode(android.graphics.PorterDuff.Mode)" target="_top"><code>setImageTintMode</code></A>(<code>Mode</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.LinearLayout.html b/docs/html/sdk/api_diff/21/changes/android.widget.LinearLayout.html
new file mode 100644
index 0000000..0a9087c
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.LinearLayout.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.LinearLayout
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/LinearLayout.html" target="_top"><font size="+2"><code>LinearLayout</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.widget.LinearLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/LinearLayout.html#LinearLayout(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>LinearLayout</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.ListView.html b/docs/html/sdk/api_diff/21/changes/android.widget.ListView.html
new file mode 100644
index 0000000..b5b8bef
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.ListView.html
@@ -0,0 +1,140 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ListView
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ListView.html" target="_top"><font size="+2"><code>ListView</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.widget.ListView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/ListView.html#ListView(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>ListView</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.widget.ListView.setSelectionFromTop_changed(int, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/AbsListView.html#setSelectionFromTop(int, int)" target="_top"><code>setSelectionFromTop</code></A>(<code>int,</nobr> int<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Method was locally defined, but is now inherited from <a href="../../../../reference/android/widget/AbsListView.html#setSelectionFromTop(int, int)" target="_top"><code>AbsListView</code></a>.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.MultiAutoCompleteTextView.html b/docs/html/sdk/api_diff/21/changes/android.widget.MultiAutoCompleteTextView.html
new file mode 100644
index 0000000..fc0c137
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.MultiAutoCompleteTextView.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MultiAutoCompleteTextView
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/MultiAutoCompleteTextView.html" target="_top"><font size="+2"><code>MultiAutoCompleteTextView</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.widget.MultiAutoCompleteTextView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/MultiAutoCompleteTextView.html#MultiAutoCompleteTextView(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>MultiAutoCompleteTextView</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.NumberPicker.html b/docs/html/sdk/api_diff/21/changes/android.widget.NumberPicker.html
new file mode 100644
index 0000000..ad14486
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.NumberPicker.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.NumberPicker
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/NumberPicker.html" target="_top"><font size="+2"><code>NumberPicker</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.widget.NumberPicker.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/NumberPicker.html#NumberPicker(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>NumberPicker</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.PopupWindow.html b/docs/html/sdk/api_diff/21/changes/android.widget.PopupWindow.html
new file mode 100644
index 0000000..62cf3a7
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.PopupWindow.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.PopupWindow
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/PopupWindow.html" target="_top"><font size="+2"><code>PopupWindow</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.PopupWindow.getElevation_added()"></A>
+  <nobr><code>float</code>&nbsp;<A HREF="../../../../reference/android/widget/PopupWindow.html#getElevation()" target="_top"><code>getElevation</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.PopupWindow.setElevation_added(float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/PopupWindow.html#setElevation(float)" target="_top"><code>setElevation</code></A>(<code>float</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.ProgressBar.html b/docs/html/sdk/api_diff/21/changes/android.widget.ProgressBar.html
new file mode 100644
index 0000000..14980cb
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.ProgressBar.html
@@ -0,0 +1,256 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ProgressBar
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ProgressBar.html" target="_top"><font size="+2"><code>ProgressBar</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.widget.ProgressBar.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/ProgressBar.html#ProgressBar(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>ProgressBar</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.ProgressBar.getIndeterminateTintList_added()"></A>
+  <nobr><code>ColorStateList</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#getIndeterminateTintList()" target="_top"><code>getIndeterminateTintList</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.getIndeterminateTintMode_added()"></A>
+  <nobr><code>Mode</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#getIndeterminateTintMode()" target="_top"><code>getIndeterminateTintMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.getProgressBackgroundTintList_added()"></A>
+  <nobr><code>ColorStateList</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#getProgressBackgroundTintList()" target="_top"><code>getProgressBackgroundTintList</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.getProgressBackgroundTintMode_added()"></A>
+  <nobr><code>Mode</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#getProgressBackgroundTintMode()" target="_top"><code>getProgressBackgroundTintMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.getProgressTintList_added()"></A>
+  <nobr><code>ColorStateList</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#getProgressTintList()" target="_top"><code>getProgressTintList</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.getProgressTintMode_added()"></A>
+  <nobr><code>Mode</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#getProgressTintMode()" target="_top"><code>getProgressTintMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.getSecondaryProgressTintList_added()"></A>
+  <nobr><code>ColorStateList</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#getSecondaryProgressTintList()" target="_top"><code>getSecondaryProgressTintList</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.getSecondaryProgressTintMode_added()"></A>
+  <nobr><code>Mode</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#getSecondaryProgressTintMode()" target="_top"><code>getSecondaryProgressTintMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.setIndeterminateDrawableTiled_added(android.graphics.drawable.Drawable)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#setIndeterminateDrawableTiled(android.graphics.drawable.Drawable)" target="_top"><code>setIndeterminateDrawableTiled</code></A>(<code>Drawable</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.setIndeterminateTintList_added(android.content.res.ColorStateList)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#setIndeterminateTintList(android.content.res.ColorStateList)" target="_top"><code>setIndeterminateTintList</code></A>(<code>ColorStateList</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.setIndeterminateTintMode_added(android.graphics.PorterDuff.Mode)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#setIndeterminateTintMode(android.graphics.PorterDuff.Mode)" target="_top"><code>setIndeterminateTintMode</code></A>(<code>Mode</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.setProgressBackgroundTintList_added(android.content.res.ColorStateList)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#setProgressBackgroundTintList(android.content.res.ColorStateList)" target="_top"><code>setProgressBackgroundTintList</code></A>(<code>ColorStateList</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.setProgressBackgroundTintMode_added(android.graphics.PorterDuff.Mode)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#setProgressBackgroundTintMode(android.graphics.PorterDuff.Mode)" target="_top"><code>setProgressBackgroundTintMode</code></A>(<code>Mode</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.setProgressDrawableTiled_added(android.graphics.drawable.Drawable)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#setProgressDrawableTiled(android.graphics.drawable.Drawable)" target="_top"><code>setProgressDrawableTiled</code></A>(<code>Drawable</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.setProgressTintList_added(android.content.res.ColorStateList)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#setProgressTintList(android.content.res.ColorStateList)" target="_top"><code>setProgressTintList</code></A>(<code>ColorStateList</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.setProgressTintMode_added(android.graphics.PorterDuff.Mode)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#setProgressTintMode(android.graphics.PorterDuff.Mode)" target="_top"><code>setProgressTintMode</code></A>(<code>Mode</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.setSecondaryProgressTintList_added(android.content.res.ColorStateList)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#setSecondaryProgressTintList(android.content.res.ColorStateList)" target="_top"><code>setSecondaryProgressTintList</code></A>(<code>ColorStateList</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.setSecondaryProgressTintMode_added(android.graphics.PorterDuff.Mode)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#setSecondaryProgressTintMode(android.graphics.PorterDuff.Mode)" target="_top"><code>setSecondaryProgressTintMode</code></A>(<code>Mode</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.QuickContactBadge.html b/docs/html/sdk/api_diff/21/changes/android.widget.QuickContactBadge.html
new file mode 100644
index 0000000..fe0b7b0
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.QuickContactBadge.html
@@ -0,0 +1,137 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.QuickContactBadge
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/QuickContactBadge.html" target="_top"><font size="+2"><code>QuickContactBadge</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.widget.QuickContactBadge.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/QuickContactBadge.html#QuickContactBadge(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>QuickContactBadge</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.QuickContactBadge.setOverlay_added(android.graphics.drawable.Drawable)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/QuickContactBadge.html#setOverlay(android.graphics.drawable.Drawable)" target="_top"><code>setOverlay</code></A>(<code>Drawable</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.RadioButton.html b/docs/html/sdk/api_diff/21/changes/android.widget.RadioButton.html
new file mode 100644
index 0000000..0188a85
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.RadioButton.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.RadioButton
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/RadioButton.html" target="_top"><font size="+2"><code>RadioButton</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.widget.RadioButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/RadioButton.html#RadioButton(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>RadioButton</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.RatingBar.html b/docs/html/sdk/api_diff/21/changes/android.widget.RatingBar.html
new file mode 100644
index 0000000..b343482
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.RatingBar.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.RatingBar
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/RatingBar.html" target="_top"><font size="+2"><code>RatingBar</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.widget.RatingBar.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/RatingBar.html#RatingBar(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>RatingBar</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.RelativeLayout.html b/docs/html/sdk/api_diff/21/changes/android.widget.RelativeLayout.html
new file mode 100644
index 0000000..fb4264e
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.RelativeLayout.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.RelativeLayout
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/RelativeLayout.html" target="_top"><font size="+2"><code>RelativeLayout</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.widget.RelativeLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/RelativeLayout.html#RelativeLayout(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>RelativeLayout</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.ScrollView.html b/docs/html/sdk/api_diff/21/changes/android.widget.ScrollView.html
new file mode 100644
index 0000000..52369f0
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.ScrollView.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ScrollView
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ScrollView.html" target="_top"><font size="+2"><code>ScrollView</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.widget.ScrollView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/ScrollView.html#ScrollView(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>ScrollView</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.SearchView.html b/docs/html/sdk/api_diff/21/changes/android.widget.SearchView.html
new file mode 100644
index 0000000..dbae5e1
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.SearchView.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.SearchView
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/SearchView.html" target="_top"><font size="+2"><code>SearchView</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.widget.SearchView.ctor_added(android.content.Context, android.util.AttributeSet, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/SearchView.html#SearchView(android.content.Context, android.util.AttributeSet, int)" target="_top"><code>SearchView</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.SearchView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/SearchView.html#SearchView(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>SearchView</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.SeekBar.html b/docs/html/sdk/api_diff/21/changes/android.widget.SeekBar.html
new file mode 100644
index 0000000..2361e0a
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.SeekBar.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.SeekBar
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/SeekBar.html" target="_top"><font size="+2"><code>SeekBar</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.widget.SeekBar.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/SeekBar.html#SeekBar(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>SeekBar</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.SlidingDrawer.html b/docs/html/sdk/api_diff/21/changes/android.widget.SlidingDrawer.html
new file mode 100644
index 0000000..091a4ed
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.SlidingDrawer.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.SlidingDrawer
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/SlidingDrawer.html" target="_top"><font size="+2"><code>SlidingDrawer</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.widget.SlidingDrawer.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/SlidingDrawer.html#SlidingDrawer(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>SlidingDrawer</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.Space.html b/docs/html/sdk/api_diff/21/changes/android.widget.Space.html
new file mode 100644
index 0000000..52aa97e
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.Space.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Space
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Space.html" target="_top"><font size="+2"><code>Space</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.widget.Space.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/Space.html#Space(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>Space</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.Spinner.html b/docs/html/sdk/api_diff/21/changes/android.widget.Spinner.html
new file mode 100644
index 0000000..cfa1e41
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.Spinner.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Spinner
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Spinner.html" target="_top"><font size="+2"><code>Spinner</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.widget.Spinner.ctor_added(android.content.Context, android.util.AttributeSet, int, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/Spinner.html#Spinner(android.content.Context, android.util.AttributeSet, int, int, int)" target="_top"><code>Spinner</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.StackView.html b/docs/html/sdk/api_diff/21/changes/android.widget.StackView.html
new file mode 100644
index 0000000..a6f2de5
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.StackView.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.StackView
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/StackView.html" target="_top"><font size="+2"><code>StackView</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.widget.StackView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/StackView.html#StackView(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>StackView</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.Switch.html b/docs/html/sdk/api_diff/21/changes/android.widget.Switch.html
new file mode 100644
index 0000000..dfbf5f5
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.Switch.html
@@ -0,0 +1,158 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Switch
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Switch.html" target="_top"><font size="+2"><code>Switch</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.widget.Switch.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/Switch.html#Switch(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>Switch</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Switch.getShowText_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/widget/Switch.html#getShowText()" target="_top"><code>getShowText</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.Switch.getSplitTrack_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/widget/Switch.html#getSplitTrack()" target="_top"><code>getSplitTrack</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.Switch.setShowText_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/Switch.html#setShowText(boolean)" target="_top"><code>setShowText</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.Switch.setSplitTrack_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/Switch.html#setSplitTrack(boolean)" target="_top"><code>setSplitTrack</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.TabHost.html b/docs/html/sdk/api_diff/21/changes/android.widget.TabHost.html
new file mode 100644
index 0000000..840ecf8
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.TabHost.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.TabHost
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/TabHost.html" target="_top"><font size="+2"><code>TabHost</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.widget.TabHost.ctor_added(android.content.Context, android.util.AttributeSet, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/TabHost.html#TabHost(android.content.Context, android.util.AttributeSet, int)" target="_top"><code>TabHost</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.TabHost.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/TabHost.html#TabHost(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>TabHost</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.TabWidget.html b/docs/html/sdk/api_diff/21/changes/android.widget.TabWidget.html
new file mode 100644
index 0000000..44ade3f
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.TabWidget.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.TabWidget
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/TabWidget.html" target="_top"><font size="+2"><code>TabWidget</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.widget.TabWidget.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/TabWidget.html#TabWidget(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>TabWidget</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.TextClock.html b/docs/html/sdk/api_diff/21/changes/android.widget.TextClock.html
new file mode 100644
index 0000000..77a55d8
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.TextClock.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.TextClock
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/TextClock.html" target="_top"><font size="+2"><code>TextClock</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.widget.TextClock.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/TextClock.html#TextClock(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>TextClock</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.TextView.html b/docs/html/sdk/api_diff/21/changes/android.widget.TextView.html
new file mode 100644
index 0000000..8dedca6
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.TextView.html
@@ -0,0 +1,201 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.TextView
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/TextView.html" target="_top"><font size="+2"><code>TextView</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.widget.TextView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/TextView.html#TextView(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>TextView</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.TextView.getTextColor_removed(android.content.Context, android.content.res.TypedArray, int)"></A>
+  <nobr><code>int</code>&nbsp;getTextColor(<code>Context,</nobr> TypedArray<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.TextView.getTextColors_removed(android.content.Context, android.content.res.TypedArray)"></A>
+  <nobr><code>ColorStateList</code>&nbsp;getTextColors(<code>Context,</nobr> TypedArray<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.TextView.getFontFeatureSettings_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/widget/TextView.html#getFontFeatureSettings()" target="_top"><code>getFontFeatureSettings</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.TextView.getLetterSpacing_added()"></A>
+  <nobr><code>float</code>&nbsp;<A HREF="../../../../reference/android/widget/TextView.html#getLetterSpacing()" target="_top"><code>getLetterSpacing</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.TextView.getShowSoftInputOnFocus_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/widget/TextView.html#getShowSoftInputOnFocus()" target="_top"><code>getShowSoftInputOnFocus</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.TextView.setElegantTextHeight_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/TextView.html#setElegantTextHeight(boolean)" target="_top"><code>setElegantTextHeight</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.TextView.setFontFeatureSettings_added(java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/TextView.html#setFontFeatureSettings(java.lang.String)" target="_top"><code>setFontFeatureSettings</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.TextView.setLetterSpacing_added(float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/TextView.html#setLetterSpacing(float)" target="_top"><code>setLetterSpacing</code></A>(<code>float</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.TextView.setShowSoftInputOnFocus_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/TextView.html#setShowSoftInputOnFocus(boolean)" target="_top"><code>setShowSoftInputOnFocus</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.TimePicker.html b/docs/html/sdk/api_diff/21/changes/android.widget.TimePicker.html
new file mode 100644
index 0000000..c5bee91
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.TimePicker.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.TimePicker
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/TimePicker.html" target="_top"><font size="+2"><code>TimePicker</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.widget.TimePicker.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/TimePicker.html#TimePicker(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>TimePicker</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.ToggleButton.html b/docs/html/sdk/api_diff/21/changes/android.widget.ToggleButton.html
new file mode 100644
index 0000000..320ca9d
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.ToggleButton.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ToggleButton
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ToggleButton.html" target="_top"><font size="+2"><code>ToggleButton</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.widget.ToggleButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/ToggleButton.html#ToggleButton(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>ToggleButton</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.TwoLineListItem.html b/docs/html/sdk/api_diff/21/changes/android.widget.TwoLineListItem.html
new file mode 100644
index 0000000..09dbfeb
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.TwoLineListItem.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.TwoLineListItem
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/TwoLineListItem.html" target="_top"><font size="+2"><code>TwoLineListItem</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.widget.TwoLineListItem.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/TwoLineListItem.html#TwoLineListItem(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>TwoLineListItem</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.VideoView.html b/docs/html/sdk/api_diff/21/changes/android.widget.VideoView.html
new file mode 100644
index 0000000..910c7d2
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.VideoView.html
@@ -0,0 +1,137 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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>
+<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.widget.VideoView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/VideoView.html#VideoView(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>VideoView</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.setVideoURI_added(android.net.Uri, java.util.Map<java.lang.String, java.lang.String>)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/VideoView.html#setVideoURI(android.net.Uri, java.util.Map<java.lang.String, java.lang.String>)" target="_top"><code>setVideoURI</code></A>(<code>Uri,</nobr> Map&lt;String<nobr>,</nobr> String&gt;<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/android.widget.ZoomButton.html b/docs/html/sdk/api_diff/21/changes/android.widget.ZoomButton.html
new file mode 100644
index 0000000..03ec506
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/android.widget.ZoomButton.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ZoomButton
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/ZoomButton.html" target="_top"><font size="+2"><code>ZoomButton</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.widget.ZoomButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/widget/ZoomButton.html#ZoomButton(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>ZoomButton</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/changes-summary.html b/docs/html/sdk/api_diff/21/changes/changes-summary.html
new file mode 100644
index 0000000..f89b9f7
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/changes-summary.html
@@ -0,0 +1,647 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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&nbsp;API&nbsp;Differences&nbsp;Report</h1>
+<p>This report details the changes in the core Android framework API between two <a 
+href="//developer.android.com/guide/appendix/api-levels.html" target="_top">API Level</a> 
+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="//developer.android.com/index.html" target="_top">Android Developers site</a>.</p>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Packages" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Packages</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.location"></A>
+  android.hardware.location  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.app.job"></A>
+  <nobr><A HREF="../../../../reference/android/app/job/package-summary.html" target="_top"><code>android.app.job</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.usage"></A>
+  <nobr><A HREF="../../../../reference/android/app/usage/package-summary.html" target="_top"><code>android.app.usage</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le"></A>
+  <nobr><A HREF="../../../../reference/android/bluetooth/le/package-summary.html" target="_top"><code>android.bluetooth.le</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2"></A>
+  <nobr><A HREF="../../../../reference/android/hardware/camera2/package-summary.html" target="_top"><code>android.hardware.camera2</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.params"></A>
+  <nobr><A HREF="../../../../reference/android/hardware/camera2/params/package-summary.html" target="_top"><code>android.hardware.camera2.params</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.browse"></A>
+  <nobr><A HREF="../../../../reference/android/media/browse/package-summary.html" target="_top"><code>android.media.browse</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.projection"></A>
+  <nobr><A HREF="../../../../reference/android/media/projection/package-summary.html" target="_top"><code>android.media.projection</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session"></A>
+  <nobr><A HREF="../../../../reference/android/media/session/package-summary.html" target="_top"><code>android.media.session</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv"></A>
+  <nobr><A HREF="../../../../reference/android/media/tv/package-summary.html" target="_top"><code>android.media.tv</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.media"></A>
+  <nobr><A HREF="../../../../reference/android/service/media/package-summary.html" target="_top"><code>android.service.media</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.restrictions"></A>
+  <nobr><A HREF="../../../../reference/android/service/restrictions/package-summary.html" target="_top"><code>android.service.restrictions</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.voice"></A>
+  <nobr><A HREF="../../../../reference/android/service/voice/package-summary.html" target="_top"><code>android.service.voice</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.system"></A>
+  <nobr><A HREF="../../../../reference/android/system/package-summary.html" target="_top"><code>android.system</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telecom"></A>
+  <nobr><A HREF="../../../../reference/android/telecom/package-summary.html" target="_top"><code>android.telecom</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.accessibilityservice"></A>
+  <nobr><A HREF="pkg_android.accessibilityservice.html">android.accessibilityservice</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.accounts"></A>
+  <nobr><A HREF="pkg_android.accounts.html">android.accounts</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.animation"></A>
+  <nobr><A HREF="pkg_android.animation.html">android.animation</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin"></A>
+  <nobr><A HREF="pkg_android.app.admin.html">android.app.admin</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.backup"></A>
+  <nobr><A HREF="pkg_android.app.backup.html">android.app.backup</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.appwidget"></A>
+  <nobr><A HREF="pkg_android.appwidget.html">android.appwidget</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth"></A>
+  <nobr><A HREF="pkg_android.bluetooth.html">android.bluetooth</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.gesture"></A>
+  <nobr><A HREF="pkg_android.gesture.html">android.gesture</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.shapes"></A>
+  <nobr><A HREF="pkg_android.graphics.drawable.shapes.html">android.graphics.drawable.shapes</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.pdf"></A>
+  <nobr><A HREF="pkg_android.graphics.pdf.html">android.graphics.pdf</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.display"></A>
+  <nobr><A HREF="pkg_android.hardware.display.html">android.hardware.display</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.usb"></A>
+  <nobr><A HREF="pkg_android.hardware.usb.html">android.hardware.usb</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.audiofx"></A>
+  <nobr><A HREF="pkg_android.media.audiofx.html">android.media.audiofx</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net"></A>
+  <nobr><A HREF="pkg_android.net.html">android.net</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.http"></A>
+  <nobr><A HREF="pkg_android.net.http.html">android.net.http</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.nsd"></A>
+  <nobr><A HREF="pkg_android.net.nsd.html">android.net.nsd</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi"></A>
+  <nobr><A HREF="pkg_android.net.wifi.html">android.net.wifi</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.nfc"></A>
+  <nobr><A HREF="pkg_android.nfc.html">android.nfc</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.nfc.cardemulation"></A>
+  <nobr><A HREF="pkg_android.nfc.cardemulation.html">android.nfc.cardemulation</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.preference"></A>
+  <nobr><A HREF="pkg_android.preference.html">android.preference</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.printservice"></A>
+  <nobr><A HREF="pkg_android.printservice.html">android.printservice</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript"></A>
+  <nobr><A HREF="pkg_android.renderscript.html">android.renderscript</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.dreams"></A>
+  <nobr><A HREF="pkg_android.service.dreams.html">android.service.dreams</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification"></A>
+  <nobr><A HREF="pkg_android.service.notification.html">android.service.notification</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.wallpaper"></A>
+  <nobr><A HREF="pkg_android.service.wallpaper.html">android.service.wallpaper</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts"></A>
+  <nobr><A HREF="pkg_android.speech.tts.html">android.speech.tts</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition"></A>
+  <nobr><A HREF="pkg_android.transition.html">android.transition</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility"></A>
+  <nobr><A HREF="pkg_android.view.accessibility.html">android.view.accessibility</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.inputmethod"></A>
+  <nobr><A HREF="pkg_android.view.inputmethod.html">android.view.inputmethod</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.textservice"></A>
+  <nobr><A HREF="pkg_android.view.textservice.html">android.view.textservice</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip"></A>
+  <nobr><A HREF="pkg_java.util.zip.html">java.util.zip</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<!-- 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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/classes_index_additions.html b/docs/html/sdk/api_diff/21/changes/classes_index_additions.html
new file mode 100644
index 0000000..569b1d2
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/classes_index_additions.html
@@ -0,0 +1,586 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#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="#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="pkg_android.view.accessibility.html#AccessibilityNodeInfo.AccessibilityAction" class="hiddenlink" target="rightframe"><b>AccessibilityNodeInfo.AccessibilityAction</b></A><br>
+<A HREF="pkg_android.view.accessibility.html#AccessibilityWindowInfo" class="hiddenlink" target="rightframe"><b>AccessibilityWindowInfo</b></A><br>
+<A HREF="pkg_android.widget.html#ActionMenuView" class="hiddenlink" target="rightframe"><b>ActionMenuView</b></A><br>
+<A HREF="pkg_android.widget.html#ActionMenuView.LayoutParams" class="hiddenlink" target="rightframe"><b>ActionMenuView.LayoutParams</b></A><br>
+<A HREF="pkg_android.widget.html#ActionMenuView.OnMenuItemClickListener" class="hiddenlink" target="rightframe"><b><i>ActionMenuView.OnMenuItemClickListener</i></b></A><br>
+<A HREF="pkg_android.app.html#ActivityManager.AppTask" class="hiddenlink" target="rightframe"><b>ActivityManager.AppTask</b></A><br>
+<A HREF="pkg_android.app.html#ActivityManager.TaskDescription" class="hiddenlink" target="rightframe"><b>ActivityManager.TaskDescription</b></A><br>
+<A HREF="pkg_android.app.html#AlarmManager.AlarmClockInfo" class="hiddenlink" target="rightframe"><b>AlarmManager.AlarmClockInfo</b></A><br>
+<A HREF="pkg_android.graphics.drawable.html#AnimatedStateListDrawable" class="hiddenlink" target="rightframe"><b>AnimatedStateListDrawable</b></A><br>
+<A HREF="pkg_android.graphics.drawable.html#AnimatedVectorDrawable" class="hiddenlink" target="rightframe"><b>AnimatedVectorDrawable</b></A><br>
+<A HREF="pkg_android.transition.html#ArcMotion" class="hiddenlink" target="rightframe"><b>ArcMotion</b></A><br>
+<A HREF="pkg_android.media.html#AudioAttributes" class="hiddenlink" target="rightframe"><b>AudioAttributes</b></A><br>
+<A HREF="pkg_android.media.html#AudioAttributes.Builder" class="hiddenlink" target="rightframe"><b>AudioAttributes.Builder</b></A><br>
+<A HREF="pkg_android.media.html#AudioFormat.Builder" class="hiddenlink" target="rightframe"><b>AudioFormat.Builder</b></A><br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.os.html#BaseBundle" class="hiddenlink" target="rightframe"><b>BaseBundle</b></A><br>
+<A HREF="pkg_android.animation.html#BidirectionalTypeConverter" class="hiddenlink" target="rightframe"><b>BidirectionalTypeConverter</b></A><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<a href="#A"><font size="-2">A</font></a> 
+<a href="#B"><font size="-2">B</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="#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="pkg_android.transition.html#ChangeClipBounds" class="hiddenlink" target="rightframe"><b>ChangeClipBounds</b></A><br>
+<A HREF="pkg_android.transition.html#ChangeImageTransform" class="hiddenlink" target="rightframe"><b>ChangeImageTransform</b></A><br>
+<A HREF="pkg_android.transition.html#ChangeTransform" class="hiddenlink" target="rightframe"><b>ChangeTransform</b></A><br>
+<A HREF="pkg_android.transition.html#CircularPropagation" class="hiddenlink" target="rightframe"><b>CircularPropagation</b></A><br>
+<A HREF="pkg_android.webkit.html#ClientCertRequest" class="hiddenlink" target="rightframe"><b>ClientCertRequest</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#ConcurrentLinkedDeque" class="hiddenlink" target="rightframe"><b>ConcurrentLinkedDeque</b></A><br>
+<A HREF="pkg_android.net.html#ConnectivityManager.NetworkCallback" class="hiddenlink" target="rightframe"><b>ConnectivityManager.NetworkCallback</b></A><br>
+<A HREF="pkg_android.net.html#ConnectivityManager.OnNetworkActiveListener" class="hiddenlink" target="rightframe"><b><i>ConnectivityManager.OnNetworkActiveListener</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Callable" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Callable</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.PinnedPositions" class="hiddenlink" target="rightframe"><b>ContactsContract.PinnedPositions</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.SearchSnippets" class="hiddenlink" target="rightframe"><b>ContactsContract.SearchSnippets</b></A><br>
+<A HREF="pkg_android.view.inputmethod.html#CursorAnchorInfo" class="hiddenlink" target="rightframe"><b>CursorAnchorInfo</b></A><br>
+<A HREF="pkg_android.view.inputmethod.html#CursorAnchorInfo.Builder" class="hiddenlink" target="rightframe"><b>CursorAnchorInfo.Builder</b></A><br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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="#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="#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="pkg_android.transition.html#Explode" class="hiddenlink" target="rightframe"><b>Explode</b></A><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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="#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="#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="pkg_android.content.pm.html#FeatureGroupInfo" class="hiddenlink" target="rightframe"><b>FeatureGroupInfo</b></A><br>
+<A HREF="pkg_android.animation.html#FloatArrayEvaluator" class="hiddenlink" target="rightframe"><b>FloatArrayEvaluator</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#ForkJoinPool" class="hiddenlink" target="rightframe"><b>ForkJoinPool</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#ForkJoinPool.ForkJoinWorkerThreadFactory" class="hiddenlink" target="rightframe"><b><i>ForkJoinPool.ForkJoinWorkerThreadFactory</i></b></A><br>
+<A HREF="pkg_java.util.concurrent.html#ForkJoinPool.ManagedBlocker" class="hiddenlink" target="rightframe"><b><i>ForkJoinPool.ManagedBlocker</i></b></A><br>
+<A HREF="pkg_java.util.concurrent.html#ForkJoinTask" class="hiddenlink" target="rightframe"><b>ForkJoinTask</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#ForkJoinWorkerThread" class="hiddenlink" target="rightframe"><b>ForkJoinWorkerThread</b></A><br>
+<A HREF="pkg_android.view.html#FrameStats" class="hiddenlink" target="rightframe"><b>FrameStats</b></A><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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="#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="#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="pkg_android.opengl.html#GLES31" class="hiddenlink" target="rightframe"><b>GLES31</b></A><br>
+<A HREF="pkg_android.opengl.html#GLES31Ext" class="hiddenlink" target="rightframe"><b>GLES31Ext</b></A><br>
+<A HREF="pkg_android.opengl.html#GLES31Ext.DebugProcKHR" class="hiddenlink" target="rightframe"><b><i>GLES31Ext.DebugProcKHR</i></b></A><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.telephony.html#IccOpenLogicalChannelResponse" class="hiddenlink" target="rightframe"><b>IccOpenLogicalChannelResponse</b></A><br>
+<A HREF="pkg_java.util.html#IllformedLocaleException" class="hiddenlink" target="rightframe"><b>IllformedLocaleException</b></A><br>
+<A HREF="pkg_android.animation.html#IntArrayEvaluator" class="hiddenlink" target="rightframe"><b>IntArrayEvaluator</b></A><br>
+<A HREF="pkg_android.net.html#IpPrefix" class="hiddenlink" target="rightframe"><b>IpPrefix</b></A><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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="#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="#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="pkg_android.content.pm.html#LauncherActivityInfo" class="hiddenlink" target="rightframe"><b>LauncherActivityInfo</b></A><br>
+<A HREF="pkg_android.content.pm.html#LauncherApps" class="hiddenlink" target="rightframe"><b>LauncherApps</b></A><br>
+<A HREF="pkg_android.content.pm.html#LauncherApps.Callback" class="hiddenlink" target="rightframe"><b>LauncherApps.Callback</b></A><br>
+<A HREF="pkg_android.net.html#LinkAddress" class="hiddenlink" target="rightframe"><b>LinkAddress</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#LinkedTransferQueue" class="hiddenlink" target="rightframe"><b>LinkedTransferQueue</b></A><br>
+<A HREF="pkg_android.net.html#LinkProperties" class="hiddenlink" target="rightframe"><b>LinkProperties</b></A><br>
+<A HREF="pkg_java.util.html#Locale.Builder" class="hiddenlink" target="rightframe"><b>Locale.Builder</b></A><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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="#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="#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="pkg_android.media.html#MediaCodec.Callback" class="hiddenlink" target="rightframe"><b>MediaCodec.Callback</b></A><br>
+<A HREF="pkg_android.media.html#MediaCodec.CodecException" class="hiddenlink" target="rightframe"><b>MediaCodec.CodecException</b></A><br>
+<A HREF="pkg_android.media.html#MediaCodecInfo.AudioCapabilities" class="hiddenlink" target="rightframe"><b>MediaCodecInfo.AudioCapabilities</b></A><br>
+<A HREF="pkg_android.media.html#MediaCodecInfo.EncoderCapabilities" class="hiddenlink" target="rightframe"><b>MediaCodecInfo.EncoderCapabilities</b></A><br>
+<A HREF="pkg_android.media.html#MediaCodecInfo.VideoCapabilities" class="hiddenlink" target="rightframe"><b>MediaCodecInfo.VideoCapabilities</b></A><br>
+<A HREF="pkg_android.media.html#MediaDescription" class="hiddenlink" target="rightframe"><b>MediaDescription</b></A><br>
+<A HREF="pkg_android.media.html#MediaDescription.Builder" class="hiddenlink" target="rightframe"><b>MediaDescription.Builder</b></A><br>
+<A HREF="pkg_android.media.html#MediaDrm.MediaDrmStateException" class="hiddenlink" target="rightframe"><b>MediaDrm.MediaDrmStateException</b></A><br>
+<A HREF="pkg_android.media.html#MediaMetadata" class="hiddenlink" target="rightframe"><b>MediaMetadata</b></A><br>
+<A HREF="pkg_android.media.html#MediaMetadata.Builder" class="hiddenlink" target="rightframe"><b>MediaMetadata.Builder</b></A><br>
+<A HREF="pkg_android.provider.html#MediaStore.Audio.Radio" class="hiddenlink" target="rightframe"><b>MediaStore.Audio.Radio</b></A><br>
+<A HREF="pkg_android.util.html#MutableBoolean" class="hiddenlink" target="rightframe"><b>MutableBoolean</b></A><br>
+<A HREF="pkg_android.util.html#MutableByte" class="hiddenlink" target="rightframe"><b>MutableByte</b></A><br>
+<A HREF="pkg_android.util.html#MutableChar" class="hiddenlink" target="rightframe"><b>MutableChar</b></A><br>
+<A HREF="pkg_android.util.html#MutableDouble" class="hiddenlink" target="rightframe"><b>MutableDouble</b></A><br>
+<A HREF="pkg_android.util.html#MutableFloat" class="hiddenlink" target="rightframe"><b>MutableFloat</b></A><br>
+<A HREF="pkg_android.util.html#MutableInt" class="hiddenlink" target="rightframe"><b>MutableInt</b></A><br>
+<A HREF="pkg_android.util.html#MutableLong" class="hiddenlink" target="rightframe"><b>MutableLong</b></A><br>
+<A HREF="pkg_android.util.html#MutableShort" class="hiddenlink" target="rightframe"><b>MutableShort</b></A><br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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="#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="#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="pkg_android.net.html#Network" class="hiddenlink" target="rightframe"><b>Network</b></A><br>
+<A HREF="pkg_android.net.html#NetworkCapabilities" class="hiddenlink" target="rightframe"><b>NetworkCapabilities</b></A><br>
+<A HREF="pkg_android.net.html#NetworkRequest" class="hiddenlink" target="rightframe"><b>NetworkRequest</b></A><br>
+<A HREF="pkg_android.net.html#NetworkRequest.Builder" class="hiddenlink" target="rightframe"><b>NetworkRequest.Builder</b></A><br>
+<A HREF="pkg_android.app.html#Notification.MediaStyle" class="hiddenlink" target="rightframe"><b>Notification.MediaStyle</b></A><br>
+<A HREF="pkg_android.service.notification.html#NotificationListenerService.Ranking" class="hiddenlink" target="rightframe"><b>NotificationListenerService.Ranking</b></A><br>
+<A HREF="pkg_android.service.notification.html#NotificationListenerService.RankingMap" class="hiddenlink" target="rightframe"><b>NotificationListenerService.RankingMap</b></A><br>
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.graphics.html#Outline" class="hiddenlink" target="rightframe"><b>Outline</b></A><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#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="#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="pkg_android.content.pm.html#PackageInstaller" class="hiddenlink" target="rightframe"><b>PackageInstaller</b></A><br>
+<A HREF="pkg_android.content.pm.html#PackageInstaller.Session" class="hiddenlink" target="rightframe"><b>PackageInstaller.Session</b></A><br>
+<A HREF="pkg_android.content.pm.html#PackageInstaller.SessionCallback" class="hiddenlink" target="rightframe"><b>PackageInstaller.SessionCallback</b></A><br>
+<A HREF="pkg_android.content.pm.html#PackageInstaller.SessionInfo" class="hiddenlink" target="rightframe"><b>PackageInstaller.SessionInfo</b></A><br>
+<A HREF="pkg_android.content.pm.html#PackageInstaller.SessionParams" class="hiddenlink" target="rightframe"><b>PackageInstaller.SessionParams</b></A><br>
+<A HREF="pkg_android.view.animation.html#PathInterpolator" class="hiddenlink" target="rightframe"><b>PathInterpolator</b></A><br>
+<A HREF="pkg_android.transition.html#PathMotion" class="hiddenlink" target="rightframe"><b>PathMotion</b></A><br>
+<A HREF="pkg_android.transition.html#PatternPathMotion" class="hiddenlink" target="rightframe"><b>PatternPathMotion</b></A><br>
+<A HREF="pkg_android.graphics.pdf.html#PdfRenderer" class="hiddenlink" target="rightframe"><b>PdfRenderer</b></A><br>
+<A HREF="pkg_android.graphics.pdf.html#PdfRenderer.Page" class="hiddenlink" target="rightframe"><b>PdfRenderer.Page</b></A><br>
+<A HREF="pkg_android.webkit.html#PermissionRequest" class="hiddenlink" target="rightframe"><b>PermissionRequest</b></A><br>
+<A HREF="pkg_android.os.html#PersistableBundle" class="hiddenlink" target="rightframe"><b>PersistableBundle</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#Phaser" class="hiddenlink" target="rightframe"><b>Phaser</b></A><br>
+<A HREF="pkg_android.animation.html#PointFEvaluator" class="hiddenlink" target="rightframe"><b>PointFEvaluator</b></A><br>
+<A HREF="pkg_android.net.html#ProxyInfo" class="hiddenlink" target="rightframe"><b>ProxyInfo</b></A><br>
+<A HREF="pkg_android.net.html#PskKeyManager" class="hiddenlink" target="rightframe"><b>PskKeyManager</b></A><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#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="#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="pkg_android.html#R.transition" class="hiddenlink" target="rightframe"><b>R.transition</b></A><br>
+<A HREF="pkg_android.util.html#Range" class="hiddenlink" target="rightframe"><b>Range</b></A><br>
+<A HREF="pkg_android.util.html#Rational" class="hiddenlink" target="rightframe"><b>Rational</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#RecursiveAction" class="hiddenlink" target="rightframe"><b>RecursiveAction</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#RecursiveTask" class="hiddenlink" target="rightframe"><b>RecursiveTask</b></A><br>
+<A HREF="pkg_android.content.html#RestrictionsManager" class="hiddenlink" target="rightframe"><b>RestrictionsManager</b></A><br>
+<A HREF="pkg_android.graphics.drawable.html#RippleDrawable" class="hiddenlink" target="rightframe"><b>RippleDrawable</b></A><br>
+<A HREF="pkg_android.net.html#RouteInfo" class="hiddenlink" target="rightframe"><b>RouteInfo</b></A><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#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="#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="pkg_android.app.html#SharedElementCallback" class="hiddenlink" target="rightframe"><b>SharedElementCallback</b></A><br>
+<A HREF="pkg_android.transition.html#SidePropagation" class="hiddenlink" target="rightframe"><b>SidePropagation</b></A><br>
+<A HREF="pkg_android.util.html#Size" class="hiddenlink" target="rightframe"><b>Size</b></A><br>
+<A HREF="pkg_android.util.html#SizeF" class="hiddenlink" target="rightframe"><b>SizeF</b></A><br>
+<A HREF="pkg_android.transition.html#Slide" class="hiddenlink" target="rightframe"><b>Slide</b></A><br>
+<A HREF="pkg_android.media.html#SoundPool.Builder" class="hiddenlink" target="rightframe"><b>SoundPool.Builder</b></A><br>
+<A HREF="pkg_android.animation.html#StateListAnimator" class="hiddenlink" target="rightframe"><b>StateListAnimator</b></A><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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="#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="#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="pkg_java.util.concurrent.html#ThreadLocalRandom" class="hiddenlink" target="rightframe"><b>ThreadLocalRandom</b></A><br>
+<A HREF="pkg_android.widget.html#Toolbar" class="hiddenlink" target="rightframe"><b>Toolbar</b></A><br>
+<A HREF="pkg_android.widget.html#Toolbar.LayoutParams" class="hiddenlink" target="rightframe"><b>Toolbar.LayoutParams</b></A><br>
+<A HREF="pkg_android.widget.html#Toolbar.OnMenuItemClickListener" class="hiddenlink" target="rightframe"><b><i>Toolbar.OnMenuItemClickListener</i></b></A><br>
+<A HREF="pkg_java.util.concurrent.html#TransferQueue" class="hiddenlink" target="rightframe"><b><i>TransferQueue</i></b></A><br>
+<A HREF="pkg_android.transition.html#Transition.EpicenterCallback" class="hiddenlink" target="rightframe"><b>Transition.EpicenterCallback</b></A><br>
+<A HREF="pkg_android.transition.html#TransitionPropagation" class="hiddenlink" target="rightframe"><b>TransitionPropagation</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan" class="hiddenlink" target="rightframe"><b>TtsSpan</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.Builder" class="hiddenlink" target="rightframe"><b>TtsSpan.Builder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.CardinalBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.CardinalBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.DateBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.DateBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.DecimalBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.DecimalBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.DigitsBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.DigitsBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.ElectronicBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.ElectronicBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.FractionBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.FractionBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.MeasureBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.MeasureBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.MoneyBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.MoneyBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.OrdinalBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.OrdinalBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.SemioticClassBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.SemioticClassBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.TelephoneBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.TelephoneBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.TextBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.TextBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.TimeBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.TimeBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.VerbatimBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.VerbatimBuilder</b></A><br>
+<A HREF="pkg_android.animation.html#TypeConverter" class="hiddenlink" target="rightframe"><b>TypeConverter</b></A><br>
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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="#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="#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="pkg_android.hardware.usb.html#UsbConfiguration" class="hiddenlink" target="rightframe"><b>UsbConfiguration</b></A><br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.graphics.drawable.html#VectorDrawable" class="hiddenlink" target="rightframe"><b>VectorDrawable</b></A><br>
+<A HREF="pkg_android.view.html#ViewAnimationUtils" class="hiddenlink" target="rightframe"><b>ViewAnimationUtils</b></A><br>
+<A HREF="pkg_android.view.html#ViewOutlineProvider" class="hiddenlink" target="rightframe"><b>ViewOutlineProvider</b></A><br>
+<A HREF="pkg_android.hardware.display.html#VirtualDisplay.Callback" class="hiddenlink" target="rightframe"><b>VirtualDisplay.Callback</b></A><br>
+<A HREF="pkg_android.transition.html#VisibilityPropagation" class="hiddenlink" target="rightframe"><b>VisibilityPropagation</b></A><br>
+<A HREF="pkg_android.speech.tts.html#Voice" class="hiddenlink" target="rightframe"><b>Voice</b></A><br>
+<A HREF="pkg_android.media.html#VolumeProvider" class="hiddenlink" target="rightframe"><b>VolumeProvider</b></A><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#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="#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">
+<A HREF="pkg_android.webkit.html#WebChromeClient.FileChooserParams" class="hiddenlink" target="rightframe"><b>WebChromeClient.FileChooserParams</b></A><br>
+<A HREF="pkg_android.webkit.html#WebResourceRequest" class="hiddenlink" target="rightframe"><b><i>WebResourceRequest</i></b></A><br>
+<A HREF="pkg_android.net.wifi.html#WifiManager.WpsCallback" class="hiddenlink" target="rightframe"><b>WifiManager.WpsCallback</b></A><br>
+<A HREF="pkg_android.view.html#WindowAnimationFrameStats" class="hiddenlink" target="rightframe"><b>WindowAnimationFrameStats</b></A><br>
+<A HREF="pkg_android.view.html#WindowContentFrameStats" class="hiddenlink" target="rightframe"><b>WindowContentFrameStats</b></A><br>
+<script src="//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/21/changes/classes_index_all.html b/docs/html/sdk/api_diff/21/changes/classes_index_all.html
new file mode 100644
index 0000000..9f22280
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/classes_index_all.html
@@ -0,0 +1,1216 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#X"><font size="-2">X</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.AbsListView.html" class="hiddenlink" target="rightframe">AbsListView</A><br>
+<A HREF="android.widget.AbsoluteLayout.html" class="hiddenlink" target="rightframe">AbsoluteLayout</A><br>
+<A HREF="android.widget.AbsSeekBar.html" class="hiddenlink" target="rightframe">AbsSeekBar</A><br>
+<A HREF="android.widget.AbsSpinner.html" class="hiddenlink" target="rightframe">AbsSpinner</A><br>
+<A HREF="java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html" class="hiddenlink" target="rightframe">AbstractQueuedLongSynchronizer</A><br>
+<A HREF="java.util.concurrent.locks.AbstractQueuedSynchronizer.html" class="hiddenlink" target="rightframe">AbstractQueuedSynchronizer</A><br>
+<A HREF="android.view.accessibility.AccessibilityEvent.html" class="hiddenlink" target="rightframe">AccessibilityEvent</A><br>
+<A HREF="android.view.accessibility.AccessibilityNodeInfo.html" class="hiddenlink" target="rightframe">AccessibilityNodeInfo</A><br>
+<A HREF="pkg_android.view.accessibility.html#AccessibilityNodeInfo.AccessibilityAction" class="hiddenlink" target="rightframe"><b>AccessibilityNodeInfo.AccessibilityAction</b></A><br>
+<A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html" class="hiddenlink" target="rightframe">AccessibilityNodeInfo.CollectionInfo</A><br>
+<A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.html" class="hiddenlink" target="rightframe">AccessibilityNodeInfo.CollectionItemInfo</A><br>
+<A HREF="android.view.accessibility.AccessibilityNodeProvider.html" class="hiddenlink" target="rightframe">AccessibilityNodeProvider</A><br>
+<A HREF="android.accessibilityservice.AccessibilityService.html" class="hiddenlink" target="rightframe">AccessibilityService</A><br>
+<A HREF="android.accessibilityservice.AccessibilityServiceInfo.html" class="hiddenlink" target="rightframe">AccessibilityServiceInfo</A><br>
+<A HREF="pkg_android.view.accessibility.html#AccessibilityWindowInfo" class="hiddenlink" target="rightframe"><b>AccessibilityWindowInfo</b></A><br>
+<A HREF="android.accounts.AccountManager.html" class="hiddenlink" target="rightframe">AccountManager</A><br>
+<A HREF="android.app.ActionBar.html" class="hiddenlink" target="rightframe">ActionBar</A><br>
+<A HREF="android.app.ActionBar.OnNavigationListener.html" class="hiddenlink" target="rightframe"><i>ActionBar.OnNavigationListener</i></A><br>
+<A HREF="android.app.ActionBar.Tab.html" class="hiddenlink" target="rightframe">ActionBar.Tab</A><br>
+<A HREF="android.app.ActionBar.TabListener.html" class="hiddenlink" target="rightframe"><i>ActionBar.TabListener</i></A><br>
+<A HREF="pkg_android.widget.html#ActionMenuView" class="hiddenlink" target="rightframe"><b>ActionMenuView</b></A><br>
+<A HREF="pkg_android.widget.html#ActionMenuView.LayoutParams" class="hiddenlink" target="rightframe"><b>ActionMenuView.LayoutParams</b></A><br>
+<A HREF="pkg_android.widget.html#ActionMenuView.OnMenuItemClickListener" class="hiddenlink" target="rightframe"><b><i>ActionMenuView.OnMenuItemClickListener</i></b></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="pkg_android.app.html#ActivityManager.AppTask" class="hiddenlink" target="rightframe"><b>ActivityManager.AppTask</b></A><br>
+<A HREF="android.app.ActivityManager.RecentTaskInfo.html" class="hiddenlink" target="rightframe">ActivityManager.RecentTaskInfo</A><br>
+<A HREF="android.app.ActivityManager.RunningAppProcessInfo.html" class="hiddenlink" target="rightframe">ActivityManager.RunningAppProcessInfo</A><br>
+<A HREF="pkg_android.app.html#ActivityManager.TaskDescription" class="hiddenlink" target="rightframe"><b>ActivityManager.TaskDescription</b></A><br>
+<A HREF="android.app.ActivityOptions.html" class="hiddenlink" target="rightframe">ActivityOptions</A><br>
+<A HREF="android.widget.AdapterView.html" class="hiddenlink" target="rightframe">AdapterView</A><br>
+<A HREF="android.widget.AdapterViewAnimator.html" class="hiddenlink" target="rightframe">AdapterViewAnimator</A><br>
+<A HREF="android.widget.AdapterViewFlipper.html" class="hiddenlink" target="rightframe">AdapterViewFlipper</A><br>
+<A HREF="android.app.AlarmManager.html" class="hiddenlink" target="rightframe">AlarmManager</A><br>
+<A HREF="pkg_android.app.html#AlarmManager.AlarmClockInfo" class="hiddenlink" target="rightframe"><b>AlarmManager.AlarmClockInfo</b></A><br>
+<A HREF="android.app.AlertDialog.Builder.html" class="hiddenlink" target="rightframe">AlertDialog.Builder</A><br>
+<A HREF="android.renderscript.Allocation.html" class="hiddenlink" target="rightframe">Allocation</A><br>
+<A HREF="android.widget.AnalogClock.html" class="hiddenlink" target="rightframe">AnalogClock</A><br>
+<A HREF="pkg_android.graphics.drawable.html#AnimatedStateListDrawable" class="hiddenlink" target="rightframe"><b>AnimatedStateListDrawable</b></A><br>
+<A HREF="pkg_android.graphics.drawable.html#AnimatedVectorDrawable" class="hiddenlink" target="rightframe"><b>AnimatedVectorDrawable</b></A><br>
+<A HREF="android.animation.AnimatorInflater.html" class="hiddenlink" target="rightframe">AnimatorInflater</A><br>
+<A HREF="android.content.pm.ApplicationInfo.html" class="hiddenlink" target="rightframe">ApplicationInfo</A><br>
+<A HREF="android.app.AppOpsManager.html" class="hiddenlink" target="rightframe">AppOpsManager</A><br>
+<A HREF="android.appwidget.AppWidgetHost.html" class="hiddenlink" target="rightframe">AppWidgetHost</A><br>
+<A HREF="android.appwidget.AppWidgetManager.html" class="hiddenlink" target="rightframe">AppWidgetManager</A><br>
+<A HREF="android.appwidget.AppWidgetProvider.html" class="hiddenlink" target="rightframe">AppWidgetProvider</A><br>
+<A HREF="android.appwidget.AppWidgetProviderInfo.html" class="hiddenlink" target="rightframe">AppWidgetProviderInfo</A><br>
+<A HREF="pkg_android.transition.html#ArcMotion" class="hiddenlink" target="rightframe"><b>ArcMotion</b></A><br>
+<A HREF="android.util.ArrayMap.html" class="hiddenlink" target="rightframe">ArrayMap</A><br>
+<A HREF="android.content.res.AssetManager.html" class="hiddenlink" target="rightframe">AssetManager</A><br>
+<A HREF="android.content.res.AssetManager.AssetInputStream.html" class="hiddenlink" target="rightframe">AssetManager.AssetInputStream</A><br>
+<A HREF="pkg_android.media.html#AudioAttributes" class="hiddenlink" target="rightframe"><b>AudioAttributes</b></A><br>
+<A HREF="pkg_android.media.html#AudioAttributes.Builder" class="hiddenlink" target="rightframe"><b>AudioAttributes.Builder</b></A><br>
+<A HREF="android.media.AudioFormat.html" class="hiddenlink" target="rightframe">AudioFormat</A><br>
+<A HREF="pkg_android.media.html#AudioFormat.Builder" class="hiddenlink" target="rightframe"><b>AudioFormat.Builder</b></A><br>
+<A HREF="android.media.AudioManager.html" class="hiddenlink" target="rightframe">AudioManager</A><br>
+<A HREF="android.media.AudioTrack.html" class="hiddenlink" target="rightframe">AudioTrack</A><br>
+<A HREF="android.widget.AutoCompleteTextView.html" class="hiddenlink" target="rightframe">AutoCompleteTextView</A><br>
+<A HREF="android.transition.AutoTransition.html" class="hiddenlink" target="rightframe">AutoTransition</A><br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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="#X"><font size="-2">X</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.backup.BackupAgent.html" class="hiddenlink" target="rightframe">BackupAgent</A><br>
+<A HREF="pkg_android.os.html#BaseBundle" class="hiddenlink" target="rightframe"><b>BaseBundle</b></A><br>
+<A HREF="android.view.inputmethod.BaseInputConnection.html" class="hiddenlink" target="rightframe">BaseInputConnection</A><br>
+<A HREF="android.os.BatteryManager.html" class="hiddenlink" target="rightframe">BatteryManager</A><br>
+<A HREF="pkg_android.animation.html#BidirectionalTypeConverter" class="hiddenlink" target="rightframe"><b>BidirectionalTypeConverter</b></A><br>
+<A HREF="android.graphics.BitmapFactory.Options.html" class="hiddenlink" target="rightframe">BitmapFactory.Options</A><br>
+<A HREF="android.bluetooth.BluetoothAdapter.html" class="hiddenlink" target="rightframe">BluetoothAdapter</A><br>
+<A HREF="android.bluetooth.BluetoothGatt.html" class="hiddenlink" target="rightframe">BluetoothGatt</A><br>
+<A HREF="android.bluetooth.BluetoothGattCallback.html" class="hiddenlink" target="rightframe">BluetoothGattCallback</A><br>
+<A HREF="android.bluetooth.BluetoothGattServerCallback.html" class="hiddenlink" target="rightframe">BluetoothGattServerCallback</A><br>
+<A HREF="android.os.Build.html" class="hiddenlink" target="rightframe">Build</A><br>
+<A HREF="android.os.Build.VERSION_CODES.html" class="hiddenlink" target="rightframe">Build.VERSION_CODES</A><br>
+<A HREF="android.os.Bundle.html" class="hiddenlink" target="rightframe">Bundle</A><br>
+<A HREF="android.widget.Button.html" class="hiddenlink" target="rightframe">Button</A><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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="#X"><font size="-2">X</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.CalendarView.html" class="hiddenlink" target="rightframe">CalendarView</A><br>
+<A HREF="android.provider.CallLog.Calls.html" class="hiddenlink" target="rightframe">CallLog.Calls</A><br>
+<A HREF="android.media.CamcorderProfile.html" class="hiddenlink" target="rightframe">CamcorderProfile</A><br>
+<A HREF="android.hardware.Camera.html" class="hiddenlink" target="rightframe">Camera</A><br>
+<A HREF="android.hardware.Camera.Area.html" class="hiddenlink" target="rightframe">Camera.Area</A><br>
+<A HREF="android.hardware.Camera.AutoFocusCallback.html" class="hiddenlink" target="rightframe"><i>Camera.AutoFocusCallback</i></A><br>
+<A HREF="android.hardware.Camera.AutoFocusMoveCallback.html" class="hiddenlink" target="rightframe"><i>Camera.AutoFocusMoveCallback</i></A><br>
+<A HREF="android.hardware.Camera.CameraInfo.html" class="hiddenlink" target="rightframe">Camera.CameraInfo</A><br>
+<A HREF="android.hardware.Camera.ErrorCallback.html" class="hiddenlink" target="rightframe"><i>Camera.ErrorCallback</i></A><br>
+<A HREF="android.hardware.Camera.Face.html" class="hiddenlink" target="rightframe">Camera.Face</A><br>
+<A HREF="android.hardware.Camera.FaceDetectionListener.html" class="hiddenlink" target="rightframe"><i>Camera.FaceDetectionListener</i></A><br>
+<A HREF="android.hardware.Camera.OnZoomChangeListener.html" class="hiddenlink" target="rightframe"><i>Camera.OnZoomChangeListener</i></A><br>
+<A HREF="android.hardware.Camera.Parameters.html" class="hiddenlink" target="rightframe">Camera.Parameters</A><br>
+<A HREF="android.hardware.Camera.PictureCallback.html" class="hiddenlink" target="rightframe"><i>Camera.PictureCallback</i></A><br>
+<A HREF="android.hardware.Camera.PreviewCallback.html" class="hiddenlink" target="rightframe"><i>Camera.PreviewCallback</i></A><br>
+<A HREF="android.hardware.Camera.ShutterCallback.html" class="hiddenlink" target="rightframe"><i>Camera.ShutterCallback</i></A><br>
+<A HREF="android.hardware.Camera.Size.html" class="hiddenlink" target="rightframe">Camera.Size</A><br>
+<A HREF="android.graphics.Canvas.html" class="hiddenlink" target="rightframe">Canvas</A><br>
+<A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html" class="hiddenlink" target="rightframe">CaptioningManager.CaptionStyle</A><br>
+<A HREF="android.nfc.cardemulation.CardEmulation.html" class="hiddenlink" target="rightframe">CardEmulation</A><br>
+<A HREF="android.transition.ChangeBounds.html" class="hiddenlink" target="rightframe">ChangeBounds</A><br>
+<A HREF="pkg_android.transition.html#ChangeClipBounds" class="hiddenlink" target="rightframe"><b>ChangeClipBounds</b></A><br>
+<A HREF="pkg_android.transition.html#ChangeImageTransform" class="hiddenlink" target="rightframe"><b>ChangeImageTransform</b></A><br>
+<A HREF="pkg_android.transition.html#ChangeTransform" class="hiddenlink" target="rightframe"><b>ChangeTransform</b></A><br>
+<A HREF="android.widget.CheckBox.html" class="hiddenlink" target="rightframe">CheckBox</A><br>
+<A HREF="android.preference.CheckBoxPreference.html" class="hiddenlink" target="rightframe">CheckBoxPreference</A><br>
+<A HREF="android.widget.CheckedTextView.html" class="hiddenlink" target="rightframe">CheckedTextView</A><br>
+<A HREF="android.widget.Chronometer.html" class="hiddenlink" target="rightframe">Chronometer</A><br>
+<A HREF="pkg_android.transition.html#CircularPropagation" class="hiddenlink" target="rightframe"><b>CircularPropagation</b></A><br>
+<A HREF="pkg_android.webkit.html#ClientCertRequest" class="hiddenlink" target="rightframe"><b>ClientCertRequest</b></A><br>
+<A HREF="android.content.res.ColorStateList.html" class="hiddenlink" target="rightframe">ColorStateList</A><br>
+<A HREF="android.widget.CompoundButton.html" class="hiddenlink" target="rightframe">CompoundButton</A><br>
+<A HREF="pkg_java.util.concurrent.html#ConcurrentLinkedDeque" class="hiddenlink" target="rightframe"><b>ConcurrentLinkedDeque</b></A><br>
+<A HREF="android.net.ConnectivityManager.html" class="hiddenlink" target="rightframe">ConnectivityManager</A><br>
+<A HREF="pkg_android.net.html#ConnectivityManager.NetworkCallback" class="hiddenlink" target="rightframe"><b>ConnectivityManager.NetworkCallback</b></A><br>
+<A HREF="pkg_android.net.html#ConnectivityManager.OnNetworkActiveListener" class="hiddenlink" target="rightframe"><b><i>ConnectivityManager.OnNetworkActiveListener</i></b></A><br>
+<A HREF="android.provider.ContactsContract.html" class="hiddenlink" target="rightframe">ContactsContract</A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Callable" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Callable</b></A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Contactables</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Email</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Event</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.GroupMembership</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Identity</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Im</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Nickname</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Note</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Organization</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Phone</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Photo</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Relation</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.SipAddress</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.StructuredName</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.StructuredPostal</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Website</A><br>
+<A HREF="android.provider.ContactsContract.ContactOptionsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.ContactOptionsColumns</i></A><br>
+<A HREF="android.provider.ContactsContract.Contacts.html" class="hiddenlink" target="rightframe">ContactsContract.Contacts</A><br>
+<A HREF="android.provider.ContactsContract.Contacts.Entity.html" class="hiddenlink" target="rightframe">ContactsContract.Contacts.Entity</A><br>
+<A HREF="android.provider.ContactsContract.Contacts.StreamItems.html" class="hiddenlink" target="rightframe">ContactsContract.Contacts.StreamItems</A><br>
+<A HREF="android.provider.ContactsContract.ContactsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.ContactsColumns</i></A><br>
+<A HREF="android.provider.ContactsContract.Data.html" class="hiddenlink" target="rightframe">ContactsContract.Data</A><br>
+<A HREF="android.provider.ContactsContract.DataColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.DataColumns</i></A><br>
+<A HREF="android.provider.ContactsContract.GroupsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.GroupsColumns</i></A><br>
+<A HREF="android.provider.ContactsContract.PhoneLookup.html" class="hiddenlink" target="rightframe">ContactsContract.PhoneLookup</A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.PinnedPositions" class="hiddenlink" target="rightframe"><b>ContactsContract.PinnedPositions</b></A><br>
+<A HREF="android.provider.ContactsContract.QuickContact.html" class="hiddenlink" target="rightframe">ContactsContract.QuickContact</A><br>
+<A HREF="android.provider.ContactsContract.RawContacts.StreamItems.html" class="hiddenlink" target="rightframe">ContactsContract.RawContacts.StreamItems</A><br>
+<A HREF="android.provider.ContactsContract.RawContactsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.RawContactsColumns</i></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.SearchSnippets" class="hiddenlink" target="rightframe"><b>ContactsContract.SearchSnippets</b></A><br>
+<A HREF="android.provider.ContactsContract.StreamItemPhotos.html" class="hiddenlink" target="rightframe">ContactsContract.StreamItemPhotos</A><br>
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.StreamItemPhotosColumns</i></A><br>
+<A HREF="android.provider.ContactsContract.StreamItems.html" class="hiddenlink" target="rightframe">ContactsContract.StreamItems</A><br>
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html" class="hiddenlink" target="rightframe">ContactsContract.StreamItems.StreamItemPhotos</A><br>
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.StreamItemsColumns</i></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.webkit.CookieManager.html" class="hiddenlink" target="rightframe">CookieManager</A><br>
+<A HREF="android.webkit.CookieSyncManager.html" class="hiddenlink" target="rightframe">CookieSyncManager</A><br>
+<A HREF="pkg_android.view.inputmethod.html#CursorAnchorInfo" class="hiddenlink" target="rightframe"><b>CursorAnchorInfo</b></A><br>
+<A HREF="pkg_android.view.inputmethod.html#CursorAnchorInfo.Builder" class="hiddenlink" target="rightframe"><b>CursorAnchorInfo.Builder</b></A><br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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="#X"><font size="-2">X</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.DatePicker.html" class="hiddenlink" target="rightframe">DatePicker</A><br>
+<A HREF="android.os.Debug.html" class="hiddenlink" target="rightframe">Debug</A><br>
+<A HREF="android.app.admin.DeviceAdminReceiver.html" class="hiddenlink" target="rightframe">DeviceAdminReceiver</A><br>
+<A HREF="android.app.admin.DevicePolicyManager.html" class="hiddenlink" target="rightframe">DevicePolicyManager</A><br>
+<A HREF="android.app.Dialog.html" class="hiddenlink" target="rightframe">Dialog</A><br>
+<A HREF="android.preference.DialogPreference.html" class="hiddenlink" target="rightframe">DialogPreference</A><br>
+<A HREF="android.view.Display.html" class="hiddenlink" target="rightframe">Display</A><br>
+<A HREF="android.hardware.display.DisplayManager.html" class="hiddenlink" target="rightframe">DisplayManager</A><br>
+<A HREF="android.util.DisplayMetrics.html" class="hiddenlink" target="rightframe">DisplayMetrics</A><br>
+<A HREF="android.provider.DocumentsContract.html" class="hiddenlink" target="rightframe">DocumentsContract</A><br>
+<A HREF="android.provider.DocumentsContract.Document.html" class="hiddenlink" target="rightframe">DocumentsContract.Document</A><br>
+<A HREF="android.provider.DocumentsContract.Root.html" class="hiddenlink" target="rightframe">DocumentsContract.Root</A><br>
+<A HREF="android.provider.DocumentsProvider.html" class="hiddenlink" target="rightframe">DocumentsProvider</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 HREF="android.service.dreams.DreamService.html" class="hiddenlink" target="rightframe">DreamService</A><br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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="#X"><font size="-2">X</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.EdgeEffect.html" class="hiddenlink" target="rightframe">EdgeEffect</A><br>
+<A HREF="android.widget.EditText.html" class="hiddenlink" target="rightframe">EditText</A><br>
+<A HREF="android.preference.EditTextPreference.html" class="hiddenlink" target="rightframe">EditTextPreference</A><br>
+<A HREF="android.opengl.EGLObjectHandle.html" class="hiddenlink" target="rightframe">EGLObjectHandle</A><br>
+<A HREF="android.os.Environment.html" class="hiddenlink" target="rightframe">Environment</A><br>
+<A HREF="android.widget.ExpandableListView.html" class="hiddenlink" target="rightframe">ExpandableListView</A><br>
+<A HREF="pkg_android.transition.html#Explode" class="hiddenlink" target="rightframe"><b>Explode</b></A><br>
+<A HREF="android.inputmethodservice.ExtractEditText.html" class="hiddenlink" target="rightframe">ExtractEditText</A><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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="#X"><font size="-2">X</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.transition.Fade.html" class="hiddenlink" target="rightframe">Fade</A><br>
+<A HREF="pkg_android.content.pm.html#FeatureGroupInfo" class="hiddenlink" target="rightframe"><b>FeatureGroupInfo</b></A><br>
+<A HREF="pkg_android.animation.html#FloatArrayEvaluator" class="hiddenlink" target="rightframe"><b>FloatArrayEvaluator</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#ForkJoinPool" class="hiddenlink" target="rightframe"><b>ForkJoinPool</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#ForkJoinPool.ForkJoinWorkerThreadFactory" class="hiddenlink" target="rightframe"><b><i>ForkJoinPool.ForkJoinWorkerThreadFactory</i></b></A><br>
+<A HREF="pkg_java.util.concurrent.html#ForkJoinPool.ManagedBlocker" class="hiddenlink" target="rightframe"><b><i>ForkJoinPool.ManagedBlocker</i></b></A><br>
+<A HREF="pkg_java.util.concurrent.html#ForkJoinTask" class="hiddenlink" target="rightframe"><b>ForkJoinTask</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#ForkJoinWorkerThread" class="hiddenlink" target="rightframe"><b>ForkJoinWorkerThread</b></A><br>
+<A HREF="android.app.Fragment.html" class="hiddenlink" target="rightframe">Fragment</A><br>
+<A HREF="android.app.FragmentBreadCrumbs.html" class="hiddenlink" target="rightframe">FragmentBreadCrumbs</A><br>
+<A HREF="android.app.FragmentTransaction.html" class="hiddenlink" target="rightframe">FragmentTransaction</A><br>
+<A HREF="android.widget.FrameLayout.html" class="hiddenlink" target="rightframe">FrameLayout</A><br>
+<A HREF="pkg_android.view.html#FrameStats" class="hiddenlink" target="rightframe"><b>FrameStats</b></A><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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="#X"><font size="-2">X</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.Gallery.html" class="hiddenlink" target="rightframe">Gallery</A><br>
+<A HREF="android.gesture.GestureOverlayView.html" class="hiddenlink" target="rightframe">GestureOverlayView</A><br>
+<A HREF="android.opengl.GLES20.html" class="hiddenlink" target="rightframe">GLES20</A><br>
+<A HREF="pkg_android.opengl.html#GLES31" class="hiddenlink" target="rightframe"><b>GLES31</b></A><br>
+<A HREF="pkg_android.opengl.html#GLES31Ext" class="hiddenlink" target="rightframe"><b>GLES31Ext</b></A><br>
+<A HREF="pkg_android.opengl.html#GLES31Ext.DebugProcKHR" class="hiddenlink" target="rightframe"><b><i>GLES31Ext.DebugProcKHR</i></b></A><br>
+<A HREF="android.graphics.drawable.GradientDrawable.html" class="hiddenlink" target="rightframe">GradientDrawable</A><br>
+<A HREF="android.widget.GridLayout.html" class="hiddenlink" target="rightframe">GridLayout</A><br>
+<A HREF="android.widget.GridView.html" class="hiddenlink" target="rightframe">GridView</A><br>
+<A NAME="H"></A>
+<br><font size="+2">H</font>&nbsp;
+<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="#X"><font size="-2">X</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.HapticFeedbackConstants.html" class="hiddenlink" target="rightframe">HapticFeedbackConstants</A><br>
+<A HREF="android.widget.HorizontalScrollView.html" class="hiddenlink" target="rightframe">HorizontalScrollView</A><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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="#X"><font size="-2">X</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.telephony.html#IccOpenLogicalChannelResponse" class="hiddenlink" target="rightframe"><b>IccOpenLogicalChannelResponse</b></A><br>
+<A HREF="pkg_java.util.html#IllformedLocaleException" class="hiddenlink" target="rightframe"><b>IllformedLocaleException</b></A><br>
+<A HREF="android.media.Image.html" class="hiddenlink" target="rightframe">Image</A><br>
+<A HREF="android.widget.ImageButton.html" class="hiddenlink" target="rightframe">ImageButton</A><br>
+<A HREF="android.graphics.ImageFormat.html" class="hiddenlink" target="rightframe">ImageFormat</A><br>
+<A HREF="android.widget.ImageView.html" class="hiddenlink" target="rightframe">ImageView</A><br>
+<A HREF="android.view.inputmethod.InputConnection.html" class="hiddenlink" target="rightframe"><i>InputConnection</i></A><br>
+<A HREF="android.view.inputmethod.InputConnectionWrapper.html" class="hiddenlink" target="rightframe">InputConnectionWrapper</A><br>
+<A HREF="android.view.InputDevice.html" class="hiddenlink" target="rightframe">InputDevice</A><br>
+<A HREF="android.text.InputFilter.LengthFilter.html" class="hiddenlink" target="rightframe">InputFilter.LengthFilter</A><br>
+<A HREF="android.view.inputmethod.InputMethodManager.html" class="hiddenlink" target="rightframe">InputMethodManager</A><br>
+<A HREF="android.inputmethodservice.InputMethodService.html" class="hiddenlink" target="rightframe">InputMethodService</A><br>
+<A HREF="android.inputmethodservice.InputMethodService.InputMethodSessionImpl.html" class="hiddenlink" target="rightframe">InputMethodService.InputMethodSessionImpl</A><br>
+<A HREF="android.view.inputmethod.InputMethodSession.html" class="hiddenlink" target="rightframe"><i>InputMethodSession</i></A><br>
+<A HREF="android.app.Instrumentation.html" class="hiddenlink" target="rightframe">Instrumentation</A><br>
+<A HREF="android.content.pm.InstrumentationInfo.html" class="hiddenlink" target="rightframe">InstrumentationInfo</A><br>
+<A HREF="pkg_android.animation.html#IntArrayEvaluator" class="hiddenlink" target="rightframe"><b>IntArrayEvaluator</b></A><br>
+<A HREF="android.content.Intent.html" class="hiddenlink" target="rightframe">Intent</A><br>
+<A HREF="pkg_android.net.html#IpPrefix" class="hiddenlink" target="rightframe"><b>IpPrefix</b></A><br>
+<A NAME="K"></A>
+<br><font size="+2">K</font>&nbsp;
+<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="#X"><font size="-2">X</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.inputmethodservice.KeyboardView.html" class="hiddenlink" target="rightframe">KeyboardView</A><br>
+<A HREF="android.view.KeyEvent.html" class="hiddenlink" target="rightframe">KeyEvent</A><br>
+<A HREF="android.app.KeyguardManager.html" class="hiddenlink" target="rightframe">KeyguardManager</A><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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="#X"><font size="-2">X</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#LauncherActivityInfo" class="hiddenlink" target="rightframe"><b>LauncherActivityInfo</b></A><br>
+<A HREF="pkg_android.content.pm.html#LauncherApps" class="hiddenlink" target="rightframe"><b>LauncherApps</b></A><br>
+<A HREF="pkg_android.content.pm.html#LauncherApps.Callback" class="hiddenlink" target="rightframe"><b>LauncherApps.Callback</b></A><br>
+<A HREF="android.graphics.drawable.LayerDrawable.html" class="hiddenlink" target="rightframe">LayerDrawable</A><br>
+<A HREF="android.graphics.LayerRasterizer.html" class="hiddenlink" target="rightframe">LayerRasterizer</A><br>
+<A HREF="android.widget.LinearLayout.html" class="hiddenlink" target="rightframe">LinearLayout</A><br>
+<A HREF="pkg_android.net.html#LinkAddress" class="hiddenlink" target="rightframe"><b>LinkAddress</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#LinkedTransferQueue" class="hiddenlink" target="rightframe"><b>LinkedTransferQueue</b></A><br>
+<A HREF="pkg_android.net.html#LinkProperties" class="hiddenlink" target="rightframe"><b>LinkProperties</b></A><br>
+<A HREF="android.preference.ListPreference.html" class="hiddenlink" target="rightframe">ListPreference</A><br>
+<A HREF="android.widget.ListView.html" class="hiddenlink" target="rightframe">ListView</A><br>
+<A HREF="java.util.Locale.html" class="hiddenlink" target="rightframe">Locale</A><br>
+<A HREF="pkg_java.util.html#Locale.Builder" class="hiddenlink" target="rightframe"><b>Locale.Builder</b></A><br>
+<A HREF="android.util.LruCache.html" class="hiddenlink" target="rightframe">LruCache</A><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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="#X"><font size="-2">X</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.graphics.Matrix.html" class="hiddenlink" target="rightframe">Matrix</A><br>
+<A HREF="android.media.MediaCodec.html" class="hiddenlink" target="rightframe">MediaCodec</A><br>
+<A HREF="pkg_android.media.html#MediaCodec.Callback" class="hiddenlink" target="rightframe"><b>MediaCodec.Callback</b></A><br>
+<A HREF="pkg_android.media.html#MediaCodec.CodecException" class="hiddenlink" target="rightframe"><b>MediaCodec.CodecException</b></A><br>
+<A HREF="android.media.MediaCodec.CryptoException.html" class="hiddenlink" target="rightframe">MediaCodec.CryptoException</A><br>
+<A HREF="pkg_android.media.html#MediaCodecInfo.AudioCapabilities" class="hiddenlink" target="rightframe"><b>MediaCodecInfo.AudioCapabilities</b></A><br>
+<A HREF="android.media.MediaCodecInfo.CodecCapabilities.html" class="hiddenlink" target="rightframe">MediaCodecInfo.CodecCapabilities</A><br>
+<A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html" class="hiddenlink" target="rightframe">MediaCodecInfo.CodecProfileLevel</A><br>
+<A HREF="pkg_android.media.html#MediaCodecInfo.EncoderCapabilities" class="hiddenlink" target="rightframe"><b>MediaCodecInfo.EncoderCapabilities</b></A><br>
+<A HREF="pkg_android.media.html#MediaCodecInfo.VideoCapabilities" class="hiddenlink" target="rightframe"><b>MediaCodecInfo.VideoCapabilities</b></A><br>
+<A HREF="android.media.MediaCodecList.html" class="hiddenlink" target="rightframe">MediaCodecList</A><br>
+<A HREF="pkg_android.media.html#MediaDescription" class="hiddenlink" target="rightframe"><b>MediaDescription</b></A><br>
+<A HREF="pkg_android.media.html#MediaDescription.Builder" class="hiddenlink" target="rightframe"><b>MediaDescription.Builder</b></A><br>
+<A HREF="android.media.MediaDrm.html" class="hiddenlink" target="rightframe">MediaDrm</A><br>
+<A HREF="pkg_android.media.html#MediaDrm.MediaDrmStateException" class="hiddenlink" target="rightframe"><b>MediaDrm.MediaDrmStateException</b></A><br>
+<A HREF="android.media.MediaFormat.html" class="hiddenlink" target="rightframe">MediaFormat</A><br>
+<A HREF="pkg_android.media.html#MediaMetadata" class="hiddenlink" target="rightframe"><b>MediaMetadata</b></A><br>
+<A HREF="pkg_android.media.html#MediaMetadata.Builder" class="hiddenlink" target="rightframe"><b>MediaMetadata.Builder</b></A><br>
+<A HREF="android.media.MediaMetadataEditor.html" class="hiddenlink" target="rightframe">MediaMetadataEditor</A><br>
+<A HREF="android.media.MediaMuxer.OutputFormat.html" class="hiddenlink" target="rightframe">MediaMuxer.OutputFormat</A><br>
+<A HREF="android.media.MediaPlayer.html" class="hiddenlink" target="rightframe">MediaPlayer</A><br>
+<A HREF="android.media.MediaPlayer.TrackInfo.html" class="hiddenlink" target="rightframe">MediaPlayer.TrackInfo</A><br>
+<A HREF="android.media.MediaRecorder.html" class="hiddenlink" target="rightframe">MediaRecorder</A><br>
+<A HREF="android.media.MediaRecorder.AudioEncoder.html" class="hiddenlink" target="rightframe">MediaRecorder.AudioEncoder</A><br>
+<A HREF="android.media.MediaRecorder.OutputFormat.html" class="hiddenlink" target="rightframe">MediaRecorder.OutputFormat</A><br>
+<A HREF="android.media.MediaRecorder.VideoEncoder.html" class="hiddenlink" target="rightframe">MediaRecorder.VideoEncoder</A><br>
+<A HREF="android.media.MediaRecorder.VideoSource.html" class="hiddenlink" target="rightframe">MediaRecorder.VideoSource</A><br>
+<A HREF="android.app.MediaRouteButton.html" class="hiddenlink" target="rightframe">MediaRouteButton</A><br>
+<A HREF="android.provider.MediaStore.html" class="hiddenlink" target="rightframe">MediaStore</A><br>
+<A HREF="android.provider.MediaStore.Audio.Media.html" class="hiddenlink" target="rightframe">MediaStore.Audio.Media</A><br>
+<A HREF="pkg_android.provider.html#MediaStore.Audio.Radio" class="hiddenlink" target="rightframe"><b>MediaStore.Audio.Radio</b></A><br>
+<A HREF="android.os.Message.html" class="hiddenlink" target="rightframe">Message</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 HREF="android.widget.MultiAutoCompleteTextView.html" class="hiddenlink" target="rightframe">MultiAutoCompleteTextView</A><br>
+<A HREF="android.preference.MultiSelectListPreference.html" class="hiddenlink" target="rightframe">MultiSelectListPreference</A><br>
+<A HREF="pkg_android.util.html#MutableBoolean" class="hiddenlink" target="rightframe"><b>MutableBoolean</b></A><br>
+<A HREF="pkg_android.util.html#MutableByte" class="hiddenlink" target="rightframe"><b>MutableByte</b></A><br>
+<A HREF="pkg_android.util.html#MutableChar" class="hiddenlink" target="rightframe"><b>MutableChar</b></A><br>
+<A HREF="pkg_android.util.html#MutableDouble" class="hiddenlink" target="rightframe"><b>MutableDouble</b></A><br>
+<A HREF="pkg_android.util.html#MutableFloat" class="hiddenlink" target="rightframe"><b>MutableFloat</b></A><br>
+<A HREF="pkg_android.util.html#MutableInt" class="hiddenlink" target="rightframe"><b>MutableInt</b></A><br>
+<A HREF="pkg_android.util.html#MutableLong" class="hiddenlink" target="rightframe"><b>MutableLong</b></A><br>
+<A HREF="pkg_android.util.html#MutableShort" class="hiddenlink" target="rightframe"><b>MutableShort</b></A><br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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="#X"><font size="-2">X</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.nfc.NdefRecord.html" class="hiddenlink" target="rightframe">NdefRecord</A><br>
+<A HREF="pkg_android.net.html#Network" class="hiddenlink" target="rightframe"><b>Network</b></A><br>
+<A HREF="pkg_android.net.html#NetworkCapabilities" class="hiddenlink" target="rightframe"><b>NetworkCapabilities</b></A><br>
+<A HREF="pkg_android.net.html#NetworkRequest" class="hiddenlink" target="rightframe"><b>NetworkRequest</b></A><br>
+<A HREF="pkg_android.net.html#NetworkRequest.Builder" class="hiddenlink" target="rightframe"><b>NetworkRequest.Builder</b></A><br>
+<A HREF="android.nfc.NfcAdapter.html" class="hiddenlink" target="rightframe">NfcAdapter</A><br>
+<A HREF="android.app.Notification.html" class="hiddenlink" target="rightframe">Notification</A><br>
+<A HREF="android.app.Notification.Builder.html" class="hiddenlink" target="rightframe">Notification.Builder</A><br>
+<A HREF="pkg_android.app.html#Notification.MediaStyle" class="hiddenlink" target="rightframe"><b>Notification.MediaStyle</b></A><br>
+<A HREF="android.service.notification.NotificationListenerService.html" class="hiddenlink" target="rightframe">NotificationListenerService</A><br>
+<A HREF="pkg_android.service.notification.html#NotificationListenerService.Ranking" class="hiddenlink" target="rightframe"><b>NotificationListenerService.Ranking</b></A><br>
+<A HREF="pkg_android.service.notification.html#NotificationListenerService.RankingMap" class="hiddenlink" target="rightframe"><b>NotificationListenerService.RankingMap</b></A><br>
+<A HREF="android.net.nsd.NsdServiceInfo.html" class="hiddenlink" target="rightframe">NsdServiceInfo</A><br>
+<A HREF="android.widget.NumberPicker.html" class="hiddenlink" target="rightframe">NumberPicker</A><br>
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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="#X"><font size="-2">X</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.animation.ObjectAnimator.html" class="hiddenlink" target="rightframe">ObjectAnimator</A><br>
+<A HREF="pkg_android.graphics.html#Outline" class="hiddenlink" target="rightframe"><b>Outline</b></A><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#X"><font size="-2">X</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="pkg_android.content.pm.html#PackageInstaller" class="hiddenlink" target="rightframe"><b>PackageInstaller</b></A><br>
+<A HREF="pkg_android.content.pm.html#PackageInstaller.Session" class="hiddenlink" target="rightframe"><b>PackageInstaller.Session</b></A><br>
+<A HREF="pkg_android.content.pm.html#PackageInstaller.SessionCallback" class="hiddenlink" target="rightframe"><b>PackageInstaller.SessionCallback</b></A><br>
+<A HREF="pkg_android.content.pm.html#PackageInstaller.SessionInfo" class="hiddenlink" target="rightframe"><b>PackageInstaller.SessionInfo</b></A><br>
+<A HREF="pkg_android.content.pm.html#PackageInstaller.SessionParams" class="hiddenlink" target="rightframe"><b>PackageInstaller.SessionParams</b></A><br>
+<A HREF="android.content.pm.PackageManager.html" class="hiddenlink" target="rightframe">PackageManager</A><br>
+<A HREF="android.graphics.Paint.html" class="hiddenlink" target="rightframe">Paint</A><br>
+<A HREF="android.os.Parcel.html" class="hiddenlink" target="rightframe">Parcel</A><br>
+<A HREF="android.graphics.Path.html" class="hiddenlink" target="rightframe">Path</A><br>
+<A HREF="pkg_android.view.animation.html#PathInterpolator" class="hiddenlink" target="rightframe"><b>PathInterpolator</b></A><br>
+<A HREF="pkg_android.transition.html#PathMotion" class="hiddenlink" target="rightframe"><b>PathMotion</b></A><br>
+<A HREF="pkg_android.transition.html#PatternPathMotion" class="hiddenlink" target="rightframe"><b>PatternPathMotion</b></A><br>
+<A HREF="android.util.Patterns.html" class="hiddenlink" target="rightframe">Patterns</A><br>
+<A HREF="pkg_android.graphics.pdf.html#PdfRenderer" class="hiddenlink" target="rightframe"><b>PdfRenderer</b></A><br>
+<A HREF="pkg_android.graphics.pdf.html#PdfRenderer.Page" class="hiddenlink" target="rightframe"><b>PdfRenderer.Page</b></A><br>
+<A HREF="android.content.pm.PermissionInfo.html" class="hiddenlink" target="rightframe">PermissionInfo</A><br>
+<A HREF="pkg_android.webkit.html#PermissionRequest" class="hiddenlink" target="rightframe"><b>PermissionRequest</b></A><br>
+<A HREF="pkg_android.os.html#PersistableBundle" class="hiddenlink" target="rightframe"><b>PersistableBundle</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#Phaser" class="hiddenlink" target="rightframe"><b>Phaser</b></A><br>
+<A HREF="android.telephony.PhoneNumberFormattingTextWatcher.html" class="hiddenlink" target="rightframe">PhoneNumberFormattingTextWatcher</A><br>
+<A HREF="android.telephony.PhoneNumberUtils.html" class="hiddenlink" target="rightframe">PhoneNumberUtils</A><br>
+<A HREF="pkg_android.animation.html#PointFEvaluator" class="hiddenlink" target="rightframe"><b>PointFEvaluator</b></A><br>
+<A HREF="android.widget.PopupWindow.html" class="hiddenlink" target="rightframe">PopupWindow</A><br>
+<A HREF="android.os.PowerManager.html" class="hiddenlink" target="rightframe">PowerManager</A><br>
+<A HREF="android.os.PowerManager.WakeLock.html" class="hiddenlink" target="rightframe">PowerManager.WakeLock</A><br>
+<A HREF="android.preference.Preference.html" class="hiddenlink" target="rightframe">Preference</A><br>
+<A HREF="android.preference.PreferenceCategory.html" class="hiddenlink" target="rightframe">PreferenceCategory</A><br>
+<A HREF="android.preference.PreferenceGroup.html" class="hiddenlink" target="rightframe">PreferenceGroup</A><br>
+<A HREF="android.printservice.PrintService.html" class="hiddenlink" target="rightframe">PrintService</A><br>
+<A HREF="android.widget.ProgressBar.html" class="hiddenlink" target="rightframe">ProgressBar</A><br>
+<A HREF="android.animation.PropertyValuesHolder.html" class="hiddenlink" target="rightframe">PropertyValuesHolder</A><br>
+<A HREF="android.net.Proxy.html" class="hiddenlink" target="rightframe">Proxy</A><br>
+<A HREF="pkg_android.net.html#ProxyInfo" class="hiddenlink" target="rightframe"><b>ProxyInfo</b></A><br>
+<A HREF="pkg_android.net.html#PskKeyManager" class="hiddenlink" target="rightframe"><b>PskKeyManager</b></A><br>
+<A NAME="Q"></A>
+<br><font size="+2">Q</font>&nbsp;
+<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="#X"><font size="-2">X</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.QuickContactBadge.html" class="hiddenlink" target="rightframe">QuickContactBadge</A><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#X"><font size="-2">X</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.id.html" class="hiddenlink" target="rightframe">R.id</A><br>
+<A HREF="android.R.interpolator.html" class="hiddenlink" target="rightframe">R.interpolator</A><br>
+<A HREF="android.R.style.html" class="hiddenlink" target="rightframe">R.style</A><br>
+<A HREF="pkg_android.html#R.transition" class="hiddenlink" target="rightframe"><b>R.transition</b></A><br>
+<A HREF="android.widget.RadioButton.html" class="hiddenlink" target="rightframe">RadioButton</A><br>
+<A HREF="pkg_android.util.html#Range" class="hiddenlink" target="rightframe"><b>Range</b></A><br>
+<A HREF="android.graphics.Rasterizer.html" class="hiddenlink" target="rightframe">Rasterizer</A><br>
+<A HREF="android.media.Rating.html" class="hiddenlink" target="rightframe">Rating</A><br>
+<A HREF="android.widget.RatingBar.html" class="hiddenlink" target="rightframe">RatingBar</A><br>
+<A HREF="pkg_android.util.html#Rational" class="hiddenlink" target="rightframe"><b>Rational</b></A><br>
+<A HREF="android.animation.RectEvaluator.html" class="hiddenlink" target="rightframe">RectEvaluator</A><br>
+<A HREF="pkg_java.util.concurrent.html#RecursiveAction" class="hiddenlink" target="rightframe"><b>RecursiveAction</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#RecursiveTask" class="hiddenlink" target="rightframe"><b>RecursiveTask</b></A><br>
+<A HREF="android.widget.RelativeLayout.html" class="hiddenlink" target="rightframe">RelativeLayout</A><br>
+<A HREF="android.media.RemoteControlClient.html" class="hiddenlink" target="rightframe">RemoteControlClient</A><br>
+<A HREF="android.media.RemoteControlClient.MetadataEditor.html" class="hiddenlink" target="rightframe">RemoteControlClient.MetadataEditor</A><br>
+<A HREF="android.media.RemoteController.html" class="hiddenlink" target="rightframe">RemoteController</A><br>
+<A HREF="android.renderscript.RenderScript.html" class="hiddenlink" target="rightframe">RenderScript</A><br>
+<A HREF="android.content.res.Resources.html" class="hiddenlink" target="rightframe">Resources</A><br>
+<A HREF="android.content.res.Resources.Theme.html" class="hiddenlink" target="rightframe">Resources.Theme</A><br>
+<A HREF="android.content.RestrictionEntry.html" class="hiddenlink" target="rightframe">RestrictionEntry</A><br>
+<A HREF="pkg_android.content.html#RestrictionsManager" class="hiddenlink" target="rightframe"><b>RestrictionsManager</b></A><br>
+<A HREF="android.media.Ringtone.html" class="hiddenlink" target="rightframe">Ringtone</A><br>
+<A HREF="android.preference.RingtonePreference.html" class="hiddenlink" target="rightframe">RingtonePreference</A><br>
+<A HREF="pkg_android.graphics.drawable.html#RippleDrawable" class="hiddenlink" target="rightframe"><b>RippleDrawable</b></A><br>
+<A HREF="android.graphics.drawable.RotateDrawable.html" class="hiddenlink" target="rightframe">RotateDrawable</A><br>
+<A HREF="pkg_android.net.html#RouteInfo" class="hiddenlink" target="rightframe"><b>RouteInfo</b></A><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#X"><font size="-2">X</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.transition.Scene.html" class="hiddenlink" target="rightframe">Scene</A><br>
+<A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html" class="hiddenlink" target="rightframe">ScheduledThreadPoolExecutor</A><br>
+<A HREF="android.renderscript.ScriptC.html" class="hiddenlink" target="rightframe">ScriptC</A><br>
+<A HREF="android.renderscript.ScriptIntrinsic3DLUT.html" class="hiddenlink" target="rightframe">ScriptIntrinsic3DLUT</A><br>
+<A HREF="android.renderscript.ScriptIntrinsicBlend.html" class="hiddenlink" target="rightframe">ScriptIntrinsicBlend</A><br>
+<A HREF="android.renderscript.ScriptIntrinsicBlur.html" class="hiddenlink" target="rightframe">ScriptIntrinsicBlur</A><br>
+<A HREF="android.renderscript.ScriptIntrinsicColorMatrix.html" class="hiddenlink" target="rightframe">ScriptIntrinsicColorMatrix</A><br>
+<A HREF="android.renderscript.ScriptIntrinsicConvolve3x3.html" class="hiddenlink" target="rightframe">ScriptIntrinsicConvolve3x3</A><br>
+<A HREF="android.renderscript.ScriptIntrinsicConvolve5x5.html" class="hiddenlink" target="rightframe">ScriptIntrinsicConvolve5x5</A><br>
+<A HREF="android.renderscript.ScriptIntrinsicHistogram.html" class="hiddenlink" target="rightframe">ScriptIntrinsicHistogram</A><br>
+<A HREF="android.renderscript.ScriptIntrinsicLUT.html" class="hiddenlink" target="rightframe">ScriptIntrinsicLUT</A><br>
+<A HREF="android.widget.ScrollView.html" class="hiddenlink" target="rightframe">ScrollView</A><br>
+<A HREF="android.app.SearchManager.html" class="hiddenlink" target="rightframe">SearchManager</A><br>
+<A HREF="android.widget.SearchView.html" class="hiddenlink" target="rightframe">SearchView</A><br>
+<A HREF="android.widget.SeekBar.html" class="hiddenlink" target="rightframe">SeekBar</A><br>
+<A HREF="android.hardware.Sensor.html" class="hiddenlink" target="rightframe">Sensor</A><br>
+<A HREF="android.hardware.SensorManager.html" class="hiddenlink" target="rightframe">SensorManager</A><br>
+<A HREF="android.location.SettingInjectorService.html" class="hiddenlink" target="rightframe">SettingInjectorService</A><br>
+<A HREF="android.provider.Settings.html" class="hiddenlink" target="rightframe">Settings</A><br>
+<A HREF="android.provider.Settings.Global.html" class="hiddenlink" target="rightframe">Settings.Global</A><br>
+<A HREF="android.provider.Settings.Secure.html" class="hiddenlink" target="rightframe">Settings.Secure</A><br>
+<A HREF="android.provider.Settings.System.html" class="hiddenlink" target="rightframe">Settings.System</A><br>
+<A HREF="android.graphics.drawable.shapes.Shape.html" class="hiddenlink" target="rightframe">Shape</A><br>
+<A HREF="pkg_android.app.html#SharedElementCallback" class="hiddenlink" target="rightframe"><b>SharedElementCallback</b></A><br>
+<A HREF="pkg_android.transition.html#SidePropagation" class="hiddenlink" target="rightframe"><b>SidePropagation</b></A><br>
+<A HREF="pkg_android.util.html#Size" class="hiddenlink" target="rightframe"><b>Size</b></A><br>
+<A HREF="pkg_android.util.html#SizeF" class="hiddenlink" target="rightframe"><b>SizeF</b></A><br>
+<A HREF="pkg_android.transition.html#Slide" class="hiddenlink" target="rightframe"><b>Slide</b></A><br>
+<A HREF="android.widget.SlidingDrawer.html" class="hiddenlink" target="rightframe">SlidingDrawer</A><br>
+<A HREF="android.telephony.SmsManager.html" class="hiddenlink" target="rightframe">SmsManager</A><br>
+<A HREF="android.media.SoundPool.html" class="hiddenlink" target="rightframe">SoundPool</A><br>
+<A HREF="pkg_android.media.html#SoundPool.Builder" class="hiddenlink" target="rightframe"><b>SoundPool.Builder</b></A><br>
+<A HREF="android.widget.Space.html" class="hiddenlink" target="rightframe">Space</A><br>
+<A HREF="android.text.SpannableStringBuilder.html" class="hiddenlink" target="rightframe">SpannableStringBuilder</A><br>
+<A HREF="android.widget.Spinner.html" class="hiddenlink" target="rightframe">Spinner</A><br>
+<A HREF="android.widget.StackView.html" class="hiddenlink" target="rightframe">StackView</A><br>
+<A HREF="pkg_android.animation.html#StateListAnimator" class="hiddenlink" target="rightframe"><b>StateListAnimator</b></A><br>
+<A HREF="android.service.notification.StatusBarNotification.html" class="hiddenlink" target="rightframe">StatusBarNotification</A><br>
+<A HREF="android.graphics.SurfaceTexture.html" class="hiddenlink" target="rightframe">SurfaceTexture</A><br>
+<A HREF="android.view.SurfaceView.html" class="hiddenlink" target="rightframe">SurfaceView</A><br>
+<A HREF="android.widget.Switch.html" class="hiddenlink" target="rightframe">Switch</A><br>
+<A HREF="android.preference.SwitchPreference.html" class="hiddenlink" target="rightframe">SwitchPreference</A><br>
+<A HREF="android.speech.tts.SynthesisCallback.html" class="hiddenlink" target="rightframe"><i>SynthesisCallback</i></A><br>
+<A HREF="android.speech.tts.SynthesisRequest.html" class="hiddenlink" target="rightframe">SynthesisRequest</A><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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="#X"><font size="-2">X</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.TabHost.html" class="hiddenlink" target="rightframe">TabHost</A><br>
+<A HREF="android.widget.TabWidget.html" class="hiddenlink" target="rightframe">TabWidget</A><br>
+<A HREF="android.provider.Telephony.BaseMmsColumns.html" class="hiddenlink" target="rightframe"><i>Telephony.BaseMmsColumns</i></A><br>
+<A HREF="android.provider.Telephony.TextBasedSmsColumns.html" class="hiddenlink" target="rightframe"><i>Telephony.TextBasedSmsColumns</i></A><br>
+<A HREF="android.provider.Telephony.ThreadsColumns.html" class="hiddenlink" target="rightframe"><i>Telephony.ThreadsColumns</i></A><br>
+<A HREF="android.telephony.TelephonyManager.html" class="hiddenlink" target="rightframe">TelephonyManager</A><br>
+<A HREF="android.widget.TextClock.html" class="hiddenlink" target="rightframe">TextClock</A><br>
+<A HREF="android.view.textservice.TextInfo.html" class="hiddenlink" target="rightframe">TextInfo</A><br>
+<A HREF="android.speech.tts.TextToSpeech.html" class="hiddenlink" target="rightframe">TextToSpeech</A><br>
+<A HREF="android.speech.tts.TextToSpeech.Engine.html" class="hiddenlink" target="rightframe">TextToSpeech.Engine</A><br>
+<A HREF="android.speech.tts.TextToSpeechService.html" class="hiddenlink" target="rightframe">TextToSpeechService</A><br>
+<A HREF="android.view.TextureView.html" class="hiddenlink" target="rightframe">TextureView</A><br>
+<A HREF="android.widget.TextView.html" class="hiddenlink" target="rightframe">TextView</A><br>
+<A HREF="pkg_java.util.concurrent.html#ThreadLocalRandom" class="hiddenlink" target="rightframe"><b>ThreadLocalRandom</b></A><br>
+<A HREF="android.widget.TimePicker.html" class="hiddenlink" target="rightframe">TimePicker</A><br>
+<A HREF="android.widget.ToggleButton.html" class="hiddenlink" target="rightframe">ToggleButton</A><br>
+<A HREF="pkg_android.widget.html#Toolbar" class="hiddenlink" target="rightframe"><b>Toolbar</b></A><br>
+<A HREF="pkg_android.widget.html#Toolbar.LayoutParams" class="hiddenlink" target="rightframe"><b>Toolbar.LayoutParams</b></A><br>
+<A HREF="pkg_android.widget.html#Toolbar.OnMenuItemClickListener" class="hiddenlink" target="rightframe"><b><i>Toolbar.OnMenuItemClickListener</i></b></A><br>
+<A HREF="pkg_java.util.concurrent.html#TransferQueue" class="hiddenlink" target="rightframe"><b><i>TransferQueue</i></b></A><br>
+<A HREF="android.transition.Transition.html" class="hiddenlink" target="rightframe">Transition</A><br>
+<A HREF="pkg_android.transition.html#Transition.EpicenterCallback" class="hiddenlink" target="rightframe"><b>Transition.EpicenterCallback</b></A><br>
+<A HREF="pkg_android.transition.html#TransitionPropagation" class="hiddenlink" target="rightframe"><b>TransitionPropagation</b></A><br>
+<A HREF="android.transition.TransitionSet.html" class="hiddenlink" target="rightframe">TransitionSet</A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan" class="hiddenlink" target="rightframe"><b>TtsSpan</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.Builder" class="hiddenlink" target="rightframe"><b>TtsSpan.Builder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.CardinalBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.CardinalBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.DateBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.DateBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.DecimalBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.DecimalBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.DigitsBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.DigitsBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.ElectronicBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.ElectronicBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.FractionBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.FractionBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.MeasureBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.MeasureBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.MoneyBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.MoneyBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.OrdinalBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.OrdinalBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.SemioticClassBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.SemioticClassBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.TelephoneBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.TelephoneBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.TextBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.TextBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.TimeBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.TimeBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.VerbatimBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.VerbatimBuilder</b></A><br>
+<A HREF="android.widget.TwoLineListItem.html" class="hiddenlink" target="rightframe">TwoLineListItem</A><br>
+<A HREF="android.preference.TwoStatePreference.html" class="hiddenlink" target="rightframe">TwoStatePreference</A><br>
+<A HREF="android.renderscript.Type.html" class="hiddenlink" target="rightframe">Type</A><br>
+<A HREF="pkg_android.animation.html#TypeConverter" class="hiddenlink" target="rightframe"><b>TypeConverter</b></A><br>
+<A HREF="android.content.res.TypedArray.html" class="hiddenlink" target="rightframe">TypedArray</A><br>
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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="#X"><font size="-2">X</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.UiAutomation.html" class="hiddenlink" target="rightframe">UiAutomation</A><br>
+<A HREF="android.app.UiModeManager.html" class="hiddenlink" target="rightframe">UiModeManager</A><br>
+<A HREF="pkg_android.hardware.usb.html#UsbConfiguration" class="hiddenlink" target="rightframe"><b>UsbConfiguration</b></A><br>
+<A HREF="android.hardware.usb.UsbDevice.html" class="hiddenlink" target="rightframe">UsbDevice</A><br>
+<A HREF="android.hardware.usb.UsbDeviceConnection.html" class="hiddenlink" target="rightframe">UsbDeviceConnection</A><br>
+<A HREF="android.hardware.usb.UsbInterface.html" class="hiddenlink" target="rightframe">UsbInterface</A><br>
+<A HREF="android.os.UserManager.html" class="hiddenlink" target="rightframe">UserManager</A><br>
+<A HREF="android.speech.tts.UtteranceProgressListener.html" class="hiddenlink" target="rightframe">UtteranceProgressListener</A><br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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="#X"><font size="-2">X</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.animation.ValueAnimator.html" class="hiddenlink" target="rightframe">ValueAnimator</A><br>
+<A HREF="pkg_android.graphics.drawable.html#VectorDrawable" class="hiddenlink" target="rightframe"><b>VectorDrawable</b></A><br>
+<A HREF="android.os.Vibrator.html" class="hiddenlink" target="rightframe">Vibrator</A><br>
+<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="pkg_android.view.html#ViewAnimationUtils" class="hiddenlink" target="rightframe"><b>ViewAnimationUtils</b></A><br>
+<A HREF="android.view.ViewGroup.html" class="hiddenlink" target="rightframe">ViewGroup</A><br>
+<A HREF="pkg_android.view.html#ViewOutlineProvider" class="hiddenlink" target="rightframe"><b>ViewOutlineProvider</b></A><br>
+<A HREF="android.view.ViewParent.html" class="hiddenlink" target="rightframe"><i>ViewParent</i></A><br>
+<A HREF="android.view.ViewPropertyAnimator.html" class="hiddenlink" target="rightframe">ViewPropertyAnimator</A><br>
+<A HREF="android.view.ViewStub.html" class="hiddenlink" target="rightframe">ViewStub</A><br>
+<A HREF="android.hardware.display.VirtualDisplay.html" class="hiddenlink" target="rightframe">VirtualDisplay</A><br>
+<A HREF="pkg_android.hardware.display.html#VirtualDisplay.Callback" class="hiddenlink" target="rightframe"><b>VirtualDisplay.Callback</b></A><br>
+<A HREF="android.media.audiofx.Virtualizer.html" class="hiddenlink" target="rightframe">Virtualizer</A><br>
+<A HREF="android.transition.Visibility.html" class="hiddenlink" target="rightframe">Visibility</A><br>
+<A HREF="pkg_android.transition.html#VisibilityPropagation" class="hiddenlink" target="rightframe"><b>VisibilityPropagation</b></A><br>
+<A HREF="pkg_android.speech.tts.html#Voice" class="hiddenlink" target="rightframe"><b>Voice</b></A><br>
+<A HREF="android.provider.VoicemailContract.Voicemails.html" class="hiddenlink" target="rightframe">VoicemailContract.Voicemails</A><br>
+<A HREF="pkg_android.media.html#VolumeProvider" class="hiddenlink" target="rightframe"><b>VolumeProvider</b></A><br>
+<A HREF="android.net.VpnService.Builder.html" class="hiddenlink" target="rightframe">VpnService.Builder</A><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#X"><font size="-2">X</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.service.wallpaper.WallpaperService.Engine.html" class="hiddenlink" target="rightframe">WallpaperService.Engine</A><br>
+<A HREF="android.webkit.WebChromeClient.html" class="hiddenlink" target="rightframe">WebChromeClient</A><br>
+<A HREF="pkg_android.webkit.html#WebChromeClient.FileChooserParams" class="hiddenlink" target="rightframe"><b>WebChromeClient.FileChooserParams</b></A><br>
+<A HREF="pkg_android.webkit.html#WebResourceRequest" class="hiddenlink" target="rightframe"><b><i>WebResourceRequest</i></b></A><br>
+<A HREF="android.webkit.WebResourceResponse.html" class="hiddenlink" target="rightframe">WebResourceResponse</A><br>
+<A HREF="android.webkit.WebSettings.html" class="hiddenlink" target="rightframe">WebSettings</A><br>
+<A HREF="android.webkit.WebSyncManager.html" class="hiddenlink" target="rightframe">WebSyncManager</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.net.wifi.WifiConfiguration.html" class="hiddenlink" target="rightframe">WifiConfiguration</A><br>
+<A HREF="android.net.wifi.WifiEnterpriseConfig.Eap.html" class="hiddenlink" target="rightframe">WifiEnterpriseConfig.Eap</A><br>
+<A HREF="android.net.wifi.WifiInfo.html" class="hiddenlink" target="rightframe">WifiInfo</A><br>
+<A HREF="android.net.wifi.WifiManager.html" class="hiddenlink" target="rightframe">WifiManager</A><br>
+<A HREF="pkg_android.net.wifi.html#WifiManager.WpsCallback" class="hiddenlink" target="rightframe"><b>WifiManager.WpsCallback</b></A><br>
+<A HREF="android.view.Window.html" class="hiddenlink" target="rightframe">Window</A><br>
+<A HREF="pkg_android.view.html#WindowAnimationFrameStats" class="hiddenlink" target="rightframe"><b>WindowAnimationFrameStats</b></A><br>
+<A HREF="pkg_android.view.html#WindowContentFrameStats" class="hiddenlink" target="rightframe"><b>WindowContentFrameStats</b></A><br>
+<A HREF="android.view.WindowInsets.html" class="hiddenlink" target="rightframe">WindowInsets</A><br>
+<A HREF="android.view.WindowManager.LayoutParams.html" class="hiddenlink" target="rightframe">WindowManager.LayoutParams</A><br>
+<A HREF="android.net.wifi.WpsInfo.html" class="hiddenlink" target="rightframe">WpsInfo</A><br>
+<A NAME="X"></A>
+<br><font size="+2">X</font>&nbsp;
+<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="#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.net.http.X509TrustManagerExtensions.html" class="hiddenlink" target="rightframe">X509TrustManagerExtensions</A><br>
+<A NAME="Z"></A>
+<br><font size="+2">Z</font>&nbsp;
+<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="#X"><font size="-2">X</font></a> 
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="java.util.zip.ZipEntry.html" class="hiddenlink" target="rightframe">ZipEntry</A><br>
+<A HREF="java.util.zip.ZipFile.html" class="hiddenlink" target="rightframe">ZipFile</A><br>
+<A HREF="java.util.zip.ZipInputStream.html" class="hiddenlink" target="rightframe">ZipInputStream</A><br>
+<A HREF="java.util.zip.ZipOutputStream.html" class="hiddenlink" target="rightframe">ZipOutputStream</A><br>
+<A HREF="android.widget.ZoomButton.html" class="hiddenlink" target="rightframe">ZoomButton</A><br>
+<script src="//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/21/changes/classes_index_changes.html b/docs/html/sdk/api_diff/21/changes/classes_index_changes.html
new file mode 100644
index 0000000..2e9fb3f
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/classes_index_changes.html
@@ -0,0 +1,1069 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#X"><font size="-2">X</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.AbsListView.html" class="hiddenlink" target="rightframe">AbsListView</A><br>
+<A HREF="android.widget.AbsoluteLayout.html" class="hiddenlink" target="rightframe">AbsoluteLayout</A><br>
+<A HREF="android.widget.AbsSeekBar.html" class="hiddenlink" target="rightframe">AbsSeekBar</A><br>
+<A HREF="android.widget.AbsSpinner.html" class="hiddenlink" target="rightframe">AbsSpinner</A><br>
+<A HREF="java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html" class="hiddenlink" target="rightframe">AbstractQueuedLongSynchronizer</A><br>
+<A HREF="java.util.concurrent.locks.AbstractQueuedSynchronizer.html" class="hiddenlink" target="rightframe">AbstractQueuedSynchronizer</A><br>
+<A HREF="android.view.accessibility.AccessibilityEvent.html" class="hiddenlink" target="rightframe">AccessibilityEvent</A><br>
+<A HREF="android.view.accessibility.AccessibilityNodeInfo.html" class="hiddenlink" target="rightframe">AccessibilityNodeInfo</A><br>
+<A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html" class="hiddenlink" target="rightframe">AccessibilityNodeInfo.CollectionInfo</A><br>
+<A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.html" class="hiddenlink" target="rightframe">AccessibilityNodeInfo.CollectionItemInfo</A><br>
+<A HREF="android.view.accessibility.AccessibilityNodeProvider.html" class="hiddenlink" target="rightframe">AccessibilityNodeProvider</A><br>
+<A HREF="android.accessibilityservice.AccessibilityService.html" class="hiddenlink" target="rightframe">AccessibilityService</A><br>
+<A HREF="android.accessibilityservice.AccessibilityServiceInfo.html" class="hiddenlink" target="rightframe">AccessibilityServiceInfo</A><br>
+<A HREF="android.accounts.AccountManager.html" class="hiddenlink" target="rightframe">AccountManager</A><br>
+<A HREF="android.app.ActionBar.html" class="hiddenlink" target="rightframe">ActionBar</A><br>
+<A HREF="android.app.ActionBar.OnNavigationListener.html" class="hiddenlink" target="rightframe"><i>ActionBar.OnNavigationListener</i></A><br>
+<A HREF="android.app.ActionBar.Tab.html" class="hiddenlink" target="rightframe">ActionBar.Tab</A><br>
+<A HREF="android.app.ActionBar.TabListener.html" class="hiddenlink" target="rightframe"><i>ActionBar.TabListener</i></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.RecentTaskInfo.html" class="hiddenlink" target="rightframe">ActivityManager.RecentTaskInfo</A><br>
+<A HREF="android.app.ActivityManager.RunningAppProcessInfo.html" class="hiddenlink" target="rightframe">ActivityManager.RunningAppProcessInfo</A><br>
+<A HREF="android.app.ActivityOptions.html" class="hiddenlink" target="rightframe">ActivityOptions</A><br>
+<A HREF="android.widget.AdapterView.html" class="hiddenlink" target="rightframe">AdapterView</A><br>
+<A HREF="android.widget.AdapterViewAnimator.html" class="hiddenlink" target="rightframe">AdapterViewAnimator</A><br>
+<A HREF="android.widget.AdapterViewFlipper.html" class="hiddenlink" target="rightframe">AdapterViewFlipper</A><br>
+<A HREF="android.app.AlarmManager.html" class="hiddenlink" target="rightframe">AlarmManager</A><br>
+<A HREF="android.app.AlertDialog.Builder.html" class="hiddenlink" target="rightframe">AlertDialog.Builder</A><br>
+<A HREF="android.renderscript.Allocation.html" class="hiddenlink" target="rightframe">Allocation</A><br>
+<A HREF="android.widget.AnalogClock.html" class="hiddenlink" target="rightframe">AnalogClock</A><br>
+<A HREF="android.animation.AnimatorInflater.html" class="hiddenlink" target="rightframe">AnimatorInflater</A><br>
+<A HREF="android.content.pm.ApplicationInfo.html" class="hiddenlink" target="rightframe">ApplicationInfo</A><br>
+<A HREF="android.app.AppOpsManager.html" class="hiddenlink" target="rightframe">AppOpsManager</A><br>
+<A HREF="android.appwidget.AppWidgetHost.html" class="hiddenlink" target="rightframe">AppWidgetHost</A><br>
+<A HREF="android.appwidget.AppWidgetManager.html" class="hiddenlink" target="rightframe">AppWidgetManager</A><br>
+<A HREF="android.appwidget.AppWidgetProvider.html" class="hiddenlink" target="rightframe">AppWidgetProvider</A><br>
+<A HREF="android.appwidget.AppWidgetProviderInfo.html" class="hiddenlink" target="rightframe">AppWidgetProviderInfo</A><br>
+<A HREF="android.util.ArrayMap.html" class="hiddenlink" target="rightframe">ArrayMap</A><br>
+<A HREF="android.content.res.AssetManager.html" class="hiddenlink" target="rightframe">AssetManager</A><br>
+<A HREF="android.content.res.AssetManager.AssetInputStream.html" class="hiddenlink" target="rightframe">AssetManager.AssetInputStream</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.media.AudioTrack.html" class="hiddenlink" target="rightframe">AudioTrack</A><br>
+<A HREF="android.widget.AutoCompleteTextView.html" class="hiddenlink" target="rightframe">AutoCompleteTextView</A><br>
+<A HREF="android.transition.AutoTransition.html" class="hiddenlink" target="rightframe">AutoTransition</A><br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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="#X"><font size="-2">X</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.backup.BackupAgent.html" class="hiddenlink" target="rightframe">BackupAgent</A><br>
+<A HREF="android.view.inputmethod.BaseInputConnection.html" class="hiddenlink" target="rightframe">BaseInputConnection</A><br>
+<A HREF="android.os.BatteryManager.html" class="hiddenlink" target="rightframe">BatteryManager</A><br>
+<A HREF="android.graphics.BitmapFactory.Options.html" class="hiddenlink" target="rightframe">BitmapFactory.Options</A><br>
+<A HREF="android.bluetooth.BluetoothAdapter.html" class="hiddenlink" target="rightframe">BluetoothAdapter</A><br>
+<A HREF="android.bluetooth.BluetoothGatt.html" class="hiddenlink" target="rightframe">BluetoothGatt</A><br>
+<A HREF="android.bluetooth.BluetoothGattCallback.html" class="hiddenlink" target="rightframe">BluetoothGattCallback</A><br>
+<A HREF="android.bluetooth.BluetoothGattServerCallback.html" class="hiddenlink" target="rightframe">BluetoothGattServerCallback</A><br>
+<A HREF="android.os.Build.html" class="hiddenlink" target="rightframe">Build</A><br>
+<A HREF="android.os.Build.VERSION_CODES.html" class="hiddenlink" target="rightframe">Build.VERSION_CODES</A><br>
+<A HREF="android.os.Bundle.html" class="hiddenlink" target="rightframe">Bundle</A><br>
+<A HREF="android.widget.Button.html" class="hiddenlink" target="rightframe">Button</A><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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="#X"><font size="-2">X</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.CalendarView.html" class="hiddenlink" target="rightframe">CalendarView</A><br>
+<A HREF="android.provider.CallLog.Calls.html" class="hiddenlink" target="rightframe">CallLog.Calls</A><br>
+<A HREF="android.media.CamcorderProfile.html" class="hiddenlink" target="rightframe">CamcorderProfile</A><br>
+<A HREF="android.hardware.Camera.html" class="hiddenlink" target="rightframe">Camera</A><br>
+<A HREF="android.hardware.Camera.Area.html" class="hiddenlink" target="rightframe">Camera.Area</A><br>
+<A HREF="android.hardware.Camera.AutoFocusCallback.html" class="hiddenlink" target="rightframe"><i>Camera.AutoFocusCallback</i></A><br>
+<A HREF="android.hardware.Camera.AutoFocusMoveCallback.html" class="hiddenlink" target="rightframe"><i>Camera.AutoFocusMoveCallback</i></A><br>
+<A HREF="android.hardware.Camera.CameraInfo.html" class="hiddenlink" target="rightframe">Camera.CameraInfo</A><br>
+<A HREF="android.hardware.Camera.ErrorCallback.html" class="hiddenlink" target="rightframe"><i>Camera.ErrorCallback</i></A><br>
+<A HREF="android.hardware.Camera.Face.html" class="hiddenlink" target="rightframe">Camera.Face</A><br>
+<A HREF="android.hardware.Camera.FaceDetectionListener.html" class="hiddenlink" target="rightframe"><i>Camera.FaceDetectionListener</i></A><br>
+<A HREF="android.hardware.Camera.OnZoomChangeListener.html" class="hiddenlink" target="rightframe"><i>Camera.OnZoomChangeListener</i></A><br>
+<A HREF="android.hardware.Camera.Parameters.html" class="hiddenlink" target="rightframe">Camera.Parameters</A><br>
+<A HREF="android.hardware.Camera.PictureCallback.html" class="hiddenlink" target="rightframe"><i>Camera.PictureCallback</i></A><br>
+<A HREF="android.hardware.Camera.PreviewCallback.html" class="hiddenlink" target="rightframe"><i>Camera.PreviewCallback</i></A><br>
+<A HREF="android.hardware.Camera.ShutterCallback.html" class="hiddenlink" target="rightframe"><i>Camera.ShutterCallback</i></A><br>
+<A HREF="android.hardware.Camera.Size.html" class="hiddenlink" target="rightframe">Camera.Size</A><br>
+<A HREF="android.graphics.Canvas.html" class="hiddenlink" target="rightframe">Canvas</A><br>
+<A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html" class="hiddenlink" target="rightframe">CaptioningManager.CaptionStyle</A><br>
+<A HREF="android.nfc.cardemulation.CardEmulation.html" class="hiddenlink" target="rightframe">CardEmulation</A><br>
+<A HREF="android.transition.ChangeBounds.html" class="hiddenlink" target="rightframe">ChangeBounds</A><br>
+<A HREF="android.widget.CheckBox.html" class="hiddenlink" target="rightframe">CheckBox</A><br>
+<A HREF="android.preference.CheckBoxPreference.html" class="hiddenlink" target="rightframe">CheckBoxPreference</A><br>
+<A HREF="android.widget.CheckedTextView.html" class="hiddenlink" target="rightframe">CheckedTextView</A><br>
+<A HREF="android.widget.Chronometer.html" class="hiddenlink" target="rightframe">Chronometer</A><br>
+<A HREF="android.content.res.ColorStateList.html" class="hiddenlink" target="rightframe">ColorStateList</A><br>
+<A HREF="android.widget.CompoundButton.html" class="hiddenlink" target="rightframe">CompoundButton</A><br>
+<A HREF="android.net.ConnectivityManager.html" class="hiddenlink" target="rightframe">ConnectivityManager</A><br>
+<A HREF="android.provider.ContactsContract.html" class="hiddenlink" target="rightframe">ContactsContract</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Contactables</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Email</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Event</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.GroupMembership</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Identity</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Im</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Nickname</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Note</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Organization</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Phone</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Photo</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Relation</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.SipAddress</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.StructuredName</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.StructuredPostal</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Website</A><br>
+<A HREF="android.provider.ContactsContract.ContactOptionsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.ContactOptionsColumns</i></A><br>
+<A HREF="android.provider.ContactsContract.Contacts.html" class="hiddenlink" target="rightframe">ContactsContract.Contacts</A><br>
+<A HREF="android.provider.ContactsContract.Contacts.Entity.html" class="hiddenlink" target="rightframe">ContactsContract.Contacts.Entity</A><br>
+<A HREF="android.provider.ContactsContract.Contacts.StreamItems.html" class="hiddenlink" target="rightframe">ContactsContract.Contacts.StreamItems</A><br>
+<A HREF="android.provider.ContactsContract.ContactsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.ContactsColumns</i></A><br>
+<A HREF="android.provider.ContactsContract.Data.html" class="hiddenlink" target="rightframe">ContactsContract.Data</A><br>
+<A HREF="android.provider.ContactsContract.DataColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.DataColumns</i></A><br>
+<A HREF="android.provider.ContactsContract.GroupsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.GroupsColumns</i></A><br>
+<A HREF="android.provider.ContactsContract.PhoneLookup.html" class="hiddenlink" target="rightframe">ContactsContract.PhoneLookup</A><br>
+<A HREF="android.provider.ContactsContract.QuickContact.html" class="hiddenlink" target="rightframe">ContactsContract.QuickContact</A><br>
+<A HREF="android.provider.ContactsContract.RawContacts.StreamItems.html" class="hiddenlink" target="rightframe">ContactsContract.RawContacts.StreamItems</A><br>
+<A HREF="android.provider.ContactsContract.RawContactsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.RawContactsColumns</i></A><br>
+<A HREF="android.provider.ContactsContract.StreamItemPhotos.html" class="hiddenlink" target="rightframe">ContactsContract.StreamItemPhotos</A><br>
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.StreamItemPhotosColumns</i></A><br>
+<A HREF="android.provider.ContactsContract.StreamItems.html" class="hiddenlink" target="rightframe">ContactsContract.StreamItems</A><br>
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html" class="hiddenlink" target="rightframe">ContactsContract.StreamItems.StreamItemPhotos</A><br>
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.StreamItemsColumns</i></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.webkit.CookieManager.html" class="hiddenlink" target="rightframe">CookieManager</A><br>
+<A HREF="android.webkit.CookieSyncManager.html" class="hiddenlink" target="rightframe">CookieSyncManager</A><br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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="#X"><font size="-2">X</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.DatePicker.html" class="hiddenlink" target="rightframe">DatePicker</A><br>
+<A HREF="android.os.Debug.html" class="hiddenlink" target="rightframe">Debug</A><br>
+<A HREF="android.app.admin.DeviceAdminReceiver.html" class="hiddenlink" target="rightframe">DeviceAdminReceiver</A><br>
+<A HREF="android.app.admin.DevicePolicyManager.html" class="hiddenlink" target="rightframe">DevicePolicyManager</A><br>
+<A HREF="android.app.Dialog.html" class="hiddenlink" target="rightframe">Dialog</A><br>
+<A HREF="android.preference.DialogPreference.html" class="hiddenlink" target="rightframe">DialogPreference</A><br>
+<A HREF="android.view.Display.html" class="hiddenlink" target="rightframe">Display</A><br>
+<A HREF="android.hardware.display.DisplayManager.html" class="hiddenlink" target="rightframe">DisplayManager</A><br>
+<A HREF="android.util.DisplayMetrics.html" class="hiddenlink" target="rightframe">DisplayMetrics</A><br>
+<A HREF="android.provider.DocumentsContract.html" class="hiddenlink" target="rightframe">DocumentsContract</A><br>
+<A HREF="android.provider.DocumentsContract.Document.html" class="hiddenlink" target="rightframe">DocumentsContract.Document</A><br>
+<A HREF="android.provider.DocumentsContract.Root.html" class="hiddenlink" target="rightframe">DocumentsContract.Root</A><br>
+<A HREF="android.provider.DocumentsProvider.html" class="hiddenlink" target="rightframe">DocumentsProvider</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 HREF="android.service.dreams.DreamService.html" class="hiddenlink" target="rightframe">DreamService</A><br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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="#X"><font size="-2">X</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.EdgeEffect.html" class="hiddenlink" target="rightframe">EdgeEffect</A><br>
+<A HREF="android.widget.EditText.html" class="hiddenlink" target="rightframe">EditText</A><br>
+<A HREF="android.preference.EditTextPreference.html" class="hiddenlink" target="rightframe">EditTextPreference</A><br>
+<A HREF="android.opengl.EGLObjectHandle.html" class="hiddenlink" target="rightframe">EGLObjectHandle</A><br>
+<A HREF="android.os.Environment.html" class="hiddenlink" target="rightframe">Environment</A><br>
+<A HREF="android.widget.ExpandableListView.html" class="hiddenlink" target="rightframe">ExpandableListView</A><br>
+<A HREF="android.inputmethodservice.ExtractEditText.html" class="hiddenlink" target="rightframe">ExtractEditText</A><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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="#X"><font size="-2">X</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.transition.Fade.html" class="hiddenlink" target="rightframe">Fade</A><br>
+<A HREF="android.app.Fragment.html" class="hiddenlink" target="rightframe">Fragment</A><br>
+<A HREF="android.app.FragmentBreadCrumbs.html" class="hiddenlink" target="rightframe">FragmentBreadCrumbs</A><br>
+<A HREF="android.app.FragmentTransaction.html" class="hiddenlink" target="rightframe">FragmentTransaction</A><br>
+<A HREF="android.widget.FrameLayout.html" class="hiddenlink" target="rightframe">FrameLayout</A><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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="#X"><font size="-2">X</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.Gallery.html" class="hiddenlink" target="rightframe">Gallery</A><br>
+<A HREF="android.gesture.GestureOverlayView.html" class="hiddenlink" target="rightframe">GestureOverlayView</A><br>
+<A HREF="android.opengl.GLES20.html" class="hiddenlink" target="rightframe">GLES20</A><br>
+<A HREF="android.graphics.drawable.GradientDrawable.html" class="hiddenlink" target="rightframe">GradientDrawable</A><br>
+<A HREF="android.widget.GridLayout.html" class="hiddenlink" target="rightframe">GridLayout</A><br>
+<A HREF="android.widget.GridView.html" class="hiddenlink" target="rightframe">GridView</A><br>
+<A NAME="H"></A>
+<br><font size="+2">H</font>&nbsp;
+<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="#X"><font size="-2">X</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.HapticFeedbackConstants.html" class="hiddenlink" target="rightframe">HapticFeedbackConstants</A><br>
+<A HREF="android.widget.HorizontalScrollView.html" class="hiddenlink" target="rightframe">HorizontalScrollView</A><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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="#X"><font size="-2">X</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.media.Image.html" class="hiddenlink" target="rightframe">Image</A><br>
+<A HREF="android.widget.ImageButton.html" class="hiddenlink" target="rightframe">ImageButton</A><br>
+<A HREF="android.graphics.ImageFormat.html" class="hiddenlink" target="rightframe">ImageFormat</A><br>
+<A HREF="android.widget.ImageView.html" class="hiddenlink" target="rightframe">ImageView</A><br>
+<A HREF="android.view.inputmethod.InputConnection.html" class="hiddenlink" target="rightframe"><i>InputConnection</i></A><br>
+<A HREF="android.view.inputmethod.InputConnectionWrapper.html" class="hiddenlink" target="rightframe">InputConnectionWrapper</A><br>
+<A HREF="android.view.InputDevice.html" class="hiddenlink" target="rightframe">InputDevice</A><br>
+<A HREF="android.text.InputFilter.LengthFilter.html" class="hiddenlink" target="rightframe">InputFilter.LengthFilter</A><br>
+<A HREF="android.view.inputmethod.InputMethodManager.html" class="hiddenlink" target="rightframe">InputMethodManager</A><br>
+<A HREF="android.inputmethodservice.InputMethodService.html" class="hiddenlink" target="rightframe">InputMethodService</A><br>
+<A HREF="android.inputmethodservice.InputMethodService.InputMethodSessionImpl.html" class="hiddenlink" target="rightframe">InputMethodService.InputMethodSessionImpl</A><br>
+<A HREF="android.view.inputmethod.InputMethodSession.html" class="hiddenlink" target="rightframe"><i>InputMethodSession</i></A><br>
+<A HREF="android.app.Instrumentation.html" class="hiddenlink" target="rightframe">Instrumentation</A><br>
+<A HREF="android.content.pm.InstrumentationInfo.html" class="hiddenlink" target="rightframe">InstrumentationInfo</A><br>
+<A HREF="android.content.Intent.html" class="hiddenlink" target="rightframe">Intent</A><br>
+<A NAME="K"></A>
+<br><font size="+2">K</font>&nbsp;
+<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="#X"><font size="-2">X</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.inputmethodservice.KeyboardView.html" class="hiddenlink" target="rightframe">KeyboardView</A><br>
+<A HREF="android.view.KeyEvent.html" class="hiddenlink" target="rightframe">KeyEvent</A><br>
+<A HREF="android.app.KeyguardManager.html" class="hiddenlink" target="rightframe">KeyguardManager</A><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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="#X"><font size="-2">X</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.graphics.drawable.LayerDrawable.html" class="hiddenlink" target="rightframe">LayerDrawable</A><br>
+<A HREF="android.graphics.LayerRasterizer.html" class="hiddenlink" target="rightframe">LayerRasterizer</A><br>
+<A HREF="android.widget.LinearLayout.html" class="hiddenlink" target="rightframe">LinearLayout</A><br>
+<A HREF="android.preference.ListPreference.html" class="hiddenlink" target="rightframe">ListPreference</A><br>
+<A HREF="android.widget.ListView.html" class="hiddenlink" target="rightframe">ListView</A><br>
+<A HREF="java.util.Locale.html" class="hiddenlink" target="rightframe">Locale</A><br>
+<A HREF="android.util.LruCache.html" class="hiddenlink" target="rightframe">LruCache</A><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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="#X"><font size="-2">X</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.graphics.Matrix.html" class="hiddenlink" target="rightframe">Matrix</A><br>
+<A HREF="android.media.MediaCodec.html" class="hiddenlink" target="rightframe">MediaCodec</A><br>
+<A HREF="android.media.MediaCodec.CryptoException.html" class="hiddenlink" target="rightframe">MediaCodec.CryptoException</A><br>
+<A HREF="android.media.MediaCodecInfo.CodecCapabilities.html" class="hiddenlink" target="rightframe">MediaCodecInfo.CodecCapabilities</A><br>
+<A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html" class="hiddenlink" target="rightframe">MediaCodecInfo.CodecProfileLevel</A><br>
+<A HREF="android.media.MediaCodecList.html" class="hiddenlink" target="rightframe">MediaCodecList</A><br>
+<A HREF="android.media.MediaDrm.html" class="hiddenlink" target="rightframe">MediaDrm</A><br>
+<A HREF="android.media.MediaFormat.html" class="hiddenlink" target="rightframe">MediaFormat</A><br>
+<A HREF="android.media.MediaMetadataEditor.html" class="hiddenlink" target="rightframe">MediaMetadataEditor</A><br>
+<A HREF="android.media.MediaMuxer.OutputFormat.html" class="hiddenlink" target="rightframe">MediaMuxer.OutputFormat</A><br>
+<A HREF="android.media.MediaPlayer.html" class="hiddenlink" target="rightframe">MediaPlayer</A><br>
+<A HREF="android.media.MediaPlayer.TrackInfo.html" class="hiddenlink" target="rightframe">MediaPlayer.TrackInfo</A><br>
+<A HREF="android.media.MediaRecorder.html" class="hiddenlink" target="rightframe">MediaRecorder</A><br>
+<A HREF="android.media.MediaRecorder.AudioEncoder.html" class="hiddenlink" target="rightframe">MediaRecorder.AudioEncoder</A><br>
+<A HREF="android.media.MediaRecorder.OutputFormat.html" class="hiddenlink" target="rightframe">MediaRecorder.OutputFormat</A><br>
+<A HREF="android.media.MediaRecorder.VideoEncoder.html" class="hiddenlink" target="rightframe">MediaRecorder.VideoEncoder</A><br>
+<A HREF="android.media.MediaRecorder.VideoSource.html" class="hiddenlink" target="rightframe">MediaRecorder.VideoSource</A><br>
+<A HREF="android.app.MediaRouteButton.html" class="hiddenlink" target="rightframe">MediaRouteButton</A><br>
+<A HREF="android.provider.MediaStore.html" class="hiddenlink" target="rightframe">MediaStore</A><br>
+<A HREF="android.provider.MediaStore.Audio.Media.html" class="hiddenlink" target="rightframe">MediaStore.Audio.Media</A><br>
+<A HREF="android.os.Message.html" class="hiddenlink" target="rightframe">Message</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 HREF="android.widget.MultiAutoCompleteTextView.html" class="hiddenlink" target="rightframe">MultiAutoCompleteTextView</A><br>
+<A HREF="android.preference.MultiSelectListPreference.html" class="hiddenlink" target="rightframe">MultiSelectListPreference</A><br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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="#X"><font size="-2">X</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.nfc.NdefRecord.html" class="hiddenlink" target="rightframe">NdefRecord</A><br>
+<A HREF="android.nfc.NfcAdapter.html" class="hiddenlink" target="rightframe">NfcAdapter</A><br>
+<A HREF="android.app.Notification.html" class="hiddenlink" target="rightframe">Notification</A><br>
+<A HREF="android.app.Notification.Builder.html" class="hiddenlink" target="rightframe">Notification.Builder</A><br>
+<A HREF="android.service.notification.NotificationListenerService.html" class="hiddenlink" target="rightframe">NotificationListenerService</A><br>
+<A HREF="android.net.nsd.NsdServiceInfo.html" class="hiddenlink" target="rightframe">NsdServiceInfo</A><br>
+<A HREF="android.widget.NumberPicker.html" class="hiddenlink" target="rightframe">NumberPicker</A><br>
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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="#X"><font size="-2">X</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.animation.ObjectAnimator.html" class="hiddenlink" target="rightframe">ObjectAnimator</A><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#X"><font size="-2">X</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.graphics.Paint.html" class="hiddenlink" target="rightframe">Paint</A><br>
+<A HREF="android.os.Parcel.html" class="hiddenlink" target="rightframe">Parcel</A><br>
+<A HREF="android.graphics.Path.html" class="hiddenlink" target="rightframe">Path</A><br>
+<A HREF="android.util.Patterns.html" class="hiddenlink" target="rightframe">Patterns</A><br>
+<A HREF="android.content.pm.PermissionInfo.html" class="hiddenlink" target="rightframe">PermissionInfo</A><br>
+<A HREF="android.telephony.PhoneNumberFormattingTextWatcher.html" class="hiddenlink" target="rightframe">PhoneNumberFormattingTextWatcher</A><br>
+<A HREF="android.telephony.PhoneNumberUtils.html" class="hiddenlink" target="rightframe">PhoneNumberUtils</A><br>
+<A HREF="android.widget.PopupWindow.html" class="hiddenlink" target="rightframe">PopupWindow</A><br>
+<A HREF="android.os.PowerManager.html" class="hiddenlink" target="rightframe">PowerManager</A><br>
+<A HREF="android.os.PowerManager.WakeLock.html" class="hiddenlink" target="rightframe">PowerManager.WakeLock</A><br>
+<A HREF="android.preference.Preference.html" class="hiddenlink" target="rightframe">Preference</A><br>
+<A HREF="android.preference.PreferenceCategory.html" class="hiddenlink" target="rightframe">PreferenceCategory</A><br>
+<A HREF="android.preference.PreferenceGroup.html" class="hiddenlink" target="rightframe">PreferenceGroup</A><br>
+<A HREF="android.printservice.PrintService.html" class="hiddenlink" target="rightframe">PrintService</A><br>
+<A HREF="android.widget.ProgressBar.html" class="hiddenlink" target="rightframe">ProgressBar</A><br>
+<A HREF="android.animation.PropertyValuesHolder.html" class="hiddenlink" target="rightframe">PropertyValuesHolder</A><br>
+<A HREF="android.net.Proxy.html" class="hiddenlink" target="rightframe">Proxy</A><br>
+<A NAME="Q"></A>
+<br><font size="+2">Q</font>&nbsp;
+<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="#X"><font size="-2">X</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.QuickContactBadge.html" class="hiddenlink" target="rightframe">QuickContactBadge</A><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#X"><font size="-2">X</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.id.html" class="hiddenlink" target="rightframe">R.id</A><br>
+<A HREF="android.R.interpolator.html" class="hiddenlink" target="rightframe">R.interpolator</A><br>
+<A HREF="android.R.style.html" class="hiddenlink" target="rightframe">R.style</A><br>
+<A HREF="android.widget.RadioButton.html" class="hiddenlink" target="rightframe">RadioButton</A><br>
+<A HREF="android.graphics.Rasterizer.html" class="hiddenlink" target="rightframe">Rasterizer</A><br>
+<A HREF="android.media.Rating.html" class="hiddenlink" target="rightframe">Rating</A><br>
+<A HREF="android.widget.RatingBar.html" class="hiddenlink" target="rightframe">RatingBar</A><br>
+<A HREF="android.animation.RectEvaluator.html" class="hiddenlink" target="rightframe">RectEvaluator</A><br>
+<A HREF="android.widget.RelativeLayout.html" class="hiddenlink" target="rightframe">RelativeLayout</A><br>
+<A HREF="android.media.RemoteControlClient.html" class="hiddenlink" target="rightframe">RemoteControlClient</A><br>
+<A HREF="android.media.RemoteControlClient.MetadataEditor.html" class="hiddenlink" target="rightframe">RemoteControlClient.MetadataEditor</A><br>
+<A HREF="android.media.RemoteController.html" class="hiddenlink" target="rightframe">RemoteController</A><br>
+<A HREF="android.renderscript.RenderScript.html" class="hiddenlink" target="rightframe">RenderScript</A><br>
+<A HREF="android.content.res.Resources.html" class="hiddenlink" target="rightframe">Resources</A><br>
+<A HREF="android.content.res.Resources.Theme.html" class="hiddenlink" target="rightframe">Resources.Theme</A><br>
+<A HREF="android.content.RestrictionEntry.html" class="hiddenlink" target="rightframe">RestrictionEntry</A><br>
+<A HREF="android.media.Ringtone.html" class="hiddenlink" target="rightframe">Ringtone</A><br>
+<A HREF="android.preference.RingtonePreference.html" class="hiddenlink" target="rightframe">RingtonePreference</A><br>
+<A HREF="android.graphics.drawable.RotateDrawable.html" class="hiddenlink" target="rightframe">RotateDrawable</A><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#X"><font size="-2">X</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.transition.Scene.html" class="hiddenlink" target="rightframe">Scene</A><br>
+<A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html" class="hiddenlink" target="rightframe">ScheduledThreadPoolExecutor</A><br>
+<A HREF="android.renderscript.ScriptC.html" class="hiddenlink" target="rightframe">ScriptC</A><br>
+<A HREF="android.renderscript.ScriptIntrinsic3DLUT.html" class="hiddenlink" target="rightframe">ScriptIntrinsic3DLUT</A><br>
+<A HREF="android.renderscript.ScriptIntrinsicBlend.html" class="hiddenlink" target="rightframe">ScriptIntrinsicBlend</A><br>
+<A HREF="android.renderscript.ScriptIntrinsicBlur.html" class="hiddenlink" target="rightframe">ScriptIntrinsicBlur</A><br>
+<A HREF="android.renderscript.ScriptIntrinsicColorMatrix.html" class="hiddenlink" target="rightframe">ScriptIntrinsicColorMatrix</A><br>
+<A HREF="android.renderscript.ScriptIntrinsicConvolve3x3.html" class="hiddenlink" target="rightframe">ScriptIntrinsicConvolve3x3</A><br>
+<A HREF="android.renderscript.ScriptIntrinsicConvolve5x5.html" class="hiddenlink" target="rightframe">ScriptIntrinsicConvolve5x5</A><br>
+<A HREF="android.renderscript.ScriptIntrinsicHistogram.html" class="hiddenlink" target="rightframe">ScriptIntrinsicHistogram</A><br>
+<A HREF="android.renderscript.ScriptIntrinsicLUT.html" class="hiddenlink" target="rightframe">ScriptIntrinsicLUT</A><br>
+<A HREF="android.widget.ScrollView.html" class="hiddenlink" target="rightframe">ScrollView</A><br>
+<A HREF="android.app.SearchManager.html" class="hiddenlink" target="rightframe">SearchManager</A><br>
+<A HREF="android.widget.SearchView.html" class="hiddenlink" target="rightframe">SearchView</A><br>
+<A HREF="android.widget.SeekBar.html" class="hiddenlink" target="rightframe">SeekBar</A><br>
+<A HREF="android.hardware.Sensor.html" class="hiddenlink" target="rightframe">Sensor</A><br>
+<A HREF="android.hardware.SensorManager.html" class="hiddenlink" target="rightframe">SensorManager</A><br>
+<A HREF="android.location.SettingInjectorService.html" class="hiddenlink" target="rightframe">SettingInjectorService</A><br>
+<A HREF="android.provider.Settings.html" class="hiddenlink" target="rightframe">Settings</A><br>
+<A HREF="android.provider.Settings.Global.html" class="hiddenlink" target="rightframe">Settings.Global</A><br>
+<A HREF="android.provider.Settings.Secure.html" class="hiddenlink" target="rightframe">Settings.Secure</A><br>
+<A HREF="android.provider.Settings.System.html" class="hiddenlink" target="rightframe">Settings.System</A><br>
+<A HREF="android.graphics.drawable.shapes.Shape.html" class="hiddenlink" target="rightframe">Shape</A><br>
+<A HREF="android.widget.SlidingDrawer.html" class="hiddenlink" target="rightframe">SlidingDrawer</A><br>
+<A HREF="android.telephony.SmsManager.html" class="hiddenlink" target="rightframe">SmsManager</A><br>
+<A HREF="android.media.SoundPool.html" class="hiddenlink" target="rightframe">SoundPool</A><br>
+<A HREF="android.widget.Space.html" class="hiddenlink" target="rightframe">Space</A><br>
+<A HREF="android.text.SpannableStringBuilder.html" class="hiddenlink" target="rightframe">SpannableStringBuilder</A><br>
+<A HREF="android.widget.Spinner.html" class="hiddenlink" target="rightframe">Spinner</A><br>
+<A HREF="android.widget.StackView.html" class="hiddenlink" target="rightframe">StackView</A><br>
+<A HREF="android.service.notification.StatusBarNotification.html" class="hiddenlink" target="rightframe">StatusBarNotification</A><br>
+<A HREF="android.graphics.SurfaceTexture.html" class="hiddenlink" target="rightframe">SurfaceTexture</A><br>
+<A HREF="android.view.SurfaceView.html" class="hiddenlink" target="rightframe">SurfaceView</A><br>
+<A HREF="android.widget.Switch.html" class="hiddenlink" target="rightframe">Switch</A><br>
+<A HREF="android.preference.SwitchPreference.html" class="hiddenlink" target="rightframe">SwitchPreference</A><br>
+<A HREF="android.speech.tts.SynthesisCallback.html" class="hiddenlink" target="rightframe"><i>SynthesisCallback</i></A><br>
+<A HREF="android.speech.tts.SynthesisRequest.html" class="hiddenlink" target="rightframe">SynthesisRequest</A><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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="#X"><font size="-2">X</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.TabHost.html" class="hiddenlink" target="rightframe">TabHost</A><br>
+<A HREF="android.widget.TabWidget.html" class="hiddenlink" target="rightframe">TabWidget</A><br>
+<A HREF="android.provider.Telephony.BaseMmsColumns.html" class="hiddenlink" target="rightframe"><i>Telephony.BaseMmsColumns</i></A><br>
+<A HREF="android.provider.Telephony.TextBasedSmsColumns.html" class="hiddenlink" target="rightframe"><i>Telephony.TextBasedSmsColumns</i></A><br>
+<A HREF="android.provider.Telephony.ThreadsColumns.html" class="hiddenlink" target="rightframe"><i>Telephony.ThreadsColumns</i></A><br>
+<A HREF="android.telephony.TelephonyManager.html" class="hiddenlink" target="rightframe">TelephonyManager</A><br>
+<A HREF="android.widget.TextClock.html" class="hiddenlink" target="rightframe">TextClock</A><br>
+<A HREF="android.view.textservice.TextInfo.html" class="hiddenlink" target="rightframe">TextInfo</A><br>
+<A HREF="android.speech.tts.TextToSpeech.html" class="hiddenlink" target="rightframe">TextToSpeech</A><br>
+<A HREF="android.speech.tts.TextToSpeech.Engine.html" class="hiddenlink" target="rightframe">TextToSpeech.Engine</A><br>
+<A HREF="android.speech.tts.TextToSpeechService.html" class="hiddenlink" target="rightframe">TextToSpeechService</A><br>
+<A HREF="android.view.TextureView.html" class="hiddenlink" target="rightframe">TextureView</A><br>
+<A HREF="android.widget.TextView.html" class="hiddenlink" target="rightframe">TextView</A><br>
+<A HREF="android.widget.TimePicker.html" class="hiddenlink" target="rightframe">TimePicker</A><br>
+<A HREF="android.widget.ToggleButton.html" class="hiddenlink" target="rightframe">ToggleButton</A><br>
+<A HREF="android.transition.Transition.html" class="hiddenlink" target="rightframe">Transition</A><br>
+<A HREF="android.transition.TransitionSet.html" class="hiddenlink" target="rightframe">TransitionSet</A><br>
+<A HREF="android.widget.TwoLineListItem.html" class="hiddenlink" target="rightframe">TwoLineListItem</A><br>
+<A HREF="android.preference.TwoStatePreference.html" class="hiddenlink" target="rightframe">TwoStatePreference</A><br>
+<A HREF="android.renderscript.Type.html" class="hiddenlink" target="rightframe">Type</A><br>
+<A HREF="android.content.res.TypedArray.html" class="hiddenlink" target="rightframe">TypedArray</A><br>
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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="#X"><font size="-2">X</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.UiAutomation.html" class="hiddenlink" target="rightframe">UiAutomation</A><br>
+<A HREF="android.app.UiModeManager.html" class="hiddenlink" target="rightframe">UiModeManager</A><br>
+<A HREF="android.hardware.usb.UsbDevice.html" class="hiddenlink" target="rightframe">UsbDevice</A><br>
+<A HREF="android.hardware.usb.UsbDeviceConnection.html" class="hiddenlink" target="rightframe">UsbDeviceConnection</A><br>
+<A HREF="android.hardware.usb.UsbInterface.html" class="hiddenlink" target="rightframe">UsbInterface</A><br>
+<A HREF="android.os.UserManager.html" class="hiddenlink" target="rightframe">UserManager</A><br>
+<A HREF="android.speech.tts.UtteranceProgressListener.html" class="hiddenlink" target="rightframe">UtteranceProgressListener</A><br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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="#X"><font size="-2">X</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.animation.ValueAnimator.html" class="hiddenlink" target="rightframe">ValueAnimator</A><br>
+<A HREF="android.os.Vibrator.html" class="hiddenlink" target="rightframe">Vibrator</A><br>
+<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.ViewGroup.html" class="hiddenlink" target="rightframe">ViewGroup</A><br>
+<A HREF="android.view.ViewParent.html" class="hiddenlink" target="rightframe"><i>ViewParent</i></A><br>
+<A HREF="android.view.ViewPropertyAnimator.html" class="hiddenlink" target="rightframe">ViewPropertyAnimator</A><br>
+<A HREF="android.view.ViewStub.html" class="hiddenlink" target="rightframe">ViewStub</A><br>
+<A HREF="android.hardware.display.VirtualDisplay.html" class="hiddenlink" target="rightframe">VirtualDisplay</A><br>
+<A HREF="android.media.audiofx.Virtualizer.html" class="hiddenlink" target="rightframe">Virtualizer</A><br>
+<A HREF="android.transition.Visibility.html" class="hiddenlink" target="rightframe">Visibility</A><br>
+<A HREF="android.provider.VoicemailContract.Voicemails.html" class="hiddenlink" target="rightframe">VoicemailContract.Voicemails</A><br>
+<A HREF="android.net.VpnService.Builder.html" class="hiddenlink" target="rightframe">VpnService.Builder</A><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#X"><font size="-2">X</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.service.wallpaper.WallpaperService.Engine.html" class="hiddenlink" target="rightframe">WallpaperService.Engine</A><br>
+<A HREF="android.webkit.WebChromeClient.html" class="hiddenlink" target="rightframe">WebChromeClient</A><br>
+<A HREF="android.webkit.WebResourceResponse.html" class="hiddenlink" target="rightframe">WebResourceResponse</A><br>
+<A HREF="android.webkit.WebSettings.html" class="hiddenlink" target="rightframe">WebSettings</A><br>
+<A HREF="android.webkit.WebSyncManager.html" class="hiddenlink" target="rightframe">WebSyncManager</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.net.wifi.WifiConfiguration.html" class="hiddenlink" target="rightframe">WifiConfiguration</A><br>
+<A HREF="android.net.wifi.WifiEnterpriseConfig.Eap.html" class="hiddenlink" target="rightframe">WifiEnterpriseConfig.Eap</A><br>
+<A HREF="android.net.wifi.WifiInfo.html" class="hiddenlink" target="rightframe">WifiInfo</A><br>
+<A HREF="android.net.wifi.WifiManager.html" class="hiddenlink" target="rightframe">WifiManager</A><br>
+<A HREF="android.view.Window.html" class="hiddenlink" target="rightframe">Window</A><br>
+<A HREF="android.view.WindowInsets.html" class="hiddenlink" target="rightframe">WindowInsets</A><br>
+<A HREF="android.view.WindowManager.LayoutParams.html" class="hiddenlink" target="rightframe">WindowManager.LayoutParams</A><br>
+<A HREF="android.net.wifi.WpsInfo.html" class="hiddenlink" target="rightframe">WpsInfo</A><br>
+<A NAME="X"></A>
+<br><font size="+2">X</font>&nbsp;
+<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="#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.net.http.X509TrustManagerExtensions.html" class="hiddenlink" target="rightframe">X509TrustManagerExtensions</A><br>
+<A NAME="Z"></A>
+<br><font size="+2">Z</font>&nbsp;
+<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="#X"><font size="-2">X</font></a> 
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="java.util.zip.ZipEntry.html" class="hiddenlink" target="rightframe">ZipEntry</A><br>
+<A HREF="java.util.zip.ZipFile.html" class="hiddenlink" target="rightframe">ZipFile</A><br>
+<A HREF="java.util.zip.ZipInputStream.html" class="hiddenlink" target="rightframe">ZipInputStream</A><br>
+<A HREF="java.util.zip.ZipOutputStream.html" class="hiddenlink" target="rightframe">ZipOutputStream</A><br>
+<A HREF="android.widget.ZoomButton.html" class="hiddenlink" target="rightframe">ZoomButton</A><br>
+<script src="//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/21/changes/classes_index_removals.html b/docs/html/sdk/api_diff/21/changes/classes_index_removals.html
new file mode 100644
index 0000000..c83f06f
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/classes_index_removals.html
@@ -0,0 +1,61 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<script src="//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/21/changes/constructors_index_additions.html b/docs/html/sdk/api_diff/21/changes/constructors_index_additions.html
new file mode 100644
index 0000000..f93c081
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/constructors_index_additions.html
@@ -0,0 +1,769 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#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.widget.AbsListView.html#android.widget.AbsListView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AbsListView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.AbsoluteLayout.html#android.widget.AbsoluteLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AbsoluteLayout</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AbsSeekBar</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.AbsSpinner.html#android.widget.AbsSpinner.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AbsSpinner</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.AdapterView.html#android.widget.AdapterView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AdapterView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.AdapterViewAnimator.html#android.widget.AdapterViewAnimator.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AdapterViewAnimator</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<i>AdapterViewFlipper</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AdapterViewFlipper.html#android.widget.AdapterViewFlipper.ctor_added(android.content.Context, android.util.AttributeSet, int)" class="hiddenlink" target="rightframe"><b>AdapterViewFlipper</b>
+(<code>Context, AttributeSet, int</code>)</A></nobr>&nbsp;constructor<br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AdapterViewFlipper.html#android.widget.AdapterViewFlipper.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AdapterViewFlipper</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.AnalogClock.html#android.widget.AnalogClock.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AnalogClock</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.ctor_added(android.media.AudioAttributes, android.media.AudioFormat, int, int, int)" class="hiddenlink" target="rightframe"><b>AudioTrack</b>
+(<code>AudioAttributes, AudioFormat, int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AutoCompleteTextView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.transition.AutoTransition.html#android.transition.AutoTransition.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>AutoTransition</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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="#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.os.Bundle.html#android.os.Bundle.ctor_added(android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>Bundle</b>
+(<code>PersistableBundle</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.Button.html#android.widget.Button.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>Button</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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="#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.widget.CalendarView.html#android.widget.CalendarView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>CalendarView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.transition.ChangeBounds.html#android.transition.ChangeBounds.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>ChangeBounds</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.CheckBox.html#android.widget.CheckBox.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>CheckBox</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.preference.CheckBoxPreference.html#android.preference.CheckBoxPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>CheckBoxPreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>CheckedTextView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.Chronometer.html#android.widget.Chronometer.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>Chronometer</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>CompoundButton</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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="#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.widget.DatePicker.html#android.widget.DatePicker.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>DatePicker</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<i>DialogPreference</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.preference.DialogPreference.html#android.preference.DialogPreference.ctor_added(android.content.Context)" class="hiddenlink" target="rightframe"><b>DialogPreference</b>
+(<code>Context</code>)</A></nobr>&nbsp;constructor<br>
+&nbsp;&nbsp;<nobr><A HREF="android.preference.DialogPreference.html#android.preference.DialogPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>DialogPreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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="#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.widget.EditText.html#android.widget.EditText.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>EditText</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.preference.EditTextPreference.html#android.preference.EditTextPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>EditTextPreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.opengl.EGLObjectHandle.html#android.opengl.EGLObjectHandle.ctor_added(long)" class="hiddenlink" target="rightframe"><b>EGLObjectHandle</b>
+(<code>long</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.ExpandableListView.html#android.widget.ExpandableListView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ExpandableListView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.inputmethodservice.ExtractEditText.html#android.inputmethodservice.ExtractEditText.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ExtractEditText</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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="#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.transition.Fade.html#android.transition.Fade.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Fade</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>FrameLayout</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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="#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.widget.Gallery.html#android.widget.Gallery.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>Gallery</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.gesture.GestureOverlayView.html#android.gesture.GestureOverlayView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>GestureOverlayView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>GridLayout</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.GridView.html#android.widget.GridView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>GridView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="H"></A>
+<br><font size="+2">H</font>&nbsp;
+<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="#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.widget.HorizontalScrollView.html#android.widget.HorizontalScrollView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>HorizontalScrollView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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="#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.widget.ImageButton.html#android.widget.ImageButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ImageButton</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ImageView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="K"></A>
+<br><font size="+2">K</font>&nbsp;
+<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="#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.inputmethodservice.KeyboardView.html#android.inputmethodservice.KeyboardView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>KeyboardView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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="#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.widget.LinearLayout.html#android.widget.LinearLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>LinearLayout</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<i>ListPreference</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.preference.ListPreference.html#android.preference.ListPreference.ctor_added(android.content.Context, android.util.AttributeSet, int)" class="hiddenlink" target="rightframe"><b>ListPreference</b>
+(<code>Context, AttributeSet, int</code>)</A></nobr>&nbsp;constructor<br>
+&nbsp;&nbsp;<nobr><A HREF="android.preference.ListPreference.html#android.preference.ListPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ListPreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.ListView.html#android.widget.ListView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ListView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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="#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.media.MediaCodecList.html#android.media.MediaCodecList.ctor_added(int)" class="hiddenlink" target="rightframe"><b>MediaCodecList</b>
+(<code>int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.app.MediaRouteButton.html#android.app.MediaRouteButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>MediaRouteButton</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.MultiAutoCompleteTextView.html#android.widget.MultiAutoCompleteTextView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>MultiAutoCompleteTextView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<i>MultiSelectListPreference</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.preference.MultiSelectListPreference.html#android.preference.MultiSelectListPreference.ctor_added(android.content.Context, android.util.AttributeSet, int)" class="hiddenlink" target="rightframe"><b>MultiSelectListPreference</b>
+(<code>Context, AttributeSet, int</code>)</A></nobr>&nbsp;constructor<br>
+&nbsp;&nbsp;<nobr><A HREF="android.preference.MultiSelectListPreference.html#android.preference.MultiSelectListPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>MultiSelectListPreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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="#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.widget.NumberPicker.html#android.widget.NumberPicker.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>NumberPicker</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#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.telephony.PhoneNumberFormattingTextWatcher.html#android.telephony.PhoneNumberFormattingTextWatcher.ctor_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>PhoneNumberFormattingTextWatcher</b>
+(<code>String</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.preference.Preference.html#android.preference.Preference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>Preference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.preference.PreferenceCategory.html#android.preference.PreferenceCategory.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>PreferenceCategory</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.preference.PreferenceGroup.html#android.preference.PreferenceGroup.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>PreferenceGroup</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ProgressBar</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="Q"></A>
+<br><font size="+2">Q</font>&nbsp;
+<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="#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.widget.QuickContactBadge.html#android.widget.QuickContactBadge.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>QuickContactBadge</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#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.widget.RadioButton.html#android.widget.RadioButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>RadioButton</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.RatingBar.html#android.widget.RatingBar.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>RatingBar</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.animation.RectEvaluator.html#android.animation.RectEvaluator.ctor_added(android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>RectEvaluator</b>
+(<code>Rect</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.RelativeLayout.html#android.widget.RelativeLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>RelativeLayout</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<i>RestrictionEntry</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.ctor_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>RestrictionEntry</b>
+(<code>int, String</code>)</A></nobr>&nbsp;constructor<br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.ctor_added(java.lang.String, int)" class="hiddenlink" target="rightframe"><b>RestrictionEntry</b>
+(<code>String, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.preference.RingtonePreference.html#android.preference.RingtonePreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>RingtonePreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#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.transition.Scene.html#android.transition.Scene.ctor_added(android.view.ViewGroup, android.view.View)" class="hiddenlink" target="rightframe"><b>Scene</b>
+(<code>ViewGroup, View</code>)</A></nobr>&nbsp;constructor<br>
+<i>ScriptC</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptC.html#android.renderscript.ScriptC.ctor_added(android.renderscript.RenderScript, java.lang.String, byte[], byte[])" class="hiddenlink" target="rightframe"><b>ScriptC</b>
+(<code>RenderScript, String, byte[], byte[]</code>)</A></nobr>&nbsp;constructor<br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptC.html#android.renderscript.ScriptC.ctor_added(long, android.renderscript.RenderScript)" class="hiddenlink" target="rightframe"><b>ScriptC</b>
+(<code>long, RenderScript</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.ScrollView.html#android.widget.ScrollView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ScrollView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<i>SearchView</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.SearchView.html#android.widget.SearchView.ctor_added(android.content.Context, android.util.AttributeSet, int)" class="hiddenlink" target="rightframe"><b>SearchView</b>
+(<code>Context, AttributeSet, int</code>)</A></nobr>&nbsp;constructor<br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.SearchView.html#android.widget.SearchView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>SearchView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.SeekBar.html#android.widget.SeekBar.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>SeekBar</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.SlidingDrawer.html#android.widget.SlidingDrawer.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>SlidingDrawer</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.Space.html#android.widget.Space.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>Space</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.Spinner.html#android.widget.Spinner.ctor_added(android.content.Context, android.util.AttributeSet, int, int, int)" class="hiddenlink" target="rightframe"><b>Spinner</b>
+(<code>Context, AttributeSet, int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.StackView.html#android.widget.StackView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>StackView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.view.SurfaceView.html#android.view.SurfaceView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>SurfaceView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>Switch</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.preference.SwitchPreference.html#android.preference.SwitchPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>SwitchPreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.ctor_added(java.lang.CharSequence, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>SynthesisRequest</b>
+(<code>CharSequence, Bundle</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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="#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>TabHost</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TabHost.html#android.widget.TabHost.ctor_added(android.content.Context, android.util.AttributeSet, int)" class="hiddenlink" target="rightframe"><b>TabHost</b>
+(<code>Context, AttributeSet, int</code>)</A></nobr>&nbsp;constructor<br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TabHost.html#android.widget.TabHost.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TabHost</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.TabWidget.html#android.widget.TabWidget.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TabWidget</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.TextClock.html#android.widget.TextClock.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TextClock</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.view.textservice.TextInfo.html#android.view.textservice.TextInfo.ctor_added(java.lang.CharSequence, int, int, int, int)" class="hiddenlink" target="rightframe"><b>TextInfo</b>
+(<code>CharSequence, int, int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.view.TextureView.html#android.view.TextureView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TextureView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TextView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.TimePicker.html#android.widget.TimePicker.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TimePicker</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.ToggleButton.html#android.widget.ToggleButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ToggleButton</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Transition</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>TransitionSet</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.TwoLineListItem.html#android.widget.TwoLineListItem.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TwoLineListItem</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.preference.TwoStatePreference.html#android.preference.TwoStatePreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TwoStatePreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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="#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.widget.VideoView.html#android.widget.VideoView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>VideoView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.view.View.html#android.view.View.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>View</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ViewGroup</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.view.ViewStub.html#android.view.ViewStub.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ViewStub</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Visibility</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#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">
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.ctor_added(java.lang.String, java.lang.String, int, java.lang.String, java.util.Map<java.lang.String, java.lang.String>, java.io.InputStream)" class="hiddenlink" target="rightframe"><b>WebResourceResponse</b>
+(<code>String, String, int, String, Map&lt;String, String&gt;, InputStream</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>WebView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="Z"></A>
+<br><font size="+2">Z</font>&nbsp;
+<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="#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.widget.ZoomButton.html#android.widget.ZoomButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ZoomButton</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<script src="//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/21/changes/constructors_index_all.html b/docs/html/sdk/api_diff/21/changes/constructors_index_all.html
new file mode 100644
index 0000000..ad2c696
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/constructors_index_all.html
@@ -0,0 +1,779 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#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.widget.AbsListView.html#android.widget.AbsListView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AbsListView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.AbsoluteLayout.html#android.widget.AbsoluteLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AbsoluteLayout</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AbsSeekBar</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.AbsSpinner.html#android.widget.AbsSpinner.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AbsSpinner</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.AdapterView.html#android.widget.AdapterView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AdapterView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.AdapterViewAnimator.html#android.widget.AdapterViewAnimator.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AdapterViewAnimator</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<i>AdapterViewFlipper</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AdapterViewFlipper.html#android.widget.AdapterViewFlipper.ctor_added(android.content.Context, android.util.AttributeSet, int)" class="hiddenlink" target="rightframe"><b>AdapterViewFlipper</b>
+(<code>Context, AttributeSet, int</code>)</A></nobr>&nbsp;constructor<br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AdapterViewFlipper.html#android.widget.AdapterViewFlipper.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AdapterViewFlipper</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.AnalogClock.html#android.widget.AnalogClock.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AnalogClock</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ctor_removed()" class="hiddenlink" target="rightframe"><strike>AudioFormat</strike>
+()</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.ctor_added(android.media.AudioAttributes, android.media.AudioFormat, int, int, int)" class="hiddenlink" target="rightframe"><b>AudioTrack</b>
+(<code>AudioAttributes, AudioFormat, int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>AutoCompleteTextView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.transition.AutoTransition.html#android.transition.AutoTransition.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>AutoTransition</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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="#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.os.Bundle.html#android.os.Bundle.ctor_added(android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>Bundle</b>
+(<code>PersistableBundle</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.Button.html#android.widget.Button.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>Button</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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="#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.widget.CalendarView.html#android.widget.CalendarView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>CalendarView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.transition.ChangeBounds.html#android.transition.ChangeBounds.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>ChangeBounds</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.CheckBox.html#android.widget.CheckBox.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>CheckBox</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.preference.CheckBoxPreference.html#android.preference.CheckBoxPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>CheckBoxPreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>CheckedTextView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.Chronometer.html#android.widget.Chronometer.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>Chronometer</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>CompoundButton</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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="#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.widget.DatePicker.html#android.widget.DatePicker.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>DatePicker</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<i>DialogPreference</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.preference.DialogPreference.html#android.preference.DialogPreference.ctor_added(android.content.Context)" class="hiddenlink" target="rightframe"><b>DialogPreference</b>
+(<code>Context</code>)</A></nobr>&nbsp;constructor<br>
+&nbsp;&nbsp;<nobr><A HREF="android.preference.DialogPreference.html#android.preference.DialogPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>DialogPreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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="#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.widget.EditText.html#android.widget.EditText.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>EditText</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.preference.EditTextPreference.html#android.preference.EditTextPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>EditTextPreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<i>EGLObjectHandle</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.opengl.EGLObjectHandle.html#android.opengl.EGLObjectHandle.ctor_added(long)" class="hiddenlink" target="rightframe"><b>EGLObjectHandle</b>
+(<code>long</code>)</A></nobr>&nbsp;constructor<br>
+&nbsp;&nbsp;<nobr><A HREF="android.opengl.EGLObjectHandle.html#android.opengl.EGLObjectHandle.ctor_changed(int)" class="hiddenlink" target="rightframe">EGLObjectHandle
+(<code>int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.ExpandableListView.html#android.widget.ExpandableListView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ExpandableListView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.inputmethodservice.ExtractEditText.html#android.inputmethodservice.ExtractEditText.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ExtractEditText</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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="#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.transition.Fade.html#android.transition.Fade.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Fade</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>FrameLayout</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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="#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.widget.Gallery.html#android.widget.Gallery.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>Gallery</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.gesture.GestureOverlayView.html#android.gesture.GestureOverlayView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>GestureOverlayView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>GridLayout</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.GridView.html#android.widget.GridView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>GridView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="H"></A>
+<br><font size="+2">H</font>&nbsp;
+<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="#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.widget.HorizontalScrollView.html#android.widget.HorizontalScrollView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>HorizontalScrollView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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="#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.widget.ImageButton.html#android.widget.ImageButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ImageButton</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ImageView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="K"></A>
+<br><font size="+2">K</font>&nbsp;
+<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="#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.inputmethodservice.KeyboardView.html#android.inputmethodservice.KeyboardView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>KeyboardView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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="#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.widget.LinearLayout.html#android.widget.LinearLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>LinearLayout</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<i>ListPreference</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.preference.ListPreference.html#android.preference.ListPreference.ctor_added(android.content.Context, android.util.AttributeSet, int)" class="hiddenlink" target="rightframe"><b>ListPreference</b>
+(<code>Context, AttributeSet, int</code>)</A></nobr>&nbsp;constructor<br>
+&nbsp;&nbsp;<nobr><A HREF="android.preference.ListPreference.html#android.preference.ListPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ListPreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.ListView.html#android.widget.ListView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ListView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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="#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.media.MediaCodecList.html#android.media.MediaCodecList.ctor_added(int)" class="hiddenlink" target="rightframe"><b>MediaCodecList</b>
+(<code>int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.app.MediaRouteButton.html#android.app.MediaRouteButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>MediaRouteButton</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.MultiAutoCompleteTextView.html#android.widget.MultiAutoCompleteTextView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>MultiAutoCompleteTextView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<i>MultiSelectListPreference</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.preference.MultiSelectListPreference.html#android.preference.MultiSelectListPreference.ctor_added(android.content.Context, android.util.AttributeSet, int)" class="hiddenlink" target="rightframe"><b>MultiSelectListPreference</b>
+(<code>Context, AttributeSet, int</code>)</A></nobr>&nbsp;constructor<br>
+&nbsp;&nbsp;<nobr><A HREF="android.preference.MultiSelectListPreference.html#android.preference.MultiSelectListPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>MultiSelectListPreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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="#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.widget.NumberPicker.html#android.widget.NumberPicker.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>NumberPicker</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#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.telephony.PhoneNumberFormattingTextWatcher.html#android.telephony.PhoneNumberFormattingTextWatcher.ctor_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>PhoneNumberFormattingTextWatcher</b>
+(<code>String</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.preference.Preference.html#android.preference.Preference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>Preference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.preference.PreferenceCategory.html#android.preference.PreferenceCategory.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>PreferenceCategory</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.preference.PreferenceGroup.html#android.preference.PreferenceGroup.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>PreferenceGroup</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ProgressBar</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="Q"></A>
+<br><font size="+2">Q</font>&nbsp;
+<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="#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.widget.QuickContactBadge.html#android.widget.QuickContactBadge.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>QuickContactBadge</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#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.widget.RadioButton.html#android.widget.RadioButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>RadioButton</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.RatingBar.html#android.widget.RatingBar.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>RatingBar</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.animation.RectEvaluator.html#android.animation.RectEvaluator.ctor_added(android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>RectEvaluator</b>
+(<code>Rect</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.RelativeLayout.html#android.widget.RelativeLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>RelativeLayout</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<i>RestrictionEntry</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.ctor_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>RestrictionEntry</b>
+(<code>int, String</code>)</A></nobr>&nbsp;constructor<br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.ctor_added(java.lang.String, int)" class="hiddenlink" target="rightframe"><b>RestrictionEntry</b>
+(<code>String, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.preference.RingtonePreference.html#android.preference.RingtonePreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>RingtonePreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#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">
+<i>Scene</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Scene.html#android.transition.Scene.ctor_added(android.view.ViewGroup, android.view.View)" class="hiddenlink" target="rightframe"><b>Scene</b>
+(<code>ViewGroup, View</code>)</A></nobr>&nbsp;constructor<br>
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Scene.html#android.transition.Scene.ctor_changed(android.view.ViewGroup, android.view.ViewGroup)" class="hiddenlink" target="rightframe">Scene
+(<code>ViewGroup, ViewGroup</code>)</A></nobr>&nbsp;constructor<br>
+<i>ScriptC</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptC.html#android.renderscript.ScriptC.ctor_added(android.renderscript.RenderScript, java.lang.String, byte[], byte[])" class="hiddenlink" target="rightframe"><b>ScriptC</b>
+(<code>RenderScript, String, byte[], byte[]</code>)</A></nobr>&nbsp;constructor<br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptC.html#android.renderscript.ScriptC.ctor_added(long, android.renderscript.RenderScript)" class="hiddenlink" target="rightframe"><b>ScriptC</b>
+(<code>long, RenderScript</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.ScrollView.html#android.widget.ScrollView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ScrollView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<i>SearchView</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.SearchView.html#android.widget.SearchView.ctor_added(android.content.Context, android.util.AttributeSet, int)" class="hiddenlink" target="rightframe"><b>SearchView</b>
+(<code>Context, AttributeSet, int</code>)</A></nobr>&nbsp;constructor<br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.SearchView.html#android.widget.SearchView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>SearchView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.SeekBar.html#android.widget.SeekBar.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>SeekBar</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.SlidingDrawer.html#android.widget.SlidingDrawer.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>SlidingDrawer</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.media.SoundPool.html#android.media.SoundPool.ctor_changed(int, int, int)" class="hiddenlink" target="rightframe">SoundPool
+(<code>int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.Space.html#android.widget.Space.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>Space</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.Spinner.html#android.widget.Spinner.ctor_added(android.content.Context, android.util.AttributeSet, int, int, int)" class="hiddenlink" target="rightframe"><b>Spinner</b>
+(<code>Context, AttributeSet, int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.StackView.html#android.widget.StackView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>StackView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.view.SurfaceView.html#android.view.SurfaceView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>SurfaceView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>Switch</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.preference.SwitchPreference.html#android.preference.SwitchPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>SwitchPreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.ctor_added(java.lang.CharSequence, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>SynthesisRequest</b>
+(<code>CharSequence, Bundle</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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="#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>TabHost</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TabHost.html#android.widget.TabHost.ctor_added(android.content.Context, android.util.AttributeSet, int)" class="hiddenlink" target="rightframe"><b>TabHost</b>
+(<code>Context, AttributeSet, int</code>)</A></nobr>&nbsp;constructor<br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TabHost.html#android.widget.TabHost.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TabHost</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.TabWidget.html#android.widget.TabWidget.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TabWidget</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.TextClock.html#android.widget.TextClock.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TextClock</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.view.textservice.TextInfo.html#android.view.textservice.TextInfo.ctor_added(java.lang.CharSequence, int, int, int, int)" class="hiddenlink" target="rightframe"><b>TextInfo</b>
+(<code>CharSequence, int, int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.view.TextureView.html#android.view.TextureView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TextureView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TextView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.TimePicker.html#android.widget.TimePicker.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TimePicker</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.ToggleButton.html#android.widget.ToggleButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ToggleButton</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Transition</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>TransitionSet</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.widget.TwoLineListItem.html#android.widget.TwoLineListItem.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TwoLineListItem</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.preference.TwoStatePreference.html#android.preference.TwoStatePreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>TwoStatePreference</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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="#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.widget.VideoView.html#android.widget.VideoView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>VideoView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.view.View.html#android.view.View.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>View</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ViewGroup</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.view.ViewStub.html#android.view.ViewStub.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ViewStub</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Visibility</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#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">
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.ctor_added(java.lang.String, java.lang.String, int, java.lang.String, java.util.Map<java.lang.String, java.lang.String>, java.io.InputStream)" class="hiddenlink" target="rightframe"><b>WebResourceResponse</b>
+(<code>String, String, int, String, Map&lt;String, String&gt;, InputStream</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>WebView</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="Z"></A>
+<br><font size="+2">Z</font>&nbsp;
+<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="#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.widget.ZoomButton.html#android.widget.ZoomButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)" class="hiddenlink" target="rightframe"><b>ZoomButton</b>
+(<code>Context, AttributeSet, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<script src="//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/21/changes/constructors_index_changes.html b/docs/html/sdk/api_diff/21/changes/constructors_index_changes.html
new file mode 100644
index 0000000..4506375
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/constructors_index_changes.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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.opengl.EGLObjectHandle.html#android.opengl.EGLObjectHandle.ctor_changed(int)" class="hiddenlink" target="rightframe">EGLObjectHandle
+(<code>int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<a href="#E"><font size="-2">E</font></a> 
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.transition.Scene.html#android.transition.Scene.ctor_changed(android.view.ViewGroup, android.view.ViewGroup)" class="hiddenlink" target="rightframe">Scene
+(<code>ViewGroup, ViewGroup</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.media.SoundPool.html#android.media.SoundPool.ctor_changed(int, int, int)" class="hiddenlink" target="rightframe">SoundPool
+(<code>int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<script src="//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/21/changes/constructors_index_removals.html b/docs/html/sdk/api_diff/21/changes/constructors_index_removals.html
new file mode 100644
index 0000000..36e6407
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/constructors_index_removals.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+ <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.ctor_removed()" class="hiddenlink" target="rightframe"><strike>AudioFormat</strike>
+()</A></nobr>&nbsp;constructor<br>
+<script src="//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/21/changes/fields_index_additions.html b/docs/html/sdk/api_diff/21/changes/fields_index_additions.html
new file mode 100644
index 0000000..1ee898e
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/fields_index_additions.html
@@ -0,0 +1,3342 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<A HREF="fields_index_removals.html" xclass="hiddenlink">Removals</A>
+  <br>
+<b>Additions</b>
+  <br>
+<A HREF="fields_index_changes.html"xclass="hiddenlink">Changes</A>
+  </td>
+  </tr>
+</table>
+<div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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.Settings.Secure.html#android.provider.Settings.Secure.ACCESSIBILITY_DISPLAY_INVERSION_ENABLED" class="hiddenlink" target="rightframe">ACCESSIBILITY_DISPLAY_INVERSION_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.RawContactsColumns.html#android.provider.ContactsContract.RawContactsColumns.ACCOUNT_TYPE_AND_DATA_SET" class="hiddenlink" target="rightframe">ACCOUNT_TYPE_AND_DATA_SET</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.ACTION_APPLICATION_RESTRICTIONS_CHANGED" class="hiddenlink" target="rightframe">ACTION_APPLICATION_RESTRICTIONS_CHANGED</A>
+</nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.ACTION_APPWIDGET_HOST_RESTORED" class="hiddenlink" target="rightframe">ACTION_APPWIDGET_HOST_RESTORED</A>
+</nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.ACTION_APPWIDGET_RESTORED" class="hiddenlink" target="rightframe">ACTION_APPWIDGET_RESTORED</A>
+</nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.ACTION_ARGUMENT_SET_TEXT_CHARSEQUENCE" class="hiddenlink" target="rightframe">ACTION_ARGUMENT_SET_TEXT_CHARSEQUENCE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_CAST_SETTINGS" class="hiddenlink" target="rightframe">ACTION_CAST_SETTINGS</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ACTION_HDMI_AUDIO_PLUG" class="hiddenlink" target="rightframe">ACTION_HDMI_AUDIO_PLUG</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ACTION_HEADSET_PLUG" class="hiddenlink" target="rightframe">ACTION_HEADSET_PLUG</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_HOME_SETTINGS" class="hiddenlink" target="rightframe">ACTION_HOME_SETTINGS</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.ACTION_LOCK_TASK_ENTERING" class="hiddenlink" target="rightframe">ACTION_LOCK_TASK_ENTERING</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.ACTION_LOCK_TASK_EXITING" class="hiddenlink" target="rightframe">ACTION_LOCK_TASK_EXITING</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.ACTION_MANAGED_PROFILE_ADDED" class="hiddenlink" target="rightframe">ACTION_MANAGED_PROFILE_ADDED</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.ACTION_MANAGED_PROFILE_REMOVED" class="hiddenlink" target="rightframe">ACTION_MANAGED_PROFILE_REMOVED</A>
+</nobr><br>
+<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.ACTION_NEXT_ALARM_CLOCK_CHANGED" class="hiddenlink" target="rightframe">ACTION_NEXT_ALARM_CLOCK_CHANGED</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.ACTION_OPEN_DOCUMENT_TREE" class="hiddenlink" target="rightframe">ACTION_OPEN_DOCUMENT_TREE</A>
+</nobr><br>
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.ACTION_POWER_SAVE_MODE_CHANGED" class="hiddenlink" target="rightframe">ACTION_POWER_SAVE_MODE_CHANGED</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.ACTION_PROFILE_PROVISIONING_COMPLETE" class="hiddenlink" target="rightframe">ACTION_PROFILE_PROVISIONING_COMPLETE</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.ACTION_PROVISION_MANAGED_PROFILE" class="hiddenlink" target="rightframe">ACTION_PROVISION_MANAGED_PROFILE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.QuickContact.html#android.provider.ContactsContract.QuickContact.ACTION_QUICK_CONTACT" class="hiddenlink" target="rightframe">ACTION_QUICK_CONTACT</A>
+</nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.ACTION_SET_TEXT" class="hiddenlink" target="rightframe">ACTION_SET_TEXT</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_SHOW_REGULATORY_INFO" class="hiddenlink" target="rightframe">ACTION_SHOW_REGULATORY_INFO</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_USAGE_ACCESS_SETTINGS" class="hiddenlink" target="rightframe">ACTION_USAGE_ACCESS_SETTINGS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_VOICE_INPUT_SETTINGS" class="hiddenlink" target="rightframe">ACTION_VOICE_INPUT_SETTINGS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionBarPopupTheme" class="hiddenlink" target="rightframe">actionBarPopupTheme</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionBarTheme" class="hiddenlink" target="rightframe">actionBarTheme</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionModeFindDrawable" class="hiddenlink" target="rightframe">actionModeFindDrawable</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionModeShareDrawable" class="hiddenlink" target="rightframe">actionModeShareDrawable</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionModeWebSearchDrawable" class="hiddenlink" target="rightframe">actionModeWebSearchDrawable</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionOverflowMenuStyle" class="hiddenlink" target="rightframe">actionOverflowMenuStyle</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RecentTaskInfo.html#android.app.ActivityManager.RecentTaskInfo.affiliatedTaskId" class="hiddenlink" target="rightframe">affiliatedTaskId</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiEnterpriseConfig.Eap.html#android.net.wifi.WifiEnterpriseConfig.Eap.AKA" class="hiddenlink" target="rightframe">AKA</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.ALL_CODECS" class="hiddenlink" target="rightframe">ALL_CODECS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.ambientShadowAlpha" class="hiddenlink" target="rightframe">ambientShadowAlpha</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.amPmBackgroundColor" class="hiddenlink" target="rightframe">amPmBackgroundColor</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.amPmTextColor" class="hiddenlink" target="rightframe">amPmTextColor</A>
+</nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.ANY_CURSOR_ITEM_TYPE" class="hiddenlink" target="rightframe">ANY_CURSOR_ITEM_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.APPWIDGET_SERVICE" class="hiddenlink" target="rightframe">APPWIDGET_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Telephony.ThreadsColumns.html#android.provider.Telephony.ThreadsColumns.ARCHIVED" class="hiddenlink" target="rightframe">ARCHIVED</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.AUDIO_ATTRIBUTES_DEFAULT" class="hiddenlink" target="rightframe">AUDIO_ATTRIBUTES_DEFAULT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.AUDIO_SESSION_ID_GENERATE" class="hiddenlink" target="rightframe">AUDIO_SESSION_ID_GENERATE</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.audioAttributes" class="hiddenlink" target="rightframe">audioAttributes</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.autoRemoveFromRecents" class="hiddenlink" target="rightframe">autoRemoveFromRecents</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.AVCLevel52" class="hiddenlink" target="rightframe">AVCLevel52</A>
+</nobr><br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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">
+<nobr><A HREF="android.R.attr.html#android.R.attr.backgroundTint" class="hiddenlink" target="rightframe">backgroundTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.backgroundTintMode" class="hiddenlink" target="rightframe">backgroundTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.banner" class="hiddenlink" target="rightframe">banner</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.BATTERY_PROPERTY_CAPACITY" class="hiddenlink" target="rightframe">BATTERY_PROPERTY_CAPACITY</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.BATTERY_PROPERTY_CHARGE_COUNTER" class="hiddenlink" target="rightframe">BATTERY_PROPERTY_CHARGE_COUNTER</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.BATTERY_PROPERTY_CURRENT_AVERAGE" class="hiddenlink" target="rightframe">BATTERY_PROPERTY_CURRENT_AVERAGE</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.BATTERY_PROPERTY_CURRENT_NOW" class="hiddenlink" target="rightframe">BATTERY_PROPERTY_CURRENT_NOW</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.BATTERY_PROPERTY_ENERGY_COUNTER" class="hiddenlink" target="rightframe">BATTERY_PROPERTY_ENERGY_COUNTER</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.BATTERY_SERVICE" class="hiddenlink" target="rightframe">BATTERY_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.BIND_DREAM_SERVICE" class="hiddenlink" target="rightframe">BIND_DREAM_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.BIND_TV_INPUT" class="hiddenlink" target="rightframe">BIND_TV_INPUT</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.BIND_VOICE_INTERACTION" class="hiddenlink" target="rightframe">BIND_VOICE_INTERACTION</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WpsInfo.html#android.net.wifi.WpsInfo.BSSID" class="hiddenlink" target="rightframe">BSSID</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.BUFFER_FLAG_KEY_FRAME" class="hiddenlink" target="rightframe">BUFFER_FLAG_KEY_FRAME</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonBarNegativeButtonStyle" class="hiddenlink" target="rightframe">buttonBarNegativeButtonStyle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonBarNeutralButtonStyle" class="hiddenlink" target="rightframe">buttonBarNeutralButtonStyle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonBarPositiveButtonStyle" class="hiddenlink" target="rightframe">buttonBarPositiveButtonStyle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonTint" class="hiddenlink" target="rightframe">buttonTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonTintMode" class="hiddenlink" target="rightframe">buttonTintMode</A>
+</nobr><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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">
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.CACHED_FORMATTED_NUMBER" class="hiddenlink" target="rightframe">CACHED_FORMATTED_NUMBER</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.CACHED_LOOKUP_URI" class="hiddenlink" target="rightframe">CACHED_LOOKUP_URI</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.CACHED_MATCHED_NUMBER" class="hiddenlink" target="rightframe">CACHED_MATCHED_NUMBER</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.CACHED_NORMALIZED_NUMBER" class="hiddenlink" target="rightframe">CACHED_NORMALIZED_NUMBER</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.CACHED_PHOTO_ID" class="hiddenlink" target="rightframe">CACHED_PHOTO_ID</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.calendarTextColor" class="hiddenlink" target="rightframe">calendarTextColor</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.CAMERA_SERVICE" class="hiddenlink" target="rightframe">CAMERA_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.category" class="hiddenlink" target="rightframe">category</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_ALARM" class="hiddenlink" target="rightframe">CATEGORY_ALARM</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_CALL" class="hiddenlink" target="rightframe">CATEGORY_CALL</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_EMAIL" class="hiddenlink" target="rightframe">CATEGORY_EMAIL</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_ERROR" class="hiddenlink" target="rightframe">CATEGORY_ERROR</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_EVENT" class="hiddenlink" target="rightframe">CATEGORY_EVENT</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.CATEGORY_LEANBACK_LAUNCHER" class="hiddenlink" target="rightframe">CATEGORY_LEANBACK_LAUNCHER</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_MESSAGE" class="hiddenlink" target="rightframe">CATEGORY_MESSAGE</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_PROGRESS" class="hiddenlink" target="rightframe">CATEGORY_PROGRESS</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_PROMO" class="hiddenlink" target="rightframe">CATEGORY_PROMO</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_RECOMMENDATION" class="hiddenlink" target="rightframe">CATEGORY_RECOMMENDATION</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_SERVICE" class="hiddenlink" target="rightframe">CATEGORY_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_SOCIAL" class="hiddenlink" target="rightframe">CATEGORY_SOCIAL</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_STATUS" class="hiddenlink" target="rightframe">CATEGORY_STATUS</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_SYSTEM" class="hiddenlink" target="rightframe">CATEGORY_SYSTEM</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_TRANSPORT" class="hiddenlink" target="rightframe">CATEGORY_TRANSPORT</A>
+</nobr><br>
+<i>CENATT</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENATT" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENATT" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENATT" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENATT" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENATX</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENATX" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENATX" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENATX" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENATX" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENCOM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENCRC</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENDSK</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENDSK" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENDSK" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENDSK" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENDSK" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENEXT</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENFLG</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENHDR</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENHOW</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENLEN</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENNAM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENOFF</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENSIG</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENSIZ</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENTIM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENVEM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENVEM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENVEM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENVEM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENVEM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENVER</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENVER" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENVER" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENVER" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENVER" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_SIDE_LEFT" class="hiddenlink" target="rightframe">CHANNEL_OUT_SIDE_LEFT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_SIDE_RIGHT" class="hiddenlink" target="rightframe">CHANNEL_OUT_SIDE_RIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.checkMarkTint" class="hiddenlink" target="rightframe">checkMarkTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.checkMarkTintMode" class="hiddenlink" target="rightframe">checkMarkTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.view.HapticFeedbackConstants.html#android.view.HapticFeedbackConstants.CLOCK_TICK" class="hiddenlink" target="rightframe">CLOCK_TICK</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.closeIcon" class="hiddenlink" target="rightframe">closeIcon</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.color" class="hiddenlink" target="rightframe">color</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.COLOR_DEFAULT" class="hiddenlink" target="rightframe">COLOR_DEFAULT</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.COLOR_FormatYUV420Flexible" class="hiddenlink" target="rightframe">COLOR_FormatYUV420Flexible</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorAccent" class="hiddenlink" target="rightframe">colorAccent</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorButtonNormal" class="hiddenlink" target="rightframe">colorButtonNormal</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorControlActivated" class="hiddenlink" target="rightframe">colorControlActivated</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorControlHighlight" class="hiddenlink" target="rightframe">colorControlHighlight</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorControlNormal" class="hiddenlink" target="rightframe">colorControlNormal</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorEdgeEffect" class="hiddenlink" target="rightframe">colorEdgeEffect</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorPrimary" class="hiddenlink" target="rightframe">colorPrimary</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorPrimaryDark" class="hiddenlink" target="rightframe">colorPrimaryDark</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.commitIcon" class="hiddenlink" target="rightframe">commitIcon</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_BALANCED" class="hiddenlink" target="rightframe">CONNECTION_PRIORITY_BALANCED</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_HIGH" class="hiddenlink" target="rightframe">CONNECTION_PRIORITY_HIGH</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_LOW_POWER" class="hiddenlink" target="rightframe">CONNECTION_PRIORITY_LOW_POWER</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.CONTENT_FREQUENT_URI" class="hiddenlink" target="rightframe">CONTENT_FREQUENT_URI</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.CONTENT_MULTI_VCARD_URI" class="hiddenlink" target="rightframe">CONTENT_MULTI_VCARD_URI</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.CONTENT_URI_WITH_VOICEMAIL" class="hiddenlink" target="rightframe">CONTENT_URI_WITH_VOICEMAIL</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentAgeHint" class="hiddenlink" target="rightframe">contentAgeHint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetEnd" class="hiddenlink" target="rightframe">contentInsetEnd</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetLeft" class="hiddenlink" target="rightframe">contentInsetLeft</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetRight" class="hiddenlink" target="rightframe">contentInsetRight</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetStart" class="hiddenlink" target="rightframe">contentInsetStart</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlX1" class="hiddenlink" target="rightframe">controlX1</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlX2" class="hiddenlink" target="rightframe">controlX2</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlY1" class="hiddenlink" target="rightframe">controlY1</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlY2" class="hiddenlink" target="rightframe">controlY2</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.country" class="hiddenlink" target="rightframe">country</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.COUNTRY_ISO" class="hiddenlink" target="rightframe">COUNTRY_ISO</A>
+</nobr><br>
+<nobr><A HREF="android.renderscript.RenderScript.html#android.renderscript.RenderScript.CREATE_FLAG_LOW_LATENCY" class="hiddenlink" target="rightframe">CREATE_FLAG_LOW_LATENCY</A>
+</nobr><br>
+<nobr><A HREF="android.renderscript.RenderScript.html#android.renderscript.RenderScript.CREATE_FLAG_LOW_POWER" class="hiddenlink" target="rightframe">CREATE_FLAG_LOW_POWER</A>
+</nobr><br>
+<nobr><A HREF="android.renderscript.RenderScript.html#android.renderscript.RenderScript.CREATE_FLAG_NONE" class="hiddenlink" target="rightframe">CREATE_FLAG_NONE</A>
+</nobr><br>
+<i>CREATOR</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.Telephony.BaseMmsColumns.html#android.provider.Telephony.BaseMmsColumns.CREATOR" class="hiddenlink" target="rightframe">android.provider.Telephony.BaseMmsColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.Telephony.TextBasedSmsColumns.html#android.provider.Telephony.TextBasedSmsColumns.CREATOR" class="hiddenlink" target="rightframe">android.provider.Telephony.TextBasedSmsColumns</A>
+</nobr><br>
+<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.CURSOR_UPDATE_IMMEDIATE" class="hiddenlink" target="rightframe">CURSOR_UPDATE_IMMEDIATE</A>
+</nobr><br>
+<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.CURSOR_UPDATE_MONITOR" class="hiddenlink" target="rightframe">CURSOR_UPDATE_MONITOR</A>
+</nobr><br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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="#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.CallLog.Calls.html#android.provider.CallLog.Calls.DATA_USAGE" class="hiddenlink" target="rightframe">DATA_USAGE</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.datePickerDialogTheme" class="hiddenlink" target="rightframe">datePickerDialogTheme</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.datePickerMode" class="hiddenlink" target="rightframe">datePickerMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.dayOfWeekBackground" class="hiddenlink" target="rightframe">dayOfWeekBackground</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.dayOfWeekTextAppearance" class="hiddenlink" target="rightframe">dayOfWeekTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.html#android.provider.ContactsContract.DEFERRED_SNIPPETING" class="hiddenlink" target="rightframe">DEFERRED_SNIPPETING</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.html#android.provider.ContactsContract.DEFERRED_SNIPPETING_QUERY" class="hiddenlink" target="rightframe">DEFERRED_SNIPPETING_QUERY</A>
+</nobr><br>
+<nobr><A HREF="android.util.DisplayMetrics.html#android.util.DisplayMetrics.DENSITY_560" class="hiddenlink" target="rightframe">DENSITY_560</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_ADD_USER" class="hiddenlink" target="rightframe">DISALLOW_ADD_USER</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_ADJUST_VOLUME" class="hiddenlink" target="rightframe">DISALLOW_ADJUST_VOLUME</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_APPS_CONTROL" class="hiddenlink" target="rightframe">DISALLOW_APPS_CONTROL</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CONFIG_CELL_BROADCASTS" class="hiddenlink" target="rightframe">DISALLOW_CONFIG_CELL_BROADCASTS</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS" class="hiddenlink" target="rightframe">DISALLOW_CONFIG_MOBILE_NETWORKS</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CONFIG_TETHERING" class="hiddenlink" target="rightframe">DISALLOW_CONFIG_TETHERING</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CONFIG_VPN" class="hiddenlink" target="rightframe">DISALLOW_CONFIG_VPN</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CREATE_WINDOWS" class="hiddenlink" target="rightframe">DISALLOW_CREATE_WINDOWS</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CROSS_PROFILE_COPY_PASTE" class="hiddenlink" target="rightframe">DISALLOW_CROSS_PROFILE_COPY_PASTE</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_DEBUGGING_FEATURES" class="hiddenlink" target="rightframe">DISALLOW_DEBUGGING_FEATURES</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_FACTORY_RESET" class="hiddenlink" target="rightframe">DISALLOW_FACTORY_RESET</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_MOUNT_PHYSICAL_MEDIA" class="hiddenlink" target="rightframe">DISALLOW_MOUNT_PHYSICAL_MEDIA</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_OUTGOING_CALLS" class="hiddenlink" target="rightframe">DISALLOW_OUTGOING_CALLS</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_SMS" class="hiddenlink" target="rightframe">DISALLOW_SMS</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_UNMUTE_MICROPHONE" class="hiddenlink" target="rightframe">DISALLOW_UNMUTE_MICROPHONE</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.DOCUMENT_LAUNCH_ALWAYS" class="hiddenlink" target="rightframe">DOCUMENT_LAUNCH_ALWAYS</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.DOCUMENT_LAUNCH_INTO_EXISTING" class="hiddenlink" target="rightframe">DOCUMENT_LAUNCH_INTO_EXISTING</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.DOCUMENT_LAUNCH_NEVER" class="hiddenlink" target="rightframe">DOCUMENT_LAUNCH_NEVER</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.DOCUMENT_LAUNCH_NONE" class="hiddenlink" target="rightframe">DOCUMENT_LAUNCH_NONE</A>
+</nobr><br>
+<i>documentLaunchMode</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.documentLaunchMode" class="hiddenlink" target="rightframe">android.R.attr</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.documentLaunchMode" class="hiddenlink" target="rightframe">android.content.pm.ActivityInfo</A>
+</nobr><br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.EDGE_TYPE_DEPRESSED" class="hiddenlink" target="rightframe">EDGE_TYPE_DEPRESSED</A>
+</nobr><br>
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.EDGE_TYPE_RAISED" class="hiddenlink" target="rightframe">EDGE_TYPE_RAISED</A>
+</nobr><br>
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.EDGE_TYPE_UNSPECIFIED" class="hiddenlink" target="rightframe">EDGE_TYPE_UNSPECIFIED</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.elegantTextHeight" class="hiddenlink" target="rightframe">elegantTextHeight</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.elevation" class="hiddenlink" target="rightframe">elevation</A>
+</nobr><br>
+<nobr><A HREF="android.app.UiModeManager.html#android.app.UiModeManager.ENABLE_CAR_MODE_ALLOW_SLEEP" class="hiddenlink" target="rightframe">ENABLE_CAR_MODE_ALLOW_SLEEP</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ENCODING_AC3" class="hiddenlink" target="rightframe">ENCODING_AC3</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ENCODING_E_AC3" class="hiddenlink" target="rightframe">ENCODING_E_AC3</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ENCODING_PCM_FLOAT" class="hiddenlink" target="rightframe">ENCODING_PCM_FLOAT</A>
+</nobr><br>
+<i>ENDCOM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>ENDHDR</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>ENDOFF</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>ENDSIG</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>ENDSIZ</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>ENDSUB</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDSUB" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDSUB" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDSUB" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDSUB" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>ENDTOT</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDTOT" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDTOT" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDTOT" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDTOT" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.ENSURE_VERIFY_APPS" class="hiddenlink" target="rightframe">ENSURE_VERIFY_APPS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.PhoneLookup.html#android.provider.ContactsContract.PhoneLookup.ENTERPRISE_CONTENT_FILTER_URI" class="hiddenlink" target="rightframe">ENTERPRISE_CONTENT_FILTER_URI</A>
+</nobr><br>
+<nobr><A HREF="android.provider.MediaStore.Audio.Media.html#android.provider.MediaStore.Audio.Media.ENTRY_CONTENT_TYPE" class="hiddenlink" target="rightframe">ENTRY_CONTENT_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ERROR" class="hiddenlink" target="rightframe">ERROR</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ERROR_DEAD_OBJECT" class="hiddenlink" target="rightframe">ERROR_DEAD_OBJECT</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodec.CryptoException.html#android.media.MediaCodec.CryptoException.ERROR_INSUFFICIENT_OUTPUT_PROTECTION" class="hiddenlink" target="rightframe">ERROR_INSUFFICIENT_OUTPUT_PROTECTION</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_INVALID_REQUEST" class="hiddenlink" target="rightframe">ERROR_INVALID_REQUEST</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_NETWORK" class="hiddenlink" target="rightframe">ERROR_NETWORK</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_NETWORK_TIMEOUT" class="hiddenlink" target="rightframe">ERROR_NETWORK_TIMEOUT</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_NOT_INSTALLED_YET" class="hiddenlink" target="rightframe">ERROR_NOT_INSTALLED_YET</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_OUTPUT" class="hiddenlink" target="rightframe">ERROR_OUTPUT</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_SERVICE" class="hiddenlink" target="rightframe">ERROR_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_SYNTHESIS" class="hiddenlink" target="rightframe">ERROR_SYNTHESIS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeClass" class="hiddenlink" target="rightframe">excludeClass</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeId" class="hiddenlink" target="rightframe">excludeId</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeName" class="hiddenlink" target="rightframe">excludeName</A>
+</nobr><br>
+<i>EXTCRC</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.EXTCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.EXTCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.EXTCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.EXTCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>EXTHDR</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.EXTHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.EXTHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.EXTHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.EXTHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>EXTLEN</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.EXTLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.EXTLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.EXTLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.EXTLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>EXTRA_ADDRESS_BOOK_INDEX</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html#android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Contactables</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html#android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Email</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Event</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html#android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.GroupMembership</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html#android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Identity</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html#android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Im</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html#android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Nickname</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html#android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Note</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html#android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Organization</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html#android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Phone</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html#android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Photo</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html#android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Relation</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html#android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.SipAddress</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredName</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html#android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html#android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Website</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Data.html#android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Data</A>
+</nobr><br>
+<i>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html#android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Contactables</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html#android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Email</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Event</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html#android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.GroupMembership</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html#android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Identity</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html#android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Im</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html#android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Nickname</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html#android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Note</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html#android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Organization</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html#android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Phone</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html#android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Photo</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html#android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Relation</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html#android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.SipAddress</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredName</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html#android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html#android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Website</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Data.html#android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Data</A>
+</nobr><br>
+<i>EXTRA_ADDRESS_BOOK_INDEX_TITLES</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html#android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Contactables</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html#android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Email</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Event</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html#android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.GroupMembership</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html#android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Identity</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html#android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Im</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html#android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Nickname</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html#android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Note</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html#android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Organization</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html#android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Phone</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html#android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Photo</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html#android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Relation</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html#android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.SipAddress</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredName</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html#android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html#android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Website</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Data.html#android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Data</A>
+</nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.EXTRA_APPWIDGET_OLD_IDS" class="hiddenlink" target="rightframe">EXTRA_APPWIDGET_OLD_IDS</A>
+</nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE" class="hiddenlink" target="rightframe">EXTRA_APPWIDGET_PROVIDER_PROFILE</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD" class="hiddenlink" target="rightframe">EXTRA_ASSIST_INPUT_HINT_KEYBOARD</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.EXTRA_AUDIO_PLUG_STATE" class="hiddenlink" target="rightframe">EXTRA_AUDIO_PLUG_STATE</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_BACKGROUND_IMAGE_URI" class="hiddenlink" target="rightframe">EXTRA_BACKGROUND_IMAGE_URI</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_BIG_TEXT" class="hiddenlink" target="rightframe">EXTRA_BIG_TEXT</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.EXTRA_CALL_TYPE_FILTER" class="hiddenlink" target="rightframe">EXTRA_CALL_TYPE_FILTER</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_COMPACT_ACTIONS" class="hiddenlink" target="rightframe">EXTRA_COMPACT_ACTIONS</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.EXTRA_ENCODINGS" class="hiddenlink" target="rightframe">EXTRA_ENCODINGS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.QuickContact.html#android.provider.ContactsContract.QuickContact.EXTRA_EXCLUDE_MIMES" class="hiddenlink" target="rightframe">EXTRA_EXCLUDE_MIMES</A>
+</nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.EXTRA_HOST_ID" class="hiddenlink" target="rightframe">EXTRA_HOST_ID</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.EXTRA_LOCK_TASK_PACKAGE" class="hiddenlink" target="rightframe">EXTRA_LOCK_TASK_PACKAGE</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.EXTRA_MAX_CHANNEL_COUNT" class="hiddenlink" target="rightframe">EXTRA_MAX_CHANNEL_COUNT</A>
+</nobr><br>
+<nobr><A HREF="android.provider.MediaStore.html#android.provider.MediaStore.EXTRA_MEDIA_GENRE" class="hiddenlink" target="rightframe">EXTRA_MEDIA_GENRE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.MediaStore.html#android.provider.MediaStore.EXTRA_MEDIA_PLAYLIST" class="hiddenlink" target="rightframe">EXTRA_MEDIA_PLAYLIST</A>
+</nobr><br>
+<nobr><A HREF="android.provider.MediaStore.html#android.provider.MediaStore.EXTRA_MEDIA_RADIO_CHANNEL" class="hiddenlink" target="rightframe">EXTRA_MEDIA_RADIO_CHANNEL</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_MEDIA_SESSION" class="hiddenlink" target="rightframe">EXTRA_MEDIA_SESSION</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.EXTRA_MMS_DATA" class="hiddenlink" target="rightframe">EXTRA_MMS_DATA</A>
+</nobr><br>
+<nobr><A HREF="android.printservice.PrintService.html#android.printservice.PrintService.EXTRA_PRINTER_INFO" class="hiddenlink" target="rightframe">EXTRA_PRINTER_INFO</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_EMAIL_ADDRESS" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_EMAIL_ADDRESS</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_LOCAL_TIME" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_LOCAL_TIME</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_LOCALE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_LOCALE</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_TIME_ZONE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_TIME_ZONE</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_HIDDEN" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_HIDDEN</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PAC_URL" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PAC_URL</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PASSWORD" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PASSWORD</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_BYPASS" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PROXY_BYPASS</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_HOST" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PROXY_HOST</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_PORT" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PROXY_PORT</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_SECURITY_TYPE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_SECURITY_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_SSID" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_SSID</A>
+</nobr><br>
+<nobr><A HREF="android.net.Proxy.html#android.net.Proxy.EXTRA_PROXY_INFO" class="hiddenlink" target="rightframe">EXTRA_PROXY_INFO</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_REPLACEMENT_EXTRAS" class="hiddenlink" target="rightframe">EXTRA_REPLACEMENT_EXTRAS</A>
+</nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.EXTRA_SIZE" class="hiddenlink" target="rightframe">EXTRA_SIZE</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_TEMPLATE" class="hiddenlink" target="rightframe">EXTRA_TEMPLATE</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_USER" class="hiddenlink" target="rightframe">EXTRA_USER</A>
+</nobr><br>
+<i>EXTSIG</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.EXTSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.EXTSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.EXTSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.EXTSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>EXTSIZ</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.EXTSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.EXTSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.EXTSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.EXTSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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.interpolator.html#android.R.interpolator.fast_out_linear_in" class="hiddenlink" target="rightframe">fast_out_linear_in</A>
+</nobr><br>
+<nobr><A HREF="android.R.interpolator.html#android.R.interpolator.fast_out_slow_in" class="hiddenlink" target="rightframe">fast_out_slow_in</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fastScrollStyle" class="hiddenlink" target="rightframe">fastScrollStyle</A>
+</nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.FEATURE_ACTIVITY_TRANSITIONS" class="hiddenlink" target="rightframe">FEATURE_ACTIVITY_TRANSITIONS</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_AUDIO_OUTPUT" class="hiddenlink" target="rightframe">FEATURE_AUDIO_OUTPUT</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING" class="hiddenlink" target="rightframe">FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR" class="hiddenlink" target="rightframe">FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_RAW" class="hiddenlink" target="rightframe">FEATURE_CAMERA_CAPABILITY_RAW</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_LEVEL_FULL" class="hiddenlink" target="rightframe">FEATURE_CAMERA_LEVEL_FULL</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CONNECTION_SERVICE" class="hiddenlink" target="rightframe">FEATURE_CONNECTION_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.FEATURE_CONTENT_TRANSITIONS" class="hiddenlink" target="rightframe">FEATURE_CONTENT_TRANSITIONS</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_GAMEPAD" class="hiddenlink" target="rightframe">FEATURE_GAMEPAD</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_LEANBACK" class="hiddenlink" target="rightframe">FEATURE_LEANBACK</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_LIVE_TV" class="hiddenlink" target="rightframe">FEATURE_LIVE_TV</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_MANAGED_USERS" class="hiddenlink" target="rightframe">FEATURE_MANAGED_USERS</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_OPENGLES_EXTENSION_PACK" class="hiddenlink" target="rightframe">FEATURE_OPENGLES_EXTENSION_PACK</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SECURELY_REMOVES_USERS" class="hiddenlink" target="rightframe">FEATURE_SECURELY_REMOVES_USERS</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.FEATURE_SecurePlayback" class="hiddenlink" target="rightframe">FEATURE_SecurePlayback</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SENSOR_AMBIENT_TEMPERATURE" class="hiddenlink" target="rightframe">FEATURE_SENSOR_AMBIENT_TEMPERATURE</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SENSOR_HEART_RATE_ECG" class="hiddenlink" target="rightframe">FEATURE_SENSOR_HEART_RATE_ECG</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SENSOR_RELATIVE_HUMIDITY" class="hiddenlink" target="rightframe">FEATURE_SENSOR_RELATIVE_HUMIDITY</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.FEATURE_TunneledPlayback" class="hiddenlink" target="rightframe">FEATURE_TunneledPlayback</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_VERIFIED_BOOT" class="hiddenlink" target="rightframe">FEATURE_VERIFIED_BOOT</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.featureGroups" class="hiddenlink" target="rightframe">featureGroups</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.FEATURES" class="hiddenlink" target="rightframe">FEATURES</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.FEATURES_VIDEO" class="hiddenlink" target="rightframe">FEATURES_VIDEO</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fillAlpha" class="hiddenlink" target="rightframe">fillAlpha</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fillColor" class="hiddenlink" target="rightframe">fillColor</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_ACTIVITY_NEW_DOCUMENT" class="hiddenlink" target="rightframe">FLAG_ACTIVITY_NEW_DOCUMENT</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS" class="hiddenlink" target="rightframe">FLAG_ACTIVITY_RETAIN_IN_RECENTS</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_AUTO_REMOVE_FROM_RECENTS" class="hiddenlink" target="rightframe">FLAG_AUTO_REMOVE_FROM_RECENTS</A>
+</nobr><br>
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS" class="hiddenlink" target="rightframe">FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.FLAG_FULL_BACKUP_ONLY" class="hiddenlink" target="rightframe">FLAG_FULL_BACKUP_ONLY</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_GRANT_PREFIX_URI_PERMISSION" class="hiddenlink" target="rightframe">FLAG_GRANT_PREFIX_URI_PERMISSION</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.FLAG_IS_GAME" class="hiddenlink" target="rightframe">FLAG_IS_GAME</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.FLAG_MANAGED_CAN_ACCESS_PARENT" class="hiddenlink" target="rightframe">FLAG_MANAGED_CAN_ACCESS_PARENT</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.FLAG_MULTIARCH" class="hiddenlink" target="rightframe">FLAG_MULTIARCH</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.FLAG_PARENT_CAN_ACCESS_MANAGED" class="hiddenlink" target="rightframe">FLAG_PARENT_CAN_ACCESS_MANAGED</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY" class="hiddenlink" target="rightframe">FLAG_RELINQUISH_TASK_IDENTITY</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_RESUME_WHILE_PAUSING" class="hiddenlink" target="rightframe">FLAG_RESUME_WHILE_PAUSING</A>
+</nobr><br>
+<nobr><A HREF="android.accessibilityservice.AccessibilityServiceInfo.html#android.accessibilityservice.AccessibilityServiceInfo.FLAG_RETRIEVE_INTERACTIVE_WINDOWS" class="hiddenlink" target="rightframe">FLAG_RETRIEVE_INTERACTIVE_WINDOWS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.DocumentsContract.Root.html#android.provider.DocumentsContract.Root.FLAG_SUPPORTS_IS_CHILD" class="hiddenlink" target="rightframe">FLAG_SUPPORTS_IS_CHILD</A>
+</nobr><br>
+<nobr><A HREF="android.provider.DocumentsContract.Document.html#android.provider.DocumentsContract.Document.FLAG_SUPPORTS_RENAME" class="hiddenlink" target="rightframe">FLAG_SUPPORTS_RENAME</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fontFeatureSettings" class="hiddenlink" target="rightframe">fontFeatureSettings</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.foregroundTint" class="hiddenlink" target="rightframe">foregroundTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.foregroundTintMode" class="hiddenlink" target="rightframe">foregroundTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiConfiguration.html#android.net.wifi.WifiConfiguration.FQDN" class="hiddenlink" target="rightframe">FQDN</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentAllowEnterTransitionOverlap" class="hiddenlink" target="rightframe">fragmentAllowEnterTransitionOverlap</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentAllowReturnTransitionOverlap" class="hiddenlink" target="rightframe">fragmentAllowReturnTransitionOverlap</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentEnterTransition" class="hiddenlink" target="rightframe">fragmentEnterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentExitTransition" class="hiddenlink" target="rightframe">fragmentExitTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentReenterTransition" class="hiddenlink" target="rightframe">fragmentReenterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentReturnTransition" class="hiddenlink" target="rightframe">fragmentReturnTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentSharedElementEnterTransition" class="hiddenlink" target="rightframe">fragmentSharedElementEnterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentSharedElementReturnTransition" class="hiddenlink" target="rightframe">fragmentSharedElementReturnTransition</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiInfo.html#android.net.wifi.WifiInfo.FREQUENCY_UNITS" class="hiddenlink" target="rightframe">FREQUENCY_UNITS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fromId" class="hiddenlink" target="rightframe">fromId</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.FULL_NAME_STYLE" class="hiddenlink" target="rightframe">FULL_NAME_STYLE</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fullBackupOnly" class="hiddenlink" target="rightframe">fullBackupOnly</A>
+</nobr><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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">
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.GATT_CONNECTION_CONGESTED" class="hiddenlink" target="rightframe">GATT_CONNECTION_CONGESTED</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.GEOCODED_LOCATION" class="hiddenlink" target="rightframe">GEOCODED_LOCATION</A>
+</nobr><br>
+<nobr><A HREF="android.accessibilityservice.AccessibilityService.html#android.accessibilityservice.AccessibilityService.GLOBAL_ACTION_POWER_DIALOG" class="hiddenlink" target="rightframe">GLOBAL_ACTION_POWER_DIALOG</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.goIcon" class="hiddenlink" target="rightframe">goIcon</A>
+</nobr><br>
+<A NAME="H"></A>
+<br><font size="+2">H</font>&nbsp;
+<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">
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerAmPmTextAppearance" class="hiddenlink" target="rightframe">headerAmPmTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerDayOfMonthTextAppearance" class="hiddenlink" target="rightframe">headerDayOfMonthTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerMonthTextAppearance" class="hiddenlink" target="rightframe">headerMonthTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerTimeTextAppearance" class="hiddenlink" target="rightframe">headerTimeTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerYearTextAppearance" class="hiddenlink" target="rightframe">headerYearTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.headsUpContentView" class="hiddenlink" target="rightframe">headsUpContentView</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel1" class="hiddenlink" target="rightframe">HEVCHighTierLevel1</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel2" class="hiddenlink" target="rightframe">HEVCHighTierLevel2</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel21" class="hiddenlink" target="rightframe">HEVCHighTierLevel21</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel3" class="hiddenlink" target="rightframe">HEVCHighTierLevel3</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel31" class="hiddenlink" target="rightframe">HEVCHighTierLevel31</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel4" class="hiddenlink" target="rightframe">HEVCHighTierLevel4</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel41" class="hiddenlink" target="rightframe">HEVCHighTierLevel41</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel5" class="hiddenlink" target="rightframe">HEVCHighTierLevel5</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel51" class="hiddenlink" target="rightframe">HEVCHighTierLevel51</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel52" class="hiddenlink" target="rightframe">HEVCHighTierLevel52</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel6" class="hiddenlink" target="rightframe">HEVCHighTierLevel6</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel61" class="hiddenlink" target="rightframe">HEVCHighTierLevel61</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel62" class="hiddenlink" target="rightframe">HEVCHighTierLevel62</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel1" class="hiddenlink" target="rightframe">HEVCMainTierLevel1</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel2" class="hiddenlink" target="rightframe">HEVCMainTierLevel2</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel21" class="hiddenlink" target="rightframe">HEVCMainTierLevel21</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel3" class="hiddenlink" target="rightframe">HEVCMainTierLevel3</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel31" class="hiddenlink" target="rightframe">HEVCMainTierLevel31</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel4" class="hiddenlink" target="rightframe">HEVCMainTierLevel4</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel41" class="hiddenlink" target="rightframe">HEVCMainTierLevel41</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel5" class="hiddenlink" target="rightframe">HEVCMainTierLevel5</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel51" class="hiddenlink" target="rightframe">HEVCMainTierLevel51</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel52" class="hiddenlink" target="rightframe">HEVCMainTierLevel52</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel6" class="hiddenlink" target="rightframe">HEVCMainTierLevel6</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel61" class="hiddenlink" target="rightframe">HEVCMainTierLevel61</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel62" class="hiddenlink" target="rightframe">HEVCMainTierLevel62</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCProfileMain" class="hiddenlink" target="rightframe">HEVCProfileMain</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCProfileMain10" class="hiddenlink" target="rightframe">HEVCProfileMain10</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.hideOnContentScroll" class="hiddenlink" target="rightframe">hideOnContentScroll</A>
+</nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.HINT_HOST_DISABLE_EFFECTS" class="hiddenlink" target="rightframe">HINT_HOST_DISABLE_EFFECTS</A>
+</nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeProvider.html#android.view.accessibility.AccessibilityNodeProvider.HOST_VIEW_ID" class="hiddenlink" target="rightframe">HOST_VIEW_ID</A>
+</nobr><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.IMPORTANCE_GONE" class="hiddenlink" target="rightframe">IMPORTANCE_GONE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.ContactsColumns.html#android.provider.ContactsContract.ContactsColumns.IN_DEFAULT_DIRECTORY" class="hiddenlink" target="rightframe">IN_DEFAULT_DIRECTORY</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.indeterminateTint" class="hiddenlink" target="rightframe">indeterminateTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.indeterminateTintMode" class="hiddenlink" target="rightframe">indeterminateTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.inset" class="hiddenlink" target="rightframe">inset</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.INSTALL_LOCATION_AUTO" class="hiddenlink" target="rightframe">INSTALL_LOCATION_AUTO</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY" class="hiddenlink" target="rightframe">INSTALL_LOCATION_INTERNAL_ONLY</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.INSTALL_LOCATION_PREFER_EXTERNAL" class="hiddenlink" target="rightframe">INSTALL_LOCATION_PREFER_EXTERNAL</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.installLocation" class="hiddenlink" target="rightframe">installLocation</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.INTENT_CATEGORY_NOTIFICATION_PREFERENCES" class="hiddenlink" target="rightframe">INTENT_CATEGORY_NOTIFICATION_PREFERENCES</A>
+</nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_ALL" class="hiddenlink" target="rightframe">INTERRUPTION_FILTER_ALL</A>
+</nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_NONE" class="hiddenlink" target="rightframe">INTERRUPTION_FILTER_NONE</A>
+</nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_PRIORITY" class="hiddenlink" target="rightframe">INTERRUPTION_FILTER_PRIORITY</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.isGame" class="hiddenlink" target="rightframe">isGame</A>
+</nobr><br>
+<A NAME="J"></A>
+<br><font size="+2">J</font>&nbsp;
+<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="#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.content.Context.html#android.content.Context.JOB_SCHEDULER_SERVICE" class="hiddenlink" target="rightframe">JOB_SCHEDULER_SERVICE</A>
+</nobr><br>
+<A NAME="K"></A>
+<br><font size="+2">K</font>&nbsp;
+<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.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_ATTENUATION_FACTOR" class="hiddenlink" target="rightframe">KEY_AAC_DRC_ATTENUATION_FACTOR</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_BOOST_FACTOR" class="hiddenlink" target="rightframe">KEY_AAC_DRC_BOOST_FACTOR</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_HEAVY_COMPRESSION" class="hiddenlink" target="rightframe">KEY_AAC_DRC_HEAVY_COMPRESSION</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_TARGET_REFERENCE_LEVEL" class="hiddenlink" target="rightframe">KEY_AAC_DRC_TARGET_REFERENCE_LEVEL</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_ENCODED_TARGET_LEVEL" class="hiddenlink" target="rightframe">KEY_AAC_ENCODED_TARGET_LEVEL</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT" class="hiddenlink" target="rightframe">KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_SBR_MODE" class="hiddenlink" target="rightframe">KEY_AAC_SBR_MODE</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AUDIO_SESSION_ID" class="hiddenlink" target="rightframe">KEY_AUDIO_SESSION_ID</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_BITRATE_MODE" class="hiddenlink" target="rightframe">KEY_BITRATE_MODE</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_CAPTURE_RATE" class="hiddenlink" target="rightframe">KEY_CAPTURE_RATE</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_COMPLEXITY" class="hiddenlink" target="rightframe">KEY_COMPLEXITY</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_RETRIES_COUNT" class="hiddenlink" target="rightframe">KEY_FEATURE_NETWORK_RETRIES_COUNT</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_TIMEOUT_MS" class="hiddenlink" target="rightframe">KEY_FEATURE_NETWORK_TIMEOUT_MS</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NOT_INSTALLED" class="hiddenlink" target="rightframe">KEY_FEATURE_NOT_INSTALLED</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_PARAM_SESSION_ID" class="hiddenlink" target="rightframe">KEY_PARAM_SESSION_ID</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_PROFILE" class="hiddenlink" target="rightframe">KEY_PROFILE</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_TEMPORAL_LAYERING" class="hiddenlink" target="rightframe">KEY_TEMPORAL_LAYERING</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_11" class="hiddenlink" target="rightframe">KEYCODE_11</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_12" class="hiddenlink" target="rightframe">KEYCODE_12</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_HELP" class="hiddenlink" target="rightframe">KEYCODE_HELP</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_LAST_CHANNEL" class="hiddenlink" target="rightframe">KEYCODE_LAST_CHANNEL</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_MEDIA_TOP_MENU" class="hiddenlink" target="rightframe">KEYCODE_MEDIA_TOP_MENU</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_PAIRING" class="hiddenlink" target="rightframe">KEYCODE_PAIRING</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_ANTENNA_CABLE" class="hiddenlink" target="rightframe">KEYCODE_TV_ANTENNA_CABLE</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION" class="hiddenlink" target="rightframe">KEYCODE_TV_AUDIO_DESCRIPTION</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN" class="hiddenlink" target="rightframe">KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP" class="hiddenlink" target="rightframe">KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_CONTENTS_MENU" class="hiddenlink" target="rightframe">KEYCODE_TV_CONTENTS_MENU</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_DATA_SERVICE" class="hiddenlink" target="rightframe">KEYCODE_TV_DATA_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPONENT_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPONENT_1</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPONENT_2" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPONENT_2</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPOSITE_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPOSITE_1</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPOSITE_2" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPOSITE_2</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_1</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_2" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_2</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_3" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_3</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_4" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_4</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_VGA_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_VGA_1</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_MEDIA_CONTEXT_MENU" class="hiddenlink" target="rightframe">KEYCODE_TV_MEDIA_CONTEXT_MENU</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_NETWORK" class="hiddenlink" target="rightframe">KEYCODE_TV_NETWORK</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_NUMBER_ENTRY" class="hiddenlink" target="rightframe">KEYCODE_TV_NUMBER_ENTRY</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_RADIO_SERVICE" class="hiddenlink" target="rightframe">KEYCODE_TV_RADIO_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE_BS" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE_BS</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE_CS" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE_CS</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE_SERVICE" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TELETEXT" class="hiddenlink" target="rightframe">KEYCODE_TV_TELETEXT</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TERRESTRIAL_ANALOG" class="hiddenlink" target="rightframe">KEYCODE_TV_TERRESTRIAL_ANALOG</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TERRESTRIAL_DIGITAL" class="hiddenlink" target="rightframe">KEYCODE_TV_TERRESTRIAL_DIGITAL</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TIMER_PROGRAMMING" class="hiddenlink" target="rightframe">KEYCODE_TV_TIMER_PROGRAMMING</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_ZOOM_MODE" class="hiddenlink" target="rightframe">KEYCODE_TV_ZOOM_MODE</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_VOICE_ASSIST" class="hiddenlink" target="rightframe">KEYCODE_VOICE_ASSIST</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_FINGERPRINT" class="hiddenlink" target="rightframe">KEYGUARD_DISABLE_FINGERPRINT</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_SECURE_NOTIFICATIONS" class="hiddenlink" target="rightframe">KEYGUARD_DISABLE_SECURE_NOTIFICATIONS</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_TRUST_AGENTS" class="hiddenlink" target="rightframe">KEYGUARD_DISABLE_TRUST_AGENTS</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS" class="hiddenlink" target="rightframe">KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS</A>
+</nobr><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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">
+<nobr><A HREF="android.os.Build.VERSION_CODES.html#android.os.Build.VERSION_CODES.L" class="hiddenlink" target="rightframe">L</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.LAUNCHER_APPS_SERVICE" class="hiddenlink" target="rightframe">LAUNCHER_APPS_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.launchTaskBehindSourceAnimation" class="hiddenlink" target="rightframe">launchTaskBehindSourceAnimation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.launchTaskBehindTargetAnimation" class="hiddenlink" target="rightframe">launchTaskBehindTargetAnimation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.layout_columnWeight" class="hiddenlink" target="rightframe">layout_columnWeight</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.layout_rowWeight" class="hiddenlink" target="rightframe">layout_rowWeight</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.letterSpacing" class="hiddenlink" target="rightframe">letterSpacing</A>
+</nobr><br>
+<nobr><A HREF="android.R.interpolator.html#android.R.interpolator.linear_out_slow_in" class="hiddenlink" target="rightframe">linear_out_slow_in</A>
+</nobr><br>
+<i>LOCCRC</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>LOCEXT</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>LOCFLG</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>LOCHDR</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>LOCHOW</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>LOCLEN</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>LOCNAM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>LOCSIG</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>LOCSIZ</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>LOCTIM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>LOCVER</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCVER" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCVER" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCVER" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCVER" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<nobr><A HREF="android.os.Build.VERSION_CODES.html#android.os.Build.VERSION_CODES.LOLLIPOP" class="hiddenlink" target="rightframe">LOLLIPOP</A>
+</nobr><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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.R.id.html#android.R.id.mask" class="hiddenlink" target="rightframe">mask</A>
+</nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.MATCH_ID" class="hiddenlink" target="rightframe">MATCH_ID</A>
+</nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.MATCH_INSTANCE" class="hiddenlink" target="rightframe">MATCH_INSTANCE</A>
+</nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.MATCH_ITEM_ID" class="hiddenlink" target="rightframe">MATCH_ITEM_ID</A>
+</nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.MATCH_NAME" class="hiddenlink" target="rightframe">MATCH_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.matchOrder" class="hiddenlink" target="rightframe">matchOrder</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.maximumAngle" class="hiddenlink" target="rightframe">maximumAngle</A>
+</nobr><br>
+<i>maxRecents</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.maxRecents" class="hiddenlink" target="rightframe">android.R.attr</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.maxRecents" class="hiddenlink" target="rightframe">android.content.pm.ActivityInfo</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.MEDIA_PROJECTION_SERVICE" class="hiddenlink" target="rightframe">MEDIA_PROJECTION_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.MEDIA_SESSION_SERVICE" class="hiddenlink" target="rightframe">MEDIA_SESSION_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaPlayer.TrackInfo.html#android.media.MediaPlayer.TrackInfo.MEDIA_TRACK_TYPE_SUBTITLE" class="hiddenlink" target="rightframe">MEDIA_TRACK_TYPE_SUBTITLE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Telephony.BaseMmsColumns.html#android.provider.Telephony.BaseMmsColumns.MESSAGE_BOX_FAILED" class="hiddenlink" target="rightframe">MESSAGE_BOX_FAILED</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.MIME_TYPE_PROVISIONING_NFC" class="hiddenlink" target="rightframe">MIME_TYPE_PROVISIONING_NFC</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AAC" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AAC</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AC3" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AC3</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AMR_NB" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AMR_NB</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AMR_WB" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AMR_WB</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_FLAC" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_FLAC</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_G711_ALAW" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_G711_ALAW</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_G711_MLAW" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_G711_MLAW</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_MPEG" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_MPEG</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_MSGSM" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_MSGSM</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_OPUS" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_OPUS</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_QCELP" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_QCELP</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_RAW" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_RAW</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_VORBIS" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_VORBIS</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_TEXT_CEA_608" class="hiddenlink" target="rightframe">MIMETYPE_TEXT_CEA_608</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_TEXT_VTT" class="hiddenlink" target="rightframe">MIMETYPE_TEXT_VTT</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_AVC" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_AVC</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_H263" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_H263</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_HEVC" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_HEVC</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_MPEG2" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_MPEG2</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_MPEG4" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_MPEG4</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_RAW" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_RAW</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_VP8" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_VP8</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_VP9" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_VP9</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.minimumHorizontalAngle" class="hiddenlink" target="rightframe">minimumHorizontalAngle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.minimumVerticalAngle" class="hiddenlink" target="rightframe">minimumVerticalAngle</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.MIXED_CONTENT_ALWAYS_ALLOW" class="hiddenlink" target="rightframe">MIXED_CONTENT_ALWAYS_ALLOW</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.MIXED_CONTENT_COMPATIBILITY_MODE" class="hiddenlink" target="rightframe">MIXED_CONTENT_COMPATIBILITY_MODE</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.MIXED_CONTENT_NEVER_ALLOW" class="hiddenlink" target="rightframe">MIXED_CONTENT_NEVER_ALLOW</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALIAS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_ALIAS_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALIAS_MAX_CHARS" class="hiddenlink" target="rightframe">MMS_CONFIG_ALIAS_MAX_CHARS</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALIAS_MIN_CHARS" class="hiddenlink" target="rightframe">MMS_CONFIG_ALIAS_MIN_CHARS</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALLOW_ATTACH_AUDIO" class="hiddenlink" target="rightframe">MMS_CONFIG_ALLOW_ATTACH_AUDIO</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_APPEND_TRANSACTION_ID" class="hiddenlink" target="rightframe">MMS_CONFIG_APPEND_TRANSACTION_ID</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_EMAIL_GATEWAY_NUMBER" class="hiddenlink" target="rightframe">MMS_CONFIG_EMAIL_GATEWAY_NUMBER</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_GROUP_MMS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_GROUP_MMS_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_HTTP_PARAMS" class="hiddenlink" target="rightframe">MMS_CONFIG_HTTP_PARAMS</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_HTTP_SOCKET_TIMEOUT" class="hiddenlink" target="rightframe">MMS_CONFIG_HTTP_SOCKET_TIMEOUT</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MAX_IMAGE_HEIGHT" class="hiddenlink" target="rightframe">MMS_CONFIG_MAX_IMAGE_HEIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MAX_IMAGE_WIDTH" class="hiddenlink" target="rightframe">MMS_CONFIG_MAX_IMAGE_WIDTH</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MAX_MESSAGE_SIZE" class="hiddenlink" target="rightframe">MMS_CONFIG_MAX_MESSAGE_SIZE</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE" class="hiddenlink" target="rightframe">MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MMS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MMS_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MMS_READ_REPORT_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MMS_READ_REPORT_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MULTIPART_SMS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MULTIPART_SMS_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_NAI_SUFFIX" class="hiddenlink" target="rightframe">MMS_CONFIG_NAI_SUFFIX</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_RECIPIENT_LIMIT" class="hiddenlink" target="rightframe">MMS_CONFIG_RECIPIENT_LIMIT</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES" class="hiddenlink" target="rightframe">MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD" class="hiddenlink" target="rightframe">MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD" class="hiddenlink" target="rightframe">MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SUBJECT_MAX_LENGTH" class="hiddenlink" target="rightframe">MMS_CONFIG_SUBJECT_MAX_LENGTH</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION" class="hiddenlink" target="rightframe">MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_UA_PROF_TAG_NAME" class="hiddenlink" target="rightframe">MMS_CONFIG_UA_PROF_TAG_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_UA_PROF_URL" class="hiddenlink" target="rightframe">MMS_CONFIG_UA_PROF_URL</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_USER_AGENT" class="hiddenlink" target="rightframe">MMS_CONFIG_USER_AGENT</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_CONFIGURATION_ERROR" class="hiddenlink" target="rightframe">MMS_ERROR_CONFIGURATION_ERROR</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_HTTP_FAILURE" class="hiddenlink" target="rightframe">MMS_ERROR_HTTP_FAILURE</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_INVALID_APN" class="hiddenlink" target="rightframe">MMS_ERROR_INVALID_APN</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_IO_ERROR" class="hiddenlink" target="rightframe">MMS_ERROR_IO_ERROR</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_RETRY" class="hiddenlink" target="rightframe">MMS_ERROR_RETRY</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_UNABLE_CONNECT_MMS" class="hiddenlink" target="rightframe">MMS_ERROR_UNABLE_CONNECT_MMS</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_UNSPECIFIED" class="hiddenlink" target="rightframe">MMS_ERROR_UNSPECIFIED</A>
+</nobr><br>
+<nobr><A HREF="android.app.AppOpsManager.html#android.app.AppOpsManager.MODE_DEFAULT" class="hiddenlink" target="rightframe">MODE_DEFAULT</A>
+</nobr><br>
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.MODE_IN" class="hiddenlink" target="rightframe">MODE_IN</A>
+</nobr><br>
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.MODE_OUT" class="hiddenlink" target="rightframe">MODE_OUT</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.multiArch" class="hiddenlink" target="rightframe">multiArch</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaMuxer.OutputFormat.html#android.media.MediaMuxer.OutputFormat.MUXER_OUTPUT_WEBM" class="hiddenlink" target="rightframe">MUXER_OUTPUT_WEBM</A>
+</nobr><br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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">
+<nobr><A HREF="android.provider.ContactsContract.ContactsColumns.html#android.provider.ContactsContract.ContactsColumns.NAME_RAW_CONTACT_ID" class="hiddenlink" target="rightframe">NAME_RAW_CONTACT_ID</A>
+</nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME" class="hiddenlink" target="rightframe">NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.R.id.html#android.R.id.navigationBarBackground" class="hiddenlink" target="rightframe">navigationBarBackground</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.navigationBarColor" class="hiddenlink" target="rightframe">navigationBarColor</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.navigationContentDescription" class="hiddenlink" target="rightframe">navigationContentDescription</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.navigationIcon" class="hiddenlink" target="rightframe">navigationIcon</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.nestedScrollingEnabled" class="hiddenlink" target="rightframe">nestedScrollingEnabled</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.numbersBackgroundColor" class="hiddenlink" target="rightframe">numbersBackgroundColor</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.numbersSelectorColor" class="hiddenlink" target="rightframe">numbersSelectorColor</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.numbersTextColor" class="hiddenlink" target="rightframe">numbersTextColor</A>
+</nobr><br>
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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.app.AppOpsManager.html#android.app.AppOpsManager.OPSTR_GET_USAGE_STATS" class="hiddenlink" target="rightframe">OPSTR_GET_USAGE_STATS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.outlineProvider" class="hiddenlink" target="rightframe">outlineProvider</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.overlapAnchor" class="hiddenlink" target="rightframe">overlapAnchor</A>
+</nobr><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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">
+<nobr><A HREF="android.graphics.drawable.LayerDrawable.html#android.graphics.drawable.LayerDrawable.PADDING_MODE_NEST" class="hiddenlink" target="rightframe">PADDING_MODE_NEST</A>
+</nobr><br>
+<nobr><A HREF="android.graphics.drawable.LayerDrawable.html#android.graphics.drawable.LayerDrawable.PADDING_MODE_STACK" class="hiddenlink" target="rightframe">PADDING_MODE_STACK</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.paddingMode" class="hiddenlink" target="rightframe">paddingMode</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.PASSWORD_QUALITY_NUMERIC_COMPLEX" class="hiddenlink" target="rightframe">PASSWORD_QUALITY_NUMERIC_COMPLEX</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.pathData" class="hiddenlink" target="rightframe">pathData</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.patternPathData" class="hiddenlink" target="rightframe">patternPathData</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.PERSIST_ACROSS_REBOOTS" class="hiddenlink" target="rightframe">PERSIST_ACROSS_REBOOTS</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.PERSIST_NEVER" class="hiddenlink" target="rightframe">PERSIST_NEVER</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.PERSIST_ROOT_ONLY" class="hiddenlink" target="rightframe">PERSIST_ROOT_ONLY</A>
+</nobr><br>
+<i>persistableMode</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.persistableMode" class="hiddenlink" target="rightframe">android.R.attr</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.persistableMode" class="hiddenlink" target="rightframe">android.content.pm.ActivityInfo</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.PHONE_ACCOUNT_COMPONENT_NAME" class="hiddenlink" target="rightframe">PHONE_ACCOUNT_COMPONENT_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.PHONE_ACCOUNT_ID" class="hiddenlink" target="rightframe">PHONE_ACCOUNT_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.ContactOptionsColumns.html#android.provider.ContactsContract.ContactOptionsColumns.PINNED" class="hiddenlink" target="rightframe">PINNED</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.popupElevation" class="hiddenlink" target="rightframe">popupElevation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.popupTheme" class="hiddenlink" target="rightframe">popupTheme</A>
+</nobr><br>
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.preferredRefreshRate" class="hiddenlink" target="rightframe">preferredRefreshRate</A>
+</nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.PRIVATE_USE_EXTENSION" class="hiddenlink" target="rightframe">PRIVATE_USE_EXTENSION</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressBackgroundTint" class="hiddenlink" target="rightframe">progressBackgroundTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressBackgroundTintMode" class="hiddenlink" target="rightframe">progressBackgroundTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressTint" class="hiddenlink" target="rightframe">progressTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressTintMode" class="hiddenlink" target="rightframe">progressTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.propertyXName" class="hiddenlink" target="rightframe">propertyXName</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.propertyYName" class="hiddenlink" target="rightframe">propertyYName</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PermissionInfo.html#android.content.pm.PermissionInfo.PROTECTION_FLAG_APPOP" class="hiddenlink" target="rightframe">PROTECTION_FLAG_APPOP</A>
+</nobr><br>
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.PROXIMITY_SCREEN_OFF_WAKE_LOCK" class="hiddenlink" target="rightframe">PROXIMITY_SCREEN_OFF_WAKE_LOCK</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.publicVersion" class="hiddenlink" target="rightframe">publicVersion</A>
+</nobr><br>
+<A NAME="Q"></A>
+<br><font size="+2">Q</font>&nbsp;
+<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.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_2160P" class="hiddenlink" target="rightframe">QUALITY_2160P</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_1080P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_1080P</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_2160P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_2160P</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_480P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_480P</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_720P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_720P</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_HIGH" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_HIGH</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_LOW" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_LOW</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_TIME_LAPSE_2160P" class="hiddenlink" target="rightframe">QUALITY_TIME_LAPSE_2160P</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.PhoneLookup.html#android.provider.ContactsContract.PhoneLookup.QUERY_PARAMETER_SIP_ADDRESS" class="hiddenlink" target="rightframe">QUERY_PARAMETER_SIP_ADDRESS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.queryBackground" class="hiddenlink" target="rightframe">queryBackground</A>
+</nobr><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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">
+<nobr><A HREF="android.media.Rating.html#android.media.Rating.RATING_NONE" class="hiddenlink" target="rightframe">RATING_NONE</A>
+</nobr><br>
+<nobr><A HREF="android.graphics.ImageFormat.html#android.graphics.ImageFormat.RAW10" class="hiddenlink" target="rightframe">RAW10</A>
+</nobr><br>
+<nobr><A HREF="android.graphics.ImageFormat.html#android.graphics.ImageFormat.RAW_SENSOR" class="hiddenlink" target="rightframe">RAW_SENSOR</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.READ_VOICEMAIL" class="hiddenlink" target="rightframe">READ_VOICEMAIL</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.recognitionService" class="hiddenlink" target="rightframe">recognitionService</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.REGULAR_CODECS" class="hiddenlink" target="rightframe">REGULAR_CODECS</A>
+</nobr><br>
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY" class="hiddenlink" target="rightframe">RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.relinquishTaskIdentity" class="hiddenlink" target="rightframe">relinquishTaskIdentity</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.html#android.provider.ContactsContract.REMOVE_DUPLICATE_ENTRIES" class="hiddenlink" target="rightframe">REMOVE_DUPLICATE_ENTRIES</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.reparent" class="hiddenlink" target="rightframe">reparent</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.reparentWithOverlay" class="hiddenlink" target="rightframe">reparentWithOverlay</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_CONTINUOUS" class="hiddenlink" target="rightframe">REPORTING_MODE_CONTINUOUS</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_ON_CHANGE" class="hiddenlink" target="rightframe">REPORTING_MODE_ON_CHANGE</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_ONE_SHOT" class="hiddenlink" target="rightframe">REPORTING_MODE_ONE_SHOT</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_SPECIAL_TRIGGER" class="hiddenlink" target="rightframe">REPORTING_MODE_SPECIAL_TRIGGER</A>
+</nobr><br>
+<i>RES_PACKAGE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.DataColumns.html#android.provider.ContactsContract.DataColumns.RES_PACKAGE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.DataColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.GroupsColumns.html#android.provider.ContactsContract.GroupsColumns.RES_PACKAGE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.GroupsColumns</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.RESTRICTIONS_SERVICE" class="hiddenlink" target="rightframe">RESTRICTIONS_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.restrictionType" class="hiddenlink" target="rightframe">restrictionType</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.resumeWhilePausing" class="hiddenlink" target="rightframe">resumeWhilePausing</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.reversible" class="hiddenlink" target="rightframe">reversible</A>
+</nobr><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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.view.View.html#android.view.View.SCROLL_AXIS_HORIZONTAL" class="hiddenlink" target="rightframe">SCROLL_AXIS_HORIZONTAL</A>
+</nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.SCROLL_AXIS_NONE" class="hiddenlink" target="rightframe">SCROLL_AXIS_NONE</A>
+</nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.SCROLL_AXIS_VERTICAL" class="hiddenlink" target="rightframe">SCROLL_AXIS_VERTICAL</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.searchIcon" class="hiddenlink" target="rightframe">searchIcon</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.searchViewStyle" class="hiddenlink" target="rightframe">searchViewStyle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.secondaryProgressTint" class="hiddenlink" target="rightframe">secondaryProgressTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.secondaryProgressTintMode" class="hiddenlink" target="rightframe">secondaryProgressTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.selectableItemBackgroundBorderless" class="hiddenlink" target="rightframe">selectableItemBackgroundBorderless</A>
+</nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.SELECTION_MODE_MULTIPLE" class="hiddenlink" target="rightframe">SELECTION_MODE_MULTIPLE</A>
+</nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.SELECTION_MODE_NONE" class="hiddenlink" target="rightframe">SELECTION_MODE_NONE</A>
+</nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.SELECTION_MODE_SINGLE" class="hiddenlink" target="rightframe">SELECTION_MODE_SINGLE</A>
+</nobr><br>
+<nobr><A HREF="android.os.Message.html#android.os.Message.sendingUid" class="hiddenlink" target="rightframe">sendingUid</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.sessionService" class="hiddenlink" target="rightframe">sessionService</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.setupActivity" class="hiddenlink" target="rightframe">setupActivity</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.showText" class="hiddenlink" target="rightframe">showText</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiEnterpriseConfig.Eap.html#android.net.wifi.WifiEnterpriseConfig.Eap.SIM" class="hiddenlink" target="rightframe">SIM</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.Secure.html#android.provider.Settings.Secure.SKIP_FIRST_USE_HINTS" class="hiddenlink" target="rightframe">SKIP_FIRST_USE_HINTS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.slideEdge" class="hiddenlink" target="rightframe">slideEdge</A>
+</nobr><br>
+<nobr><A HREF="android.view.InputDevice.html#android.view.InputDevice.SOURCE_HDMI" class="hiddenlink" target="rightframe">SOURCE_HDMI</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.splitNames" class="hiddenlink" target="rightframe">splitNames</A>
+</nobr><br>
+<i>splitPublicSourceDirs</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.splitPublicSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.ApplicationInfo</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.InstrumentationInfo.html#android.content.pm.InstrumentationInfo.splitPublicSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.InstrumentationInfo</A>
+</nobr><br>
+<i>splitSourceDirs</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.splitSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.ApplicationInfo</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.InstrumentationInfo.html#android.content.pm.InstrumentationInfo.splitSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.InstrumentationInfo</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.splitTrack" class="hiddenlink" target="rightframe">splitTrack</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.spotShadowAlpha" class="hiddenlink" target="rightframe">spotShadowAlpha</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.stackViewStyle" class="hiddenlink" target="rightframe">stackViewStyle</A>
+</nobr><br>
+<nobr><A HREF="android.view.Display.html#android.view.Display.STATE_DOZE" class="hiddenlink" target="rightframe">STATE_DOZE</A>
+</nobr><br>
+<nobr><A HREF="android.view.Display.html#android.view.Display.STATE_DOZE_SUSPEND" class="hiddenlink" target="rightframe">STATE_DOZE_SUSPEND</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.stateListAnimator" class="hiddenlink" target="rightframe">stateListAnimator</A>
+</nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.STATUS_BAR_BACKGROUND_TRANSITION_NAME" class="hiddenlink" target="rightframe">STATUS_BAR_BACKGROUND_TRANSITION_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.R.id.html#android.R.id.statusBarBackground" class="hiddenlink" target="rightframe">statusBarBackground</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.statusBarColor" class="hiddenlink" target="rightframe">statusBarColor</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.STOPPED" class="hiddenlink" target="rightframe">STOPPED</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.html#android.provider.ContactsContract.STREQUENT_PHONE_ONLY" class="hiddenlink" target="rightframe">STREQUENT_PHONE_ONLY</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeAlpha" class="hiddenlink" target="rightframe">strokeAlpha</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeColor" class="hiddenlink" target="rightframe">strokeColor</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeLineCap" class="hiddenlink" target="rightframe">strokeLineCap</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeLineJoin" class="hiddenlink" target="rightframe">strokeLineJoin</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeMiterLimit" class="hiddenlink" target="rightframe">strokeMiterLimit</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeWidth" class="hiddenlink" target="rightframe">strokeWidth</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.submitBackground" class="hiddenlink" target="rightframe">submitBackground</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.subtitleTextAppearance" class="hiddenlink" target="rightframe">subtitleTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_AUDIO_CHANNEL_CONFIG" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_AUDIO_CHANNEL_CONFIG</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_CONTENT_TYPE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_CONTENT_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_DURATION" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_DURATION</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_IS_LIVE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_IS_LIVE</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_PRODUCTION_YEAR" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_PRODUCTION_YEAR</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_PURCHASE_PRICE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_PURCHASE_PRICE</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_RATING_SCORE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_RATING_SCORE</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_RATING_STYLE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_RATING_STYLE</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_RENTAL_PRICE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_RENTAL_PRICE</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_RESULT_CARD_IMAGE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_RESULT_CARD_IMAGE</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_VIDEO_HEIGHT" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_VIDEO_HEIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_VIDEO_WIDTH" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_VIDEO_WIDTH</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.suggestionRowLayout" class="hiddenlink" target="rightframe">suggestionRowLayout</A>
+</nobr><br>
+<nobr><A HREF="android.os.Build.html#android.os.Build.SUPPORTED_32_BIT_ABIS" class="hiddenlink" target="rightframe">SUPPORTED_32_BIT_ABIS</A>
+</nobr><br>
+<nobr><A HREF="android.os.Build.html#android.os.Build.SUPPORTED_64_BIT_ABIS" class="hiddenlink" target="rightframe">SUPPORTED_64_BIT_ABIS</A>
+</nobr><br>
+<nobr><A HREF="android.os.Build.html#android.os.Build.SUPPORTED_ABIS" class="hiddenlink" target="rightframe">SUPPORTED_ABIS</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaRecorder.VideoSource.html#android.media.MediaRecorder.VideoSource.SURFACE" class="hiddenlink" target="rightframe">SURFACE</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.switchStyle" class="hiddenlink" target="rightframe">switchStyle</A>
+</nobr><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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.R.attr.html#android.R.attr.targetName" class="hiddenlink" target="rightframe">targetName</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RecentTaskInfo.html#android.app.ActivityManager.RecentTaskInfo.taskDescription" class="hiddenlink" target="rightframe">taskDescription</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.TELECOM_SERVICE" class="hiddenlink" target="rightframe">TELECOM_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material" class="hiddenlink" target="rightframe">TextAppearance_Material</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Body1" class="hiddenlink" target="rightframe">TextAppearance_Material_Body1</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Body2" class="hiddenlink" target="rightframe">TextAppearance_Material_Body2</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Button" class="hiddenlink" target="rightframe">TextAppearance_Material_Button</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Caption" class="hiddenlink" target="rightframe">TextAppearance_Material_Caption</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_DialogWindowTitle" class="hiddenlink" target="rightframe">TextAppearance_Material_DialogWindowTitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display1" class="hiddenlink" target="rightframe">TextAppearance_Material_Display1</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display2" class="hiddenlink" target="rightframe">TextAppearance_Material_Display2</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display3" class="hiddenlink" target="rightframe">TextAppearance_Material_Display3</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display4" class="hiddenlink" target="rightframe">TextAppearance_Material_Display4</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Headline" class="hiddenlink" target="rightframe">TextAppearance_Material_Headline</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Large" class="hiddenlink" target="rightframe">TextAppearance_Material_Large</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Large_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Large_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Medium" class="hiddenlink" target="rightframe">TextAppearance_Material_Medium</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Medium_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Medium_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Menu" class="hiddenlink" target="rightframe">TextAppearance_Material_Menu</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Emphasis" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Emphasis</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Info" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Info</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Line2" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Line2</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Time" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Time</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_SearchResult_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_SearchResult_Subtitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_SearchResult_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_SearchResult_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Small" class="hiddenlink" target="rightframe">TextAppearance_Material_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Small_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Small_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Subhead" class="hiddenlink" target="rightframe">TextAppearance_Material_Subhead</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Menu" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Menu</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Subtitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Title_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Title_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Subtitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Title_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Title_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_Button" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_Button</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_DropDownHint" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_DropDownHint</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_DropDownItem" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_DropDownItem</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_EditText" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_EditText</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_IconMenu_Item" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_IconMenu_Item</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_PopupMenu" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_PopupMenu</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_PopupMenu_Large" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_PopupMenu_Large</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_PopupMenu_Small" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_PopupMenu_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TabWidget" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TabWidget</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TextView" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TextView_PopupMenu" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TextView_PopupMenu</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TextView_SpinnerItem" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TextView_SpinnerItem</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_Toolbar_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_Toolbar_Subtitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_Toolbar_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_Toolbar_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_WindowTitle" class="hiddenlink" target="rightframe">TextAppearance_Material_WindowTitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.textAppearanceListItemSecondary" class="hiddenlink" target="rightframe">textAppearanceListItemSecondary</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_DeviceDefault_Settings" class="hiddenlink" target="rightframe">Theme_DeviceDefault_Settings</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material" class="hiddenlink" target="rightframe">Theme_Material</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog" class="hiddenlink" target="rightframe">Theme_Material_Dialog</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_Alert" class="hiddenlink" target="rightframe">Theme_Material_Dialog_Alert</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Dialog_MinWidth</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Dialog_NoActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_NoActionBar_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Dialog_NoActionBar_MinWidth</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_Presentation" class="hiddenlink" target="rightframe">Theme_Material_Dialog_Presentation</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_DialogWhenLarge" class="hiddenlink" target="rightframe">Theme_Material_DialogWhenLarge</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_DialogWhenLarge_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_DialogWhenLarge_NoActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_InputMethod" class="hiddenlink" target="rightframe">Theme_Material_InputMethod</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light" class="hiddenlink" target="rightframe">Theme_Material_Light</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_DarkActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_DarkActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_Alert" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_Alert</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_MinWidth</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_NoActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_NoActionBar_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_NoActionBar_MinWidth</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_Presentation" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_Presentation</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_DialogWhenLarge" class="hiddenlink" target="rightframe">Theme_Material_Light_DialogWhenLarge</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_DialogWhenLarge_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_DialogWhenLarge_NoActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar_Fullscreen" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar_Fullscreen</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar_Overscan" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar_Overscan</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar_TranslucentDecor" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar_TranslucentDecor</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Panel" class="hiddenlink" target="rightframe">Theme_Material_Light_Panel</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Voice" class="hiddenlink" target="rightframe">Theme_Material_Light_Voice</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar_Fullscreen" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar_Fullscreen</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar_Overscan" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar_Overscan</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar_TranslucentDecor" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar_TranslucentDecor</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Panel" class="hiddenlink" target="rightframe">Theme_Material_Panel</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Settings" class="hiddenlink" target="rightframe">Theme_Material_Settings</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Voice" class="hiddenlink" target="rightframe">Theme_Material_Voice</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Wallpaper" class="hiddenlink" target="rightframe">Theme_Material_Wallpaper</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Wallpaper_NoTitleBar" class="hiddenlink" target="rightframe">Theme_Material_Wallpaper_NoTitleBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay" class="hiddenlink" target="rightframe">ThemeOverlay</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material" class="hiddenlink" target="rightframe">ThemeOverlay_Material</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_ActionBar" class="hiddenlink" target="rightframe">ThemeOverlay_Material_ActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_Dark" class="hiddenlink" target="rightframe">ThemeOverlay_Material_Dark</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_Dark_ActionBar" class="hiddenlink" target="rightframe">ThemeOverlay_Material_Dark_ActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_Light" class="hiddenlink" target="rightframe">ThemeOverlay_Material_Light</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.thumbTint" class="hiddenlink" target="rightframe">thumbTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.thumbTintMode" class="hiddenlink" target="rightframe">thumbTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.tileModeX" class="hiddenlink" target="rightframe">tileModeX</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.tileModeY" class="hiddenlink" target="rightframe">tileModeY</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.timePickerDialogTheme" class="hiddenlink" target="rightframe">timePickerDialogTheme</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.timePickerMode" class="hiddenlink" target="rightframe">timePickerMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.timePickerStyle" class="hiddenlink" target="rightframe">timePickerStyle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.tintMode" class="hiddenlink" target="rightframe">tintMode</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.GroupsColumns.html#android.provider.ContactsContract.GroupsColumns.TITLE_RES" class="hiddenlink" target="rightframe">TITLE_RES</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.titleTextAppearance" class="hiddenlink" target="rightframe">titleTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.toId" class="hiddenlink" target="rightframe">toId</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.toolbarStyle" class="hiddenlink" target="rightframe">toolbarStyle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.touchscreenBlocksFocus" class="hiddenlink" target="rightframe">touchscreenBlocksFocus</A>
+</nobr><br>
+<i>TRANSCRIPTION</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.TRANSCRIPTION" class="hiddenlink" target="rightframe">android.provider.CallLog.Calls</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.VoicemailContract.Voicemails.html#android.provider.VoicemailContract.Voicemails.TRANSCRIPTION" class="hiddenlink" target="rightframe">android.provider.VoicemailContract.Voicemails</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.transitionGroup" class="hiddenlink" target="rightframe">transitionGroup</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.transitionName" class="hiddenlink" target="rightframe">transitionName</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.transitionVisibilityMode" class="hiddenlink" target="rightframe">transitionVisibilityMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.translateX" class="hiddenlink" target="rightframe">translateX</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.translateY" class="hiddenlink" target="rightframe">translateY</A>
+</nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.TRANSLATION_Z" class="hiddenlink" target="rightframe">TRANSLATION_Z</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.translationZ" class="hiddenlink" target="rightframe">translationZ</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.trimPathEnd" class="hiddenlink" target="rightframe">trimPathEnd</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.trimPathOffset" class="hiddenlink" target="rightframe">trimPathOffset</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.trimPathStart" class="hiddenlink" target="rightframe">trimPathStart</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.TV_INPUT_SERVICE" class="hiddenlink" target="rightframe">TV_INPUT_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.TYPE_INTEGER" class="hiddenlink" target="rightframe">TYPE_INTEGER</A>
+</nobr><br>
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.TYPE_STRING" class="hiddenlink" target="rightframe">TYPE_STRING</A>
+</nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.TYPE_VPN" class="hiddenlink" target="rightframe">TYPE_VPN</A>
+</nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityEvent.html#android.view.accessibility.AccessibilityEvent.TYPE_WINDOWS_CHANGED" class="hiddenlink" target="rightframe">TYPE_WINDOWS_CHANGED</A>
+</nobr><br>
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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">
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.UNICODE_LOCALE_EXTENSION" class="hiddenlink" target="rightframe">UNICODE_LOCALE_EXTENSION</A>
+</nobr><br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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">
+<nobr><A HREF="android.R.attr.html#android.R.attr.viewportHeight" class="hiddenlink" target="rightframe">viewportHeight</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.viewportWidth" class="hiddenlink" target="rightframe">viewportWidth</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.display.DisplayManager.html#android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR" class="hiddenlink" target="rightframe">VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR</A>
+</nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_AUTO" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_AUTO</A>
+</nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_BINAURAL" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_BINAURAL</A>
+</nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_OFF" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_OFF</A>
+</nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_TRANSAURAL" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_TRANSAURAL</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.visibility" class="hiddenlink" target="rightframe">visibility</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.VISIBILITY_PRIVATE" class="hiddenlink" target="rightframe">VISIBILITY_PRIVATE</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.VISIBILITY_PUBLIC" class="hiddenlink" target="rightframe">VISIBILITY_PUBLIC</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.VISIBILITY_SECRET" class="hiddenlink" target="rightframe">VISIBILITY_SECRET</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.voiceIcon" class="hiddenlink" target="rightframe">voiceIcon</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.VOICEMAIL_TYPE" class="hiddenlink" target="rightframe">VOICEMAIL_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.VOICEMAIL_URI" class="hiddenlink" target="rightframe">VOICEMAIL_URI</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaRecorder.AudioEncoder.html#android.media.MediaRecorder.AudioEncoder.VORBIS" class="hiddenlink" target="rightframe">VORBIS</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaRecorder.VideoEncoder.html#android.media.MediaRecorder.VideoEncoder.VP8" class="hiddenlink" target="rightframe">VP8</A>
+</nobr><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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.media.MediaRecorder.OutputFormat.html#android.media.MediaRecorder.OutputFormat.WEBM" class="hiddenlink" target="rightframe">WEBM</A>
+</nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX" class="hiddenlink" target="rightframe">WIDGET_CATEGORY_SEARCHBOX</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_FastScroll" class="hiddenlink" target="rightframe">Widget_DeviceDefault_FastScroll</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_FastScroll" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_FastScroll</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_StackView" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_StackView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_StackView" class="hiddenlink" target="rightframe">Widget_DeviceDefault_StackView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_FastScroll" class="hiddenlink" target="rightframe">Widget_FastScroll</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material" class="hiddenlink" target="rightframe">Widget_Material</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar" class="hiddenlink" target="rightframe">Widget_Material_ActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_Solid" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_Solid</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_TabBar" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_TabBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_TabText" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_TabText</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_TabView" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_TabView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionButton" class="hiddenlink" target="rightframe">Widget_Material_ActionButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionButton_CloseMode" class="hiddenlink" target="rightframe">Widget_Material_ActionButton_CloseMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionButton_Overflow" class="hiddenlink" target="rightframe">Widget_Material_ActionButton_Overflow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionMode" class="hiddenlink" target="rightframe">Widget_Material_ActionMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_AutoCompleteTextView" class="hiddenlink" target="rightframe">Widget_Material_AutoCompleteTextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button" class="hiddenlink" target="rightframe">Widget_Material_Button</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Borderless" class="hiddenlink" target="rightframe">Widget_Material_Button_Borderless</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Borderless_Colored" class="hiddenlink" target="rightframe">Widget_Material_Button_Borderless_Colored</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Borderless_Small" class="hiddenlink" target="rightframe">Widget_Material_Button_Borderless_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Inset" class="hiddenlink" target="rightframe">Widget_Material_Button_Inset</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Small" class="hiddenlink" target="rightframe">Widget_Material_Button_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Toggle" class="hiddenlink" target="rightframe">Widget_Material_Button_Toggle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ButtonBar" class="hiddenlink" target="rightframe">Widget_Material_ButtonBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ButtonBar_AlertDialog" class="hiddenlink" target="rightframe">Widget_Material_ButtonBar_AlertDialog</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CalendarView" class="hiddenlink" target="rightframe">Widget_Material_CalendarView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CheckedTextView" class="hiddenlink" target="rightframe">Widget_Material_CheckedTextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CompoundButton_CheckBox" class="hiddenlink" target="rightframe">Widget_Material_CompoundButton_CheckBox</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CompoundButton_RadioButton" class="hiddenlink" target="rightframe">Widget_Material_CompoundButton_RadioButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CompoundButton_Star" class="hiddenlink" target="rightframe">Widget_Material_CompoundButton_Star</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_DatePicker" class="hiddenlink" target="rightframe">Widget_Material_DatePicker</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_DropDownItem" class="hiddenlink" target="rightframe">Widget_Material_DropDownItem</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_DropDownItem_Spinner" class="hiddenlink" target="rightframe">Widget_Material_DropDownItem_Spinner</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_EditText" class="hiddenlink" target="rightframe">Widget_Material_EditText</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ExpandableListView" class="hiddenlink" target="rightframe">Widget_Material_ExpandableListView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_FastScroll" class="hiddenlink" target="rightframe">Widget_Material_FastScroll</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_GridView" class="hiddenlink" target="rightframe">Widget_Material_GridView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_HorizontalScrollView" class="hiddenlink" target="rightframe">Widget_Material_HorizontalScrollView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ImageButton" class="hiddenlink" target="rightframe">Widget_Material_ImageButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light" class="hiddenlink" target="rightframe">Widget_Material_Light</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_Solid" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_Solid</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_TabBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_TabBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_TabText" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_TabText</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_TabView" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_TabView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionButton" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionButton_CloseMode" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionButton_CloseMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionButton_Overflow" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionButton_Overflow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionMode" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_AutoCompleteTextView" class="hiddenlink" target="rightframe">Widget_Material_Light_AutoCompleteTextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button" class="hiddenlink" target="rightframe">Widget_Material_Light_Button</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Borderless" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Borderless</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Borderless_Colored" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Borderless_Colored</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Borderless_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Borderless_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Inset" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Inset</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Toggle" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Toggle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ButtonBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ButtonBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ButtonBar_AlertDialog" class="hiddenlink" target="rightframe">Widget_Material_Light_ButtonBar_AlertDialog</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CalendarView" class="hiddenlink" target="rightframe">Widget_Material_Light_CalendarView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CheckedTextView" class="hiddenlink" target="rightframe">Widget_Material_Light_CheckedTextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CompoundButton_CheckBox" class="hiddenlink" target="rightframe">Widget_Material_Light_CompoundButton_CheckBox</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CompoundButton_RadioButton" class="hiddenlink" target="rightframe">Widget_Material_Light_CompoundButton_RadioButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CompoundButton_Star" class="hiddenlink" target="rightframe">Widget_Material_Light_CompoundButton_Star</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_DatePicker" class="hiddenlink" target="rightframe">Widget_Material_Light_DatePicker</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_DropDownItem" class="hiddenlink" target="rightframe">Widget_Material_Light_DropDownItem</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_DropDownItem_Spinner" class="hiddenlink" target="rightframe">Widget_Material_Light_DropDownItem_Spinner</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_EditText" class="hiddenlink" target="rightframe">Widget_Material_Light_EditText</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ExpandableListView" class="hiddenlink" target="rightframe">Widget_Material_Light_ExpandableListView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_FastScroll" class="hiddenlink" target="rightframe">Widget_Material_Light_FastScroll</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_GridView" class="hiddenlink" target="rightframe">Widget_Material_Light_GridView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_HorizontalScrollView" class="hiddenlink" target="rightframe">Widget_Material_Light_HorizontalScrollView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ImageButton" class="hiddenlink" target="rightframe">Widget_Material_Light_ImageButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ListPopupWindow" class="hiddenlink" target="rightframe">Widget_Material_Light_ListPopupWindow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ListView" class="hiddenlink" target="rightframe">Widget_Material_Light_ListView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ListView_DropDown" class="hiddenlink" target="rightframe">Widget_Material_Light_ListView_DropDown</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_MediaRouteButton" class="hiddenlink" target="rightframe">Widget_Material_Light_MediaRouteButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_PopupMenu" class="hiddenlink" target="rightframe">Widget_Material_Light_PopupMenu</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_PopupMenu_Overflow" class="hiddenlink" target="rightframe">Widget_Material_Light_PopupMenu_Overflow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_PopupWindow" class="hiddenlink" target="rightframe">Widget_Material_Light_PopupWindow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Horizontal" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Horizontal</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Inverse" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Large" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Large</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Large_Inverse" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Large_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Small_Inverse" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Small_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Small_Title" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Small_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_RatingBar" class="hiddenlink" target="rightframe">Widget_Material_Light_RatingBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_RatingBar_Indicator" class="hiddenlink" target="rightframe">Widget_Material_Light_RatingBar_Indicator</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_RatingBar_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_RatingBar_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ScrollView" class="hiddenlink" target="rightframe">Widget_Material_Light_ScrollView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_SearchView" class="hiddenlink" target="rightframe">Widget_Material_Light_SearchView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_SeekBar" class="hiddenlink" target="rightframe">Widget_Material_Light_SeekBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_SegmentedButton" class="hiddenlink" target="rightframe">Widget_Material_Light_SegmentedButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Spinner" class="hiddenlink" target="rightframe">Widget_Material_Light_Spinner</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Spinner_Underlined" class="hiddenlink" target="rightframe">Widget_Material_Light_Spinner_Underlined</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_StackView" class="hiddenlink" target="rightframe">Widget_Material_Light_StackView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Tab" class="hiddenlink" target="rightframe">Widget_Material_Light_Tab</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TabWidget" class="hiddenlink" target="rightframe">Widget_Material_Light_TabWidget</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TextView" class="hiddenlink" target="rightframe">Widget_Material_Light_TextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TextView_SpinnerItem" class="hiddenlink" target="rightframe">Widget_Material_Light_TextView_SpinnerItem</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TimePicker" class="hiddenlink" target="rightframe">Widget_Material_Light_TimePicker</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_WebTextView" class="hiddenlink" target="rightframe">Widget_Material_Light_WebTextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_WebView" class="hiddenlink" target="rightframe">Widget_Material_Light_WebView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ListPopupWindow" class="hiddenlink" target="rightframe">Widget_Material_ListPopupWindow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ListView" class="hiddenlink" target="rightframe">Widget_Material_ListView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ListView_DropDown" class="hiddenlink" target="rightframe">Widget_Material_ListView_DropDown</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_MediaRouteButton" class="hiddenlink" target="rightframe">Widget_Material_MediaRouteButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_PopupMenu" class="hiddenlink" target="rightframe">Widget_Material_PopupMenu</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_PopupMenu_Overflow" class="hiddenlink" target="rightframe">Widget_Material_PopupMenu_Overflow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_PopupWindow" class="hiddenlink" target="rightframe">Widget_Material_PopupWindow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Horizontal" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Horizontal</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Large" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Large</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Small" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Small_Title" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Small_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_RatingBar" class="hiddenlink" target="rightframe">Widget_Material_RatingBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_RatingBar_Indicator" class="hiddenlink" target="rightframe">Widget_Material_RatingBar_Indicator</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_RatingBar_Small" class="hiddenlink" target="rightframe">Widget_Material_RatingBar_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ScrollView" class="hiddenlink" target="rightframe">Widget_Material_ScrollView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_SearchView" class="hiddenlink" target="rightframe">Widget_Material_SearchView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_SeekBar" class="hiddenlink" target="rightframe">Widget_Material_SeekBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_SegmentedButton" class="hiddenlink" target="rightframe">Widget_Material_SegmentedButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Spinner" class="hiddenlink" target="rightframe">Widget_Material_Spinner</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Spinner_Underlined" class="hiddenlink" target="rightframe">Widget_Material_Spinner_Underlined</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_StackView" class="hiddenlink" target="rightframe">Widget_Material_StackView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Tab" class="hiddenlink" target="rightframe">Widget_Material_Tab</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TabWidget" class="hiddenlink" target="rightframe">Widget_Material_TabWidget</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TextView" class="hiddenlink" target="rightframe">Widget_Material_TextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TextView_SpinnerItem" class="hiddenlink" target="rightframe">Widget_Material_TextView_SpinnerItem</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TimePicker" class="hiddenlink" target="rightframe">Widget_Material_TimePicker</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Toolbar" class="hiddenlink" target="rightframe">Widget_Material_Toolbar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Toolbar_Button_Navigation" class="hiddenlink" target="rightframe">Widget_Material_Toolbar_Button_Navigation</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_WebTextView" class="hiddenlink" target="rightframe">Widget_Material_WebTextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_WebView" class="hiddenlink" target="rightframe">Widget_Material_WebView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_StackView" class="hiddenlink" target="rightframe">Widget_StackView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Toolbar" class="hiddenlink" target="rightframe">Widget_Toolbar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Toolbar_Button_Navigation" class="hiddenlink" target="rightframe">Widget_Toolbar_Button_Navigation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowActivityTransitions" class="hiddenlink" target="rightframe">windowActivityTransitions</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowAllowEnterTransitionOverlap" class="hiddenlink" target="rightframe">windowAllowEnterTransitionOverlap</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowAllowReturnTransitionOverlap" class="hiddenlink" target="rightframe">windowAllowReturnTransitionOverlap</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowClipToOutline" class="hiddenlink" target="rightframe">windowClipToOutline</A>
+</nobr><br>
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.windowColor" class="hiddenlink" target="rightframe">windowColor</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowContentTransitionManager" class="hiddenlink" target="rightframe">windowContentTransitionManager</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowContentTransitions" class="hiddenlink" target="rightframe">windowContentTransitions</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowDrawsSystemBarBackgrounds" class="hiddenlink" target="rightframe">windowDrawsSystemBarBackgrounds</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowElevation" class="hiddenlink" target="rightframe">windowElevation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowEnterTransition" class="hiddenlink" target="rightframe">windowEnterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowExitTransition" class="hiddenlink" target="rightframe">windowExitTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowReenterTransition" class="hiddenlink" target="rightframe">windowReenterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowReturnTransition" class="hiddenlink" target="rightframe">windowReturnTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementEnterTransition" class="hiddenlink" target="rightframe">windowSharedElementEnterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementExitTransition" class="hiddenlink" target="rightframe">windowSharedElementExitTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementReenterTransition" class="hiddenlink" target="rightframe">windowSharedElementReenterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementReturnTransition" class="hiddenlink" target="rightframe">windowSharedElementReturnTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementsUseOverlay" class="hiddenlink" target="rightframe">windowSharedElementsUseOverlay</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowTransitionBackgroundFadeDuration" class="hiddenlink" target="rightframe">windowTransitionBackgroundFadeDuration</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_AUTH_FAILURE" class="hiddenlink" target="rightframe">WPS_AUTH_FAILURE</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_OVERLAP_ERROR" class="hiddenlink" target="rightframe">WPS_OVERLAP_ERROR</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_TIMED_OUT" class="hiddenlink" target="rightframe">WPS_TIMED_OUT</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_TKIP_ONLY_PROHIBITED" class="hiddenlink" target="rightframe">WPS_TKIP_ONLY_PROHIBITED</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_WEP_PROHIBITED" class="hiddenlink" target="rightframe">WPS_WEP_PROHIBITED</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.WRITE_BLOCKING" class="hiddenlink" target="rightframe">WRITE_BLOCKING</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.WRITE_NON_BLOCKING" class="hiddenlink" target="rightframe">WRITE_NON_BLOCKING</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.WRITE_VOICEMAIL" class="hiddenlink" target="rightframe">WRITE_VOICEMAIL</A>
+</nobr><br>
+<A NAME="Y"></A>
+<br><font size="+2">Y</font>&nbsp;
+<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.R.attr.html#android.R.attr.yearListItemTextAppearance" class="hiddenlink" target="rightframe">yearListItemTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.yearListSelectorColor" class="hiddenlink" target="rightframe">yearListSelectorColor</A>
+</nobr><br>
+<A NAME="Z"></A>
+<br><font size="+2">Z</font>&nbsp;
+<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">
+<nobr><A HREF="android.view.View.html#android.view.View.Z" class="hiddenlink" target="rightframe">Z</A>
+</nobr><br>
+<script src="//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/21/changes/fields_index_all.html b/docs/html/sdk/api_diff/21/changes/fields_index_all.html
new file mode 100644
index 0000000..c59f845
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/fields_index_all.html
@@ -0,0 +1,3522 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<A HREF="fields_index_removals.html" xclass="hiddenlink">Removals</A>
+  <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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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.Settings.Secure.html#android.provider.Settings.Secure.ACCESSIBILITY_DISPLAY_INVERSION_ENABLED" class="hiddenlink" target="rightframe">ACCESSIBILITY_DISPLAY_INVERSION_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.ACCOUNT_NAME" class="hiddenlink" target="rightframe">ACCOUNT_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.ACCOUNT_TYPE" class="hiddenlink" target="rightframe">ACCOUNT_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.RawContactsColumns.html#android.provider.ContactsContract.RawContactsColumns.ACCOUNT_TYPE_AND_DATA_SET" class="hiddenlink" target="rightframe">ACCOUNT_TYPE_AND_DATA_SET</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.ACTION_APPLICATION_RESTRICTIONS_CHANGED" class="hiddenlink" target="rightframe">ACTION_APPLICATION_RESTRICTIONS_CHANGED</A>
+</nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.ACTION_APPWIDGET_HOST_RESTORED" class="hiddenlink" target="rightframe">ACTION_APPWIDGET_HOST_RESTORED</A>
+</nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.ACTION_APPWIDGET_RESTORED" class="hiddenlink" target="rightframe">ACTION_APPWIDGET_RESTORED</A>
+</nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.ACTION_ARGUMENT_SET_TEXT_CHARSEQUENCE" class="hiddenlink" target="rightframe">ACTION_ARGUMENT_SET_TEXT_CHARSEQUENCE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_CAST_SETTINGS" class="hiddenlink" target="rightframe">ACTION_CAST_SETTINGS</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ACTION_HDMI_AUDIO_PLUG" class="hiddenlink" target="rightframe">ACTION_HDMI_AUDIO_PLUG</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ACTION_HEADSET_PLUG" class="hiddenlink" target="rightframe">ACTION_HEADSET_PLUG</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_HOME_SETTINGS" class="hiddenlink" target="rightframe">ACTION_HOME_SETTINGS</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.ACTION_LOCK_TASK_ENTERING" class="hiddenlink" target="rightframe">ACTION_LOCK_TASK_ENTERING</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.ACTION_LOCK_TASK_EXITING" class="hiddenlink" target="rightframe">ACTION_LOCK_TASK_EXITING</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.ACTION_MANAGED_PROFILE_ADDED" class="hiddenlink" target="rightframe">ACTION_MANAGED_PROFILE_ADDED</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.ACTION_MANAGED_PROFILE_REMOVED" class="hiddenlink" target="rightframe">ACTION_MANAGED_PROFILE_REMOVED</A>
+</nobr><br>
+<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.ACTION_NEXT_ALARM_CLOCK_CHANGED" class="hiddenlink" target="rightframe">ACTION_NEXT_ALARM_CLOCK_CHANGED</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.ACTION_OPEN_DOCUMENT_TREE" class="hiddenlink" target="rightframe">ACTION_OPEN_DOCUMENT_TREE</A>
+</nobr><br>
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.ACTION_POWER_SAVE_MODE_CHANGED" class="hiddenlink" target="rightframe">ACTION_POWER_SAVE_MODE_CHANGED</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.ACTION_PROFILE_PROVISIONING_COMPLETE" class="hiddenlink" target="rightframe">ACTION_PROFILE_PROVISIONING_COMPLETE</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.ACTION_PROVISION_MANAGED_PROFILE" class="hiddenlink" target="rightframe">ACTION_PROVISION_MANAGED_PROFILE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.QuickContact.html#android.provider.ContactsContract.QuickContact.ACTION_QUICK_CONTACT" class="hiddenlink" target="rightframe">ACTION_QUICK_CONTACT</A>
+</nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.ACTION_SET_TEXT" class="hiddenlink" target="rightframe">ACTION_SET_TEXT</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_SHOW_REGULATORY_INFO" class="hiddenlink" target="rightframe">ACTION_SHOW_REGULATORY_INFO</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_USAGE_ACCESS_SETTINGS" class="hiddenlink" target="rightframe">ACTION_USAGE_ACCESS_SETTINGS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_VOICE_INPUT_SETTINGS" class="hiddenlink" target="rightframe">ACTION_VOICE_INPUT_SETTINGS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionBarPopupTheme" class="hiddenlink" target="rightframe">actionBarPopupTheme</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionBarTheme" class="hiddenlink" target="rightframe">actionBarTheme</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionModeFindDrawable" class="hiddenlink" target="rightframe">actionModeFindDrawable</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionModeShareDrawable" class="hiddenlink" target="rightframe">actionModeShareDrawable</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionModeWebSearchDrawable" class="hiddenlink" target="rightframe">actionModeWebSearchDrawable</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionOverflowMenuStyle" class="hiddenlink" target="rightframe">actionOverflowMenuStyle</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RecentTaskInfo.html#android.app.ActivityManager.RecentTaskInfo.affiliatedTaskId" class="hiddenlink" target="rightframe">affiliatedTaskId</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiEnterpriseConfig.Eap.html#android.net.wifi.WifiEnterpriseConfig.Eap.AKA" class="hiddenlink" target="rightframe">AKA</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.ALL_CODECS" class="hiddenlink" target="rightframe">ALL_CODECS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.ambientShadowAlpha" class="hiddenlink" target="rightframe">ambientShadowAlpha</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.amPmBackgroundColor" class="hiddenlink" target="rightframe">amPmBackgroundColor</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.amPmTextColor" class="hiddenlink" target="rightframe">amPmTextColor</A>
+</nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.ANY_CURSOR_ITEM_TYPE" class="hiddenlink" target="rightframe">ANY_CURSOR_ITEM_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.APPWIDGET_SERVICE" class="hiddenlink" target="rightframe">APPWIDGET_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Telephony.ThreadsColumns.html#android.provider.Telephony.ThreadsColumns.ARCHIVED" class="hiddenlink" target="rightframe">ARCHIVED</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.AUDIO_ATTRIBUTES_DEFAULT" class="hiddenlink" target="rightframe">AUDIO_ATTRIBUTES_DEFAULT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.AUDIO_SESSION_ID_GENERATE" class="hiddenlink" target="rightframe">AUDIO_SESSION_ID_GENERATE</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.audioAttributes" class="hiddenlink" target="rightframe">audioAttributes</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.audioStreamType" class="hiddenlink" target="rightframe">audioStreamType</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.autoRemoveFromRecents" class="hiddenlink" target="rightframe">autoRemoveFromRecents</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.AVCLevel52" class="hiddenlink" target="rightframe">AVCLevel52</A>
+</nobr><br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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">
+<nobr><A HREF="android.R.attr.html#android.R.attr.backgroundTint" class="hiddenlink" target="rightframe">backgroundTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.backgroundTintMode" class="hiddenlink" target="rightframe">backgroundTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.banner" class="hiddenlink" target="rightframe">banner</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.BATTERY_PROPERTY_CAPACITY" class="hiddenlink" target="rightframe">BATTERY_PROPERTY_CAPACITY</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.BATTERY_PROPERTY_CHARGE_COUNTER" class="hiddenlink" target="rightframe">BATTERY_PROPERTY_CHARGE_COUNTER</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.BATTERY_PROPERTY_CURRENT_AVERAGE" class="hiddenlink" target="rightframe">BATTERY_PROPERTY_CURRENT_AVERAGE</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.BATTERY_PROPERTY_CURRENT_NOW" class="hiddenlink" target="rightframe">BATTERY_PROPERTY_CURRENT_NOW</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.BATTERY_PROPERTY_ENERGY_COUNTER" class="hiddenlink" target="rightframe">BATTERY_PROPERTY_ENERGY_COUNTER</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.BATTERY_SERVICE" class="hiddenlink" target="rightframe">BATTERY_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.BIND_DREAM_SERVICE" class="hiddenlink" target="rightframe">BIND_DREAM_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.BIND_TV_INPUT" class="hiddenlink" target="rightframe">BIND_TV_INPUT</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.BIND_VOICE_INTERACTION" class="hiddenlink" target="rightframe">BIND_VOICE_INTERACTION</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WpsInfo.html#android.net.wifi.WpsInfo.BSSID" class="hiddenlink" target="rightframe">BSSID</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.BUFFER_FLAG_KEY_FRAME" class="hiddenlink" target="rightframe">BUFFER_FLAG_KEY_FRAME</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.BUFFER_FLAG_SYNC_FRAME" class="hiddenlink" target="rightframe">BUFFER_FLAG_SYNC_FRAME</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonBarNegativeButtonStyle" class="hiddenlink" target="rightframe">buttonBarNegativeButtonStyle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonBarNeutralButtonStyle" class="hiddenlink" target="rightframe">buttonBarNeutralButtonStyle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonBarPositiveButtonStyle" class="hiddenlink" target="rightframe">buttonBarPositiveButtonStyle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonTint" class="hiddenlink" target="rightframe">buttonTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonTintMode" class="hiddenlink" target="rightframe">buttonTintMode</A>
+</nobr><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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">
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.CACHED_FORMATTED_NUMBER" class="hiddenlink" target="rightframe">CACHED_FORMATTED_NUMBER</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.CACHED_LOOKUP_URI" class="hiddenlink" target="rightframe">CACHED_LOOKUP_URI</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.CACHED_MATCHED_NUMBER" class="hiddenlink" target="rightframe">CACHED_MATCHED_NUMBER</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.CACHED_NORMALIZED_NUMBER" class="hiddenlink" target="rightframe">CACHED_NORMALIZED_NUMBER</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.CACHED_PHOTO_ID" class="hiddenlink" target="rightframe">CACHED_PHOTO_ID</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.calendarTextColor" class="hiddenlink" target="rightframe">calendarTextColor</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.CAMERA_SERVICE" class="hiddenlink" target="rightframe">CAMERA_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.category" class="hiddenlink" target="rightframe">category</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_ALARM" class="hiddenlink" target="rightframe">CATEGORY_ALARM</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_CALL" class="hiddenlink" target="rightframe">CATEGORY_CALL</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_EMAIL" class="hiddenlink" target="rightframe">CATEGORY_EMAIL</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_ERROR" class="hiddenlink" target="rightframe">CATEGORY_ERROR</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_EVENT" class="hiddenlink" target="rightframe">CATEGORY_EVENT</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.CATEGORY_LEANBACK_LAUNCHER" class="hiddenlink" target="rightframe">CATEGORY_LEANBACK_LAUNCHER</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_MESSAGE" class="hiddenlink" target="rightframe">CATEGORY_MESSAGE</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_PROGRESS" class="hiddenlink" target="rightframe">CATEGORY_PROGRESS</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_PROMO" class="hiddenlink" target="rightframe">CATEGORY_PROMO</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_RECOMMENDATION" class="hiddenlink" target="rightframe">CATEGORY_RECOMMENDATION</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_SERVICE" class="hiddenlink" target="rightframe">CATEGORY_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_SOCIAL" class="hiddenlink" target="rightframe">CATEGORY_SOCIAL</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_STATUS" class="hiddenlink" target="rightframe">CATEGORY_STATUS</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_SYSTEM" class="hiddenlink" target="rightframe">CATEGORY_SYSTEM</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.CATEGORY_TRANSPORT" class="hiddenlink" target="rightframe">CATEGORY_TRANSPORT</A>
+</nobr><br>
+<i>CENATT</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENATT" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENATT" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENATT" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENATT" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENATX</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENATX" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENATX" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENATX" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENATX" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENCOM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENCRC</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENDSK</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENDSK" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENDSK" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENDSK" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENDSK" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENEXT</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENFLG</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENHDR</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENHOW</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENLEN</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENNAM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENOFF</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENSIG</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENSIZ</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENTIM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENVEM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENVEM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENVEM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENVEM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENVEM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>CENVER</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.CENVER" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.CENVER" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.CENVER" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.CENVER" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_SIDE_LEFT" class="hiddenlink" target="rightframe">CHANNEL_OUT_SIDE_LEFT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_SIDE_RIGHT" class="hiddenlink" target="rightframe">CHANNEL_OUT_SIDE_RIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.checkMarkTint" class="hiddenlink" target="rightframe">checkMarkTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.checkMarkTintMode" class="hiddenlink" target="rightframe">checkMarkTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.view.HapticFeedbackConstants.html#android.view.HapticFeedbackConstants.CLOCK_TICK" class="hiddenlink" target="rightframe">CLOCK_TICK</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.closeIcon" class="hiddenlink" target="rightframe">closeIcon</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.color" class="hiddenlink" target="rightframe">color</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.COLOR_DEFAULT" class="hiddenlink" target="rightframe">COLOR_DEFAULT</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.COLOR_FormatYUV420Flexible" class="hiddenlink" target="rightframe">COLOR_FormatYUV420Flexible</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorAccent" class="hiddenlink" target="rightframe">colorAccent</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorButtonNormal" class="hiddenlink" target="rightframe">colorButtonNormal</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorControlActivated" class="hiddenlink" target="rightframe">colorControlActivated</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorControlHighlight" class="hiddenlink" target="rightframe">colorControlHighlight</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorControlNormal" class="hiddenlink" target="rightframe">colorControlNormal</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorEdgeEffect" class="hiddenlink" target="rightframe">colorEdgeEffect</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorPrimary" class="hiddenlink" target="rightframe">colorPrimary</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorPrimaryDark" class="hiddenlink" target="rightframe">colorPrimaryDark</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.COMMENTS" class="hiddenlink" target="rightframe">COMMENTS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.commitIcon" class="hiddenlink" target="rightframe">commitIcon</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_BALANCED" class="hiddenlink" target="rightframe">CONNECTION_PRIORITY_BALANCED</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_HIGH" class="hiddenlink" target="rightframe">CONNECTION_PRIORITY_HIGH</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_LOW_POWER" class="hiddenlink" target="rightframe">CONNECTION_PRIORITY_LOW_POWER</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.CONTACT_ID" class="hiddenlink" target="rightframe">CONTACT_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.CONTACT_LOOKUP_KEY" class="hiddenlink" target="rightframe">CONTACT_LOOKUP_KEY</A>
+</nobr><br>
+<i>CONTENT_DIRECTORY</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.StreamItems.html#android.provider.ContactsContract.Contacts.StreamItems.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts.StreamItems</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.RawContacts.StreamItems.html#android.provider.ContactsContract.RawContacts.StreamItems.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.ContactsContract.RawContacts.StreamItems</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html#android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems.StreamItemPhotos</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.CONTENT_FREQUENT_URI" class="hiddenlink" target="rightframe">CONTENT_FREQUENT_URI</A>
+</nobr><br>
+<i>CONTENT_ITEM_TYPE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html#android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems.StreamItemPhotos</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_LIMIT_URI" class="hiddenlink" target="rightframe">CONTENT_LIMIT_URI</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.CONTENT_MULTI_VCARD_URI" class="hiddenlink" target="rightframe">CONTENT_MULTI_VCARD_URI</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_PHOTO_URI" class="hiddenlink" target="rightframe">CONTENT_PHOTO_URI</A>
+</nobr><br>
+<i>CONTENT_TYPE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html#android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems.StreamItemPhotos</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_URI" class="hiddenlink" target="rightframe">CONTENT_URI</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.CONTENT_URI_WITH_VOICEMAIL" class="hiddenlink" target="rightframe">CONTENT_URI_WITH_VOICEMAIL</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentAgeHint" class="hiddenlink" target="rightframe">contentAgeHint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetEnd" class="hiddenlink" target="rightframe">contentInsetEnd</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetLeft" class="hiddenlink" target="rightframe">contentInsetLeft</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetRight" class="hiddenlink" target="rightframe">contentInsetRight</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetStart" class="hiddenlink" target="rightframe">contentInsetStart</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlX1" class="hiddenlink" target="rightframe">controlX1</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlX2" class="hiddenlink" target="rightframe">controlX2</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlY1" class="hiddenlink" target="rightframe">controlY1</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlY2" class="hiddenlink" target="rightframe">controlY2</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.country" class="hiddenlink" target="rightframe">country</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.COUNTRY_ISO" class="hiddenlink" target="rightframe">COUNTRY_ISO</A>
+</nobr><br>
+<nobr><A HREF="android.os.Build.html#android.os.Build.CPU_ABI" class="hiddenlink" target="rightframe">CPU_ABI</A>
+</nobr><br>
+<nobr><A HREF="android.os.Build.html#android.os.Build.CPU_ABI2" class="hiddenlink" target="rightframe">CPU_ABI2</A>
+</nobr><br>
+<nobr><A HREF="android.renderscript.RenderScript.html#android.renderscript.RenderScript.CREATE_FLAG_LOW_LATENCY" class="hiddenlink" target="rightframe">CREATE_FLAG_LOW_LATENCY</A>
+</nobr><br>
+<nobr><A HREF="android.renderscript.RenderScript.html#android.renderscript.RenderScript.CREATE_FLAG_LOW_POWER" class="hiddenlink" target="rightframe">CREATE_FLAG_LOW_POWER</A>
+</nobr><br>
+<nobr><A HREF="android.renderscript.RenderScript.html#android.renderscript.RenderScript.CREATE_FLAG_NONE" class="hiddenlink" target="rightframe">CREATE_FLAG_NONE</A>
+</nobr><br>
+<i>CREATOR</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.Telephony.BaseMmsColumns.html#android.provider.Telephony.BaseMmsColumns.CREATOR" class="hiddenlink" target="rightframe">android.provider.Telephony.BaseMmsColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.Telephony.TextBasedSmsColumns.html#android.provider.Telephony.TextBasedSmsColumns.CREATOR" class="hiddenlink" target="rightframe">android.provider.Telephony.TextBasedSmsColumns</A>
+</nobr><br>
+<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.CURSOR_UPDATE_IMMEDIATE" class="hiddenlink" target="rightframe">CURSOR_UPDATE_IMMEDIATE</A>
+</nobr><br>
+<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.CURSOR_UPDATE_MONITOR" class="hiddenlink" target="rightframe">CURSOR_UPDATE_MONITOR</A>
+</nobr><br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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="#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.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.DATA_SET" class="hiddenlink" target="rightframe">DATA_SET</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.DATA_USAGE" class="hiddenlink" target="rightframe">DATA_USAGE</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.datePickerDialogTheme" class="hiddenlink" target="rightframe">datePickerDialogTheme</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.datePickerMode" class="hiddenlink" target="rightframe">datePickerMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.dayOfWeekBackground" class="hiddenlink" target="rightframe">dayOfWeekBackground</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.dayOfWeekTextAppearance" class="hiddenlink" target="rightframe">dayOfWeekTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.html#android.provider.ContactsContract.DEFERRED_SNIPPETING" class="hiddenlink" target="rightframe">DEFERRED_SNIPPETING</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.html#android.provider.ContactsContract.DEFERRED_SNIPPETING_QUERY" class="hiddenlink" target="rightframe">DEFERRED_SNIPPETING_QUERY</A>
+</nobr><br>
+<nobr><A HREF="android.util.DisplayMetrics.html#android.util.DisplayMetrics.DENSITY_560" class="hiddenlink" target="rightframe">DENSITY_560</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_ADD_USER" class="hiddenlink" target="rightframe">DISALLOW_ADD_USER</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_ADJUST_VOLUME" class="hiddenlink" target="rightframe">DISALLOW_ADJUST_VOLUME</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_APPS_CONTROL" class="hiddenlink" target="rightframe">DISALLOW_APPS_CONTROL</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CONFIG_CELL_BROADCASTS" class="hiddenlink" target="rightframe">DISALLOW_CONFIG_CELL_BROADCASTS</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS" class="hiddenlink" target="rightframe">DISALLOW_CONFIG_MOBILE_NETWORKS</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CONFIG_TETHERING" class="hiddenlink" target="rightframe">DISALLOW_CONFIG_TETHERING</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CONFIG_VPN" class="hiddenlink" target="rightframe">DISALLOW_CONFIG_VPN</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CREATE_WINDOWS" class="hiddenlink" target="rightframe">DISALLOW_CREATE_WINDOWS</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CROSS_PROFILE_COPY_PASTE" class="hiddenlink" target="rightframe">DISALLOW_CROSS_PROFILE_COPY_PASTE</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_DEBUGGING_FEATURES" class="hiddenlink" target="rightframe">DISALLOW_DEBUGGING_FEATURES</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_FACTORY_RESET" class="hiddenlink" target="rightframe">DISALLOW_FACTORY_RESET</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_MOUNT_PHYSICAL_MEDIA" class="hiddenlink" target="rightframe">DISALLOW_MOUNT_PHYSICAL_MEDIA</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_OUTGOING_CALLS" class="hiddenlink" target="rightframe">DISALLOW_OUTGOING_CALLS</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_SMS" class="hiddenlink" target="rightframe">DISALLOW_SMS</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_UNMUTE_MICROPHONE" class="hiddenlink" target="rightframe">DISALLOW_UNMUTE_MICROPHONE</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.DOCUMENT_LAUNCH_ALWAYS" class="hiddenlink" target="rightframe">DOCUMENT_LAUNCH_ALWAYS</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.DOCUMENT_LAUNCH_INTO_EXISTING" class="hiddenlink" target="rightframe">DOCUMENT_LAUNCH_INTO_EXISTING</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.DOCUMENT_LAUNCH_NEVER" class="hiddenlink" target="rightframe">DOCUMENT_LAUNCH_NEVER</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.DOCUMENT_LAUNCH_NONE" class="hiddenlink" target="rightframe">DOCUMENT_LAUNCH_NONE</A>
+</nobr><br>
+<i>documentLaunchMode</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.documentLaunchMode" class="hiddenlink" target="rightframe">android.R.attr</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.documentLaunchMode" class="hiddenlink" target="rightframe">android.content.pm.ActivityInfo</A>
+</nobr><br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.EDGE_TYPE_DEPRESSED" class="hiddenlink" target="rightframe">EDGE_TYPE_DEPRESSED</A>
+</nobr><br>
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.EDGE_TYPE_RAISED" class="hiddenlink" target="rightframe">EDGE_TYPE_RAISED</A>
+</nobr><br>
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.EDGE_TYPE_UNSPECIFIED" class="hiddenlink" target="rightframe">EDGE_TYPE_UNSPECIFIED</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.elegantTextHeight" class="hiddenlink" target="rightframe">elegantTextHeight</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.elevation" class="hiddenlink" target="rightframe">elevation</A>
+</nobr><br>
+<nobr><A HREF="android.app.UiModeManager.html#android.app.UiModeManager.ENABLE_CAR_MODE_ALLOW_SLEEP" class="hiddenlink" target="rightframe">ENABLE_CAR_MODE_ALLOW_SLEEP</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ENCODING_AC3" class="hiddenlink" target="rightframe">ENCODING_AC3</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ENCODING_E_AC3" class="hiddenlink" target="rightframe">ENCODING_E_AC3</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ENCODING_PCM_FLOAT" class="hiddenlink" target="rightframe">ENCODING_PCM_FLOAT</A>
+</nobr><br>
+<i>ENDCOM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDCOM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>ENDHDR</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>ENDOFF</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDOFF" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>ENDSIG</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>ENDSIZ</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>ENDSUB</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDSUB" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDSUB" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDSUB" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDSUB" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>ENDTOT</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.ENDTOT" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.ENDTOT" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.ENDTOT" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.ENDTOT" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.ENSURE_VERIFY_APPS" class="hiddenlink" target="rightframe">ENSURE_VERIFY_APPS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.PhoneLookup.html#android.provider.ContactsContract.PhoneLookup.ENTERPRISE_CONTENT_FILTER_URI" class="hiddenlink" target="rightframe">ENTERPRISE_CONTENT_FILTER_URI</A>
+</nobr><br>
+<nobr><A HREF="android.provider.MediaStore.Audio.Media.html#android.provider.MediaStore.Audio.Media.ENTRY_CONTENT_TYPE" class="hiddenlink" target="rightframe">ENTRY_CONTENT_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ERROR" class="hiddenlink" target="rightframe">ERROR</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ERROR_DEAD_OBJECT" class="hiddenlink" target="rightframe">ERROR_DEAD_OBJECT</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodec.CryptoException.html#android.media.MediaCodec.CryptoException.ERROR_INSUFFICIENT_OUTPUT_PROTECTION" class="hiddenlink" target="rightframe">ERROR_INSUFFICIENT_OUTPUT_PROTECTION</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_INVALID_REQUEST" class="hiddenlink" target="rightframe">ERROR_INVALID_REQUEST</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_NETWORK" class="hiddenlink" target="rightframe">ERROR_NETWORK</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_NETWORK_TIMEOUT" class="hiddenlink" target="rightframe">ERROR_NETWORK_TIMEOUT</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_NOT_INSTALLED_YET" class="hiddenlink" target="rightframe">ERROR_NOT_INSTALLED_YET</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_OUTPUT" class="hiddenlink" target="rightframe">ERROR_OUTPUT</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_SERVICE" class="hiddenlink" target="rightframe">ERROR_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_SYNTHESIS" class="hiddenlink" target="rightframe">ERROR_SYNTHESIS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeClass" class="hiddenlink" target="rightframe">excludeClass</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeId" class="hiddenlink" target="rightframe">excludeId</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeName" class="hiddenlink" target="rightframe">excludeName</A>
+</nobr><br>
+<i>EXTCRC</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.EXTCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.EXTCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.EXTCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.EXTCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>EXTHDR</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.EXTHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.EXTHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.EXTHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.EXTHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>EXTLEN</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.EXTLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.EXTLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.EXTLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.EXTLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>EXTRA_ADDRESS_BOOK_INDEX</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html#android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Contactables</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html#android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Email</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Event</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html#android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.GroupMembership</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html#android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Identity</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html#android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Im</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html#android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Nickname</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html#android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Note</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html#android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Organization</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html#android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Phone</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html#android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Photo</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html#android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Relation</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html#android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.SipAddress</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredName</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html#android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html#android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Website</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Data.html#android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Data</A>
+</nobr><br>
+<i>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html#android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Contactables</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html#android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Email</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Event</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html#android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.GroupMembership</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html#android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Identity</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html#android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Im</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html#android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Nickname</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html#android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Note</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html#android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Organization</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html#android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Phone</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html#android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Photo</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html#android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Relation</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html#android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.SipAddress</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredName</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html#android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html#android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Website</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Data.html#android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Data</A>
+</nobr><br>
+<i>EXTRA_ADDRESS_BOOK_INDEX_TITLES</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html#android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Contactables</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html#android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Email</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Event</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html#android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.GroupMembership</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html#android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Identity</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html#android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Im</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html#android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Nickname</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html#android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Note</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html#android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Organization</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html#android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Phone</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html#android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Photo</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html#android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Relation</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html#android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.SipAddress</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredName</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html#android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html#android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Website</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Data.html#android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Data</A>
+</nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.EXTRA_APPWIDGET_OLD_IDS" class="hiddenlink" target="rightframe">EXTRA_APPWIDGET_OLD_IDS</A>
+</nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE" class="hiddenlink" target="rightframe">EXTRA_APPWIDGET_PROVIDER_PROFILE</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD" class="hiddenlink" target="rightframe">EXTRA_ASSIST_INPUT_HINT_KEYBOARD</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.EXTRA_AUDIO_PLUG_STATE" class="hiddenlink" target="rightframe">EXTRA_AUDIO_PLUG_STATE</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_BACKGROUND_IMAGE_URI" class="hiddenlink" target="rightframe">EXTRA_BACKGROUND_IMAGE_URI</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_BIG_TEXT" class="hiddenlink" target="rightframe">EXTRA_BIG_TEXT</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.EXTRA_CALL_TYPE_FILTER" class="hiddenlink" target="rightframe">EXTRA_CALL_TYPE_FILTER</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_COMPACT_ACTIONS" class="hiddenlink" target="rightframe">EXTRA_COMPACT_ACTIONS</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.EXTRA_ENCODINGS" class="hiddenlink" target="rightframe">EXTRA_ENCODINGS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.QuickContact.html#android.provider.ContactsContract.QuickContact.EXTRA_EXCLUDE_MIMES" class="hiddenlink" target="rightframe">EXTRA_EXCLUDE_MIMES</A>
+</nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.EXTRA_HOST_ID" class="hiddenlink" target="rightframe">EXTRA_HOST_ID</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.EXTRA_LOCK_TASK_PACKAGE" class="hiddenlink" target="rightframe">EXTRA_LOCK_TASK_PACKAGE</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.EXTRA_MAX_CHANNEL_COUNT" class="hiddenlink" target="rightframe">EXTRA_MAX_CHANNEL_COUNT</A>
+</nobr><br>
+<nobr><A HREF="android.provider.MediaStore.html#android.provider.MediaStore.EXTRA_MEDIA_GENRE" class="hiddenlink" target="rightframe">EXTRA_MEDIA_GENRE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.MediaStore.html#android.provider.MediaStore.EXTRA_MEDIA_PLAYLIST" class="hiddenlink" target="rightframe">EXTRA_MEDIA_PLAYLIST</A>
+</nobr><br>
+<nobr><A HREF="android.provider.MediaStore.html#android.provider.MediaStore.EXTRA_MEDIA_RADIO_CHANNEL" class="hiddenlink" target="rightframe">EXTRA_MEDIA_RADIO_CHANNEL</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_MEDIA_SESSION" class="hiddenlink" target="rightframe">EXTRA_MEDIA_SESSION</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.EXTRA_MMS_DATA" class="hiddenlink" target="rightframe">EXTRA_MMS_DATA</A>
+</nobr><br>
+<nobr><A HREF="android.printservice.PrintService.html#android.printservice.PrintService.EXTRA_PRINTER_INFO" class="hiddenlink" target="rightframe">EXTRA_PRINTER_INFO</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_EMAIL_ADDRESS" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_EMAIL_ADDRESS</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_LOCAL_TIME" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_LOCAL_TIME</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_LOCALE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_LOCALE</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_TIME_ZONE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_TIME_ZONE</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_HIDDEN" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_HIDDEN</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PAC_URL" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PAC_URL</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PASSWORD" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PASSWORD</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_BYPASS" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PROXY_BYPASS</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_HOST" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PROXY_HOST</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_PORT" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PROXY_PORT</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_SECURITY_TYPE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_SECURITY_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_SSID" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_SSID</A>
+</nobr><br>
+<nobr><A HREF="android.net.Proxy.html#android.net.Proxy.EXTRA_PROXY_INFO" class="hiddenlink" target="rightframe">EXTRA_PROXY_INFO</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_REPLACEMENT_EXTRAS" class="hiddenlink" target="rightframe">EXTRA_REPLACEMENT_EXTRAS</A>
+</nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.EXTRA_SIZE" class="hiddenlink" target="rightframe">EXTRA_SIZE</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_TEMPLATE" class="hiddenlink" target="rightframe">EXTRA_TEMPLATE</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_USER" class="hiddenlink" target="rightframe">EXTRA_USER</A>
+</nobr><br>
+<i>EXTSIG</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.EXTSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.EXTSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.EXTSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.EXTSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>EXTSIZ</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.EXTSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.EXTSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.EXTSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.EXTSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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.interpolator.html#android.R.interpolator.fast_out_linear_in" class="hiddenlink" target="rightframe">fast_out_linear_in</A>
+</nobr><br>
+<nobr><A HREF="android.R.interpolator.html#android.R.interpolator.fast_out_slow_in" class="hiddenlink" target="rightframe">fast_out_slow_in</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fastScrollStyle" class="hiddenlink" target="rightframe">fastScrollStyle</A>
+</nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.FEATURE_ACTIVITY_TRANSITIONS" class="hiddenlink" target="rightframe">FEATURE_ACTIVITY_TRANSITIONS</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_AUDIO_OUTPUT" class="hiddenlink" target="rightframe">FEATURE_AUDIO_OUTPUT</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING" class="hiddenlink" target="rightframe">FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR" class="hiddenlink" target="rightframe">FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_RAW" class="hiddenlink" target="rightframe">FEATURE_CAMERA_CAPABILITY_RAW</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_LEVEL_FULL" class="hiddenlink" target="rightframe">FEATURE_CAMERA_LEVEL_FULL</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CONNECTION_SERVICE" class="hiddenlink" target="rightframe">FEATURE_CONNECTION_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.FEATURE_CONTENT_TRANSITIONS" class="hiddenlink" target="rightframe">FEATURE_CONTENT_TRANSITIONS</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_GAMEPAD" class="hiddenlink" target="rightframe">FEATURE_GAMEPAD</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_LEANBACK" class="hiddenlink" target="rightframe">FEATURE_LEANBACK</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_LIVE_TV" class="hiddenlink" target="rightframe">FEATURE_LIVE_TV</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_MANAGED_USERS" class="hiddenlink" target="rightframe">FEATURE_MANAGED_USERS</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_OPENGLES_EXTENSION_PACK" class="hiddenlink" target="rightframe">FEATURE_OPENGLES_EXTENSION_PACK</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SECURELY_REMOVES_USERS" class="hiddenlink" target="rightframe">FEATURE_SECURELY_REMOVES_USERS</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.FEATURE_SecurePlayback" class="hiddenlink" target="rightframe">FEATURE_SecurePlayback</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SENSOR_AMBIENT_TEMPERATURE" class="hiddenlink" target="rightframe">FEATURE_SENSOR_AMBIENT_TEMPERATURE</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SENSOR_HEART_RATE_ECG" class="hiddenlink" target="rightframe">FEATURE_SENSOR_HEART_RATE_ECG</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SENSOR_RELATIVE_HUMIDITY" class="hiddenlink" target="rightframe">FEATURE_SENSOR_RELATIVE_HUMIDITY</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_TELEVISION" class="hiddenlink" target="rightframe">FEATURE_TELEVISION</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.FEATURE_TunneledPlayback" class="hiddenlink" target="rightframe">FEATURE_TunneledPlayback</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_VERIFIED_BOOT" class="hiddenlink" target="rightframe">FEATURE_VERIFIED_BOOT</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.featureGroups" class="hiddenlink" target="rightframe">featureGroups</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.FEATURES" class="hiddenlink" target="rightframe">FEATURES</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.FEATURES_VIDEO" class="hiddenlink" target="rightframe">FEATURES_VIDEO</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fillAlpha" class="hiddenlink" target="rightframe">fillAlpha</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fillColor" class="hiddenlink" target="rightframe">fillColor</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET" class="hiddenlink" target="rightframe">FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_ACTIVITY_NEW_DOCUMENT" class="hiddenlink" target="rightframe">FLAG_ACTIVITY_NEW_DOCUMENT</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS" class="hiddenlink" target="rightframe">FLAG_ACTIVITY_RETAIN_IN_RECENTS</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_AUTO_REMOVE_FROM_RECENTS" class="hiddenlink" target="rightframe">FLAG_AUTO_REMOVE_FROM_RECENTS</A>
+</nobr><br>
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS" class="hiddenlink" target="rightframe">FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.FLAG_FULL_BACKUP_ONLY" class="hiddenlink" target="rightframe">FLAG_FULL_BACKUP_ONLY</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_GRANT_PREFIX_URI_PERMISSION" class="hiddenlink" target="rightframe">FLAG_GRANT_PREFIX_URI_PERMISSION</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.FLAG_IS_GAME" class="hiddenlink" target="rightframe">FLAG_IS_GAME</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.FLAG_MANAGED_CAN_ACCESS_PARENT" class="hiddenlink" target="rightframe">FLAG_MANAGED_CAN_ACCESS_PARENT</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.FLAG_MULTIARCH" class="hiddenlink" target="rightframe">FLAG_MULTIARCH</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.FLAG_PARENT_CAN_ACCESS_MANAGED" class="hiddenlink" target="rightframe">FLAG_PARENT_CAN_ACCESS_MANAGED</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY" class="hiddenlink" target="rightframe">FLAG_RELINQUISH_TASK_IDENTITY</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_RESUME_WHILE_PAUSING" class="hiddenlink" target="rightframe">FLAG_RESUME_WHILE_PAUSING</A>
+</nobr><br>
+<nobr><A HREF="android.accessibilityservice.AccessibilityServiceInfo.html#android.accessibilityservice.AccessibilityServiceInfo.FLAG_RETRIEVE_INTERACTIVE_WINDOWS" class="hiddenlink" target="rightframe">FLAG_RETRIEVE_INTERACTIVE_WINDOWS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.DocumentsContract.Root.html#android.provider.DocumentsContract.Root.FLAG_SUPPORTS_IS_CHILD" class="hiddenlink" target="rightframe">FLAG_SUPPORTS_IS_CHILD</A>
+</nobr><br>
+<nobr><A HREF="android.provider.DocumentsContract.Document.html#android.provider.DocumentsContract.Document.FLAG_SUPPORTS_RENAME" class="hiddenlink" target="rightframe">FLAG_SUPPORTS_RENAME</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fontFeatureSettings" class="hiddenlink" target="rightframe">fontFeatureSettings</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.foregroundTint" class="hiddenlink" target="rightframe">foregroundTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.foregroundTintMode" class="hiddenlink" target="rightframe">foregroundTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiConfiguration.html#android.net.wifi.WifiConfiguration.FQDN" class="hiddenlink" target="rightframe">FQDN</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentAllowEnterTransitionOverlap" class="hiddenlink" target="rightframe">fragmentAllowEnterTransitionOverlap</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentAllowReturnTransitionOverlap" class="hiddenlink" target="rightframe">fragmentAllowReturnTransitionOverlap</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentEnterTransition" class="hiddenlink" target="rightframe">fragmentEnterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentExitTransition" class="hiddenlink" target="rightframe">fragmentExitTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentReenterTransition" class="hiddenlink" target="rightframe">fragmentReenterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentReturnTransition" class="hiddenlink" target="rightframe">fragmentReturnTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentSharedElementEnterTransition" class="hiddenlink" target="rightframe">fragmentSharedElementEnterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentSharedElementReturnTransition" class="hiddenlink" target="rightframe">fragmentSharedElementReturnTransition</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiInfo.html#android.net.wifi.WifiInfo.FREQUENCY_UNITS" class="hiddenlink" target="rightframe">FREQUENCY_UNITS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fromId" class="hiddenlink" target="rightframe">fromId</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.FULL_NAME_STYLE" class="hiddenlink" target="rightframe">FULL_NAME_STYLE</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fullBackupOnly" class="hiddenlink" target="rightframe">fullBackupOnly</A>
+</nobr><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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">
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.GATT_CONNECTION_CONGESTED" class="hiddenlink" target="rightframe">GATT_CONNECTION_CONGESTED</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.GEOCODED_LOCATION" class="hiddenlink" target="rightframe">GEOCODED_LOCATION</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.GET_TASKS" class="hiddenlink" target="rightframe">GET_TASKS</A>
+</nobr><br>
+<nobr><A HREF="android.accessibilityservice.AccessibilityService.html#android.accessibilityservice.AccessibilityService.GLOBAL_ACTION_POWER_DIALOG" class="hiddenlink" target="rightframe">GLOBAL_ACTION_POWER_DIALOG</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.goIcon" class="hiddenlink" target="rightframe">goIcon</A>
+</nobr><br>
+<A NAME="H"></A>
+<br><font size="+2">H</font>&nbsp;
+<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">
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerAmPmTextAppearance" class="hiddenlink" target="rightframe">headerAmPmTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerDayOfMonthTextAppearance" class="hiddenlink" target="rightframe">headerDayOfMonthTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerMonthTextAppearance" class="hiddenlink" target="rightframe">headerMonthTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerTimeTextAppearance" class="hiddenlink" target="rightframe">headerTimeTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerYearTextAppearance" class="hiddenlink" target="rightframe">headerYearTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.headsUpContentView" class="hiddenlink" target="rightframe">headsUpContentView</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel1" class="hiddenlink" target="rightframe">HEVCHighTierLevel1</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel2" class="hiddenlink" target="rightframe">HEVCHighTierLevel2</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel21" class="hiddenlink" target="rightframe">HEVCHighTierLevel21</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel3" class="hiddenlink" target="rightframe">HEVCHighTierLevel3</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel31" class="hiddenlink" target="rightframe">HEVCHighTierLevel31</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel4" class="hiddenlink" target="rightframe">HEVCHighTierLevel4</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel41" class="hiddenlink" target="rightframe">HEVCHighTierLevel41</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel5" class="hiddenlink" target="rightframe">HEVCHighTierLevel5</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel51" class="hiddenlink" target="rightframe">HEVCHighTierLevel51</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel52" class="hiddenlink" target="rightframe">HEVCHighTierLevel52</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel6" class="hiddenlink" target="rightframe">HEVCHighTierLevel6</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel61" class="hiddenlink" target="rightframe">HEVCHighTierLevel61</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel62" class="hiddenlink" target="rightframe">HEVCHighTierLevel62</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel1" class="hiddenlink" target="rightframe">HEVCMainTierLevel1</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel2" class="hiddenlink" target="rightframe">HEVCMainTierLevel2</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel21" class="hiddenlink" target="rightframe">HEVCMainTierLevel21</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel3" class="hiddenlink" target="rightframe">HEVCMainTierLevel3</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel31" class="hiddenlink" target="rightframe">HEVCMainTierLevel31</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel4" class="hiddenlink" target="rightframe">HEVCMainTierLevel4</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel41" class="hiddenlink" target="rightframe">HEVCMainTierLevel41</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel5" class="hiddenlink" target="rightframe">HEVCMainTierLevel5</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel51" class="hiddenlink" target="rightframe">HEVCMainTierLevel51</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel52" class="hiddenlink" target="rightframe">HEVCMainTierLevel52</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel6" class="hiddenlink" target="rightframe">HEVCMainTierLevel6</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel61" class="hiddenlink" target="rightframe">HEVCMainTierLevel61</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel62" class="hiddenlink" target="rightframe">HEVCMainTierLevel62</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCProfileMain" class="hiddenlink" target="rightframe">HEVCProfileMain</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.HEVCProfileMain10" class="hiddenlink" target="rightframe">HEVCProfileMain10</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.hideOnContentScroll" class="hiddenlink" target="rightframe">hideOnContentScroll</A>
+</nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.HINT_HOST_DISABLE_EFFECTS" class="hiddenlink" target="rightframe">HINT_HOST_DISABLE_EFFECTS</A>
+</nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeProvider.html#android.view.accessibility.AccessibilityNodeProvider.HOST_VIEW_ID" class="hiddenlink" target="rightframe">HOST_VIEW_ID</A>
+</nobr><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.IMPORTANCE_GONE" class="hiddenlink" target="rightframe">IMPORTANCE_GONE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.ContactsColumns.html#android.provider.ContactsContract.ContactsColumns.IN_DEFAULT_DIRECTORY" class="hiddenlink" target="rightframe">IN_DEFAULT_DIRECTORY</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.indeterminateTint" class="hiddenlink" target="rightframe">indeterminateTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.indeterminateTintMode" class="hiddenlink" target="rightframe">indeterminateTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.INFO_OUTPUT_BUFFERS_CHANGED" class="hiddenlink" target="rightframe">INFO_OUTPUT_BUFFERS_CHANGED</A>
+</nobr><br>
+<nobr><A HREF="android.graphics.BitmapFactory.Options.html#android.graphics.BitmapFactory.Options.inInputShareable" class="hiddenlink" target="rightframe">inInputShareable</A>
+</nobr><br>
+<nobr><A HREF="android.graphics.BitmapFactory.Options.html#android.graphics.BitmapFactory.Options.inPurgeable" class="hiddenlink" target="rightframe">inPurgeable</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.inset" class="hiddenlink" target="rightframe">inset</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.INSTALL_LOCATION_AUTO" class="hiddenlink" target="rightframe">INSTALL_LOCATION_AUTO</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY" class="hiddenlink" target="rightframe">INSTALL_LOCATION_INTERNAL_ONLY</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.INSTALL_LOCATION_PREFER_EXTERNAL" class="hiddenlink" target="rightframe">INSTALL_LOCATION_PREFER_EXTERNAL</A>
+</nobr><br>
+<i>INSTALL_NON_MARKET_APPS</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.Settings.Global.html#android.provider.Settings.Global.INSTALL_NON_MARKET_APPS" class="hiddenlink" target="rightframe">android.provider.Settings.Global</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.Settings.Secure.html#android.provider.Settings.Secure.INSTALL_NON_MARKET_APPS" class="hiddenlink" target="rightframe">android.provider.Settings.Secure</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.installLocation" class="hiddenlink" target="rightframe">installLocation</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.INTENT_CATEGORY_NOTIFICATION_PREFERENCES" class="hiddenlink" target="rightframe">INTENT_CATEGORY_NOTIFICATION_PREFERENCES</A>
+</nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_ALL" class="hiddenlink" target="rightframe">INTERRUPTION_FILTER_ALL</A>
+</nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_NONE" class="hiddenlink" target="rightframe">INTERRUPTION_FILTER_NONE</A>
+</nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_PRIORITY" class="hiddenlink" target="rightframe">INTERRUPTION_FILTER_PRIORITY</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.isGame" class="hiddenlink" target="rightframe">isGame</A>
+</nobr><br>
+<A NAME="J"></A>
+<br><font size="+2">J</font>&nbsp;
+<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="#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.content.Context.html#android.content.Context.JOB_SCHEDULER_SERVICE" class="hiddenlink" target="rightframe">JOB_SCHEDULER_SERVICE</A>
+</nobr><br>
+<A NAME="K"></A>
+<br><font size="+2">K</font>&nbsp;
+<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.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_ATTENUATION_FACTOR" class="hiddenlink" target="rightframe">KEY_AAC_DRC_ATTENUATION_FACTOR</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_BOOST_FACTOR" class="hiddenlink" target="rightframe">KEY_AAC_DRC_BOOST_FACTOR</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_HEAVY_COMPRESSION" class="hiddenlink" target="rightframe">KEY_AAC_DRC_HEAVY_COMPRESSION</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_TARGET_REFERENCE_LEVEL" class="hiddenlink" target="rightframe">KEY_AAC_DRC_TARGET_REFERENCE_LEVEL</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_ENCODED_TARGET_LEVEL" class="hiddenlink" target="rightframe">KEY_AAC_ENCODED_TARGET_LEVEL</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT" class="hiddenlink" target="rightframe">KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_SBR_MODE" class="hiddenlink" target="rightframe">KEY_AAC_SBR_MODE</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AUDIO_SESSION_ID" class="hiddenlink" target="rightframe">KEY_AUDIO_SESSION_ID</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_BITRATE_MODE" class="hiddenlink" target="rightframe">KEY_BITRATE_MODE</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_CAPTURE_RATE" class="hiddenlink" target="rightframe">KEY_CAPTURE_RATE</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_COMPLEXITY" class="hiddenlink" target="rightframe">KEY_COMPLEXITY</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_EMBEDDED_SYNTHESIS" class="hiddenlink" target="rightframe">KEY_FEATURE_EMBEDDED_SYNTHESIS</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_RETRIES_COUNT" class="hiddenlink" target="rightframe">KEY_FEATURE_NETWORK_RETRIES_COUNT</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_SYNTHESIS" class="hiddenlink" target="rightframe">KEY_FEATURE_NETWORK_SYNTHESIS</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_TIMEOUT_MS" class="hiddenlink" target="rightframe">KEY_FEATURE_NETWORK_TIMEOUT_MS</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NOT_INSTALLED" class="hiddenlink" target="rightframe">KEY_FEATURE_NOT_INSTALLED</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_PARAM_SESSION_ID" class="hiddenlink" target="rightframe">KEY_PARAM_SESSION_ID</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_PROFILE" class="hiddenlink" target="rightframe">KEY_PROFILE</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_TEMPORAL_LAYERING" class="hiddenlink" target="rightframe">KEY_TEMPORAL_LAYERING</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_11" class="hiddenlink" target="rightframe">KEYCODE_11</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_12" class="hiddenlink" target="rightframe">KEYCODE_12</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_HELP" class="hiddenlink" target="rightframe">KEYCODE_HELP</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_LAST_CHANNEL" class="hiddenlink" target="rightframe">KEYCODE_LAST_CHANNEL</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_MEDIA_TOP_MENU" class="hiddenlink" target="rightframe">KEYCODE_MEDIA_TOP_MENU</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_PAIRING" class="hiddenlink" target="rightframe">KEYCODE_PAIRING</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_ANTENNA_CABLE" class="hiddenlink" target="rightframe">KEYCODE_TV_ANTENNA_CABLE</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION" class="hiddenlink" target="rightframe">KEYCODE_TV_AUDIO_DESCRIPTION</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN" class="hiddenlink" target="rightframe">KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP" class="hiddenlink" target="rightframe">KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_CONTENTS_MENU" class="hiddenlink" target="rightframe">KEYCODE_TV_CONTENTS_MENU</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_DATA_SERVICE" class="hiddenlink" target="rightframe">KEYCODE_TV_DATA_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPONENT_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPONENT_1</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPONENT_2" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPONENT_2</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPOSITE_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPOSITE_1</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPOSITE_2" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPOSITE_2</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_1</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_2" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_2</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_3" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_3</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_4" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_4</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_VGA_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_VGA_1</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_MEDIA_CONTEXT_MENU" class="hiddenlink" target="rightframe">KEYCODE_TV_MEDIA_CONTEXT_MENU</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_NETWORK" class="hiddenlink" target="rightframe">KEYCODE_TV_NETWORK</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_NUMBER_ENTRY" class="hiddenlink" target="rightframe">KEYCODE_TV_NUMBER_ENTRY</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_RADIO_SERVICE" class="hiddenlink" target="rightframe">KEYCODE_TV_RADIO_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE_BS" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE_BS</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE_CS" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE_CS</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE_SERVICE" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TELETEXT" class="hiddenlink" target="rightframe">KEYCODE_TV_TELETEXT</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TERRESTRIAL_ANALOG" class="hiddenlink" target="rightframe">KEYCODE_TV_TERRESTRIAL_ANALOG</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TERRESTRIAL_DIGITAL" class="hiddenlink" target="rightframe">KEYCODE_TV_TERRESTRIAL_DIGITAL</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TIMER_PROGRAMMING" class="hiddenlink" target="rightframe">KEYCODE_TV_TIMER_PROGRAMMING</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_ZOOM_MODE" class="hiddenlink" target="rightframe">KEYCODE_TV_ZOOM_MODE</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_VOICE_ASSIST" class="hiddenlink" target="rightframe">KEYCODE_VOICE_ASSIST</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_FINGERPRINT" class="hiddenlink" target="rightframe">KEYGUARD_DISABLE_FINGERPRINT</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_SECURE_NOTIFICATIONS" class="hiddenlink" target="rightframe">KEYGUARD_DISABLE_SECURE_NOTIFICATIONS</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_TRUST_AGENTS" class="hiddenlink" target="rightframe">KEYGUARD_DISABLE_TRUST_AGENTS</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS" class="hiddenlink" target="rightframe">KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS</A>
+</nobr><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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">
+<nobr><A HREF="android.os.Build.VERSION_CODES.html#android.os.Build.VERSION_CODES.L" class="hiddenlink" target="rightframe">L</A>
+</nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.label" class="hiddenlink" target="rightframe">label</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.LAUNCHER_APPS_SERVICE" class="hiddenlink" target="rightframe">LAUNCHER_APPS_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.launchTaskBehindSourceAnimation" class="hiddenlink" target="rightframe">launchTaskBehindSourceAnimation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.launchTaskBehindTargetAnimation" class="hiddenlink" target="rightframe">launchTaskBehindTargetAnimation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.layout_columnWeight" class="hiddenlink" target="rightframe">layout_columnWeight</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.layout_rowWeight" class="hiddenlink" target="rightframe">layout_rowWeight</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.letterSpacing" class="hiddenlink" target="rightframe">letterSpacing</A>
+</nobr><br>
+<nobr><A HREF="android.R.interpolator.html#android.R.interpolator.linear_out_slow_in" class="hiddenlink" target="rightframe">linear_out_slow_in</A>
+</nobr><br>
+<i>LOCCRC</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCCRC" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>LOCEXT</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCEXT" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>LOCFLG</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCFLG" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>LOCHDR</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCHDR" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>LOCHOW</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCHOW" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>LOCLEN</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCLEN" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>LOCNAM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCNAM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>LOCSIG</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCSIG" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>LOCSIZ</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCSIZ" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>LOCTIM</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCTIM" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<i>LOCVER</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipEntry.html#java.util.zip.ZipEntry.LOCVER" class="hiddenlink" target="rightframe">java.util.zip.ZipEntry</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipFile.html#java.util.zip.ZipFile.LOCVER" class="hiddenlink" target="rightframe">java.util.zip.ZipFile</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipInputStream.html#java.util.zip.ZipInputStream.LOCVER" class="hiddenlink" target="rightframe">java.util.zip.ZipInputStream</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="java.util.zip.ZipOutputStream.html#java.util.zip.ZipOutputStream.LOCVER" class="hiddenlink" target="rightframe">java.util.zip.ZipOutputStream</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.CookieSyncManager.html#android.webkit.CookieSyncManager.LOGTAG" class="hiddenlink" target="rightframe">LOGTAG</A>
+</nobr><br>
+<nobr><A HREF="android.os.Build.VERSION_CODES.html#android.os.Build.VERSION_CODES.LOLLIPOP" class="hiddenlink" target="rightframe">LOLLIPOP</A>
+</nobr><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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.R.id.html#android.R.id.mask" class="hiddenlink" target="rightframe">mask</A>
+</nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.MATCH_ID" class="hiddenlink" target="rightframe">MATCH_ID</A>
+</nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.MATCH_INSTANCE" class="hiddenlink" target="rightframe">MATCH_INSTANCE</A>
+</nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.MATCH_ITEM_ID" class="hiddenlink" target="rightframe">MATCH_ITEM_ID</A>
+</nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.MATCH_NAME" class="hiddenlink" target="rightframe">MATCH_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.matchOrder" class="hiddenlink" target="rightframe">matchOrder</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.MAX_ITEMS" class="hiddenlink" target="rightframe">MAX_ITEMS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.maximumAngle" class="hiddenlink" target="rightframe">maximumAngle</A>
+</nobr><br>
+<i>maxRecents</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.maxRecents" class="hiddenlink" target="rightframe">android.R.attr</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.maxRecents" class="hiddenlink" target="rightframe">android.content.pm.ActivityInfo</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.CookieSyncManager.html#android.webkit.CookieSyncManager.mDataBase" class="hiddenlink" target="rightframe">mDataBase</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.MEDIA_PROJECTION_SERVICE" class="hiddenlink" target="rightframe">MEDIA_PROJECTION_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.MEDIA_SESSION_SERVICE" class="hiddenlink" target="rightframe">MEDIA_SESSION_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaPlayer.TrackInfo.html#android.media.MediaPlayer.TrackInfo.MEDIA_TRACK_TYPE_SUBTITLE" class="hiddenlink" target="rightframe">MEDIA_TRACK_TYPE_SUBTITLE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Telephony.BaseMmsColumns.html#android.provider.Telephony.BaseMmsColumns.MESSAGE_BOX_FAILED" class="hiddenlink" target="rightframe">MESSAGE_BOX_FAILED</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.CookieSyncManager.html#android.webkit.CookieSyncManager.mHandler" class="hiddenlink" target="rightframe">mHandler</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.MIME_TYPE_PROVISIONING_NFC" class="hiddenlink" target="rightframe">MIME_TYPE_PROVISIONING_NFC</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AAC" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AAC</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AC3" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AC3</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AMR_NB" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AMR_NB</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AMR_WB" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AMR_WB</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_FLAC" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_FLAC</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_G711_ALAW" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_G711_ALAW</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_G711_MLAW" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_G711_MLAW</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_MPEG" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_MPEG</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_MSGSM" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_MSGSM</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_OPUS" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_OPUS</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_QCELP" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_QCELP</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_RAW" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_RAW</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_VORBIS" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_VORBIS</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_TEXT_CEA_608" class="hiddenlink" target="rightframe">MIMETYPE_TEXT_CEA_608</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_TEXT_VTT" class="hiddenlink" target="rightframe">MIMETYPE_TEXT_VTT</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_AVC" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_AVC</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_H263" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_H263</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_HEVC" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_HEVC</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_MPEG2" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_MPEG2</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_MPEG4" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_MPEG4</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_RAW" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_RAW</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_VP8" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_VP8</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_VP9" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_VP9</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.minimumHorizontalAngle" class="hiddenlink" target="rightframe">minimumHorizontalAngle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.minimumVerticalAngle" class="hiddenlink" target="rightframe">minimumVerticalAngle</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.MIXED_CONTENT_ALWAYS_ALLOW" class="hiddenlink" target="rightframe">MIXED_CONTENT_ALWAYS_ALLOW</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.MIXED_CONTENT_COMPATIBILITY_MODE" class="hiddenlink" target="rightframe">MIXED_CONTENT_COMPATIBILITY_MODE</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.MIXED_CONTENT_NEVER_ALLOW" class="hiddenlink" target="rightframe">MIXED_CONTENT_NEVER_ALLOW</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALIAS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_ALIAS_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALIAS_MAX_CHARS" class="hiddenlink" target="rightframe">MMS_CONFIG_ALIAS_MAX_CHARS</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALIAS_MIN_CHARS" class="hiddenlink" target="rightframe">MMS_CONFIG_ALIAS_MIN_CHARS</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALLOW_ATTACH_AUDIO" class="hiddenlink" target="rightframe">MMS_CONFIG_ALLOW_ATTACH_AUDIO</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_APPEND_TRANSACTION_ID" class="hiddenlink" target="rightframe">MMS_CONFIG_APPEND_TRANSACTION_ID</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_EMAIL_GATEWAY_NUMBER" class="hiddenlink" target="rightframe">MMS_CONFIG_EMAIL_GATEWAY_NUMBER</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_GROUP_MMS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_GROUP_MMS_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_HTTP_PARAMS" class="hiddenlink" target="rightframe">MMS_CONFIG_HTTP_PARAMS</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_HTTP_SOCKET_TIMEOUT" class="hiddenlink" target="rightframe">MMS_CONFIG_HTTP_SOCKET_TIMEOUT</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MAX_IMAGE_HEIGHT" class="hiddenlink" target="rightframe">MMS_CONFIG_MAX_IMAGE_HEIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MAX_IMAGE_WIDTH" class="hiddenlink" target="rightframe">MMS_CONFIG_MAX_IMAGE_WIDTH</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MAX_MESSAGE_SIZE" class="hiddenlink" target="rightframe">MMS_CONFIG_MAX_MESSAGE_SIZE</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE" class="hiddenlink" target="rightframe">MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MMS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MMS_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MMS_READ_REPORT_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MMS_READ_REPORT_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MULTIPART_SMS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MULTIPART_SMS_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_NAI_SUFFIX" class="hiddenlink" target="rightframe">MMS_CONFIG_NAI_SUFFIX</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_RECIPIENT_LIMIT" class="hiddenlink" target="rightframe">MMS_CONFIG_RECIPIENT_LIMIT</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES" class="hiddenlink" target="rightframe">MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD" class="hiddenlink" target="rightframe">MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD" class="hiddenlink" target="rightframe">MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SUBJECT_MAX_LENGTH" class="hiddenlink" target="rightframe">MMS_CONFIG_SUBJECT_MAX_LENGTH</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION" class="hiddenlink" target="rightframe">MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_UA_PROF_TAG_NAME" class="hiddenlink" target="rightframe">MMS_CONFIG_UA_PROF_TAG_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_UA_PROF_URL" class="hiddenlink" target="rightframe">MMS_CONFIG_UA_PROF_URL</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_USER_AGENT" class="hiddenlink" target="rightframe">MMS_CONFIG_USER_AGENT</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_CONFIGURATION_ERROR" class="hiddenlink" target="rightframe">MMS_ERROR_CONFIGURATION_ERROR</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_HTTP_FAILURE" class="hiddenlink" target="rightframe">MMS_ERROR_HTTP_FAILURE</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_INVALID_APN" class="hiddenlink" target="rightframe">MMS_ERROR_INVALID_APN</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_IO_ERROR" class="hiddenlink" target="rightframe">MMS_ERROR_IO_ERROR</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_RETRY" class="hiddenlink" target="rightframe">MMS_ERROR_RETRY</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_UNABLE_CONNECT_MMS" class="hiddenlink" target="rightframe">MMS_ERROR_UNABLE_CONNECT_MMS</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_UNSPECIFIED" class="hiddenlink" target="rightframe">MMS_ERROR_UNSPECIFIED</A>
+</nobr><br>
+<nobr><A HREF="android.app.AppOpsManager.html#android.app.AppOpsManager.MODE_DEFAULT" class="hiddenlink" target="rightframe">MODE_DEFAULT</A>
+</nobr><br>
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.MODE_IN" class="hiddenlink" target="rightframe">MODE_IN</A>
+</nobr><br>
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.MODE_OUT" class="hiddenlink" target="rightframe">MODE_OUT</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.multiArch" class="hiddenlink" target="rightframe">multiArch</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaMuxer.OutputFormat.html#android.media.MediaMuxer.OutputFormat.MUXER_OUTPUT_WEBM" class="hiddenlink" target="rightframe">MUXER_OUTPUT_WEBM</A>
+</nobr><br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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">
+<nobr><A HREF="android.provider.ContactsContract.ContactsColumns.html#android.provider.ContactsContract.ContactsColumns.NAME_RAW_CONTACT_ID" class="hiddenlink" target="rightframe">NAME_RAW_CONTACT_ID</A>
+</nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME" class="hiddenlink" target="rightframe">NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.NAVIGATION_MODE_LIST" class="hiddenlink" target="rightframe">NAVIGATION_MODE_LIST</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.NAVIGATION_MODE_STANDARD" class="hiddenlink" target="rightframe">NAVIGATION_MODE_STANDARD</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.NAVIGATION_MODE_TABS" class="hiddenlink" target="rightframe">NAVIGATION_MODE_TABS</A>
+</nobr><br>
+<nobr><A HREF="android.R.id.html#android.R.id.navigationBarBackground" class="hiddenlink" target="rightframe">navigationBarBackground</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.navigationBarColor" class="hiddenlink" target="rightframe">navigationBarColor</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.navigationContentDescription" class="hiddenlink" target="rightframe">navigationContentDescription</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.navigationIcon" class="hiddenlink" target="rightframe">navigationIcon</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.nestedScrollingEnabled" class="hiddenlink" target="rightframe">nestedScrollingEnabled</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.System.html#android.provider.Settings.System.NEXT_ALARM_FORMATTED" class="hiddenlink" target="rightframe">NEXT_ALARM_FORMATTED</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.numbersBackgroundColor" class="hiddenlink" target="rightframe">numbersBackgroundColor</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.numbersSelectorColor" class="hiddenlink" target="rightframe">numbersSelectorColor</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.numbersTextColor" class="hiddenlink" target="rightframe">numbersTextColor</A>
+</nobr><br>
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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.app.AppOpsManager.html#android.app.AppOpsManager.OPSTR_GET_USAGE_STATS" class="hiddenlink" target="rightframe">OPSTR_GET_USAGE_STATS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.outlineProvider" class="hiddenlink" target="rightframe">outlineProvider</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.overlapAnchor" class="hiddenlink" target="rightframe">overlapAnchor</A>
+</nobr><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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">
+<nobr><A HREF="android.graphics.drawable.LayerDrawable.html#android.graphics.drawable.LayerDrawable.PADDING_MODE_NEST" class="hiddenlink" target="rightframe">PADDING_MODE_NEST</A>
+</nobr><br>
+<nobr><A HREF="android.graphics.drawable.LayerDrawable.html#android.graphics.drawable.LayerDrawable.PADDING_MODE_STACK" class="hiddenlink" target="rightframe">PADDING_MODE_STACK</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.paddingMode" class="hiddenlink" target="rightframe">paddingMode</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.PASSWORD_QUALITY_NUMERIC_COMPLEX" class="hiddenlink" target="rightframe">PASSWORD_QUALITY_NUMERIC_COMPLEX</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.pathData" class="hiddenlink" target="rightframe">pathData</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.patternPathData" class="hiddenlink" target="rightframe">patternPathData</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.PERSIST_ACROSS_REBOOTS" class="hiddenlink" target="rightframe">PERSIST_ACROSS_REBOOTS</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.PERSIST_NEVER" class="hiddenlink" target="rightframe">PERSIST_NEVER</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.PERSIST_ROOT_ONLY" class="hiddenlink" target="rightframe">PERSIST_ROOT_ONLY</A>
+</nobr><br>
+<i>persistableMode</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.persistableMode" class="hiddenlink" target="rightframe">android.R.attr</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.persistableMode" class="hiddenlink" target="rightframe">android.content.pm.ActivityInfo</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.PHONE_ACCOUNT_COMPONENT_NAME" class="hiddenlink" target="rightframe">PHONE_ACCOUNT_COMPONENT_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.PHONE_ACCOUNT_ID" class="hiddenlink" target="rightframe">PHONE_ACCOUNT_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotos.html#android.provider.ContactsContract.StreamItemPhotos.PHOTO" class="hiddenlink" target="rightframe">PHOTO</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.PHOTO_FILE_ID" class="hiddenlink" target="rightframe">PHOTO_FILE_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.PHOTO_URI" class="hiddenlink" target="rightframe">PHOTO_URI</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.ContactOptionsColumns.html#android.provider.ContactsContract.ContactOptionsColumns.PINNED" class="hiddenlink" target="rightframe">PINNED</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.popupElevation" class="hiddenlink" target="rightframe">popupElevation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.popupTheme" class="hiddenlink" target="rightframe">popupTheme</A>
+</nobr><br>
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.preferredRefreshRate" class="hiddenlink" target="rightframe">preferredRefreshRate</A>
+</nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.PRIVATE_USE_EXTENSION" class="hiddenlink" target="rightframe">PRIVATE_USE_EXTENSION</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressBackgroundTint" class="hiddenlink" target="rightframe">progressBackgroundTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressBackgroundTintMode" class="hiddenlink" target="rightframe">progressBackgroundTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressTint" class="hiddenlink" target="rightframe">progressTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressTintMode" class="hiddenlink" target="rightframe">progressTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.propertyXName" class="hiddenlink" target="rightframe">propertyXName</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.propertyYName" class="hiddenlink" target="rightframe">propertyYName</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PermissionInfo.html#android.content.pm.PermissionInfo.PROTECTION_FLAG_APPOP" class="hiddenlink" target="rightframe">PROTECTION_FLAG_APPOP</A>
+</nobr><br>
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.PROXIMITY_SCREEN_OFF_WAKE_LOCK" class="hiddenlink" target="rightframe">PROXIMITY_SCREEN_OFF_WAKE_LOCK</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.publicVersion" class="hiddenlink" target="rightframe">publicVersion</A>
+</nobr><br>
+<A NAME="Q"></A>
+<br><font size="+2">Q</font>&nbsp;
+<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.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_2160P" class="hiddenlink" target="rightframe">QUALITY_2160P</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_1080P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_1080P</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_2160P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_2160P</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_480P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_480P</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_720P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_720P</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_HIGH" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_HIGH</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_LOW" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_LOW</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_TIME_LAPSE_2160P" class="hiddenlink" target="rightframe">QUALITY_TIME_LAPSE_2160P</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.PhoneLookup.html#android.provider.ContactsContract.PhoneLookup.QUERY_PARAMETER_SIP_ADDRESS" class="hiddenlink" target="rightframe">QUERY_PARAMETER_SIP_ADDRESS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.queryBackground" class="hiddenlink" target="rightframe">queryBackground</A>
+</nobr><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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">
+<nobr><A HREF="android.media.Rating.html#android.media.Rating.RATING_NONE" class="hiddenlink" target="rightframe">RATING_NONE</A>
+</nobr><br>
+<nobr><A HREF="android.graphics.ImageFormat.html#android.graphics.ImageFormat.RAW10" class="hiddenlink" target="rightframe">RAW10</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RAW_CONTACT_ID" class="hiddenlink" target="rightframe">RAW_CONTACT_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RAW_CONTACT_SOURCE_ID" class="hiddenlink" target="rightframe">RAW_CONTACT_SOURCE_ID</A>
+</nobr><br>
+<nobr><A HREF="android.graphics.ImageFormat.html#android.graphics.ImageFormat.RAW_SENSOR" class="hiddenlink" target="rightframe">RAW_SENSOR</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.READ_SOCIAL_STREAM" class="hiddenlink" target="rightframe">READ_SOCIAL_STREAM</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.READ_VOICEMAIL" class="hiddenlink" target="rightframe">READ_VOICEMAIL</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.recognitionService" class="hiddenlink" target="rightframe">recognitionService</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.REGULAR_CODECS" class="hiddenlink" target="rightframe">REGULAR_CODECS</A>
+</nobr><br>
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY" class="hiddenlink" target="rightframe">RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.relinquishTaskIdentity" class="hiddenlink" target="rightframe">relinquishTaskIdentity</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.html#android.provider.ContactsContract.REMOVE_DUPLICATE_ENTRIES" class="hiddenlink" target="rightframe">REMOVE_DUPLICATE_ENTRIES</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.reparent" class="hiddenlink" target="rightframe">reparent</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.reparentWithOverlay" class="hiddenlink" target="rightframe">reparentWithOverlay</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_CONTINUOUS" class="hiddenlink" target="rightframe">REPORTING_MODE_CONTINUOUS</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_ON_CHANGE" class="hiddenlink" target="rightframe">REPORTING_MODE_ON_CHANGE</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_ONE_SHOT" class="hiddenlink" target="rightframe">REPORTING_MODE_ONE_SHOT</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_SPECIAL_TRIGGER" class="hiddenlink" target="rightframe">REPORTING_MODE_SPECIAL_TRIGGER</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RES_ICON" class="hiddenlink" target="rightframe">RES_ICON</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RES_LABEL" class="hiddenlink" target="rightframe">RES_LABEL</A>
+</nobr><br>
+<i>RES_PACKAGE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.DataColumns.html#android.provider.ContactsContract.DataColumns.RES_PACKAGE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.DataColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.GroupsColumns.html#android.provider.ContactsContract.GroupsColumns.RES_PACKAGE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.GroupsColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RES_PACKAGE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.RESTRICTIONS_SERVICE" class="hiddenlink" target="rightframe">RESTRICTIONS_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.restrictionType" class="hiddenlink" target="rightframe">restrictionType</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.resumeWhilePausing" class="hiddenlink" target="rightframe">resumeWhilePausing</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.reversible" class="hiddenlink" target="rightframe">reversible</A>
+</nobr><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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.view.View.html#android.view.View.SCROLL_AXIS_HORIZONTAL" class="hiddenlink" target="rightframe">SCROLL_AXIS_HORIZONTAL</A>
+</nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.SCROLL_AXIS_NONE" class="hiddenlink" target="rightframe">SCROLL_AXIS_NONE</A>
+</nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.SCROLL_AXIS_VERTICAL" class="hiddenlink" target="rightframe">SCROLL_AXIS_VERTICAL</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.searchIcon" class="hiddenlink" target="rightframe">searchIcon</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.searchViewStyle" class="hiddenlink" target="rightframe">searchViewStyle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.secondaryProgressTint" class="hiddenlink" target="rightframe">secondaryProgressTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.secondaryProgressTintMode" class="hiddenlink" target="rightframe">secondaryProgressTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.selectableItemBackgroundBorderless" class="hiddenlink" target="rightframe">selectableItemBackgroundBorderless</A>
+</nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.SELECTION_MODE_MULTIPLE" class="hiddenlink" target="rightframe">SELECTION_MODE_MULTIPLE</A>
+</nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.SELECTION_MODE_NONE" class="hiddenlink" target="rightframe">SELECTION_MODE_NONE</A>
+</nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.SELECTION_MODE_SINGLE" class="hiddenlink" target="rightframe">SELECTION_MODE_SINGLE</A>
+</nobr><br>
+<nobr><A HREF="android.os.Message.html#android.os.Message.sendingUid" class="hiddenlink" target="rightframe">sendingUid</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.sessionService" class="hiddenlink" target="rightframe">sessionService</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.setupActivity" class="hiddenlink" target="rightframe">setupActivity</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.showText" class="hiddenlink" target="rightframe">showText</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiEnterpriseConfig.Eap.html#android.net.wifi.WifiEnterpriseConfig.Eap.SIM" class="hiddenlink" target="rightframe">SIM</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.Secure.html#android.provider.Settings.Secure.SKIP_FIRST_USE_HINTS" class="hiddenlink" target="rightframe">SKIP_FIRST_USE_HINTS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.slideEdge" class="hiddenlink" target="rightframe">slideEdge</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SORT_INDEX" class="hiddenlink" target="rightframe">SORT_INDEX</A>
+</nobr><br>
+<nobr><A HREF="android.view.InputDevice.html#android.view.InputDevice.SOURCE_HDMI" class="hiddenlink" target="rightframe">SOURCE_HDMI</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.splitNames" class="hiddenlink" target="rightframe">splitNames</A>
+</nobr><br>
+<i>splitPublicSourceDirs</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.splitPublicSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.ApplicationInfo</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.InstrumentationInfo.html#android.content.pm.InstrumentationInfo.splitPublicSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.InstrumentationInfo</A>
+</nobr><br>
+<i>splitSourceDirs</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.splitSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.ApplicationInfo</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.InstrumentationInfo.html#android.content.pm.InstrumentationInfo.splitSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.InstrumentationInfo</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.splitTrack" class="hiddenlink" target="rightframe">splitTrack</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.spotShadowAlpha" class="hiddenlink" target="rightframe">spotShadowAlpha</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.stackViewStyle" class="hiddenlink" target="rightframe">stackViewStyle</A>
+</nobr><br>
+<nobr><A HREF="android.view.Display.html#android.view.Display.STATE_DOZE" class="hiddenlink" target="rightframe">STATE_DOZE</A>
+</nobr><br>
+<nobr><A HREF="android.view.Display.html#android.view.Display.STATE_DOZE_SUSPEND" class="hiddenlink" target="rightframe">STATE_DOZE_SUSPEND</A>
+</nobr><br>
+<nobr><A HREF="android.view.Display.html#android.view.Display.STATE_DOZING" class="hiddenlink" target="rightframe"><strike>STATE_DOZING</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.stateListAnimator" class="hiddenlink" target="rightframe">stateListAnimator</A>
+</nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.STATUS_BAR_BACKGROUND_TRANSITION_NAME" class="hiddenlink" target="rightframe">STATUS_BAR_BACKGROUND_TRANSITION_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.R.id.html#android.R.id.statusBarBackground" class="hiddenlink" target="rightframe">statusBarBackground</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.statusBarColor" class="hiddenlink" target="rightframe">statusBarColor</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.STOPPED" class="hiddenlink" target="rightframe">STOPPED</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.STREAM_DEFAULT" class="hiddenlink" target="rightframe">STREAM_DEFAULT</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.STREAM_ITEM_ID" class="hiddenlink" target="rightframe">STREAM_ITEM_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.html#android.provider.ContactsContract.STREQUENT_PHONE_ONLY" class="hiddenlink" target="rightframe">STREQUENT_PHONE_ONLY</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeAlpha" class="hiddenlink" target="rightframe">strokeAlpha</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeColor" class="hiddenlink" target="rightframe">strokeColor</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeLineCap" class="hiddenlink" target="rightframe">strokeLineCap</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeLineJoin" class="hiddenlink" target="rightframe">strokeLineJoin</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeMiterLimit" class="hiddenlink" target="rightframe">strokeMiterLimit</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeWidth" class="hiddenlink" target="rightframe">strokeWidth</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.submitBackground" class="hiddenlink" target="rightframe">submitBackground</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.subtitleTextAppearance" class="hiddenlink" target="rightframe">subtitleTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_AUDIO_CHANNEL_CONFIG" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_AUDIO_CHANNEL_CONFIG</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_CONTENT_TYPE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_CONTENT_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_DURATION" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_DURATION</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_IS_LIVE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_IS_LIVE</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_PRODUCTION_YEAR" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_PRODUCTION_YEAR</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_PURCHASE_PRICE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_PURCHASE_PRICE</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_RATING_SCORE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_RATING_SCORE</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_RATING_STYLE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_RATING_STYLE</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_RENTAL_PRICE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_RENTAL_PRICE</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_RESULT_CARD_IMAGE" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_RESULT_CARD_IMAGE</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_VIDEO_HEIGHT" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_VIDEO_HEIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_COLUMN_VIDEO_WIDTH" class="hiddenlink" target="rightframe">SUGGEST_COLUMN_VIDEO_WIDTH</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.suggestionRowLayout" class="hiddenlink" target="rightframe">suggestionRowLayout</A>
+</nobr><br>
+<nobr><A HREF="android.os.Build.html#android.os.Build.SUPPORTED_32_BIT_ABIS" class="hiddenlink" target="rightframe">SUPPORTED_32_BIT_ABIS</A>
+</nobr><br>
+<nobr><A HREF="android.os.Build.html#android.os.Build.SUPPORTED_64_BIT_ABIS" class="hiddenlink" target="rightframe">SUPPORTED_64_BIT_ABIS</A>
+</nobr><br>
+<nobr><A HREF="android.os.Build.html#android.os.Build.SUPPORTED_ABIS" class="hiddenlink" target="rightframe">SUPPORTED_ABIS</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaRecorder.VideoSource.html#android.media.MediaRecorder.VideoSource.SURFACE" class="hiddenlink" target="rightframe">SURFACE</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.switchStyle" class="hiddenlink" target="rightframe">switchStyle</A>
+</nobr><br>
+<i>SYNC1</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC1" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC1" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<i>SYNC2</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC2" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC2" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<i>SYNC3</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC3" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC3" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<i>SYNC4</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC4" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC4" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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.R.attr.html#android.R.attr.targetName" class="hiddenlink" target="rightframe">targetName</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RecentTaskInfo.html#android.app.ActivityManager.RecentTaskInfo.taskDescription" class="hiddenlink" target="rightframe">taskDescription</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.TELECOM_SERVICE" class="hiddenlink" target="rightframe">TELECOM_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.TEXT" class="hiddenlink" target="rightframe">TEXT</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_DeviceDefault_Widget_ActionBar_Subtitle_Inverse" class="hiddenlink" target="rightframe">TextAppearance_DeviceDefault_Widget_ActionBar_Subtitle_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_DeviceDefault_Widget_ActionBar_Title_Inverse" class="hiddenlink" target="rightframe">TextAppearance_DeviceDefault_Widget_ActionBar_Title_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_DeviceDefault_Widget_ActionMode_Subtitle_Inverse" class="hiddenlink" target="rightframe">TextAppearance_DeviceDefault_Widget_ActionMode_Subtitle_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_DeviceDefault_Widget_ActionMode_Title_Inverse" class="hiddenlink" target="rightframe">TextAppearance_DeviceDefault_Widget_ActionMode_Title_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material" class="hiddenlink" target="rightframe">TextAppearance_Material</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Body1" class="hiddenlink" target="rightframe">TextAppearance_Material_Body1</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Body2" class="hiddenlink" target="rightframe">TextAppearance_Material_Body2</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Button" class="hiddenlink" target="rightframe">TextAppearance_Material_Button</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Caption" class="hiddenlink" target="rightframe">TextAppearance_Material_Caption</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_DialogWindowTitle" class="hiddenlink" target="rightframe">TextAppearance_Material_DialogWindowTitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display1" class="hiddenlink" target="rightframe">TextAppearance_Material_Display1</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display2" class="hiddenlink" target="rightframe">TextAppearance_Material_Display2</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display3" class="hiddenlink" target="rightframe">TextAppearance_Material_Display3</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display4" class="hiddenlink" target="rightframe">TextAppearance_Material_Display4</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Headline" class="hiddenlink" target="rightframe">TextAppearance_Material_Headline</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Large" class="hiddenlink" target="rightframe">TextAppearance_Material_Large</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Large_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Large_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Medium" class="hiddenlink" target="rightframe">TextAppearance_Material_Medium</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Medium_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Medium_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Menu" class="hiddenlink" target="rightframe">TextAppearance_Material_Menu</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Emphasis" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Emphasis</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Info" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Info</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Line2" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Line2</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Time" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Time</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_SearchResult_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_SearchResult_Subtitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_SearchResult_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_SearchResult_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Small" class="hiddenlink" target="rightframe">TextAppearance_Material_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Small_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Small_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Subhead" class="hiddenlink" target="rightframe">TextAppearance_Material_Subhead</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Menu" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Menu</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Subtitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Title_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Title_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Subtitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Title_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Title_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_Button" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_Button</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_DropDownHint" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_DropDownHint</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_DropDownItem" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_DropDownItem</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_EditText" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_EditText</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_IconMenu_Item" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_IconMenu_Item</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_PopupMenu" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_PopupMenu</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_PopupMenu_Large" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_PopupMenu_Large</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_PopupMenu_Small" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_PopupMenu_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TabWidget" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TabWidget</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TextView" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TextView_PopupMenu" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TextView_PopupMenu</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TextView_SpinnerItem" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TextView_SpinnerItem</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_Toolbar_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_Toolbar_Subtitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_Toolbar_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_Toolbar_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_WindowTitle" class="hiddenlink" target="rightframe">TextAppearance_Material_WindowTitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.textAppearanceListItemSecondary" class="hiddenlink" target="rightframe">textAppearanceListItemSecondary</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_DeviceDefault_Settings" class="hiddenlink" target="rightframe">Theme_DeviceDefault_Settings</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material" class="hiddenlink" target="rightframe">Theme_Material</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog" class="hiddenlink" target="rightframe">Theme_Material_Dialog</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_Alert" class="hiddenlink" target="rightframe">Theme_Material_Dialog_Alert</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Dialog_MinWidth</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Dialog_NoActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_NoActionBar_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Dialog_NoActionBar_MinWidth</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_Presentation" class="hiddenlink" target="rightframe">Theme_Material_Dialog_Presentation</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_DialogWhenLarge" class="hiddenlink" target="rightframe">Theme_Material_DialogWhenLarge</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_DialogWhenLarge_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_DialogWhenLarge_NoActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_InputMethod" class="hiddenlink" target="rightframe">Theme_Material_InputMethod</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light" class="hiddenlink" target="rightframe">Theme_Material_Light</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_DarkActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_DarkActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_Alert" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_Alert</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_MinWidth</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_NoActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_NoActionBar_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_NoActionBar_MinWidth</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_Presentation" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_Presentation</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_DialogWhenLarge" class="hiddenlink" target="rightframe">Theme_Material_Light_DialogWhenLarge</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_DialogWhenLarge_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_DialogWhenLarge_NoActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar_Fullscreen" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar_Fullscreen</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar_Overscan" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar_Overscan</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar_TranslucentDecor" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar_TranslucentDecor</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Panel" class="hiddenlink" target="rightframe">Theme_Material_Light_Panel</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Voice" class="hiddenlink" target="rightframe">Theme_Material_Light_Voice</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar_Fullscreen" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar_Fullscreen</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar_Overscan" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar_Overscan</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar_TranslucentDecor" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar_TranslucentDecor</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Panel" class="hiddenlink" target="rightframe">Theme_Material_Panel</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Settings" class="hiddenlink" target="rightframe">Theme_Material_Settings</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Voice" class="hiddenlink" target="rightframe">Theme_Material_Voice</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Wallpaper" class="hiddenlink" target="rightframe">Theme_Material_Wallpaper</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Wallpaper_NoTitleBar" class="hiddenlink" target="rightframe">Theme_Material_Wallpaper_NoTitleBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay" class="hiddenlink" target="rightframe">ThemeOverlay</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material" class="hiddenlink" target="rightframe">ThemeOverlay_Material</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_ActionBar" class="hiddenlink" target="rightframe">ThemeOverlay_Material_ActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_Dark" class="hiddenlink" target="rightframe">ThemeOverlay_Material_Dark</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_Dark_ActionBar" class="hiddenlink" target="rightframe">ThemeOverlay_Material_Dark_ActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_Light" class="hiddenlink" target="rightframe">ThemeOverlay_Material_Light</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.thumbTint" class="hiddenlink" target="rightframe">thumbTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.thumbTintMode" class="hiddenlink" target="rightframe">thumbTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.tickerView" class="hiddenlink" target="rightframe">tickerView</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.tileModeX" class="hiddenlink" target="rightframe">tileModeX</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.tileModeY" class="hiddenlink" target="rightframe">tileModeY</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.timePickerDialogTheme" class="hiddenlink" target="rightframe">timePickerDialogTheme</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.timePickerMode" class="hiddenlink" target="rightframe">timePickerMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.timePickerStyle" class="hiddenlink" target="rightframe">timePickerStyle</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.TIMESTAMP" class="hiddenlink" target="rightframe">TIMESTAMP</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.tintMode" class="hiddenlink" target="rightframe">tintMode</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.GroupsColumns.html#android.provider.ContactsContract.GroupsColumns.TITLE_RES" class="hiddenlink" target="rightframe">TITLE_RES</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.titleTextAppearance" class="hiddenlink" target="rightframe">titleTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.toId" class="hiddenlink" target="rightframe">toId</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.toolbarStyle" class="hiddenlink" target="rightframe">toolbarStyle</A>
+</nobr><br>
+<nobr><A HREF="android.util.Patterns.html#android.util.Patterns.TOP_LEVEL_DOMAIN" class="hiddenlink" target="rightframe">TOP_LEVEL_DOMAIN</A>
+</nobr><br>
+<nobr><A HREF="android.util.Patterns.html#android.util.Patterns.TOP_LEVEL_DOMAIN_STR" class="hiddenlink" target="rightframe">TOP_LEVEL_DOMAIN_STR</A>
+</nobr><br>
+<nobr><A HREF="android.util.Patterns.html#android.util.Patterns.TOP_LEVEL_DOMAIN_STR_FOR_WEB_URL" class="hiddenlink" target="rightframe">TOP_LEVEL_DOMAIN_STR_FOR_WEB_URL</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.touchscreenBlocksFocus" class="hiddenlink" target="rightframe">touchscreenBlocksFocus</A>
+</nobr><br>
+<i>TRANSCRIPTION</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.TRANSCRIPTION" class="hiddenlink" target="rightframe">android.provider.CallLog.Calls</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.VoicemailContract.Voicemails.html#android.provider.VoicemailContract.Voicemails.TRANSCRIPTION" class="hiddenlink" target="rightframe">android.provider.VoicemailContract.Voicemails</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.transitionGroup" class="hiddenlink" target="rightframe">transitionGroup</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.transitionName" class="hiddenlink" target="rightframe">transitionName</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.transitionVisibilityMode" class="hiddenlink" target="rightframe">transitionVisibilityMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.translateX" class="hiddenlink" target="rightframe">translateX</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.translateY" class="hiddenlink" target="rightframe">translateY</A>
+</nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.TRANSLATION_Z" class="hiddenlink" target="rightframe">TRANSLATION_Z</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.translationZ" class="hiddenlink" target="rightframe">translationZ</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.trimPathEnd" class="hiddenlink" target="rightframe">trimPathEnd</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.trimPathOffset" class="hiddenlink" target="rightframe">trimPathOffset</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.trimPathStart" class="hiddenlink" target="rightframe">trimPathStart</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.TV_INPUT_SERVICE" class="hiddenlink" target="rightframe">TV_INPUT_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.TYPE_INTEGER" class="hiddenlink" target="rightframe">TYPE_INTEGER</A>
+</nobr><br>
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.TYPE_KEYGUARD" class="hiddenlink" target="rightframe"><strike>TYPE_KEYGUARD</strike></A>
+</nobr><br>
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.TYPE_STRING" class="hiddenlink" target="rightframe">TYPE_STRING</A>
+</nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.TYPE_VPN" class="hiddenlink" target="rightframe">TYPE_VPN</A>
+</nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityEvent.html#android.view.accessibility.AccessibilityEvent.TYPE_WINDOWS_CHANGED" class="hiddenlink" target="rightframe">TYPE_WINDOWS_CHANGED</A>
+</nobr><br>
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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">
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.UNICODE_LOCALE_EXTENSION" class="hiddenlink" target="rightframe">UNICODE_LOCALE_EXTENSION</A>
+</nobr><br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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">
+<nobr><A HREF="android.R.attr.html#android.R.attr.viewportHeight" class="hiddenlink" target="rightframe">viewportHeight</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.viewportWidth" class="hiddenlink" target="rightframe">viewportWidth</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.display.DisplayManager.html#android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR" class="hiddenlink" target="rightframe">VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR</A>
+</nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_AUTO" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_AUTO</A>
+</nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_BINAURAL" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_BINAURAL</A>
+</nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_OFF" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_OFF</A>
+</nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_TRANSAURAL" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_TRANSAURAL</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.visibility" class="hiddenlink" target="rightframe">visibility</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.VISIBILITY_PRIVATE" class="hiddenlink" target="rightframe">VISIBILITY_PRIVATE</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.VISIBILITY_PUBLIC" class="hiddenlink" target="rightframe">VISIBILITY_PUBLIC</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.VISIBILITY_SECRET" class="hiddenlink" target="rightframe">VISIBILITY_SECRET</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.voiceIcon" class="hiddenlink" target="rightframe">voiceIcon</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.VOICEMAIL_TYPE" class="hiddenlink" target="rightframe">VOICEMAIL_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.VOICEMAIL_URI" class="hiddenlink" target="rightframe">VOICEMAIL_URI</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaRecorder.AudioEncoder.html#android.media.MediaRecorder.AudioEncoder.VORBIS" class="hiddenlink" target="rightframe">VORBIS</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaRecorder.VideoEncoder.html#android.media.MediaRecorder.VideoEncoder.VP8" class="hiddenlink" target="rightframe">VP8</A>
+</nobr><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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.media.MediaRecorder.OutputFormat.html#android.media.MediaRecorder.OutputFormat.WEBM" class="hiddenlink" target="rightframe">WEBM</A>
+</nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX" class="hiddenlink" target="rightframe">WIDGET_CATEGORY_SEARCHBOX</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_FastScroll" class="hiddenlink" target="rightframe">Widget_DeviceDefault_FastScroll</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_ActionBar_Solid_Inverse" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_ActionBar_Solid_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_ActionBar_TabBar_Inverse" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_ActionBar_TabBar_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_ActionBar_TabText_Inverse" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_ActionBar_TabText_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_ActionBar_TabView_Inverse" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_ActionBar_TabView_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_ActionMode_Inverse" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_ActionMode_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_FastScroll" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_FastScroll</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_StackView" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_StackView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_StackView" class="hiddenlink" target="rightframe">Widget_DeviceDefault_StackView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_FastScroll" class="hiddenlink" target="rightframe">Widget_FastScroll</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material" class="hiddenlink" target="rightframe">Widget_Material</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar" class="hiddenlink" target="rightframe">Widget_Material_ActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_Solid" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_Solid</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_TabBar" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_TabBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_TabText" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_TabText</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_TabView" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_TabView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionButton" class="hiddenlink" target="rightframe">Widget_Material_ActionButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionButton_CloseMode" class="hiddenlink" target="rightframe">Widget_Material_ActionButton_CloseMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionButton_Overflow" class="hiddenlink" target="rightframe">Widget_Material_ActionButton_Overflow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionMode" class="hiddenlink" target="rightframe">Widget_Material_ActionMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_AutoCompleteTextView" class="hiddenlink" target="rightframe">Widget_Material_AutoCompleteTextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button" class="hiddenlink" target="rightframe">Widget_Material_Button</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Borderless" class="hiddenlink" target="rightframe">Widget_Material_Button_Borderless</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Borderless_Colored" class="hiddenlink" target="rightframe">Widget_Material_Button_Borderless_Colored</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Borderless_Small" class="hiddenlink" target="rightframe">Widget_Material_Button_Borderless_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Inset" class="hiddenlink" target="rightframe">Widget_Material_Button_Inset</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Small" class="hiddenlink" target="rightframe">Widget_Material_Button_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Toggle" class="hiddenlink" target="rightframe">Widget_Material_Button_Toggle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ButtonBar" class="hiddenlink" target="rightframe">Widget_Material_ButtonBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ButtonBar_AlertDialog" class="hiddenlink" target="rightframe">Widget_Material_ButtonBar_AlertDialog</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CalendarView" class="hiddenlink" target="rightframe">Widget_Material_CalendarView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CheckedTextView" class="hiddenlink" target="rightframe">Widget_Material_CheckedTextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CompoundButton_CheckBox" class="hiddenlink" target="rightframe">Widget_Material_CompoundButton_CheckBox</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CompoundButton_RadioButton" class="hiddenlink" target="rightframe">Widget_Material_CompoundButton_RadioButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CompoundButton_Star" class="hiddenlink" target="rightframe">Widget_Material_CompoundButton_Star</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_DatePicker" class="hiddenlink" target="rightframe">Widget_Material_DatePicker</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_DropDownItem" class="hiddenlink" target="rightframe">Widget_Material_DropDownItem</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_DropDownItem_Spinner" class="hiddenlink" target="rightframe">Widget_Material_DropDownItem_Spinner</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_EditText" class="hiddenlink" target="rightframe">Widget_Material_EditText</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ExpandableListView" class="hiddenlink" target="rightframe">Widget_Material_ExpandableListView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_FastScroll" class="hiddenlink" target="rightframe">Widget_Material_FastScroll</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_GridView" class="hiddenlink" target="rightframe">Widget_Material_GridView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_HorizontalScrollView" class="hiddenlink" target="rightframe">Widget_Material_HorizontalScrollView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ImageButton" class="hiddenlink" target="rightframe">Widget_Material_ImageButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light" class="hiddenlink" target="rightframe">Widget_Material_Light</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_Solid" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_Solid</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_TabBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_TabBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_TabText" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_TabText</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_TabView" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_TabView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionButton" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionButton_CloseMode" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionButton_CloseMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionButton_Overflow" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionButton_Overflow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionMode" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_AutoCompleteTextView" class="hiddenlink" target="rightframe">Widget_Material_Light_AutoCompleteTextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button" class="hiddenlink" target="rightframe">Widget_Material_Light_Button</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Borderless" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Borderless</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Borderless_Colored" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Borderless_Colored</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Borderless_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Borderless_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Inset" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Inset</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Toggle" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Toggle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ButtonBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ButtonBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ButtonBar_AlertDialog" class="hiddenlink" target="rightframe">Widget_Material_Light_ButtonBar_AlertDialog</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CalendarView" class="hiddenlink" target="rightframe">Widget_Material_Light_CalendarView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CheckedTextView" class="hiddenlink" target="rightframe">Widget_Material_Light_CheckedTextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CompoundButton_CheckBox" class="hiddenlink" target="rightframe">Widget_Material_Light_CompoundButton_CheckBox</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CompoundButton_RadioButton" class="hiddenlink" target="rightframe">Widget_Material_Light_CompoundButton_RadioButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CompoundButton_Star" class="hiddenlink" target="rightframe">Widget_Material_Light_CompoundButton_Star</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_DatePicker" class="hiddenlink" target="rightframe">Widget_Material_Light_DatePicker</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_DropDownItem" class="hiddenlink" target="rightframe">Widget_Material_Light_DropDownItem</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_DropDownItem_Spinner" class="hiddenlink" target="rightframe">Widget_Material_Light_DropDownItem_Spinner</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_EditText" class="hiddenlink" target="rightframe">Widget_Material_Light_EditText</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ExpandableListView" class="hiddenlink" target="rightframe">Widget_Material_Light_ExpandableListView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_FastScroll" class="hiddenlink" target="rightframe">Widget_Material_Light_FastScroll</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_GridView" class="hiddenlink" target="rightframe">Widget_Material_Light_GridView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_HorizontalScrollView" class="hiddenlink" target="rightframe">Widget_Material_Light_HorizontalScrollView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ImageButton" class="hiddenlink" target="rightframe">Widget_Material_Light_ImageButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ListPopupWindow" class="hiddenlink" target="rightframe">Widget_Material_Light_ListPopupWindow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ListView" class="hiddenlink" target="rightframe">Widget_Material_Light_ListView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ListView_DropDown" class="hiddenlink" target="rightframe">Widget_Material_Light_ListView_DropDown</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_MediaRouteButton" class="hiddenlink" target="rightframe">Widget_Material_Light_MediaRouteButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_PopupMenu" class="hiddenlink" target="rightframe">Widget_Material_Light_PopupMenu</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_PopupMenu_Overflow" class="hiddenlink" target="rightframe">Widget_Material_Light_PopupMenu_Overflow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_PopupWindow" class="hiddenlink" target="rightframe">Widget_Material_Light_PopupWindow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Horizontal" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Horizontal</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Inverse" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Large" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Large</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Large_Inverse" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Large_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Small_Inverse" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Small_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Small_Title" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Small_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_RatingBar" class="hiddenlink" target="rightframe">Widget_Material_Light_RatingBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_RatingBar_Indicator" class="hiddenlink" target="rightframe">Widget_Material_Light_RatingBar_Indicator</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_RatingBar_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_RatingBar_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ScrollView" class="hiddenlink" target="rightframe">Widget_Material_Light_ScrollView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_SearchView" class="hiddenlink" target="rightframe">Widget_Material_Light_SearchView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_SeekBar" class="hiddenlink" target="rightframe">Widget_Material_Light_SeekBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_SegmentedButton" class="hiddenlink" target="rightframe">Widget_Material_Light_SegmentedButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Spinner" class="hiddenlink" target="rightframe">Widget_Material_Light_Spinner</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Spinner_Underlined" class="hiddenlink" target="rightframe">Widget_Material_Light_Spinner_Underlined</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_StackView" class="hiddenlink" target="rightframe">Widget_Material_Light_StackView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Tab" class="hiddenlink" target="rightframe">Widget_Material_Light_Tab</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TabWidget" class="hiddenlink" target="rightframe">Widget_Material_Light_TabWidget</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TextView" class="hiddenlink" target="rightframe">Widget_Material_Light_TextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TextView_SpinnerItem" class="hiddenlink" target="rightframe">Widget_Material_Light_TextView_SpinnerItem</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TimePicker" class="hiddenlink" target="rightframe">Widget_Material_Light_TimePicker</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_WebTextView" class="hiddenlink" target="rightframe">Widget_Material_Light_WebTextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_WebView" class="hiddenlink" target="rightframe">Widget_Material_Light_WebView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ListPopupWindow" class="hiddenlink" target="rightframe">Widget_Material_ListPopupWindow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ListView" class="hiddenlink" target="rightframe">Widget_Material_ListView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ListView_DropDown" class="hiddenlink" target="rightframe">Widget_Material_ListView_DropDown</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_MediaRouteButton" class="hiddenlink" target="rightframe">Widget_Material_MediaRouteButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_PopupMenu" class="hiddenlink" target="rightframe">Widget_Material_PopupMenu</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_PopupMenu_Overflow" class="hiddenlink" target="rightframe">Widget_Material_PopupMenu_Overflow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_PopupWindow" class="hiddenlink" target="rightframe">Widget_Material_PopupWindow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Horizontal" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Horizontal</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Large" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Large</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Small" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Small_Title" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Small_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_RatingBar" class="hiddenlink" target="rightframe">Widget_Material_RatingBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_RatingBar_Indicator" class="hiddenlink" target="rightframe">Widget_Material_RatingBar_Indicator</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_RatingBar_Small" class="hiddenlink" target="rightframe">Widget_Material_RatingBar_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ScrollView" class="hiddenlink" target="rightframe">Widget_Material_ScrollView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_SearchView" class="hiddenlink" target="rightframe">Widget_Material_SearchView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_SeekBar" class="hiddenlink" target="rightframe">Widget_Material_SeekBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_SegmentedButton" class="hiddenlink" target="rightframe">Widget_Material_SegmentedButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Spinner" class="hiddenlink" target="rightframe">Widget_Material_Spinner</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Spinner_Underlined" class="hiddenlink" target="rightframe">Widget_Material_Spinner_Underlined</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_StackView" class="hiddenlink" target="rightframe">Widget_Material_StackView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Tab" class="hiddenlink" target="rightframe">Widget_Material_Tab</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TabWidget" class="hiddenlink" target="rightframe">Widget_Material_TabWidget</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TextView" class="hiddenlink" target="rightframe">Widget_Material_TextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TextView_SpinnerItem" class="hiddenlink" target="rightframe">Widget_Material_TextView_SpinnerItem</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TimePicker" class="hiddenlink" target="rightframe">Widget_Material_TimePicker</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Toolbar" class="hiddenlink" target="rightframe">Widget_Material_Toolbar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Toolbar_Button_Navigation" class="hiddenlink" target="rightframe">Widget_Material_Toolbar_Button_Navigation</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_WebTextView" class="hiddenlink" target="rightframe">Widget_Material_WebTextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_WebView" class="hiddenlink" target="rightframe">Widget_Material_WebView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_StackView" class="hiddenlink" target="rightframe">Widget_StackView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Toolbar" class="hiddenlink" target="rightframe">Widget_Toolbar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Toolbar_Button_Navigation" class="hiddenlink" target="rightframe">Widget_Toolbar_Button_Navigation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowActivityTransitions" class="hiddenlink" target="rightframe">windowActivityTransitions</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowAllowEnterTransitionOverlap" class="hiddenlink" target="rightframe">windowAllowEnterTransitionOverlap</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowAllowReturnTransitionOverlap" class="hiddenlink" target="rightframe">windowAllowReturnTransitionOverlap</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowClipToOutline" class="hiddenlink" target="rightframe">windowClipToOutline</A>
+</nobr><br>
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.windowColor" class="hiddenlink" target="rightframe">windowColor</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowContentTransitionManager" class="hiddenlink" target="rightframe">windowContentTransitionManager</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowContentTransitions" class="hiddenlink" target="rightframe">windowContentTransitions</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowDrawsSystemBarBackgrounds" class="hiddenlink" target="rightframe">windowDrawsSystemBarBackgrounds</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowElevation" class="hiddenlink" target="rightframe">windowElevation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowEnterTransition" class="hiddenlink" target="rightframe">windowEnterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowExitTransition" class="hiddenlink" target="rightframe">windowExitTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowReenterTransition" class="hiddenlink" target="rightframe">windowReenterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowReturnTransition" class="hiddenlink" target="rightframe">windowReturnTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementEnterTransition" class="hiddenlink" target="rightframe">windowSharedElementEnterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementExitTransition" class="hiddenlink" target="rightframe">windowSharedElementExitTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementReenterTransition" class="hiddenlink" target="rightframe">windowSharedElementReenterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementReturnTransition" class="hiddenlink" target="rightframe">windowSharedElementReturnTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementsUseOverlay" class="hiddenlink" target="rightframe">windowSharedElementsUseOverlay</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowTransitionBackgroundFadeDuration" class="hiddenlink" target="rightframe">windowTransitionBackgroundFadeDuration</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_AUTH_FAILURE" class="hiddenlink" target="rightframe">WPS_AUTH_FAILURE</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_OVERLAP_ERROR" class="hiddenlink" target="rightframe">WPS_OVERLAP_ERROR</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_TIMED_OUT" class="hiddenlink" target="rightframe">WPS_TIMED_OUT</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_TKIP_ONLY_PROHIBITED" class="hiddenlink" target="rightframe">WPS_TKIP_ONLY_PROHIBITED</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_WEP_PROHIBITED" class="hiddenlink" target="rightframe">WPS_WEP_PROHIBITED</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.WRITE_BLOCKING" class="hiddenlink" target="rightframe">WRITE_BLOCKING</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.WRITE_NON_BLOCKING" class="hiddenlink" target="rightframe">WRITE_NON_BLOCKING</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.WRITE_SOCIAL_STREAM" class="hiddenlink" target="rightframe">WRITE_SOCIAL_STREAM</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.WRITE_VOICEMAIL" class="hiddenlink" target="rightframe">WRITE_VOICEMAIL</A>
+</nobr><br>
+<A NAME="Y"></A>
+<br><font size="+2">Y</font>&nbsp;
+<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.R.attr.html#android.R.attr.yearListItemTextAppearance" class="hiddenlink" target="rightframe">yearListItemTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.yearListSelectorColor" class="hiddenlink" target="rightframe">yearListSelectorColor</A>
+</nobr><br>
+<A NAME="Z"></A>
+<br><font size="+2">Z</font>&nbsp;
+<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">
+<nobr><A HREF="android.view.View.html#android.view.View.Z" class="hiddenlink" target="rightframe">Z</A>
+</nobr><br>
+<script src="//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/21/changes/fields_index_changes.html b/docs/html/sdk/api_diff/21/changes/fields_index_changes.html
new file mode 100644
index 0000000..fa6c346
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/fields_index_changes.html
@@ -0,0 +1,540 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<A HREF="fields_index_removals.html" xclass="hiddenlink">Removals</A>
+  <br>
+<A HREF="fields_index_additions.html"xclass="hiddenlink">Additions</A>
+  <br>
+<b>Changes</b>
+  </td>
+  </tr>
+</table>
+<div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#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.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.ACCOUNT_NAME" class="hiddenlink" target="rightframe">ACCOUNT_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.ACCOUNT_TYPE" class="hiddenlink" target="rightframe">ACCOUNT_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.audioStreamType" class="hiddenlink" target="rightframe">audioStreamType</A>
+</nobr><br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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="#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="#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.media.MediaCodec.html#android.media.MediaCodec.BUFFER_FLAG_SYNC_FRAME" class="hiddenlink" target="rightframe">BUFFER_FLAG_SYNC_FRAME</A>
+</nobr><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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="#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="#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.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.COMMENTS" class="hiddenlink" target="rightframe">COMMENTS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.CONTACT_ID" class="hiddenlink" target="rightframe">CONTACT_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.CONTACT_LOOKUP_KEY" class="hiddenlink" target="rightframe">CONTACT_LOOKUP_KEY</A>
+</nobr><br>
+<i>CONTENT_DIRECTORY</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.StreamItems.html#android.provider.ContactsContract.Contacts.StreamItems.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts.StreamItems</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.RawContacts.StreamItems.html#android.provider.ContactsContract.RawContacts.StreamItems.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.ContactsContract.RawContacts.StreamItems</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html#android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems.StreamItemPhotos</A>
+</nobr><br>
+<i>CONTENT_ITEM_TYPE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html#android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems.StreamItemPhotos</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_LIMIT_URI" class="hiddenlink" target="rightframe">CONTENT_LIMIT_URI</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_PHOTO_URI" class="hiddenlink" target="rightframe">CONTENT_PHOTO_URI</A>
+</nobr><br>
+<i>CONTENT_TYPE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html#android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems.StreamItemPhotos</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_URI" class="hiddenlink" target="rightframe">CONTENT_URI</A>
+</nobr><br>
+<nobr><A HREF="android.os.Build.html#android.os.Build.CPU_ABI" class="hiddenlink" target="rightframe">CPU_ABI</A>
+</nobr><br>
+<nobr><A HREF="android.os.Build.html#android.os.Build.CPU_ABI2" class="hiddenlink" target="rightframe">CPU_ABI2</A>
+</nobr><br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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="#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="#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.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.DATA_SET" class="hiddenlink" target="rightframe">DATA_SET</A>
+</nobr><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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="#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="#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.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_TELEVISION" class="hiddenlink" target="rightframe">FEATURE_TELEVISION</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET" class="hiddenlink" target="rightframe">FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET</A>
+</nobr><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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="#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="#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.Manifest.permission.html#android.Manifest.permission.GET_TASKS" class="hiddenlink" target="rightframe">GET_TASKS</A>
+</nobr><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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="#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="#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.media.MediaCodec.html#android.media.MediaCodec.INFO_OUTPUT_BUFFERS_CHANGED" class="hiddenlink" target="rightframe">INFO_OUTPUT_BUFFERS_CHANGED</A>
+</nobr><br>
+<nobr><A HREF="android.graphics.BitmapFactory.Options.html#android.graphics.BitmapFactory.Options.inInputShareable" class="hiddenlink" target="rightframe">inInputShareable</A>
+</nobr><br>
+<nobr><A HREF="android.graphics.BitmapFactory.Options.html#android.graphics.BitmapFactory.Options.inPurgeable" class="hiddenlink" target="rightframe">inPurgeable</A>
+</nobr><br>
+<i>INSTALL_NON_MARKET_APPS</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.Settings.Global.html#android.provider.Settings.Global.INSTALL_NON_MARKET_APPS" class="hiddenlink" target="rightframe">android.provider.Settings.Global</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.Settings.Secure.html#android.provider.Settings.Secure.INSTALL_NON_MARKET_APPS" class="hiddenlink" target="rightframe">android.provider.Settings.Secure</A>
+</nobr><br>
+<A NAME="K"></A>
+<br><font size="+2">K</font>&nbsp;
+<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="#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="#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.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_EMBEDDED_SYNTHESIS" class="hiddenlink" target="rightframe">KEY_FEATURE_EMBEDDED_SYNTHESIS</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_SYNTHESIS" class="hiddenlink" target="rightframe">KEY_FEATURE_NETWORK_SYNTHESIS</A>
+</nobr><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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="#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="#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.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.label" class="hiddenlink" target="rightframe">label</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.CookieSyncManager.html#android.webkit.CookieSyncManager.LOGTAG" class="hiddenlink" target="rightframe">LOGTAG</A>
+</nobr><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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="#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="#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.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.MAX_ITEMS" class="hiddenlink" target="rightframe">MAX_ITEMS</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.CookieSyncManager.html#android.webkit.CookieSyncManager.mDataBase" class="hiddenlink" target="rightframe">mDataBase</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.CookieSyncManager.html#android.webkit.CookieSyncManager.mHandler" class="hiddenlink" target="rightframe">mHandler</A>
+</nobr><br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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="#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="#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.app.ActionBar.html#android.app.ActionBar.NAVIGATION_MODE_LIST" class="hiddenlink" target="rightframe">NAVIGATION_MODE_LIST</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.NAVIGATION_MODE_STANDARD" class="hiddenlink" target="rightframe">NAVIGATION_MODE_STANDARD</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.NAVIGATION_MODE_TABS" class="hiddenlink" target="rightframe">NAVIGATION_MODE_TABS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.System.html#android.provider.Settings.System.NEXT_ALARM_FORMATTED" class="hiddenlink" target="rightframe">NEXT_ALARM_FORMATTED</A>
+</nobr><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotos.html#android.provider.ContactsContract.StreamItemPhotos.PHOTO" class="hiddenlink" target="rightframe">PHOTO</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.PHOTO_FILE_ID" class="hiddenlink" target="rightframe">PHOTO_FILE_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.PHOTO_URI" class="hiddenlink" target="rightframe">PHOTO_URI</A>
+</nobr><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RAW_CONTACT_ID" class="hiddenlink" target="rightframe">RAW_CONTACT_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RAW_CONTACT_SOURCE_ID" class="hiddenlink" target="rightframe">RAW_CONTACT_SOURCE_ID</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.READ_SOCIAL_STREAM" class="hiddenlink" target="rightframe">READ_SOCIAL_STREAM</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RES_ICON" class="hiddenlink" target="rightframe">RES_ICON</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RES_LABEL" class="hiddenlink" target="rightframe">RES_LABEL</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RES_PACKAGE" class="hiddenlink" target="rightframe">RES_PACKAGE</A>
+</nobr><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#T"><font size="-2">T</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.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SORT_INDEX" class="hiddenlink" target="rightframe">SORT_INDEX</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.STREAM_DEFAULT" class="hiddenlink" target="rightframe">STREAM_DEFAULT</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.STREAM_ITEM_ID" class="hiddenlink" target="rightframe">STREAM_ITEM_ID</A>
+</nobr><br>
+<i>SYNC1</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC1" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC1" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<i>SYNC2</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC2" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC2" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<i>SYNC3</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC3" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC3" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<i>SYNC4</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC4" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC4" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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="#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.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.TEXT" class="hiddenlink" target="rightframe">TEXT</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_DeviceDefault_Widget_ActionBar_Subtitle_Inverse" class="hiddenlink" target="rightframe">TextAppearance_DeviceDefault_Widget_ActionBar_Subtitle_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_DeviceDefault_Widget_ActionBar_Title_Inverse" class="hiddenlink" target="rightframe">TextAppearance_DeviceDefault_Widget_ActionBar_Title_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_DeviceDefault_Widget_ActionMode_Subtitle_Inverse" class="hiddenlink" target="rightframe">TextAppearance_DeviceDefault_Widget_ActionMode_Subtitle_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_DeviceDefault_Widget_ActionMode_Title_Inverse" class="hiddenlink" target="rightframe">TextAppearance_DeviceDefault_Widget_ActionMode_Title_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.tickerView" class="hiddenlink" target="rightframe">tickerView</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.TIMESTAMP" class="hiddenlink" target="rightframe">TIMESTAMP</A>
+</nobr><br>
+<nobr><A HREF="android.util.Patterns.html#android.util.Patterns.TOP_LEVEL_DOMAIN" class="hiddenlink" target="rightframe">TOP_LEVEL_DOMAIN</A>
+</nobr><br>
+<nobr><A HREF="android.util.Patterns.html#android.util.Patterns.TOP_LEVEL_DOMAIN_STR" class="hiddenlink" target="rightframe">TOP_LEVEL_DOMAIN_STR</A>
+</nobr><br>
+<nobr><A HREF="android.util.Patterns.html#android.util.Patterns.TOP_LEVEL_DOMAIN_STR_FOR_WEB_URL" class="hiddenlink" target="rightframe">TOP_LEVEL_DOMAIN_STR_FOR_WEB_URL</A>
+</nobr><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_ActionBar_Solid_Inverse" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_ActionBar_Solid_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_ActionBar_TabBar_Inverse" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_ActionBar_TabBar_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_ActionBar_TabText_Inverse" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_ActionBar_TabText_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_ActionBar_TabView_Inverse" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_ActionBar_TabView_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_ActionMode_Inverse" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_ActionMode_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.WRITE_SOCIAL_STREAM" class="hiddenlink" target="rightframe">WRITE_SOCIAL_STREAM</A>
+</nobr><br>
+<script src="//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/21/changes/fields_index_removals.html b/docs/html/sdk/api_diff/21/changes/fields_index_removals.html
new file mode 100644
index 0000000..58bf200
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/fields_index_removals.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<b>Removals</b>
+  <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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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">
+<nobr><A HREF="android.view.Display.html#android.view.Display.STATE_DOZING" class="hiddenlink" target="rightframe"><strike>STATE_DOZING</strike></A>
+</nobr><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.TYPE_KEYGUARD" class="hiddenlink" target="rightframe"><strike>TYPE_KEYGUARD</strike></A>
+</nobr><br>
+<script src="//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/21/changes/java.util.Locale.html b/docs/html/sdk/api_diff/21/changes/java.util.Locale.html
new file mode 100644
index 0000000..5ab0909
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/java.util.Locale.html
@@ -0,0 +1,207 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Locale
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/Locale.html" target="_top"><font size="+2"><code>Locale</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.Locale.forLanguageTag_added(java.lang.String)"></A>
+  <nobr><code>Locale</code>&nbsp;<A HREF="../../../../reference/java/util/Locale.html#forLanguageTag(java.lang.String)" target="_top"><code>forLanguageTag</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.Locale.getDisplayScript_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/java/util/Locale.html#getDisplayScript()" target="_top"><code>getDisplayScript</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.Locale.getDisplayScript_added(java.util.Locale)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/java/util/Locale.html#getDisplayScript(java.util.Locale)" target="_top"><code>getDisplayScript</code></A>(<code>Locale</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.Locale.getExtension_added(char)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/java/util/Locale.html#getExtension(char)" target="_top"><code>getExtension</code></A>(<code>char</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.Locale.getExtensionKeys_added()"></A>
+  <nobr><code>Set&lt;Character&gt;</code>&nbsp;<A HREF="../../../../reference/java/util/Locale.html#getExtensionKeys()" target="_top"><code>getExtensionKeys</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.Locale.getScript_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/java/util/Locale.html#getScript()" target="_top"><code>getScript</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.Locale.getUnicodeLocaleAttributes_added()"></A>
+  <nobr><code>Set&lt;String&gt;</code>&nbsp;<A HREF="../../../../reference/java/util/Locale.html#getUnicodeLocaleAttributes()" target="_top"><code>getUnicodeLocaleAttributes</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.Locale.getUnicodeLocaleKeys_added()"></A>
+  <nobr><code>Set&lt;String&gt;</code>&nbsp;<A HREF="../../../../reference/java/util/Locale.html#getUnicodeLocaleKeys()" target="_top"><code>getUnicodeLocaleKeys</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.Locale.getUnicodeLocaleType_added(java.lang.String)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/java/util/Locale.html#getUnicodeLocaleType(java.lang.String)" target="_top"><code>getUnicodeLocaleType</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.Locale.toLanguageTag_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/java/util/Locale.html#toLanguageTag()" target="_top"><code>toLanguageTag</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="java.util.Locale.PRIVATE_USE_EXTENSION"></A>
+  <nobr><code>char</code>&nbsp;<A HREF="../../../../reference/java/util/Locale.html#PRIVATE_USE_EXTENSION" target="_top"><code>PRIVATE_USE_EXTENSION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.Locale.UNICODE_LOCALE_EXTENSION"></A>
+  <nobr><code>char</code>&nbsp;<A HREF="../../../../reference/java/util/Locale.html#UNICODE_LOCALE_EXTENSION" target="_top"><code>UNICODE_LOCALE_EXTENSION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/java.util.concurrent.ScheduledThreadPoolExecutor.html b/docs/html/sdk/api_diff/21/changes/java.util.concurrent.ScheduledThreadPoolExecutor.html
new file mode 100644
index 0000000..315f46f
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/java.util.concurrent.ScheduledThreadPoolExecutor.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ScheduledThreadPoolExecutor
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.concurrent.<A HREF="../../../../reference/java/util/concurrent/ScheduledThreadPoolExecutor.html" target="_top"><font size="+2"><code>ScheduledThreadPoolExecutor</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.ScheduledThreadPoolExecutor.getRemoveOnCancelPolicy_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/java/util/concurrent/ScheduledThreadPoolExecutor.html#getRemoveOnCancelPolicy()" target="_top"><code>getRemoveOnCancelPolicy</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.concurrent.ScheduledThreadPoolExecutor.setRemoveOnCancelPolicy_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/java/util/concurrent/ScheduledThreadPoolExecutor.html#setRemoveOnCancelPolicy(boolean)" target="_top"><code>setRemoveOnCancelPolicy</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html b/docs/html/sdk/api_diff/21/changes/java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html
new file mode 100644
index 0000000..07fee04
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AbstractQueuedLongSynchronizer
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.concurrent.locks.<A HREF="../../../../reference/java/util/concurrent/locks/AbstractQueuedLongSynchronizer.html" target="_top"><font size="+2"><code>AbstractQueuedLongSynchronizer</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.locks.AbstractQueuedLongSynchronizer.hasQueuedPredecessors_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/java/util/concurrent/locks/AbstractQueuedLongSynchronizer.html#hasQueuedPredecessors()" target="_top"><code>hasQueuedPredecessors</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/java.util.concurrent.locks.AbstractQueuedSynchronizer.html b/docs/html/sdk/api_diff/21/changes/java.util.concurrent.locks.AbstractQueuedSynchronizer.html
new file mode 100644
index 0000000..eddd315
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/java.util.concurrent.locks.AbstractQueuedSynchronizer.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AbstractQueuedSynchronizer
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.concurrent.locks.<A HREF="../../../../reference/java/util/concurrent/locks/AbstractQueuedSynchronizer.html" target="_top"><font size="+2"><code>AbstractQueuedSynchronizer</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.locks.AbstractQueuedSynchronizer.hasQueuedPredecessors_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/java/util/concurrent/locks/AbstractQueuedSynchronizer.html#hasQueuedPredecessors()" target="_top"><code>hasQueuedPredecessors</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/java.util.zip.ZipEntry.html b/docs/html/sdk/api_diff/21/changes/java.util.zip.ZipEntry.html
new file mode 100644
index 0000000..f230578
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/java.util.zip.ZipEntry.html
@@ -0,0 +1,395 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.zip.ZipEntry
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.zip.<A HREF="../../../../reference/java/util/zip/ZipEntry.html" target="_top"><font size="+2"><code>ZipEntry</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="java.util.zip.ZipEntry.CENATT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#CENATT" target="_top"><code>CENATT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.CENATX"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#CENATX" target="_top"><code>CENATX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.CENCOM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#CENCOM" target="_top"><code>CENCOM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.CENCRC"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#CENCRC" target="_top"><code>CENCRC</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.CENDSK"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#CENDSK" target="_top"><code>CENDSK</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.CENEXT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#CENEXT" target="_top"><code>CENEXT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.CENFLG"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#CENFLG" target="_top"><code>CENFLG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.CENHDR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#CENHDR" target="_top"><code>CENHDR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.CENHOW"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#CENHOW" target="_top"><code>CENHOW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.CENLEN"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#CENLEN" target="_top"><code>CENLEN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.CENNAM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#CENNAM" target="_top"><code>CENNAM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.CENOFF"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#CENOFF" target="_top"><code>CENOFF</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.CENSIG"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#CENSIG" target="_top"><code>CENSIG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.CENSIZ"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#CENSIZ" target="_top"><code>CENSIZ</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.CENTIM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#CENTIM" target="_top"><code>CENTIM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.CENVEM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#CENVEM" target="_top"><code>CENVEM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.CENVER"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#CENVER" target="_top"><code>CENVER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.ENDCOM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#ENDCOM" target="_top"><code>ENDCOM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.ENDHDR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#ENDHDR" target="_top"><code>ENDHDR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.ENDOFF"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#ENDOFF" target="_top"><code>ENDOFF</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.ENDSIG"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#ENDSIG" target="_top"><code>ENDSIG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.ENDSIZ"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#ENDSIZ" target="_top"><code>ENDSIZ</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.ENDSUB"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#ENDSUB" target="_top"><code>ENDSUB</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.ENDTOT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#ENDTOT" target="_top"><code>ENDTOT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.EXTCRC"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#EXTCRC" target="_top"><code>EXTCRC</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.EXTHDR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#EXTHDR" target="_top"><code>EXTHDR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.EXTLEN"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#EXTLEN" target="_top"><code>EXTLEN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.EXTSIG"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#EXTSIG" target="_top"><code>EXTSIG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.EXTSIZ"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#EXTSIZ" target="_top"><code>EXTSIZ</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.LOCCRC"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#LOCCRC" target="_top"><code>LOCCRC</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.LOCEXT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#LOCEXT" target="_top"><code>LOCEXT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.LOCFLG"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#LOCFLG" target="_top"><code>LOCFLG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.LOCHDR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#LOCHDR" target="_top"><code>LOCHDR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.LOCHOW"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#LOCHOW" target="_top"><code>LOCHOW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.LOCLEN"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#LOCLEN" target="_top"><code>LOCLEN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.LOCNAM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#LOCNAM" target="_top"><code>LOCNAM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.LOCSIG"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#LOCSIG" target="_top"><code>LOCSIG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.LOCSIZ"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#LOCSIZ" target="_top"><code>LOCSIZ</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.LOCTIM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#LOCTIM" target="_top"><code>LOCTIM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipEntry.LOCVER"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipEntry.html#LOCVER" target="_top"><code>LOCVER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/java.util.zip.ZipFile.html b/docs/html/sdk/api_diff/21/changes/java.util.zip.ZipFile.html
new file mode 100644
index 0000000..34ab37a
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/java.util.zip.ZipFile.html
@@ -0,0 +1,395 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.zip.ZipFile
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.zip.<A HREF="../../../../reference/java/util/zip/ZipFile.html" target="_top"><font size="+2"><code>ZipFile</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="java.util.zip.ZipFile.CENATT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#CENATT" target="_top"><code>CENATT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.CENATX"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#CENATX" target="_top"><code>CENATX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.CENCOM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#CENCOM" target="_top"><code>CENCOM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.CENCRC"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#CENCRC" target="_top"><code>CENCRC</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.CENDSK"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#CENDSK" target="_top"><code>CENDSK</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.CENEXT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#CENEXT" target="_top"><code>CENEXT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.CENFLG"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#CENFLG" target="_top"><code>CENFLG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.CENHDR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#CENHDR" target="_top"><code>CENHDR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.CENHOW"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#CENHOW" target="_top"><code>CENHOW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.CENLEN"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#CENLEN" target="_top"><code>CENLEN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.CENNAM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#CENNAM" target="_top"><code>CENNAM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.CENOFF"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#CENOFF" target="_top"><code>CENOFF</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.CENSIG"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#CENSIG" target="_top"><code>CENSIG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.CENSIZ"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#CENSIZ" target="_top"><code>CENSIZ</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.CENTIM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#CENTIM" target="_top"><code>CENTIM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.CENVEM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#CENVEM" target="_top"><code>CENVEM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.CENVER"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#CENVER" target="_top"><code>CENVER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.ENDCOM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#ENDCOM" target="_top"><code>ENDCOM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.ENDHDR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#ENDHDR" target="_top"><code>ENDHDR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.ENDOFF"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#ENDOFF" target="_top"><code>ENDOFF</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.ENDSIG"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#ENDSIG" target="_top"><code>ENDSIG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.ENDSIZ"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#ENDSIZ" target="_top"><code>ENDSIZ</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.ENDSUB"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#ENDSUB" target="_top"><code>ENDSUB</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.ENDTOT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#ENDTOT" target="_top"><code>ENDTOT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.EXTCRC"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#EXTCRC" target="_top"><code>EXTCRC</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.EXTHDR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#EXTHDR" target="_top"><code>EXTHDR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.EXTLEN"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#EXTLEN" target="_top"><code>EXTLEN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.EXTSIG"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#EXTSIG" target="_top"><code>EXTSIG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.EXTSIZ"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#EXTSIZ" target="_top"><code>EXTSIZ</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.LOCCRC"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#LOCCRC" target="_top"><code>LOCCRC</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.LOCEXT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#LOCEXT" target="_top"><code>LOCEXT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.LOCFLG"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#LOCFLG" target="_top"><code>LOCFLG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.LOCHDR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#LOCHDR" target="_top"><code>LOCHDR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.LOCHOW"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#LOCHOW" target="_top"><code>LOCHOW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.LOCLEN"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#LOCLEN" target="_top"><code>LOCLEN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.LOCNAM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#LOCNAM" target="_top"><code>LOCNAM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.LOCSIG"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#LOCSIG" target="_top"><code>LOCSIG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.LOCSIZ"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#LOCSIZ" target="_top"><code>LOCSIZ</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.LOCTIM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#LOCTIM" target="_top"><code>LOCTIM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipFile.LOCVER"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipFile.html#LOCVER" target="_top"><code>LOCVER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/java.util.zip.ZipInputStream.html b/docs/html/sdk/api_diff/21/changes/java.util.zip.ZipInputStream.html
new file mode 100644
index 0000000..ad26a06
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/java.util.zip.ZipInputStream.html
@@ -0,0 +1,395 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.zip.ZipInputStream
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.zip.<A HREF="../../../../reference/java/util/zip/ZipInputStream.html" target="_top"><font size="+2"><code>ZipInputStream</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="java.util.zip.ZipInputStream.CENATT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#CENATT" target="_top"><code>CENATT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.CENATX"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#CENATX" target="_top"><code>CENATX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.CENCOM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#CENCOM" target="_top"><code>CENCOM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.CENCRC"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#CENCRC" target="_top"><code>CENCRC</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.CENDSK"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#CENDSK" target="_top"><code>CENDSK</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.CENEXT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#CENEXT" target="_top"><code>CENEXT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.CENFLG"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#CENFLG" target="_top"><code>CENFLG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.CENHDR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#CENHDR" target="_top"><code>CENHDR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.CENHOW"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#CENHOW" target="_top"><code>CENHOW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.CENLEN"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#CENLEN" target="_top"><code>CENLEN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.CENNAM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#CENNAM" target="_top"><code>CENNAM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.CENOFF"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#CENOFF" target="_top"><code>CENOFF</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.CENSIG"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#CENSIG" target="_top"><code>CENSIG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.CENSIZ"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#CENSIZ" target="_top"><code>CENSIZ</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.CENTIM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#CENTIM" target="_top"><code>CENTIM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.CENVEM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#CENVEM" target="_top"><code>CENVEM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.CENVER"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#CENVER" target="_top"><code>CENVER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.ENDCOM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#ENDCOM" target="_top"><code>ENDCOM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.ENDHDR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#ENDHDR" target="_top"><code>ENDHDR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.ENDOFF"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#ENDOFF" target="_top"><code>ENDOFF</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.ENDSIG"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#ENDSIG" target="_top"><code>ENDSIG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.ENDSIZ"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#ENDSIZ" target="_top"><code>ENDSIZ</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.ENDSUB"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#ENDSUB" target="_top"><code>ENDSUB</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.ENDTOT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#ENDTOT" target="_top"><code>ENDTOT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.EXTCRC"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#EXTCRC" target="_top"><code>EXTCRC</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.EXTHDR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#EXTHDR" target="_top"><code>EXTHDR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.EXTLEN"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#EXTLEN" target="_top"><code>EXTLEN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.EXTSIG"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#EXTSIG" target="_top"><code>EXTSIG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.EXTSIZ"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#EXTSIZ" target="_top"><code>EXTSIZ</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.LOCCRC"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#LOCCRC" target="_top"><code>LOCCRC</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.LOCEXT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#LOCEXT" target="_top"><code>LOCEXT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.LOCFLG"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#LOCFLG" target="_top"><code>LOCFLG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.LOCHDR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#LOCHDR" target="_top"><code>LOCHDR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.LOCHOW"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#LOCHOW" target="_top"><code>LOCHOW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.LOCLEN"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#LOCLEN" target="_top"><code>LOCLEN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.LOCNAM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#LOCNAM" target="_top"><code>LOCNAM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.LOCSIG"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#LOCSIG" target="_top"><code>LOCSIG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.LOCSIZ"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#LOCSIZ" target="_top"><code>LOCSIZ</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.LOCTIM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#LOCTIM" target="_top"><code>LOCTIM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipInputStream.LOCVER"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipInputStream.html#LOCVER" target="_top"><code>LOCVER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/java.util.zip.ZipOutputStream.html b/docs/html/sdk/api_diff/21/changes/java.util.zip.ZipOutputStream.html
new file mode 100644
index 0000000..cfa92ac
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/java.util.zip.ZipOutputStream.html
@@ -0,0 +1,395 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.zip.ZipOutputStream
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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.zip.<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html" target="_top"><font size="+2"><code>ZipOutputStream</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="java.util.zip.ZipOutputStream.CENATT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#CENATT" target="_top"><code>CENATT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.CENATX"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#CENATX" target="_top"><code>CENATX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.CENCOM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#CENCOM" target="_top"><code>CENCOM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.CENCRC"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#CENCRC" target="_top"><code>CENCRC</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.CENDSK"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#CENDSK" target="_top"><code>CENDSK</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.CENEXT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#CENEXT" target="_top"><code>CENEXT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.CENFLG"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#CENFLG" target="_top"><code>CENFLG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.CENHDR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#CENHDR" target="_top"><code>CENHDR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.CENHOW"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#CENHOW" target="_top"><code>CENHOW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.CENLEN"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#CENLEN" target="_top"><code>CENLEN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.CENNAM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#CENNAM" target="_top"><code>CENNAM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.CENOFF"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#CENOFF" target="_top"><code>CENOFF</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.CENSIG"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#CENSIG" target="_top"><code>CENSIG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.CENSIZ"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#CENSIZ" target="_top"><code>CENSIZ</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.CENTIM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#CENTIM" target="_top"><code>CENTIM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.CENVEM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#CENVEM" target="_top"><code>CENVEM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.CENVER"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#CENVER" target="_top"><code>CENVER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.ENDCOM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#ENDCOM" target="_top"><code>ENDCOM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.ENDHDR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#ENDHDR" target="_top"><code>ENDHDR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.ENDOFF"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#ENDOFF" target="_top"><code>ENDOFF</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.ENDSIG"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#ENDSIG" target="_top"><code>ENDSIG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.ENDSIZ"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#ENDSIZ" target="_top"><code>ENDSIZ</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.ENDSUB"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#ENDSUB" target="_top"><code>ENDSUB</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.ENDTOT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#ENDTOT" target="_top"><code>ENDTOT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.EXTCRC"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#EXTCRC" target="_top"><code>EXTCRC</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.EXTHDR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#EXTHDR" target="_top"><code>EXTHDR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.EXTLEN"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#EXTLEN" target="_top"><code>EXTLEN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.EXTSIG"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#EXTSIG" target="_top"><code>EXTSIG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.EXTSIZ"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#EXTSIZ" target="_top"><code>EXTSIZ</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.LOCCRC"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#LOCCRC" target="_top"><code>LOCCRC</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.LOCEXT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#LOCEXT" target="_top"><code>LOCEXT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.LOCFLG"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#LOCFLG" target="_top"><code>LOCFLG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.LOCHDR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#LOCHDR" target="_top"><code>LOCHDR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.LOCHOW"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#LOCHOW" target="_top"><code>LOCHOW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.LOCLEN"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#LOCLEN" target="_top"><code>LOCLEN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.LOCNAM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#LOCNAM" target="_top"><code>LOCNAM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.LOCSIG"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#LOCSIG" target="_top"><code>LOCSIG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.LOCSIZ"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#LOCSIZ" target="_top"><code>LOCSIZ</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.LOCTIM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#LOCTIM" target="_top"><code>LOCTIM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.zip.ZipOutputStream.LOCVER"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/util/zip/ZipOutputStream.html#LOCVER" target="_top"><code>LOCVER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/jdiff_help.html b/docs/html/sdk/api_diff/21/changes/jdiff_help.html
new file mode 100644
index 0000000..804faa5
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/jdiff_help.html
@@ -0,0 +1,134 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>21</code></B></FONT></A>&nbsp;</TD>
+      <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="changes-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
+      <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> &nbsp;<FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
+      <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1"> &nbsp;<FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
+      <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="jdiff_statistics.html"><FONT CLASS="NavBarFont1"><B>Statistics</B></FONT></A>&nbsp;</TD>
+      <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Help</B></FONT>&nbsp;</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>  &nbsp;
+  &nbsp;<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="//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/21/changes/jdiff_statistics.html b/docs/html/sdk/api_diff/21/changes/jdiff_statistics.html
new file mode 100644
index 0000000..4a1d81f
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/jdiff_statistics.html
@@ -0,0 +1,2221 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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&nbsp;Change&nbsp;Statistics</h1>
+<p>The overall difference between API Levels 20 and 21 is approximately <span style="color:222;font-weight:bold;">6.51%</span>.
+</p>
+<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 added, changed, or removed. The table includes only the highest-level program elements &mdash; 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>Type</th>
+  <TH ALIGN="center"><b>Additions</b></TH>
+  <TH ALIGN="center"><b>Changes</b></TH>
+  <TH ALIGN="center">Removals</TH>
+  <TH ALIGN="center"><b>Total</b></TH>
+</TR>
+<TR>
+  <TD>Packages</TD>
+  <TD ALIGN="right">14</TD>
+  <TD ALIGN="right">57</TD>
+  <TD ALIGN="right">1</TD>
+  <TD ALIGN="right">72</TD>
+</TR>
+<TR>
+  <TD>Classes and <i>Interfaces</i></TD>
+  <TD ALIGN="right">147</TD>
+  <TD ALIGN="right">360</TD>
+  <TD ALIGN="right">0</TD>
+  <TD ALIGN="right">507</TD>
+</TR>
+<TR>
+  <TD>Constructors</TD>
+  <TD ALIGN="right">98</TD>
+  <TD ALIGN="right">3</TD>
+  <TD ALIGN="right">1</TD>
+  <TD ALIGN="right">102</TD>
+</TR>
+<TR>
+  <TD>Methods</TD>
+  <TD ALIGN="right">770</TD>
+  <TD ALIGN="right">117</TD>
+  <TD ALIGN="right">29</TD>
+  <TD ALIGN="right">916</TD>
+</TR>
+<TR>
+  <TD>Fields</TD>
+  <TD ALIGN="right">1150</TD>
+  <TD ALIGN="right">75</TD>
+  <TD ALIGN="right">2</TD>
+  <TD ALIGN="right">1227</TD>
+</TR>
+<TR>
+  <TD style="background-color:#FAFAFA"><b>Total</b></TD>
+  <TD  style="background-color:#FAFAFA" ALIGN="right"><strong>2179</strong></TD>
+  <TD  style="background-color:#FAFAFA" ALIGN="right"><strong>612</strong></TD>
+  <TD  style="background-color:#FAFAFA" ALIGN="right"><strong>33</strong></TD>
+  <TD  style="background-color:#FAFAFA" ALIGN="right"><strong>2824</strong></TD>
+</TR>
+</TABLE>
+<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">59</TD>
+  <TD><A HREF="pkg_android.service.notification.html">android.service.notification</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">46</TD>
+  <TD><A HREF="pkg_android.transition.html">android.transition</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">21</TD>
+  <TD><A HREF="pkg_android.net.html">android.net</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">20</TD>
+  <TD><A HREF="pkg_android.speech.tts.html">android.speech.tts</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">20</TD>
+  <TD><A HREF="pkg_android.graphics.pdf.html">android.graphics.pdf</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">19</TD>
+  <TD><A HREF="pkg_android.hardware.display.html">android.hardware.display</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">18</TD>
+  <TD><A HREF="pkg_android.content.pm.html">android.content.pm</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">18</TD>
+  <TD><A HREF="pkg_android.hardware.html">android.hardware</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">17</TD>
+  <TD><A HREF="pkg_android.app.admin.html">android.app.admin</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">16</TD>
+  <TD><A HREF="pkg_android.animation.html">android.animation</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">16</TD>
+  <TD><A HREF="pkg_android.text.style.html">android.text.style</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">13</TD>
+  <TD><A HREF="pkg_android.view.accessibility.html">android.view.accessibility</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">13</TD>
+  <TD><A HREF="pkg_java.util.zip.html">java.util.zip</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="pkg_android.util.html">android.util</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="pkg_java.util.concurrent.html">java.util.concurrent</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="pkg_android.media.html">android.media</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="pkg_android.graphics.drawable.html">android.graphics.drawable</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="pkg_android.hardware.usb.html">android.hardware.usb</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="pkg_android.opengl.html">android.opengl</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="pkg_android.webkit.html">android.webkit</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="pkg_android.nfc.cardemulation.html">android.nfc.cardemulation</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="pkg_android.view.inputmethod.html">android.view.inputmethod</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="pkg_android.appwidget.html">android.appwidget</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="pkg_android.provider.html">android.provider</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="pkg_android.telephony.html">android.telephony</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="pkg_android.net.wifi.html">android.net.wifi</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.widget.html">android.widget</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="pkg_android.os.html">android.os</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="pkg_android.html">android</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="pkg_android.net.http.html">android.net.http</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="pkg_android.preference.html">android.preference</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="pkg_android.view.html">android.view</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="pkg_android.accessibilityservice.html">android.accessibilityservice</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="pkg_android.service.dreams.html">android.service.dreams</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="pkg_android.content.res.html">android.content.res</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="pkg_android.net.nsd.html">android.net.nsd</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="pkg_android.renderscript.html">android.renderscript</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</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_android.graphics.html">android.graphics</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.view.textservice.html">android.view.textservice</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="pkg_android.service.wallpaper.html">android.service.wallpaper</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="pkg_android.media.audiofx.html">android.media.audiofx</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="pkg_android.bluetooth.html">android.bluetooth</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">&lt;1</TD>
+  <TD><A HREF="pkg_android.graphics.drawable.shapes.html">android.graphics.drawable.shapes</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.content.html">android.content</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.printservice.html">android.printservice</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.test.mock.html">android.test.mock</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.text.html">android.text</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.location.html">android.location</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.app.backup.html">android.app.backup</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_java.util.concurrent.locks.html">java.util.concurrent.locks</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.nfc.html">android.nfc</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.accounts.html">android.accounts</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.gesture.html">android.gesture</A></TD>
+</TR>
+</TABLE>
+<p style="font-size:10px">* See <a href="#calculation">Calculation of Change Percentages</a>, below.</p>
+<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%">Percentage<br>Difference*</TH>
+  <TH><b>Class or <i>Interface</i></b></TH>
+</TR>
+<TR>
+  <TD ALIGN="center">83</TD>
+  <TD><A HREF="android.opengl.EGLObjectHandle.html">
+android.opengl.EGLObjectHandle</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">83</TD>
+  <TD><A HREF="java.util.zip.ZipInputStream.html">
+java.util.zip.ZipInputStream</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">80</TD>
+  <TD><A HREF="android.media.MediaCodecList.html">
+android.media.MediaCodecList</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">71</TD>
+  <TD><A HREF="java.util.zip.ZipOutputStream.html">
+java.util.zip.ZipOutputStream</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">70</TD>
+  <TD><A HREF="android.service.notification.NotificationListenerService.html">
+android.service.notification.NotificationListenerService</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">62</TD>
+  <TD><A HREF="java.util.zip.ZipFile.html">
+java.util.zip.ZipFile</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">60</TD>
+  <TD><A HREF="android.os.Vibrator.html">
+android.os.Vibrator</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">58</TD>
+  <TD><A HREF="android.telephony.SmsManager.html">
+android.telephony.SmsManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.app.ActionBar.OnNavigationListener.html">
+<i>android.app.ActionBar.OnNavigationListener</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.graphics.Rasterizer.html">
+android.graphics.Rasterizer</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.hardware.Camera.AutoFocusCallback.html">
+<i>android.hardware.Camera.AutoFocusCallback</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.hardware.Camera.AutoFocusMoveCallback.html">
+<i>android.hardware.Camera.AutoFocusMoveCallback</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.hardware.Camera.ErrorCallback.html">
+<i>android.hardware.Camera.ErrorCallback</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.hardware.Camera.FaceDetectionListener.html">
+<i>android.hardware.Camera.FaceDetectionListener</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.hardware.Camera.OnZoomChangeListener.html">
+<i>android.hardware.Camera.OnZoomChangeListener</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.hardware.Camera.PictureCallback.html">
+<i>android.hardware.Camera.PictureCallback</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.hardware.Camera.PreviewCallback.html">
+<i>android.hardware.Camera.PreviewCallback</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.hardware.Camera.ShutterCallback.html">
+<i>android.hardware.Camera.ShutterCallback</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.provider.ContactsContract.Contacts.StreamItems.html">
+android.provider.ContactsContract.Contacts.StreamItems</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.provider.ContactsContract.PhoneLookup.html">
+android.provider.ContactsContract.PhoneLookup</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.provider.ContactsContract.RawContacts.StreamItems.html">
+android.provider.ContactsContract.RawContacts.StreamItems</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.provider.ContactsContract.StreamItemPhotos.html">
+android.provider.ContactsContract.StreamItemPhotos</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html">
+<i>android.provider.ContactsContract.StreamItemPhotosColumns</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.provider.ContactsContract.StreamItems.html">
+android.provider.ContactsContract.StreamItems</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html">
+android.provider.ContactsContract.StreamItems.StreamItemPhotos</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.provider.ContactsContract.StreamItemsColumns.html">
+<i>android.provider.ContactsContract.StreamItemsColumns</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">48</TD>
+  <TD><A HREF="java.util.zip.ZipEntry.html">
+java.util.zip.ZipEntry</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">44</TD>
+  <TD><A HREF="android.webkit.CookieSyncManager.html">
+android.webkit.CookieSyncManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">42</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html">
+android.provider.ContactsContract.CommonDataKinds.Note</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">41</TD>
+  <TD><A HREF="android.graphics.drawable.RotateDrawable.html">
+android.graphics.drawable.RotateDrawable</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">38</TD>
+  <TD><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html">
+android.view.accessibility.AccessibilityNodeInfo.CollectionInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">37</TD>
+  <TD><A HREF="android.app.admin.DevicePolicyManager.html">
+android.app.admin.DevicePolicyManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">36</TD>
+  <TD><A HREF="android.transition.Visibility.html">
+android.transition.Visibility</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">36</TD>
+  <TD><A HREF="android.animation.ObjectAnimator.html">
+android.animation.ObjectAnimator</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">36</TD>
+  <TD><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html">
+android.view.accessibility.CaptioningManager.CaptionStyle</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">35</TD>
+  <TD><A HREF="android.speech.tts.TextToSpeech.html">
+android.speech.tts.TextToSpeech</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">34</TD>
+  <TD><A HREF="android.os.UserManager.html">
+android.os.UserManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">33</TD>
+  <TD><A HREF="android.media.MediaFormat.html">
+android.media.MediaFormat</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">33</TD>
+  <TD><A HREF="android.media.MediaMuxer.OutputFormat.html">
+android.media.MediaMuxer.OutputFormat</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">33</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html">
+android.provider.ContactsContract.CommonDataKinds.GroupMembership</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">33</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html">
+android.provider.ContactsContract.CommonDataKinds.Identity</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">33</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html">
+android.provider.ContactsContract.CommonDataKinds.Photo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">33</TD>
+  <TD><A HREF="android.renderscript.ScriptC.html">
+android.renderscript.ScriptC</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">33</TD>
+  <TD><A HREF="android.speech.tts.UtteranceProgressListener.html">
+android.speech.tts.UtteranceProgressListener</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">33</TD>
+  <TD><A HREF="android.transition.AutoTransition.html">
+android.transition.AutoTransition</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">32</TD>
+  <TD><A HREF="android.webkit.CookieManager.html">
+android.webkit.CookieManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">30</TD>
+  <TD><A HREF="android.media.audiofx.Virtualizer.html">
+android.media.audiofx.Virtualizer</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">30</TD>
+  <TD><A HREF="android.widget.ProgressBar.html">
+android.widget.ProgressBar</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">30</TD>
+  <TD><A HREF="android.webkit.WebResourceResponse.html">
+android.webkit.WebResourceResponse</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">28</TD>
+  <TD><A HREF="android.media.Ringtone.html">
+android.media.Ringtone</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">28</TD>
+  <TD><A HREF="android.os.PowerManager.html">
+android.os.PowerManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">28</TD>
+  <TD><A HREF="android.view.WindowInsets.html">
+android.view.WindowInsets</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">28</TD>
+  <TD><A HREF="android.widget.AbsSeekBar.html">
+android.widget.AbsSeekBar</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">27</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html">
+android.provider.ContactsContract.CommonDataKinds.Contactables</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">27</TD>
+  <TD><A HREF="android.provider.ContactsContract.Data.html">
+android.provider.ContactsContract.Data</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">27</TD>
+  <TD><A HREF="android.transition.Transition.html">
+android.transition.Transition</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">26</TD>
+  <TD><A HREF="android.animation.PropertyValuesHolder.html">
+android.animation.PropertyValuesHolder</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">25</TD>
+  <TD><A HREF="android.media.RemoteControlClient.MetadataEditor.html">
+android.media.RemoteControlClient.MetadataEditor</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">25</TD>
+  <TD><A HREF="android.net.ConnectivityManager.html">
+android.net.ConnectivityManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">25</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html">
+android.provider.ContactsContract.CommonDataKinds.Event</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">24</TD>
+  <TD><A HREF="android.provider.CallLog.Calls.html">
+android.provider.CallLog.Calls</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">23</TD>
+  <TD><A HREF="android.app.ActionBar.html">
+android.app.ActionBar</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">23</TD>
+  <TD><A HREF="android.app.ActivityOptions.html">
+android.app.ActivityOptions</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">23</TD>
+  <TD><A HREF="android.speech.tts.SynthesisCallback.html">
+<i>android.speech.tts.SynthesisCallback</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">22</TD>
+  <TD><A HREF="android.nfc.cardemulation.CardEmulation.html">
+android.nfc.cardemulation.CardEmulation</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">21</TD>
+  <TD><A HREF="android.widget.CheckedTextView.html">
+android.widget.CheckedTextView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">21</TD>
+  <TD><A HREF="android.widget.CompoundButton.html">
+android.widget.CompoundButton</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">20</TD>
+  <TD><A HREF="android.media.MediaCodec.html">
+android.media.MediaCodec</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">20</TD>
+  <TD><A HREF="android.R.style.html">
+android.R.style</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">20</TD>
+  <TD><A HREF="android.animation.AnimatorInflater.html">
+android.animation.AnimatorInflater</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">20</TD>
+  <TD><A HREF="android.animation.RectEvaluator.html">
+android.animation.RectEvaluator</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">20</TD>
+  <TD><A HREF="android.graphics.drawable.Drawable.ConstantState.html">
+android.graphics.drawable.Drawable.ConstantState</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">20</TD>
+  <TD><A HREF="android.media.MediaRecorder.VideoSource.html">
+android.media.MediaRecorder.VideoSource</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">20</TD>
+  <TD><A HREF="android.net.http.X509TrustManagerExtensions.html">
+android.net.http.X509TrustManagerExtensions</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">20</TD>
+  <TD><A HREF="android.os.Bundle.html">
+android.os.Bundle</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">20</TD>
+  <TD><A HREF="android.speech.tts.TextToSpeechService.html">
+android.speech.tts.TextToSpeechService</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">20</TD>
+  <TD><A HREF="android.text.InputFilter.LengthFilter.html">
+android.text.InputFilter.LengthFilter</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">20</TD>
+  <TD><A HREF="android.widget.EdgeEffect.html">
+android.widget.EdgeEffect</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">19</TD>
+  <TD><A HREF="android.app.Notification.html">
+android.app.Notification</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">19</TD>
+  <TD><A HREF="android.renderscript.ScriptIntrinsicBlend.html">
+android.renderscript.ScriptIntrinsicBlend</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">19</TD>
+  <TD><A HREF="android.speech.tts.SynthesisRequest.html">
+android.speech.tts.SynthesisRequest</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">18</TD>
+  <TD><A HREF="android.widget.FrameLayout.html">
+android.widget.FrameLayout</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">18</TD>
+  <TD><A HREF="android.provider.ContactsContract.html">
+android.provider.ContactsContract</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">18</TD>
+  <TD><A HREF="android.transition.ChangeBounds.html">
+android.transition.ChangeBounds</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">17</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html">
+android.provider.ContactsContract.CommonDataKinds.SipAddress</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">17</TD>
+  <TD><A HREF="android.transition.Scene.html">
+android.transition.Scene</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">17</TD>
+  <TD><A HREF="android.net.VpnService.Builder.html">
+android.net.VpnService.Builder</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">17</TD>
+  <TD><A HREF="android.app.UiAutomation.html">
+android.app.UiAutomation</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">16</TD>
+  <TD><A HREF="android.app.ActionBar.TabListener.html">
+<i>android.app.ActionBar.TabListener</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">16</TD>
+  <TD><A HREF="android.graphics.LayerRasterizer.html">
+android.graphics.LayerRasterizer</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">16</TD>
+  <TD><A HREF="android.hardware.Camera.Area.html">
+android.hardware.Camera.Area</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">16</TD>
+  <TD><A HREF="android.hardware.Camera.Size.html">
+android.hardware.Camera.Size</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">16</TD>
+  <TD><A HREF="android.net.wifi.WifiEnterpriseConfig.Eap.html">
+android.net.wifi.WifiEnterpriseConfig.Eap</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">16</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html">
+android.provider.ContactsContract.CommonDataKinds.StructuredName</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">16</TD>
+  <TD><A HREF="android.provider.ContactsContract.Contacts.Entity.html">
+android.provider.ContactsContract.Contacts.Entity</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">16</TD>
+  <TD><A HREF="android.telephony.PhoneNumberUtils.html">
+android.telephony.PhoneNumberUtils</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">15</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html">
+android.provider.ContactsContract.CommonDataKinds.Nickname</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">15</TD>
+  <TD><A HREF="android.provider.ContactsContract.Contacts.html">
+android.provider.ContactsContract.Contacts</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">15</TD>
+  <TD><A HREF="android.provider.DocumentsContract.html">
+android.provider.DocumentsContract</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">15</TD>
+  <TD><A HREF="android.renderscript.Type.html">
+android.renderscript.Type</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">15</TD>
+  <TD><A HREF="android.view.Window.html">
+android.view.Window</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">15</TD>
+  <TD><A HREF="android.hardware.usb.UsbDevice.html">
+android.hardware.usb.UsbDevice</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">15</TD>
+  <TD><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html">
+android.media.MediaCodecInfo.CodecProfileLevel</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.app.admin.DeviceAdminReceiver.html">
+android.app.admin.DeviceAdminReceiver</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.media.Image.html">
+android.media.Image</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.preference.CheckBoxPreference.html">
+android.preference.CheckBoxPreference</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.preference.PreferenceCategory.html">
+android.preference.PreferenceCategory</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html">
+android.provider.ContactsContract.CommonDataKinds.Website</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.provider.ContactsContract.QuickContact.html">
+android.provider.ContactsContract.QuickContact</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.renderscript.RenderScript.html">
+android.renderscript.RenderScript</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.transition.TransitionSet.html">
+android.transition.TransitionSet</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.html">
+android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.widget.AnalogClock.html">
+android.widget.AnalogClock</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.widget.Button.html">
+android.widget.Button</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.widget.CheckBox.html">
+android.widget.CheckBox</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.widget.ImageButton.html">
+android.widget.ImageButton</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.widget.RadioButton.html">
+android.widget.RadioButton</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.widget.Space.html">
+android.widget.Space</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.widget.StackView.html">
+android.widget.StackView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">13</TD>
+  <TD><A HREF="android.util.Patterns.html">
+android.util.Patterns</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">12</TD>
+  <TD><A HREF="android.content.res.Resources.Theme.html">
+android.content.res.Resources.Theme</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">12</TD>
+  <TD><A HREF="android.renderscript.ScriptIntrinsicHistogram.html">
+android.renderscript.ScriptIntrinsicHistogram</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="android.os.BatteryManager.html">
+android.os.BatteryManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="java.util.Locale.html">
+java.util.Locale</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="android.app.Notification.Builder.html">
+android.app.Notification.Builder</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="android.app.Fragment.html">
+android.app.Fragment</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="android.graphics.drawable.Drawable.html">
+android.graphics.drawable.Drawable</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="android.graphics.drawable.LayerDrawable.html">
+android.graphics.drawable.LayerDrawable</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="android.hardware.display.VirtualDisplay.html">
+android.hardware.display.VirtualDisplay</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="android.media.CamcorderProfile.html">
+android.media.CamcorderProfile</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="android.media.MediaRecorder.VideoEncoder.html">
+android.media.MediaRecorder.VideoEncoder</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="android.net.nsd.NsdServiceInfo.html">
+android.net.nsd.NsdServiceInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html">
+android.provider.ContactsContract.CommonDataKinds.Organization</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="android.provider.DocumentsProvider.html">
+android.provider.DocumentsProvider</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="android.renderscript.ScriptIntrinsic3DLUT.html">
+android.renderscript.ScriptIntrinsic3DLUT</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="android.telephony.PhoneNumberFormattingTextWatcher.html">
+android.telephony.PhoneNumberFormattingTextWatcher</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="android.transition.Fade.html">
+android.transition.Fade</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="android.widget.AbsoluteLayout.html">
+android.widget.AbsoluteLayout</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="android.widget.SeekBar.html">
+android.widget.SeekBar</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">10</TD>
+  <TD><A HREF="android.net.wifi.WifiManager.html">
+android.net.wifi.WifiManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">10</TD>
+  <TD><A HREF="android.app.SearchManager.html">
+android.app.SearchManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">10</TD>
+  <TD><A HREF="android.view.Display.html">
+android.view.Display</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">10</TD>
+  <TD><A HREF="android.content.pm.PackageInfo.html">
+android.content.pm.PackageInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">10</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html">
+android.provider.ContactsContract.CommonDataKinds.Email</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">10</TD>
+  <TD><A HREF="android.speech.tts.TextToSpeech.Engine.html">
+android.speech.tts.TextToSpeech.Engine</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">10</TD>
+  <TD><A HREF="android.os.Build.html">
+android.os.Build</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">10</TD>
+  <TD><A HREF="android.appwidget.AppWidgetProviderInfo.html">
+android.appwidget.AppWidgetProviderInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">10</TD>
+  <TD><A HREF="android.app.ActivityManager.html">
+android.app.ActivityManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">10</TD>
+  <TD><A HREF="android.hardware.usb.UsbInterface.html">
+android.hardware.usb.UsbInterface</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">10</TD>
+  <TD><A HREF="android.view.textservice.TextInfo.html">
+android.view.textservice.TextInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">10</TD>
+  <TD><A HREF="android.widget.AdapterViewFlipper.html">
+android.widget.AdapterViewFlipper</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.widget.Switch.html">
+android.widget.Switch</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html">
+android.media.MediaCodecInfo.CodecCapabilities</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.R.interpolator.html">
+android.R.interpolator</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.media.AudioFormat.html">
+android.media.AudioFormat</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.view.ViewParent.html">
+<i>android.view.ViewParent</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.bluetooth.BluetoothGatt.html">
+android.bluetooth.BluetoothGatt</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.service.notification.StatusBarNotification.html">
+android.service.notification.StatusBarNotification</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.webkit.WebViewClient.html">
+android.webkit.WebViewClient</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.bluetooth.BluetoothAdapter.html">
+android.bluetooth.BluetoothAdapter</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.app.ActivityManager.RecentTaskInfo.html">
+android.app.ActivityManager.RecentTaskInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.app.KeyguardManager.html">
+android.app.KeyguardManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.content.RestrictionEntry.html">
+android.content.RestrictionEntry</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.content.pm.ActivityInfo.html">
+android.content.pm.ActivityInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.content.pm.InstrumentationInfo.html">
+android.content.pm.InstrumentationInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.graphics.ImageFormat.html">
+android.graphics.ImageFormat</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.media.MediaCodec.CryptoException.html">
+android.media.MediaCodec.CryptoException</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.provider.ContactsContract.ContactOptionsColumns.html">
+<i>android.provider.ContactsContract.ContactOptionsColumns</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.provider.ContactsContract.ContactsColumns.html">
+<i>android.provider.ContactsContract.ContactsColumns</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.view.HapticFeedbackConstants.html">
+android.view.HapticFeedbackConstants</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.view.accessibility.AccessibilityNodeProvider.html">
+android.view.accessibility.AccessibilityNodeProvider</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.widget.MultiAutoCompleteTextView.html">
+android.widget.MultiAutoCompleteTextView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.widget.TwoLineListItem.html">
+android.widget.TwoLineListItem</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.widget.ZoomButton.html">
+android.widget.ZoomButton</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">8</TD>
+  <TD><A HREF="android.appwidget.AppWidgetManager.html">
+android.appwidget.AppWidgetManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">8</TD>
+  <TD><A HREF="android.media.AudioManager.html">
+android.media.AudioManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">8</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html">
+android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">8</TD>
+  <TD><A HREF="android.R.attr.html">
+android.R.attr</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">8</TD>
+  <TD><A HREF="android.hardware.Camera.CameraInfo.html">
+android.hardware.Camera.CameraInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">8</TD>
+  <TD><A HREF="android.hardware.display.DisplayManager.html">
+android.hardware.display.DisplayManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">8</TD>
+  <TD><A HREF="android.hardware.usb.UsbDeviceConnection.html">
+android.hardware.usb.UsbDeviceConnection</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">8</TD>
+  <TD><A HREF="android.preference.MultiSelectListPreference.html">
+android.preference.MultiSelectListPreference</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">8</TD>
+  <TD><A HREF="android.app.AlarmManager.html">
+android.app.AlarmManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">8</TD>
+  <TD><A HREF="android.widget.DatePicker.html">
+android.widget.DatePicker</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.graphics.Canvas.html">
+android.graphics.Canvas</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.inputmethodservice.ExtractEditText.html">
+android.inputmethodservice.ExtractEditText</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.media.MediaRecorder.AudioEncoder.html">
+android.media.MediaRecorder.AudioEncoder</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.net.Proxy.html">
+android.net.Proxy</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.os.PowerManager.WakeLock.html">
+android.os.PowerManager.WakeLock</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html">
+android.provider.ContactsContract.CommonDataKinds.Relation</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.provider.ContactsContract.GroupsColumns.html">
+<i>android.provider.ContactsContract.GroupsColumns</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.provider.ContactsContract.RawContactsColumns.html">
+<i>android.provider.ContactsContract.RawContactsColumns</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.renderscript.ScriptIntrinsicBlur.html">
+android.renderscript.ScriptIntrinsicBlur</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.renderscript.ScriptIntrinsicConvolve3x3.html">
+android.renderscript.ScriptIntrinsicConvolve3x3</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.renderscript.ScriptIntrinsicConvolve5x5.html">
+android.renderscript.ScriptIntrinsicConvolve5x5</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.hardware.Camera.Face.html">
+android.hardware.Camera.Face</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.net.wifi.WifiInfo.html">
+android.net.wifi.WifiInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.preference.ListPreference.html">
+android.preference.ListPreference</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.widget.QuickContactBadge.html">
+android.widget.QuickContactBadge</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html">
+android.provider.ContactsContract.CommonDataKinds.Im</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.graphics.drawable.GradientDrawable.html">
+android.graphics.drawable.GradientDrawable</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.graphics.Path.html">
+android.graphics.Path</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.appwidget.AppWidgetProvider.html">
+android.appwidget.AppWidgetProvider</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.media.MediaRecorder.OutputFormat.html">
+android.media.MediaRecorder.OutputFormat</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.preference.EditTextPreference.html">
+android.preference.EditTextPreference</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.renderscript.ScriptIntrinsicLUT.html">
+android.renderscript.ScriptIntrinsicLUT</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.widget.EditText.html">
+android.widget.EditText</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.widget.ImageView.html">
+android.widget.ImageView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.widget.ToggleButton.html">
+android.widget.ToggleButton</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html">
+java.util.concurrent.ScheduledThreadPoolExecutor</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.widget.GridLayout.html">
+android.widget.GridLayout</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.media.AudioTrack.html">
+android.media.AudioTrack</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.os.Environment.html">
+android.os.Environment</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.app.Activity.html">
+android.app.Activity</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.content.pm.PackageManager.html">
+android.content.pm.PackageManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.content.Context.html">
+android.content.Context</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.view.inputmethod.InputConnection.html">
+<i>android.view.inputmethod.InputConnection</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.hardware.Sensor.html">
+android.hardware.Sensor</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.bluetooth.BluetoothGattServerCallback.html">
+android.bluetooth.BluetoothGattServerCallback</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.graphics.drawable.shapes.Shape.html">
+android.graphics.drawable.shapes.Shape</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.view.SurfaceView.html">
+android.view.SurfaceView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.view.accessibility.AccessibilityNodeInfo.html">
+android.view.accessibility.AccessibilityNodeInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.view.ViewPropertyAnimator.html">
+android.view.ViewPropertyAnimator</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.webkit.WebChromeClient.html">
+android.webkit.WebChromeClient</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.app.AppOpsManager.html">
+android.app.AppOpsManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.widget.TabHost.html">
+android.widget.TabHost</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.view.ViewGroup.html">
+android.view.ViewGroup</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.provider.Settings.html">
+android.provider.Settings</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.app.MediaRouteButton.html">
+android.app.MediaRouteButton</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.content.res.AssetManager.AssetInputStream.html">
+android.content.res.AssetManager.AssetInputStream</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.inputmethodservice.InputMethodService.InputMethodSessionImpl.html">
+android.inputmethodservice.InputMethodService.InputMethodSessionImpl</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.media.MediaPlayer.TrackInfo.html">
+android.media.MediaPlayer.TrackInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.preference.SwitchPreference.html">
+android.preference.SwitchPreference</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.provider.MediaStore.Audio.Media.html">
+android.provider.MediaStore.Audio.Media</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.provider.Telephony.ThreadsColumns.html">
+<i>android.provider.Telephony.ThreadsColumns</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.view.KeyEvent.html">
+android.view.KeyEvent</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.app.FragmentBreadCrumbs.html">
+android.app.FragmentBreadCrumbs</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.location.SettingInjectorService.html">
+android.location.SettingInjectorService</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.webkit.WebSyncManager.html">
+android.webkit.WebSyncManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.app.backup.BackupAgent.html">
+android.app.backup.BackupAgent</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.bluetooth.BluetoothGattCallback.html">
+android.bluetooth.BluetoothGattCallback</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.content.res.ColorStateList.html">
+android.content.res.ColorStateList</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.graphics.BitmapFactory.Options.html">
+android.graphics.BitmapFactory.Options</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html">
+android.provider.ContactsContract.CommonDataKinds.Phone</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.provider.MediaStore.html">
+android.provider.MediaStore</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.widget.TimePicker.html">
+android.widget.TimePicker</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.content.pm.ApplicationInfo.html">
+android.content.pm.ApplicationInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.telephony.TelephonyManager.html">
+android.telephony.TelephonyManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.media.RemoteController.html">
+android.media.RemoteController</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.graphics.SurfaceTexture.html">
+android.graphics.SurfaceTexture</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.os.Build.VERSION_CODES.html">
+android.os.Build.VERSION_CODES</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.renderscript.ScriptIntrinsicColorMatrix.html">
+android.renderscript.ScriptIntrinsicColorMatrix</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.view.inputmethod.InputMethodSession.html">
+<i>android.view.inputmethod.InputMethodSession</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.widget.AbsSpinner.html">
+android.widget.AbsSpinner</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.widget.Chronometer.html">
+android.widget.Chronometer</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.renderscript.Allocation.html">
+android.renderscript.Allocation</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.accessibilityservice.AccessibilityService.html">
+android.accessibilityservice.AccessibilityService</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.appwidget.AppWidgetHost.html">
+android.appwidget.AppWidgetHost</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.net.wifi.WpsInfo.html">
+android.net.wifi.WpsInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.provider.DocumentsContract.Root.html">
+android.provider.DocumentsContract.Root</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.provider.VoicemailContract.Voicemails.html">
+android.provider.VoicemailContract.Voicemails</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.view.ViewStub.html">
+android.view.ViewStub</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.widget.TextClock.html">
+android.widget.TextClock</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.graphics.Paint.html">
+android.graphics.Paint</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.os.Parcel.html">
+android.os.Parcel</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.webkit.WebView.html">
+android.webkit.WebView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.preference.RingtonePreference.html">
+android.preference.RingtonePreference</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.preference.TwoStatePreference.html">
+android.preference.TwoStatePreference</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.printservice.PrintService.html">
+android.printservice.PrintService</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.widget.RatingBar.html">
+android.widget.RatingBar</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.widget.VideoView.html">
+android.widget.VideoView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.content.res.AssetManager.html">
+android.content.res.AssetManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.content.res.TypedArray.html">
+android.content.res.TypedArray</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.view.View.html">
+android.view.View</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.app.UiModeManager.html">
+android.app.UiModeManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.preference.DialogPreference.html">
+android.preference.DialogPreference</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.widget.Gallery.html">
+android.widget.Gallery</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.view.inputmethod.InputMethodManager.html">
+android.view.inputmethod.InputMethodManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.preference.PreferenceGroup.html">
+android.preference.PreferenceGroup</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.provider.DocumentsContract.Document.html">
+android.provider.DocumentsContract.Document</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.widget.SearchView.html">
+android.widget.SearchView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.app.Instrumentation.html">
+android.app.Instrumentation</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.media.MediaMetadataEditor.html">
+android.media.MediaMetadataEditor</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.R.id.html">
+android.R.id</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.widget.HorizontalScrollView.html">
+android.widget.HorizontalScrollView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.widget.ScrollView.html">
+android.widget.ScrollView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.widget.TabWidget.html">
+android.widget.TabWidget</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.widget.ListView.html">
+android.widget.ListView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.widget.NumberPicker.html">
+android.widget.NumberPicker</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.media.SoundPool.html">
+android.media.SoundPool</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.media.MediaPlayer.html">
+android.media.MediaPlayer</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.media.MediaRecorder.html">
+android.media.MediaRecorder</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.net.wifi.WifiConfiguration.html">
+android.net.wifi.WifiConfiguration</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.util.LruCache.html">
+android.util.LruCache</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.Manifest.permission.html">
+android.Manifest.permission</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.app.ActionBar.Tab.html">
+android.app.ActionBar.Tab</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.inputmethodservice.InputMethodService.html">
+android.inputmethodservice.InputMethodService</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.provider.Telephony.BaseMmsColumns.html">
+<i>android.provider.Telephony.BaseMmsColumns</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.widget.TextView.html">
+android.widget.TextView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.content.pm.PermissionInfo.html">
+android.content.pm.PermissionInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.view.TextureView.html">
+android.view.TextureView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.webkit.WebSettings.html">
+android.webkit.WebSettings</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.media.Rating.html">
+android.media.Rating</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.service.wallpaper.WallpaperService.Engine.html">
+android.service.wallpaper.WallpaperService.Engine</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.util.DisplayMetrics.html">
+android.util.DisplayMetrics</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.widget.SlidingDrawer.html">
+android.widget.SlidingDrawer</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.service.dreams.DreamService.html">
+android.service.dreams.DreamService</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.widget.AbsListView.html">
+android.widget.AbsListView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.widget.Spinner.html">
+android.widget.Spinner</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.view.inputmethod.InputConnectionWrapper.html">
+android.view.inputmethod.InputConnectionWrapper</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.content.res.Resources.html">
+android.content.res.Resources</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.util.ArrayMap.html">
+android.util.ArrayMap</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html">
+android.app.ActivityManager.RunningAppProcessInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.content.ContentResolver.html">
+android.content.ContentResolver</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.provider.ContactsContract.DataColumns.html">
+<i>android.provider.ContactsContract.DataColumns</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.widget.GridView.html">
+android.widget.GridView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.view.InputDevice.html">
+android.view.InputDevice</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.provider.Settings.Secure.html">
+android.provider.Settings.Secure</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.os.Message.html">
+android.os.Message</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.provider.Telephony.TextBasedSmsColumns.html">
+<i>android.provider.Telephony.TextBasedSmsColumns</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.view.inputmethod.BaseInputConnection.html">
+android.view.inputmethod.BaseInputConnection</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.widget.AdapterViewAnimator.html">
+android.widget.AdapterViewAnimator</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.widget.PopupWindow.html">
+android.widget.PopupWindow</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.media.RemoteControlClient.html">
+android.media.RemoteControlClient</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.text.SpannableStringBuilder.html">
+android.text.SpannableStringBuilder</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.inputmethodservice.KeyboardView.html">
+android.inputmethodservice.KeyboardView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.widget.LinearLayout.html">
+android.widget.LinearLayout</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html">
+java.util.concurrent.locks.AbstractQueuedLongSynchronizer</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="java.util.concurrent.locks.AbstractQueuedSynchronizer.html">
+java.util.concurrent.locks.AbstractQueuedSynchronizer</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.accounts.AccountManager.html">
+android.accounts.AccountManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.content.Intent.html">
+android.content.Intent</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.widget.AdapterView.html">
+android.widget.AdapterView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.nfc.NdefRecord.html">
+android.nfc.NdefRecord</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.app.FragmentTransaction.html">
+android.app.FragmentTransaction</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.widget.RelativeLayout.html">
+android.widget.RelativeLayout</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.media.MediaDrm.html">
+android.media.MediaDrm</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.nfc.NfcAdapter.html">
+android.nfc.NfcAdapter</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.widget.CalendarView.html">
+android.widget.CalendarView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.animation.ValueAnimator.html">
+android.animation.ValueAnimator</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.hardware.Camera.html">
+android.hardware.Camera</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.accessibilityservice.AccessibilityServiceInfo.html">
+android.accessibilityservice.AccessibilityServiceInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.widget.ExpandableListView.html">
+android.widget.ExpandableListView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.app.AlertDialog.Builder.html">
+android.app.AlertDialog.Builder</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.view.WindowManager.LayoutParams.html">
+android.view.WindowManager.LayoutParams</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.widget.AutoCompleteTextView.html">
+android.widget.AutoCompleteTextView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.gesture.GestureOverlayView.html">
+android.gesture.GestureOverlayView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="android.view.accessibility.AccessibilityEvent.html">
+android.view.accessibility.AccessibilityEvent</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="android.provider.Settings.Global.html">
+android.provider.Settings.Global</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="android.graphics.Matrix.html">
+android.graphics.Matrix</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="android.os.Debug.html">
+android.os.Debug</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="android.hardware.SensorManager.html">
+android.hardware.SensorManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="android.preference.Preference.html">
+android.preference.Preference</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="android.app.Dialog.html">
+android.app.Dialog</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="android.provider.Settings.System.html">
+android.provider.Settings.System</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="android.hardware.Camera.Parameters.html">
+android.hardware.Camera.Parameters</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="android.opengl.GLES20.html">
+android.opengl.GLES20</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="android.view.MotionEvent.html">
+android.view.MotionEvent</A></TD>
+</TR>
+</TABLE>
+<p style="font-size:10px">* See <a href="#calculation">Calculation of Change Percentages</a>, below.</p>
+<br>
+<h2 id="calculation">Calculation of Change Percentages</h2>
+<p>
+The percent change statistic reported for all elements in the &quot;to&quot; 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%.</p>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/jdiff_topleftframe.html b/docs/html/sdk/api_diff/21/changes/jdiff_topleftframe.html
new file mode 100644
index 0000000..d39a99c
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/jdiff_topleftframe.html
@@ -0,0 +1,63 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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" style="margin: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="//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/21/changes/methods_index_additions.html b/docs/html/sdk/api_diff/21/changes/methods_index_additions.html
new file mode 100644
index 0000000..a7ed44e
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/methods_index_additions.html
@@ -0,0 +1,2412 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<A HREF="methods_index_removals.html" xclass="hiddenlink">Removals</A>
+  <br>
+<b>Additions</b>
+  <br>
+<A HREF="methods_index_changes.html"xclass="hiddenlink">Changes</A>
+  </td>
+  </tr>
+</table>
+<div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#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.CookieManager.html#android.webkit.CookieManager.acceptThirdPartyCookies_added(android.webkit.WebView)" class="hiddenlink" target="rightframe"><b>acceptThirdPartyCookies</b>
+(<code>WebView</code>)</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.addAction_added(android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction)" class="hiddenlink" target="rightframe"><b>addAction</b>
+(<code>AccessibilityAction</code>)</A></nobr><br>
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.addAllowedApplication_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>addAllowedApplication</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.addAppTask_added(android.app.Activity, android.content.Intent, android.app.ActivityManager.TaskDescription, android.graphics.Bitmap)" class="hiddenlink" target="rightframe"><b>addAppTask</b>
+(<code>Activity, Intent, TaskDescription, Bitmap</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addArc_added(float, float, float, float, float, float)" class="hiddenlink" target="rightframe"><b>addArc</b>
+(<code>float, float, float, float, float, float</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addCrossProfileIntentFilter_added(android.content.ComponentName, android.content.IntentFilter, int)" class="hiddenlink" target="rightframe"><b>addCrossProfileIntentFilter</b>
+(<code>ComponentName, IntentFilter, int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>addCrossProfileWidgetProvider</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.addDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><b>addDefaultNetworkActiveListener</b>
+(<code>OnNetworkActiveListener</code>)</A></nobr><br>
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.addDisallowedApplication_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>addDisallowedApplication</b>
+(<code>String</code>)</A></nobr><br>
+<i>addEarcon</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.io.File)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, File</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, String</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addOval_added(float, float, float, float, android.graphics.Path.Direction)" class="hiddenlink" target="rightframe"><b>addOval</b>
+(<code>float, float, float, float, Direction</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addPersistentPreferredActivity_added(android.content.ComponentName, android.content.IntentFilter, android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>addPersistentPreferredActivity</b>
+(<code>ComponentName, IntentFilter, ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.addPerson_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>addPerson</b>
+(<code>String</code>)</A></nobr><br>
+<i>addRoundRect</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addRoundRect_added(float, float, float, float, float, float, android.graphics.Path.Direction)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float, float, float, float, float, float, Direction</code>)</b>&nbsp;in&nbsp;android.graphics.Path
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addRoundRect_added(float, float, float, float, float[], android.graphics.Path.Direction)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float, float, float, float, float[], Direction</code>)</b>&nbsp;in&nbsp;android.graphics.Path
+</A></nobr><br>
+<nobr><A HREF="android.app.FragmentTransaction.html#android.app.FragmentTransaction.addSharedElement_added(android.view.View, java.lang.String)" class="hiddenlink" target="rightframe"><b>addSharedElement</b>
+(<code>View, String</code>)</A></nobr><br>
+<i>addSpeech</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.io.File)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, File</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, String, int</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<i>addTarget</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.addTarget_added(java.lang.Class)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Class</code>)</b>&nbsp;in&nbsp;android.transition.Transition
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.addTarget_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.transition.Transition
+</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addUserRestriction_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>addUserRestriction</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.allowBypass_added()" class="hiddenlink" target="rightframe"><b>allowBypass</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.allowFamily_added(int)" class="hiddenlink" target="rightframe"><b>allowFamily</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.text.SpannableStringBuilder.html#android.text.SpannableStringBuilder.append_added(java.lang.CharSequence, java.lang.Object, int)" class="hiddenlink" target="rightframe"><b>append</b>
+(<code>CharSequence, Object, int</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.applyTheme_added(android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>applyTheme</b>
+(<code>Theme</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.arcTo_added(float, float, float, float, float, float, boolean)" class="hiddenlink" target="rightframe"><b>arcTo</b>
+(<code>float, float, float, float, float, float, boolean</code>)</A></nobr><br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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="#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.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.bindAppWidgetIdIfAllowed_added(int, android.os.UserHandle, android.content.ComponentName, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>bindAppWidgetIdIfAllowed</b>
+(<code>int, UserHandle, ComponentName, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.buildChildDocumentsUriUsingTree_added(android.net.Uri, java.lang.String)" class="hiddenlink" target="rightframe"><b>buildChildDocumentsUriUsingTree</b>
+(<code>Uri, String</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.buildDocumentUriUsingTree_added(android.net.Uri, java.lang.String)" class="hiddenlink" target="rightframe"><b>buildDocumentUriUsingTree</b>
+(<code>Uri, String</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.buildTreeDocumentUri_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>buildTreeDocumentUri</b>
+(<code>String, String</code>)</A></nobr><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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="#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.app.Instrumentation.html#android.app.Instrumentation.callActivityOnCreate_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>callActivityOnCreate</b>
+(<code>Activity, Bundle, PersistableBundle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Instrumentation.html#android.app.Instrumentation.callActivityOnPostCreate_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>callActivityOnPostCreate</b>
+(<code>Activity, Bundle, PersistableBundle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Instrumentation.html#android.app.Instrumentation.callActivityOnRestoreInstanceState_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>callActivityOnRestoreInstanceState</b>
+(<code>Activity, Bundle, PersistableBundle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Instrumentation.html#android.app.Instrumentation.callActivityOnSaveInstanceState_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>callActivityOnSaveInstanceState</b>
+(<code>Activity, Bundle, PersistableBundle</code>)</A></nobr><br>
+<i>canApplyTheme</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.canApplyTheme_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.graphics.drawable.Drawable
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.Drawable.ConstantState.html#android.graphics.drawable.Drawable.ConstantState.canApplyTheme_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.graphics.drawable.Drawable.ConstantState
+</A></nobr><br>
+<i>cancelNotification</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.cancelNotification_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.service.notification.NotificationListenerService
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.cancelNotification_added(java.lang.String, java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, String, int</code>)</b>&nbsp;in&nbsp;android.service.notification.NotificationListenerService
+</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.cancelNotifications_added(java.lang.String[])" class="hiddenlink" target="rightframe"><b>cancelNotifications</b>
+(<code>String[]</code>)</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.cancelSync_added(android.content.SyncRequest)" class="hiddenlink" target="rightframe"><b>cancelSync</b>
+(<code>SyncRequest</code>)</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.cancelWps_added(android.net.wifi.WifiManager.WpsCallback)" class="hiddenlink" target="rightframe"><b>cancelWps</b>
+(<code>WpsCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.canRemoveViews_added()" class="hiddenlink" target="rightframe"><b>canRemoveViews</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.canVirtualize_added(int, int)" class="hiddenlink" target="rightframe"><b>canVirtualize</b>
+(<code>int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.categoryAllowsForegroundPreference_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>categoryAllowsForegroundPreference</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.clearClientCertPreferences_added(java.lang.Runnable)" class="hiddenlink" target="rightframe"><b>clearClientCertPreferences</b>
+(<code>Runnable</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearCrossProfileIntentFilters_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>clearCrossProfileIntentFilters</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearDeviceOwnerApp_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>clearDeviceOwnerApp</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearPackagePersistentPreferredActivities_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>clearPackagePersistentPreferredActivities</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearUserRestriction_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>clearUserRestriction</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.clearWindowAnimationFrameStats_added()" class="hiddenlink" target="rightframe"><b>clearWindowAnimationFrameStats</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.clearWindowContentFrameStats_added(int)" class="hiddenlink" target="rightframe"><b>clearWindowContentFrameStats</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.computeSystemWindowInsets_added(android.view.WindowInsets, android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>computeSystemWindowInsets</b>
+(<code>WindowInsets, Rect</code>)</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.consumeStableInsets_added()" class="hiddenlink" target="rightframe"><b>consumeStableInsets</b>
+()</A></nobr><br>
+<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copy1DRangeFrom_added(int, int, java.lang.Object)" class="hiddenlink" target="rightframe"><b>copy1DRangeFrom</b>
+(<code>int, int, Object</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copy1DRangeFromUnchecked_added(int, int, java.lang.Object)" class="hiddenlink" target="rightframe"><b>copy1DRangeFromUnchecked</b>
+(<code>int, int, Object</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copy2DRangeFrom_added(int, int, int, int, java.lang.Object)" class="hiddenlink" target="rightframe"><b>copy2DRangeFrom</b>
+(<code>int, int, int, int, Object</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copyFrom_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>copyFrom</b>
+(<code>Object</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copyFromUnchecked_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>copyFromUnchecked</b>
+(<code>Object</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copyTo_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>copyTo</b>
+(<code>Object</code>)</A></nobr><br>
+<i>create</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Dialog.html#android.app.Dialog.create_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Dialog
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.create_added(android.content.Context, android.net.Uri, android.view.SurfaceHolder, android.media.AudioAttributes, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context, Uri, SurfaceHolder, AudioAttributes, int</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.create_added(android.content.Context, int, android.media.AudioAttributes, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context, int, AudioAttributes, int</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.RenderScript.html#android.renderscript.RenderScript.create_added(android.content.Context, android.renderscript.RenderScript.ContextType, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context, ContextType, int</code>)</b>&nbsp;in&nbsp;android.renderscript.RenderScript
+</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.createAndInitializeUser_added(android.content.ComponentName, java.lang.String, java.lang.String, android.content.ComponentName, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>createAndInitializeUser</b>
+(<code>ComponentName, String, String, ComponentName, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.KeyguardManager.html#android.app.KeyguardManager.createConfirmDeviceCredentialIntent_added(java.lang.CharSequence, java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>createConfirmDeviceCredentialIntent</b>
+(<code>CharSequence, CharSequence</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.createDocument_added(android.content.ContentResolver, android.net.Uri, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>createDocument</b>
+(<code>ContentResolver, Uri, String, String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.createFromProfileLevel_added(java.lang.String, int, int)" class="hiddenlink" target="rightframe"><b>createFromProfileLevel</b>
+(<code>String, int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.createFromXml_added(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>createFromXml</b>
+(<code>Resources, XmlPullParser, Theme</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.createFromXmlInner_added(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.util.AttributeSet, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>createFromXmlInner</b>
+(<code>Resources, XmlPullParser, AttributeSet, Theme</code>)</A></nobr><br>
+<i>createPrintDocumentAdapter</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.createPrintDocumentAdapter_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.webkit.WebView
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.createPrintDocumentAdapter_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.webkit.WebView
+</A></nobr><br>
+<nobr><A HREF="android.nfc.NdefRecord.html#android.nfc.NdefRecord.createTextRecord_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>createTextRecord</b>
+(<code>String, String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.createUser_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>createUser</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.display.DisplayManager.html#android.hardware.display.DisplayManager.createVirtualDisplay_added(java.lang.String, int, int, int, android.view.Surface, int, android.hardware.display.VirtualDisplay.Callback, android.os.Handler)" class="hiddenlink" target="rightframe"><b>createVirtualDisplay</b>
+(<code>String, int, int, int, Surface, int, Callback, Handler</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.Type.html#android.renderscript.Type.createX_added(android.renderscript.RenderScript, android.renderscript.Element, int)" class="hiddenlink" target="rightframe"><b>createX</b>
+(<code>RenderScript, Element, int</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.Type.html#android.renderscript.Type.createXY_added(android.renderscript.RenderScript, android.renderscript.Element, int, int)" class="hiddenlink" target="rightframe"><b>createXY</b>
+(<code>RenderScript, Element, int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.Type.html#android.renderscript.Type.createXYZ_added(android.renderscript.RenderScript, android.renderscript.Element, int, int, int)" class="hiddenlink" target="rightframe"><b>createXYZ</b>
+(<code>RenderScript, Element, int, int, int</code>)</A></nobr><br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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="#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.view.View.html#android.view.View.dispatchNestedFling_added(float, float, boolean)" class="hiddenlink" target="rightframe"><b>dispatchNestedFling</b>
+(<code>float, float, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.dispatchNestedPreFling_added(float, float)" class="hiddenlink" target="rightframe"><b>dispatchNestedPreFling</b>
+(<code>float, float</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.dispatchNestedPreScroll_added(int, int, int[], int[])" class="hiddenlink" target="rightframe"><b>dispatchNestedPreScroll</b>
+(<code>int, int, int[], int[]</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.dispatchNestedScroll_added(int, int, int, int, int[])" class="hiddenlink" target="rightframe"><b>dispatchNestedScroll</b>
+(<code>int, int, int, int, int[]</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.downloadMultimediaMessage_added(android.content.Context, java.lang.String, android.net.Uri, android.os.Bundle, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>downloadMultimediaMessage</b>
+(<code>Context, String, Uri, Bundle, PendingIntent</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.drawableHotspotChanged_added(float, float)" class="hiddenlink" target="rightframe"><b>drawableHotspotChanged</b>
+(<code>float, float</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawArc_added(float, float, float, float, float, float, boolean, android.graphics.Paint)" class="hiddenlink" target="rightframe"><b>drawArc</b>
+(<code>float, float, float, float, float, float, boolean, Paint</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawOval_added(float, float, float, float, android.graphics.Paint)" class="hiddenlink" target="rightframe"><b>drawOval</b>
+(<code>float, float, float, float, Paint</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawRoundRect_added(float, float, float, float, float, float, android.graphics.Paint)" class="hiddenlink" target="rightframe"><b>drawRoundRect</b>
+(<code>float, float, float, float, float, float, Paint</code>)</A></nobr><br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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="#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.WebView.html#android.webkit.WebView.enableSlowWholeDocumentDraw_added()" class="hiddenlink" target="rightframe"><b>enableSlowWholeDocumentDraw</b>
+()</A></nobr><br>
+<i>enableSystemApp</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.enableSystemApp_added(android.content.ComponentName, android.content.Intent)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ComponentName, Intent</code>)</b>&nbsp;in&nbsp;android.app.admin.DevicePolicyManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.enableSystemApp_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ComponentName, String</code>)</b>&nbsp;in&nbsp;android.app.admin.DevicePolicyManager
+</A></nobr><br>
+<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.error_added(int)" class="hiddenlink" target="rightframe"><b>error</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.excludeTarget_added(java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>excludeTarget</b>
+(<code>String, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.executeShellCommand_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>executeShellCommand</b>
+(<code>String</code>)</A></nobr><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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="#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.media.MediaCodecList.html#android.media.MediaCodecList.findDecoderForFormat_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>findDecoderForFormat</b>
+(<code>MediaFormat</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.findEncoderForFormat_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>findEncoderForFormat</b>
+(<code>MediaFormat</code>)</A></nobr><br>
+<i>findFocus</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.accessibilityservice.AccessibilityService.html#android.accessibilityservice.AccessibilityService.findFocus_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.accessibilityservice.AccessibilityService
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.findFocus_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.app.UiAutomation
+</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.finishAfterTransition_added()" class="hiddenlink" target="rightframe"><b>finishAfterTransition</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.finishAndRemoveTask_added()" class="hiddenlink" target="rightframe"><b>finishAndRemoveTask</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.AbsListView.html#android.widget.AbsListView.fling_added(int)" class="hiddenlink" target="rightframe"><b>fling</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.flush_added()" class="hiddenlink" target="rightframe"><b>flush</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.forceVirtualizationMode_added(int)" class="hiddenlink" target="rightframe"><b>forceVirtualizationMode</b>
+(<code>int</code>)</A></nobr><br>
+<i>forEach</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsic3DLUT.html#android.renderscript.ScriptIntrinsic3DLUT.forEach_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsic3DLUT
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsicBlur.html#android.renderscript.ScriptIntrinsicBlur.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsicBlur
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsicColorMatrix.html#android.renderscript.ScriptIntrinsicColorMatrix.forEach_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsicColorMatrix
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsicConvolve3x3.html#android.renderscript.ScriptIntrinsicConvolve3x3.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsicConvolve3x3
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsicConvolve5x5.html#android.renderscript.ScriptIntrinsicConvolve5x5.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsicConvolve5x5
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsicHistogram.html#android.renderscript.ScriptIntrinsicHistogram.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsicHistogram
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsicLUT.html#android.renderscript.ScriptIntrinsicLUT.forEach_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsicLUT
+</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicHistogram.html#android.renderscript.ScriptIntrinsicHistogram.forEach_Dot_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEach_Dot</b>
+(<code>Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachAdd_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachAdd</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachClear_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachClear</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDst_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDst</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDstAtop_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDstAtop</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDstIn_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDstIn</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDstOut_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDstOut</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDstOver_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDstOver</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachMultiply_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachMultiply</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrc_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrc</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrcAtop_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrcAtop</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrcIn_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrcIn</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrcOut_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrcOut</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrcOver_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrcOver</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSubtract_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSubtract</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachXor_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachXor</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.forLanguageTag_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>forLanguageTag</b>
+(<code>String</code>)</A></nobr><br>
+<i>formatNumber</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, String</code>)</b>&nbsp;in&nbsp;android.telephony.PhoneNumberUtils
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_added(java.lang.String, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, String, String</code>)</b>&nbsp;in&nbsp;android.telephony.PhoneNumberUtils
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.telephony.PhoneNumberUtils
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_added(android.text.Editable, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Editable, int</code>)</b>&nbsp;in&nbsp;android.telephony.PhoneNumberUtils
+</A></nobr><br>
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumberToE164_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>formatNumberToE164</b>
+(<code>String, String</code>)</A></nobr><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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="#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.media.AudioManager.html#android.media.AudioManager.generateAudioSessionId_added()" class="hiddenlink" target="rightframe"><b>generateAudioSessionId</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getAccountTypesWithManagementDisabled_added()" class="hiddenlink" target="rightframe"><b>getAccountTypesWithManagementDisabled</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getActionList_added()" class="hiddenlink" target="rightframe"><b>getActionList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getActiveNotifications_added(java.lang.String[])" class="hiddenlink" target="rightframe"><b>getActiveNotifications</b>
+(<code>String[]</code>)</A></nobr><br>
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.getAidsForService_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>getAidsForService</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getAllNetworks_added()" class="hiddenlink" target="rightframe"><b>getAllNetworks</b>
+()</A></nobr><br>
+<i>getAllowEnterTransitionOverlap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getAllowEnterTransitionOverlap_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getAllowEnterTransitionOverlap_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<i>getAllowReturnTransitionOverlap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getAllowReturnTransitionOverlap_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getAllowReturnTransitionOverlap_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.hardware.usb.UsbInterface.html#android.hardware.usb.UsbInterface.getAlternateSetting_added()" class="hiddenlink" target="rightframe"><b>getAlternateSetting</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getApplicationRestrictions_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>getApplicationRestrictions</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getAppTasks_added()" class="hiddenlink" target="rightframe"><b>getAppTasks</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getAppTaskThumbnailSize_added()" class="hiddenlink" target="rightframe"><b>getAppTaskThumbnailSize</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.Display.html#android.view.Display.getAppVsyncOffsetNanos_added()" class="hiddenlink" target="rightframe"><b>getAppVsyncOffsetNanos</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.nsd.NsdServiceInfo.html#android.net.nsd.NsdServiceInfo.getAttributes_added()" class="hiddenlink" target="rightframe"><b>getAttributes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.getAudioAttributes_added()" class="hiddenlink" target="rightframe"><b>getAudioAttributes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getAudioCapabilities_added()" class="hiddenlink" target="rightframe"><b>getAudioCapabilities</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getAutoTimeRequired_added()" class="hiddenlink" target="rightframe"><b>getAutoTimeRequired</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getAvailableLanguages_added()" class="hiddenlink" target="rightframe"><b>getAvailableLanguages</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getBackgroundTintList_added()" class="hiddenlink" target="rightframe"><b>getBackgroundTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getBackgroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getBackgroundTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.getBluetoothLeAdvertiser_added()" class="hiddenlink" target="rightframe"><b>getBluetoothLeAdvertiser</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.getBluetoothLeScanner_added()" class="hiddenlink" target="rightframe"><b>getBluetoothLeScanner</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.getButtonTintList_added()" class="hiddenlink" target="rightframe"><b>getButtonTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.getButtonTintMode_added()" class="hiddenlink" target="rightframe"><b>getButtonTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.getCarrierConfigValues_added()" class="hiddenlink" target="rightframe"><b>getCarrierConfigValues</b>
+()</A></nobr><br>
+<nobr><A HREF="android.content.res.TypedArray.html#android.content.res.TypedArray.getChangingConfigurations_added()" class="hiddenlink" target="rightframe"><b>getChangingConfigurations</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getChannelMask_added()" class="hiddenlink" target="rightframe"><b>getChannelMask</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.textservice.TextInfo.html#android.view.textservice.TextInfo.getCharSequence_added()" class="hiddenlink" target="rightframe"><b>getCharSequence</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getCharSequenceText_added()" class="hiddenlink" target="rightframe"><b>getCharSequenceText</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.getCheckMarkTintList_added()" class="hiddenlink" target="rightframe"><b>getCheckMarkTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.getCheckMarkTintMode_added()" class="hiddenlink" target="rightframe"><b>getCheckMarkTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getClipToOutline_added()" class="hiddenlink" target="rightframe"><b>getClipToOutline</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.getClipToPadding_added()" class="hiddenlink" target="rightframe"><b>getClipToPadding</b>
+()</A></nobr><br>
+<i>getCodeCacheDir</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.Context.html#android.content.Context.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.Context
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.ContextWrapper
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockContext
+</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecInfos_added()" class="hiddenlink" target="rightframe"><b>getCodecInfos</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.getColor_added()" class="hiddenlink" target="rightframe"><b>getColor</b>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.getColorFilter_added()" class="hiddenlink" target="rightframe"><b>getColorFilter</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getConfiguration_added(int)" class="hiddenlink" target="rightframe"><b>getConfiguration</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getConfigurationCount_added()" class="hiddenlink" target="rightframe"><b>getConfigurationCount</b>
+()</A></nobr><br>
+<i>getContentScene</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.getContentScene_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getContentScene_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.getContentTransitionManager_added()" class="hiddenlink" target="rightframe"><b>getContentTransitionManager</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.Image.html#android.media.Image.getCropRect_added()" class="hiddenlink" target="rightframe"><b>getCropRect</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getCrossProfileCallerIdDisabled_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getCrossProfileCallerIdDisabled</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getCrossProfileWidgetProviders_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getCrossProfileWidgetProviders</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getCurrentInterruptionFilter_added()" class="hiddenlink" target="rightframe"><b>getCurrentInterruptionFilter</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getCurrentListenerHints_added()" class="hiddenlink" target="rightframe"><b>getCurrentListenerHints</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getCurrentRanking_added()" class="hiddenlink" target="rightframe"><b>getCurrentRanking</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getDefaultFormat_added()" class="hiddenlink" target="rightframe"><b>getDefaultFormat</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.SensorManager.html#android.hardware.SensorManager.getDefaultSensor_added(int, boolean)" class="hiddenlink" target="rightframe"><b>getDefaultSensor</b>
+(<code>int, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getDefaultVoice_added()" class="hiddenlink" target="rightframe"><b>getDefaultVoice</b>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.getDirtyBounds_added()" class="hiddenlink" target="rightframe"><b>getDirtyBounds</b>
+()</A></nobr><br>
+<i>getDisplayScript</i><br>
+&nbsp;&nbsp;<nobr><A HREF="java.util.Locale.html#java.util.Locale.getDisplayScript_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;java.util.Locale
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="java.util.Locale.html#java.util.Locale.getDisplayScript_added(java.util.Locale)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Locale</code>)</b>&nbsp;in&nbsp;java.util.Locale
+</A></nobr><br>
+<i>getDrawable</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.Context.html#android.content.Context.getDrawable_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.content.Context
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.res.Resources.html#android.content.res.Resources.getDrawable_added(int, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, Theme</code>)</b>&nbsp;in&nbsp;android.content.res.Resources
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.res.Resources.Theme.html#android.content.res.Resources.Theme.getDrawable_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.content.res.Resources.Theme
+</A></nobr><br>
+<nobr><A HREF="android.content.res.Resources.html#android.content.res.Resources.getDrawableForDensity_added(int, int, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>getDrawableForDensity</b>
+(<code>int, int, Theme</code>)</A></nobr><br>
+<i>getElevation</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getElevation_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.View.html#android.view.View.getElevation_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.View
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.PopupWindow.html#android.widget.PopupWindow.getElevation_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.PopupWindow
+</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getEncoderCapabilities_added()" class="hiddenlink" target="rightframe"><b>getEncoderCapabilities</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getEncoding_added()" class="hiddenlink" target="rightframe"><b>getEncoding</b>
+()</A></nobr><br>
+<i>getEnterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getEnterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getEnterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getEpicenter_added()" class="hiddenlink" target="rightframe"><b>getEpicenter</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getEpicenterCallback_added()" class="hiddenlink" target="rightframe"><b>getEpicenterCallback</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getError_added()" class="hiddenlink" target="rightframe"><b>getError</b>
+()</A></nobr><br>
+<i>getExitTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getExitTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getExitTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getExtension_added(char)" class="hiddenlink" target="rightframe"><b>getExtension</b>
+(<code>char</code>)</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getExtensionKeys_added()" class="hiddenlink" target="rightframe"><b>getExtensionKeys</b>
+()</A></nobr><br>
+<i>getExternalMediaDirs</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.Context.html#android.content.Context.getExternalMediaDirs_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.Context
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.getExternalMediaDirs_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.ContextWrapper
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.getExternalMediaDirs_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockContext
+</A></nobr><br>
+<nobr><A HREF="android.os.Environment.html#android.os.Environment.getExternalStorageState_added(java.io.File)" class="hiddenlink" target="rightframe"><b>getExternalStorageState</b>
+(<code>File</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.getFeatureEnabled_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getFeatureEnabled</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.DatePicker.html#android.widget.DatePicker.getFirstDayOfWeek_added()" class="hiddenlink" target="rightframe"><b>getFirstDayOfWeek</b>
+()</A></nobr><br>
+<i>getFontFeatureSettings</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.getFontFeatureSettings_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getFontFeatureSettings_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.getForegroundTintList_added()" class="hiddenlink" target="rightframe"><b>getForegroundTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.getForegroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getForegroundTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiInfo.html#android.net.wifi.WifiInfo.getFrequency_added()" class="hiddenlink" target="rightframe"><b>getFrequency</b>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.getFromDegrees_added()" class="hiddenlink" target="rightframe"><b>getFromDegrees</b>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.GradientDrawable.html#android.graphics.drawable.GradientDrawable.getGradientRadius_added()" class="hiddenlink" target="rightframe"><b>getGradientRadius</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.StatusBarNotification.html#android.service.notification.StatusBarNotification.getGroupKey_added()" class="hiddenlink" target="rightframe"><b>getGroupKey</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getHideOffset_added()" class="hiddenlink" target="rightframe"><b>getHideOffset</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.getImageTintList_added()" class="hiddenlink" target="rightframe"><b>getImageTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.getImageTintMode_added()" class="hiddenlink" target="rightframe"><b>getImageTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getIndeterminateTintList_added()" class="hiddenlink" target="rightframe"><b>getIndeterminateTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getIndeterminateTintMode_added()" class="hiddenlink" target="rightframe"><b>getIndeterminateTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputBuffer_added(int)" class="hiddenlink" target="rightframe"><b>getInputBuffer</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputFormat_added()" class="hiddenlink" target="rightframe"><b>getInputFormat</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputImage_added(int)" class="hiddenlink" target="rightframe"><b>getInputImage</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.getInputMethodWindowRecommendedHeight_added()" class="hiddenlink" target="rightframe"><b>getInputMethodWindowRecommendedHeight</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getInstalledCaCerts_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getInstalledCaCerts</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.getInstalledProvidersForProfile_added(android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>getInstalledProvidersForProfile</b>
+(<code>UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.getIntProperty_added(int)" class="hiddenlink" target="rightframe"><b>getIntProperty</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.getIntValue_added()" class="hiddenlink" target="rightframe"><b>getIntValue</b>
+()</A></nobr><br>
+<i>getLeanbackLaunchIntentForPackage</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getLeanbackLaunchIntentForPackage_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getLeanbackLaunchIntentForPackage_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<i>getLetterSpacing</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.getLetterSpacing_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getLetterSpacing_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getLinkProperties_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>getLinkProperties</b>
+(<code>Network</code>)</A></nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.getLongProperty_added(int)" class="hiddenlink" target="rightframe"><b>getLongProperty</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getManufacturerName_added()" class="hiddenlink" target="rightframe"><b>getManufacturerName</b>
+()</A></nobr><br>
+<nobr><A HREF="android.text.InputFilter.LengthFilter.html#android.text.InputFilter.LengthFilter.getMax_added()" class="hiddenlink" target="rightframe"><b>getMax</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.getMaxDelay_added()" class="hiddenlink" target="rightframe"><b>getMaxDelay</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.getMaxHeight_added()" class="hiddenlink" target="rightframe"><b>getMaxHeight</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getMaxTextLength_added()" class="hiddenlink" target="rightframe"><b>getMaxTextLength</b>
+()</A></nobr><br>
+<i>getMediaController</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.getMediaController_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getMediaController_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.media.RemoteControlClient.html#android.media.RemoteControlClient.getMediaSession_added()" class="hiddenlink" target="rightframe"><b>getMediaSession</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getMimeType_added()" class="hiddenlink" target="rightframe"><b>getMimeType</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.getMixedContentMode_added()" class="hiddenlink" target="rightframe"><b>getMixedContentMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.getMode_added()" class="hiddenlink" target="rightframe"><b>getMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.usb.UsbInterface.html#android.hardware.usb.UsbInterface.getName_added()" class="hiddenlink" target="rightframe"><b>getName</b>
+()</A></nobr><br>
+<nobr><A HREF="android.opengl.EGLObjectHandle.html#android.opengl.EGLObjectHandle.getNativeHandle_added()" class="hiddenlink" target="rightframe"><b>getNativeHandle</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.getNavigationBarColor_added()" class="hiddenlink" target="rightframe"><b>getNavigationBarColor</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.getNestedScrollAxes_added()" class="hiddenlink" target="rightframe"><b>getNestedScrollAxes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getNetworkCapabilities_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>getNetworkCapabilities</b>
+(<code>Network</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getNetworkInfo_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>getNetworkInfo</b>
+(<code>Network</code>)</A></nobr><br>
+<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.getNextAlarmClock_added()" class="hiddenlink" target="rightframe"><b>getNextAlarmClock</b>
+()</A></nobr><br>
+<i>getNoBackupFilesDir</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.Context.html#android.content.Context.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.Context
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.ContextWrapper
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockContext
+</A></nobr><br>
+<i>getOutline</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.getOutline_added(android.graphics.Outline)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Outline</code>)</b>&nbsp;in&nbsp;android.graphics.drawable.Drawable
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.shapes.Shape.html#android.graphics.drawable.shapes.Shape.getOutline_added(android.graphics.Outline)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Outline</code>)</b>&nbsp;in&nbsp;android.graphics.drawable.shapes.Shape
+</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getOutlineProvider_added()" class="hiddenlink" target="rightframe"><b>getOutlineProvider</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputBuffer_added(int)" class="hiddenlink" target="rightframe"><b>getOutputBuffer</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputFormat_added(int)" class="hiddenlink" target="rightframe"><b>getOutputFormat</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputImage_added(int)" class="hiddenlink" target="rightframe"><b>getOutputImage</b>
+(<code>int</code>)</A></nobr><br>
+<i>getPackageInstaller</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getPackageInstaller_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getPackageInstaller_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.LayerDrawable.html#android.graphics.drawable.LayerDrawable.getPaddingMode_added()" class="hiddenlink" target="rightframe"><b>getPaddingMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getPathMotion_added()" class="hiddenlink" target="rightframe"><b>getPathMotion</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getPermittedAccessibilityServices_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getPermittedAccessibilityServices</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getPermittedInputMethods_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getPermittedInputMethods</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.getPivotX_added()" class="hiddenlink" target="rightframe"><b>getPivotX</b>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.getPivotY_added()" class="hiddenlink" target="rightframe"><b>getPivotY</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.Display.html#android.view.Display.getPresentationDeadlineNanos_added()" class="hiddenlink" target="rightframe"><b>getPresentationDeadlineNanos</b>
+()</A></nobr><br>
+<nobr><A HREF="android.accounts.AccountManager.html#android.accounts.AccountManager.getPreviousName_added(android.accounts.Account)" class="hiddenlink" target="rightframe"><b>getPreviousName</b>
+(<code>Account</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getProcessDefaultNetwork_added()" class="hiddenlink" target="rightframe"><b>getProcessDefaultNetwork</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getProductName_added()" class="hiddenlink" target="rightframe"><b>getProductName</b>
+()</A></nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.getProfile_added()" class="hiddenlink" target="rightframe"><b>getProfile</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressBackgroundTintList_added()" class="hiddenlink" target="rightframe"><b>getProgressBackgroundTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressBackgroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getProgressBackgroundTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressTintList_added()" class="hiddenlink" target="rightframe"><b>getProgressTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressTintMode_added()" class="hiddenlink" target="rightframe"><b>getProgressTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getPropagation_added()" class="hiddenlink" target="rightframe"><b>getPropagation</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getReasonPhrase_added()" class="hiddenlink" target="rightframe"><b>getReasonPhrase</b>
+()</A></nobr><br>
+<i>getReenterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getReenterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getReenterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html#java.util.concurrent.ScheduledThreadPoolExecutor.getRemoveOnCancelPolicy_added()" class="hiddenlink" target="rightframe"><b>getRemoveOnCancelPolicy</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.getReportingMode_added()" class="hiddenlink" target="rightframe"><b>getReportingMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.content.res.Resources.Theme.html#android.content.res.Resources.Theme.getResources_added()" class="hiddenlink" target="rightframe"><b>getResources</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getResponseHeaders_added()" class="hiddenlink" target="rightframe"><b>getResponseHeaders</b>
+()</A></nobr><br>
+<i>getReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getSampleRate_added()" class="hiddenlink" target="rightframe"><b>getSampleRate</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getScreenCaptureDisabled_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getScreenCaptureDisabled</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getScript_added()" class="hiddenlink" target="rightframe"><b>getScript</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getSecondaryProgressTintList_added()" class="hiddenlink" target="rightframe"><b>getSecondaryProgressTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getSecondaryProgressTintMode_added()" class="hiddenlink" target="rightframe"><b>getSecondaryProgressTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.getSelectedTrack_added(int)" class="hiddenlink" target="rightframe"><b>getSelectedTrack</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.getSelectionMode_added()" class="hiddenlink" target="rightframe"><b>getSelectionMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getSerialNumber_added()" class="hiddenlink" target="rightframe"><b>getSerialNumber</b>
+()</A></nobr><br>
+<i>getSharedElementEnterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getSharedElementEnterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementEnterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementExitTransition_added()" class="hiddenlink" target="rightframe"><b>getSharedElementExitTransition</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementReenterTransition_added()" class="hiddenlink" target="rightframe"><b>getSharedElementReenterTransition</b>
+()</A></nobr><br>
+<i>getSharedElementReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getSharedElementReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementsUseOverlay_added()" class="hiddenlink" target="rightframe"><b>getSharedElementsUseOverlay</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getShowSoftInputOnFocus_added()" class="hiddenlink" target="rightframe"><b>getShowSoftInputOnFocus</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.getShowText_added()" class="hiddenlink" target="rightframe"><b>getShowText</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getSize_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getSize</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getSizeF_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getSizeF</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.getSpeakerAngles_added(int, int, int[])" class="hiddenlink" target="rightframe"><b>getSpeakerAngles</b>
+(<code>int, int, int[]</code>)</A></nobr><br>
+<i>getSplitTrack</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.getSplitTrack_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.AbsSeekBar
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.getSplitTrack_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.Switch
+</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetBottom_added()" class="hiddenlink" target="rightframe"><b>getStableInsetBottom</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetLeft_added()" class="hiddenlink" target="rightframe"><b>getStableInsetLeft</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetRight_added()" class="hiddenlink" target="rightframe"><b>getStableInsetRight</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetTop_added()" class="hiddenlink" target="rightframe"><b>getStableInsetTop</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getStateListAnimator_added()" class="hiddenlink" target="rightframe"><b>getStateListAnimator</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.getStatusBarColor_added()" class="hiddenlink" target="rightframe"><b>getStatusBarColor</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getStatusCode_added()" class="hiddenlink" target="rightframe"><b>getStatusCode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.Display.html#android.view.Display.getSupportedRefreshRates_added()" class="hiddenlink" target="rightframe"><b>getSupportedRefreshRates</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaRecorder.html#android.media.MediaRecorder.getSurface_added()" class="hiddenlink" target="rightframe"><b>getSurface</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getTargetNames_added()" class="hiddenlink" target="rightframe"><b>getTargetNames</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getTargetTypes_added()" class="hiddenlink" target="rightframe"><b>getTargetTypes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.getThumbTintList_added()" class="hiddenlink" target="rightframe"><b>getThumbTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.getThumbTintMode_added()" class="hiddenlink" target="rightframe"><b>getThumbTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.getToDegrees_added()" class="hiddenlink" target="rightframe"><b>getToDegrees</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.getTouchscreenBlocksFocus_added()" class="hiddenlink" target="rightframe"><b>getTouchscreenBlocksFocus</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.getTransitionAt_added(int)" class="hiddenlink" target="rightframe"><b>getTransitionAt</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.getTransitionBackgroundFadeDuration_added()" class="hiddenlink" target="rightframe"><b>getTransitionBackgroundFadeDuration</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.getTransitionCount_added()" class="hiddenlink" target="rightframe"><b>getTransitionCount</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.getTransitionManager_added()" class="hiddenlink" target="rightframe"><b>getTransitionManager</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getTransitionName_added()" class="hiddenlink" target="rightframe"><b>getTransitionName</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getTranslationZ_added()" class="hiddenlink" target="rightframe"><b>getTranslationZ</b>
+()</A></nobr><br>
+<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.getTreeDocumentId_added(android.net.Uri)" class="hiddenlink" target="rightframe"><b>getTreeDocumentId</b>
+(<code>Uri</code>)</A></nobr><br>
+<nobr><A HREF="android.content.res.TypedArray.html#android.content.res.TypedArray.getType_added(int)" class="hiddenlink" target="rightframe"><b>getType</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.getTypeLabel_added(android.content.res.Resources, int, java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>getTypeLabel</b>
+(<code>Resources, int, CharSequence</code>)</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleAttributes_added()" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleAttributes</b>
+()</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleKeys_added()" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleKeys</b>
+()</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleType_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleType</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.service.notification.StatusBarNotification.html#android.service.notification.StatusBarNotification.getUser_added()" class="hiddenlink" target="rightframe"><b>getUser</b>
+()</A></nobr><br>
+<i>getUserBadgedDrawableForDensity</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle, Rect, int</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle, Rect, int</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<i>getUserBadgedIcon</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<i>getUserBadgedLabel</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, UserHandle</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, UserHandle</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.getUserProfiles_added()" class="hiddenlink" target="rightframe"><b>getUserProfiles</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getVideoCapabilities_added()" class="hiddenlink" target="rightframe"><b>getVideoCapabilities</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.getVirtualizationMode_added()" class="hiddenlink" target="rightframe"><b>getVirtualizationMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getVoice_added()" class="hiddenlink" target="rightframe"><b>getVoice</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getVoiceName_added()" class="hiddenlink" target="rightframe"><b>getVoiceName</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getVoices_added()" class="hiddenlink" target="rightframe"><b>getVoices</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getWindow_added()" class="hiddenlink" target="rightframe"><b>getWindow</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.getWindowAnimationFrameStats_added()" class="hiddenlink" target="rightframe"><b>getWindowAnimationFrameStats</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.getWindowContentFrameStats_added(int)" class="hiddenlink" target="rightframe"><b>getWindowContentFrameStats</b>
+(<code>int</code>)</A></nobr><br>
+<i>getWindows</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.accessibilityservice.AccessibilityService.html#android.accessibilityservice.AccessibilityService.getWindows_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.accessibilityservice.AccessibilityService
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.getWindows_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.UiAutomation
+</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getZ_added()" class="hiddenlink" target="rightframe"><b>getZ</b>
+()</A></nobr><br>
+<A NAME="H"></A>
+<br><font size="+2">H</font>&nbsp;
+<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="#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.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasBackgroundColor_added()" class="hiddenlink" target="rightframe"><b>hasBackgroundColor</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.hasCaCertInstalled_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>hasCaCertInstalled</b>
+(<code>ComponentName, byte[]</code>)</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasEdgeColor_added()" class="hiddenlink" target="rightframe"><b>hasEdgeColor</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasEdgeType_added()" class="hiddenlink" target="rightframe"><b>hasEdgeType</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.hasFinished_added()" class="hiddenlink" target="rightframe"><b>hasFinished</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasForegroundColor_added()" class="hiddenlink" target="rightframe"><b>hasForegroundColor</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.hasNestedScrollingParent_added()" class="hiddenlink" target="rightframe"><b>hasNestedScrollingParent</b>
+()</A></nobr><br>
+<i>hasQueuedPredecessors</i><br>
+&nbsp;&nbsp;<nobr><A HREF="java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html#java.util.concurrent.locks.AbstractQueuedLongSynchronizer.hasQueuedPredecessors_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;java.util.concurrent.locks.AbstractQueuedLongSynchronizer
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="java.util.concurrent.locks.AbstractQueuedSynchronizer.html#java.util.concurrent.locks.AbstractQueuedSynchronizer.hasQueuedPredecessors_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;java.util.concurrent.locks.AbstractQueuedSynchronizer
+</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.hasStableInsets_added()" class="hiddenlink" target="rightframe"><b>hasStableInsets</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.hasStarted_added()" class="hiddenlink" target="rightframe"><b>hasStarted</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.hasUserRestriction_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>hasUserRestriction</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasWindowColor_added()" class="hiddenlink" target="rightframe"><b>hasWindowColor</b>
+()</A></nobr><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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="#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.TelephonyManager.html#android.telephony.TelephonyManager.iccCloseLogicalChannel_added(int)" class="hiddenlink" target="rightframe"><b>iccCloseLogicalChannel</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccExchangeSimIO_added(int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccExchangeSimIO</b>
+(<code>int, int, int, int, int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccOpenLogicalChannel_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>iccOpenLogicalChannel</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccTransmitApduBasicChannel_added(int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccTransmitApduBasicChannel</b>
+(<code>int, int, int, int, int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccTransmitApduLogicalChannel_added(int, int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccTransmitApduLogicalChannel</b>
+(<code>int, int, int, int, int, int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.util.ArrayMap.html#android.util.ArrayMap.indexOfKey_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>indexOfKey</b>
+(<code>Object</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.inflate_added(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.util.AttributeSet, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>inflate</b>
+(<code>Resources, XmlPullParser, AttributeSet, Theme</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.installCaCert_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>installCaCert</b>
+(<code>ComponentName, byte[]</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.installKeyPair_added(android.content.ComponentName, java.security.PrivateKey, java.security.cert.Certificate, java.lang.String)" class="hiddenlink" target="rightframe"><b>installKeyPair</b>
+(<code>ComponentName, PrivateKey, Certificate, String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.invalidateOutline_added()" class="hiddenlink" target="rightframe"><b>invalidateOutline</b>
+()</A></nobr><br>
+<nobr><A HREF="android.nfc.NfcAdapter.html#android.nfc.NfcAdapter.invokeBeam_added(android.app.Activity)" class="hiddenlink" target="rightframe"><b>invokeBeam</b>
+(<code>Activity</code>)</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.is5GHzBandSupported_added()" class="hiddenlink" target="rightframe"><b>is5GHzBandSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.isAccessibilityFocused_added()" class="hiddenlink" target="rightframe"><b>isAccessibilityFocused</b>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.Matrix.html#android.graphics.Matrix.isAffine_added()" class="hiddenlink" target="rightframe"><b>isAffine</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isApplicationHidden_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>isApplicationHidden</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.isButtonPressed_added(int)" class="hiddenlink" target="rightframe"><b>isButtonPressed</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.isChildDocument_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>isChildDocument</b>
+(<code>String, String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.isConsumed_added()" class="hiddenlink" target="rightframe"><b>isConsumed</b>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.isConvex_added()" class="hiddenlink" target="rightframe"><b>isConvex</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.isDefaultNetworkActive_added()" class="hiddenlink" target="rightframe"><b>isDefaultNetworkActive</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isDeviceToApRttSupported_added()" class="hiddenlink" target="rightframe"><b>isDeviceToApRttSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.isElegantTextHeight_added()" class="hiddenlink" target="rightframe"><b>isElegantTextHeight</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isEnhancedPowerReportingSupported_added()" class="hiddenlink" target="rightframe"><b>isEnhancedPowerReportingSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.isEnterpriseContactId_added(long)" class="hiddenlink" target="rightframe"><b>isEnterpriseContactId</b>
+(<code>long</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Environment.html#android.os.Environment.isExternalStorageEmulated_added(java.io.File)" class="hiddenlink" target="rightframe"><b>isExternalStorageEmulated</b>
+(<code>File</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Environment.html#android.os.Environment.isExternalStorageRemovable_added(java.io.File)" class="hiddenlink" target="rightframe"><b>isExternalStorageRemovable</b>
+(<code>File</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.isFeatureRequired_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>isFeatureRequired</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.isFormatSupported_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>isFormatSupported</b>
+(<code>MediaFormat</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.isHideOnContentScrollEnabled_added()" class="hiddenlink" target="rightframe"><b>isHideOnContentScrollEnabled</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.isImportantForAccessibility_added()" class="hiddenlink" target="rightframe"><b>isImportantForAccessibility</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.isInLockTaskMode_added()" class="hiddenlink" target="rightframe"><b>isInLockTaskMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.isLocalEmergencyNumber_added(android.content.Context, java.lang.String)" class="hiddenlink" target="rightframe"><b>isLocalEmergencyNumber</b>
+(<code>Context, String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isLockTaskPermitted_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>isLockTaskPermitted</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isMasterVolumeMuted_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>isMasterVolumeMuted</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isMultipleAdvertisementSupported_added()" class="hiddenlink" target="rightframe"><b>isMultipleAdvertisementSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.isNestedScrollingEnabled_added()" class="hiddenlink" target="rightframe"><b>isNestedScrollingEnabled</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isOffloadedFilteringSupported_added()" class="hiddenlink" target="rightframe"><b>isOffloadedFilteringSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isOffloadedScanBatchingSupported_added()" class="hiddenlink" target="rightframe"><b>isOffloadedScanBatchingSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.content.res.ColorStateList.html#android.content.res.ColorStateList.isOpaque_added()" class="hiddenlink" target="rightframe"><b>isOpaque</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isP2pSupported_added()" class="hiddenlink" target="rightframe"><b>isP2pSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.isPivotXRelative_added()" class="hiddenlink" target="rightframe"><b>isPivotXRelative</b>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.isPivotYRelative_added()" class="hiddenlink" target="rightframe"><b>isPivotYRelative</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.isPowerSaveMode_added()" class="hiddenlink" target="rightframe"><b>isPowerSaveMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isPreferredNetworkOffloadSupported_added()" class="hiddenlink" target="rightframe"><b>isPreferredNetworkOffloadSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isProfileOwnerApp_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>isProfileOwnerApp</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.isSelected_added()" class="hiddenlink" target="rightframe"><b>isSelected</b>
+()</A></nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.isSmsCapable_added()" class="hiddenlink" target="rightframe"><b>isSmsCapable</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isTdlsSupported_added()" class="hiddenlink" target="rightframe"><b>isTdlsSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.isTransitionGroup_added()" class="hiddenlink" target="rightframe"><b>isTransitionGroup</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isUninstallBlocked_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>isUninstallBlocked</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.net.http.X509TrustManagerExtensions.html#android.net.http.X509TrustManagerExtensions.isUserAddedCertificate_added(java.security.cert.X509Certificate)" class="hiddenlink" target="rightframe"><b>isUserAddedCertificate</b>
+(<code>X509Certificate</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.isVoiceMailNumber_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>isVoiceMailNumber</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.isVolumeFixed_added()" class="hiddenlink" target="rightframe"><b>isVolumeFixed</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.isWakeLockLevelSupported_added(int)" class="hiddenlink" target="rightframe"><b>isWakeLockLevelSupported</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.isWakeUpSensor_added()" class="hiddenlink" target="rightframe"><b>isWakeUpSensor</b>
+()</A></nobr><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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="#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.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadIcon_added(android.content.Context, int)" class="hiddenlink" target="rightframe"><b>loadIcon</b>
+(<code>Context, int</code>)</A></nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadLabel_added(android.content.pm.PackageManager)" class="hiddenlink" target="rightframe"><b>loadLabel</b>
+(<code>PackageManager</code>)</A></nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadPreviewImage_added(android.content.Context, int)" class="hiddenlink" target="rightframe"><b>loadPreviewImage</b>
+(<code>Context, int</code>)</A></nobr><br>
+<nobr><A HREF="android.animation.AnimatorInflater.html#android.animation.AnimatorInflater.loadStateListAnimator_added(android.content.Context, int)" class="hiddenlink" target="rightframe"><b>loadStateListAnimator</b>
+(<code>Context, int</code>)</A></nobr><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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="#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>makeSceneTransitionAnimation</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActivityOptions.html#android.app.ActivityOptions.makeSceneTransitionAnimation_added(android.app.Activity, android.util.Pair<android.view.View, java.lang.String>...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Activity, Pair&lt;View, String&gt;</code>)</b>&nbsp;in&nbsp;android.app.ActivityOptions
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActivityOptions.html#android.app.ActivityOptions.makeSceneTransitionAnimation_added(android.app.Activity, android.view.View, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Activity, View, String</code>)</b>&nbsp;in&nbsp;android.app.ActivityOptions
+</A></nobr><br>
+<nobr><A HREF="android.app.ActivityOptions.html#android.app.ActivityOptions.makeTaskLaunchBehind_added()" class="hiddenlink" target="rightframe"><b>makeTaskLaunchBehind</b>
+()</A></nobr><br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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="#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.drawable.Drawable.ConstantState.html#android.graphics.drawable.Drawable.ConstantState.newDrawable_added(android.content.res.Resources, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>newDrawable</b>
+(<code>Resources, Theme</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.normalizeNumber_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>normalizeNumber</b>
+(<code>String</code>)</A></nobr><br>
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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="#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>obtain</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.obtain_added(int, int, boolean, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, boolean, int</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo.CollectionInfo
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.obtain_added(int, int, int, int, boolean, boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, int, int, boolean, boolean</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo
+</A></nobr><br>
+<i>ofArgb</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofArgb_added(T, android.util.Property<T, java.lang.Integer>, int...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, Property&lt;T, Integer&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofArgb_added(java.lang.Object, java.lang.String, int...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, </code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ValueAnimator.html#android.animation.ValueAnimator.ofArgb_added(int...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.animation.ValueAnimator
+</A></nobr><br>
+<i>ofFloat</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofFloat_added(T, android.util.Property<T, java.lang.Float>, android.util.Property<T, java.lang.Float>, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, Property&lt;T, Float&gt;, Property&lt;T, Float&gt;, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofFloat_added(java.lang.Object, java.lang.String, java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, String, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<i>ofInt</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofInt_added(T, android.util.Property<T, java.lang.Integer>, android.util.Property<T, java.lang.Integer>, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, Property&lt;T, Integer&gt;, Property&lt;T, Integer&gt;, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofInt_added(java.lang.Object, java.lang.String, java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, String, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<i>ofMultiFloat</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiFloat_added(java.lang.Object, java.lang.String, android.animation.TypeConverter<T, float[]>, android.animation.TypeEvaluator<T>, T...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, TypeConverter&lt;T, float[]&gt;, TypeEvaluator&lt;T&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiFloat_added(java.lang.Object, java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiFloat_added(java.lang.Object, java.lang.String, float[][])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, float[][]</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, android.animation.TypeConverter<T, float[]>, android.animation.TypeEvaluator<T>, android.animation.Keyframe...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, TypeConverter&lt;T, float[]&gt;, TypeEvaluator&lt;T&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, android.animation.TypeConverter<V, float[]>, android.animation.TypeEvaluator<V>, V...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, TypeConverter&lt;V, float[]&gt;, TypeEvaluator&lt;V&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, Path</code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, float[][])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, float[][]</code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<i>ofMultiInt</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiInt_added(java.lang.Object, java.lang.String, android.animation.TypeConverter<T, int[]>, android.animation.TypeEvaluator<T>, T...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, TypeConverter&lt;T, int[]&gt;, TypeEvaluator&lt;T&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiInt_added(java.lang.Object, java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiInt_added(java.lang.Object, java.lang.String, int[][])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, int[][]</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, android.animation.TypeConverter<T, int[]>, android.animation.TypeEvaluator<T>, android.animation.Keyframe...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, TypeConverter&lt;T, int[]&gt;, TypeEvaluator&lt;T&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, android.animation.TypeConverter<V, int[]>, android.animation.TypeEvaluator<V>, V...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, TypeConverter&lt;V, int[]&gt;, TypeEvaluator&lt;V&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, Path</code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, int[][])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, int[][]</code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<i>ofObject</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofObject_added(T, android.util.Property<T, P>, android.animation.TypeConverter<V, P>, android.animation.TypeEvaluator<V>, V...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, Property&lt;T, P&gt;, TypeConverter&lt;V, P&gt;, TypeEvaluator&lt;V&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofObject_added(T, android.util.Property<T, V>, android.animation.TypeConverter<android.graphics.PointF, V>, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, Property&lt;T, V&gt;, TypeConverter&lt;PointF, V&gt;, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofObject_added(java.lang.Object, java.lang.String, android.animation.TypeConverter<android.graphics.PointF, ?>, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, TypeConverter&lt;PointF, ?&gt;, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofObject_added(android.util.Property<?, V>, android.animation.TypeConverter<T, V>, android.animation.TypeEvaluator<T>, T...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Property&lt;?, V&gt;, TypeConverter&lt;T, V&gt;, TypeEvaluator&lt;T&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofObject_added(android.util.Property<?, V>, android.animation.TypeConverter<android.graphics.PointF, V>, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Property&lt;?, V&gt;, TypeConverter&lt;PointF, V&gt;, Path</code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofObject_added(java.lang.String, android.animation.TypeConverter<android.graphics.PointF, ?>, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, TypeConverter&lt;PointF, ?&gt;, Path</code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onActivityReenter_added(int, android.content.Intent)" class="hiddenlink" target="rightframe"><b>onActivityReenter</b>
+(<code>int, Intent</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.onAppear_added(android.view.ViewGroup, android.view.View, android.transition.TransitionValues, android.transition.TransitionValues)" class="hiddenlink" target="rightframe"><b>onAppear</b>
+(<code>ViewGroup, View, TransitionValues, TransitionValues</code>)</A></nobr><br>
+<nobr><A HREF="android.service.wallpaper.WallpaperService.Engine.html#android.service.wallpaper.WallpaperService.Engine.onApplyWindowInsets_added(android.view.WindowInsets)" class="hiddenlink" target="rightframe"><b>onApplyWindowInsets</b>
+(<code>WindowInsets</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onCreate_added(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>onCreate</b>
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.onDisappear_added(android.view.ViewGroup, android.view.View, android.transition.TransitionValues, android.transition.TransitionValues)" class="hiddenlink" target="rightframe"><b>onDisappear</b>
+(<code>ViewGroup, View, TransitionValues, TransitionValues</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onEnterAnimationComplete_added()" class="hiddenlink" target="rightframe"><b>onEnterAnimationComplete</b>
+()</A></nobr><br>
+<i>onError</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_added(java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, int</code>)</b>&nbsp;in&nbsp;android.speech.tts.UtteranceProgressListener
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.speech.tts.UtteranceProgressListener
+</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onGetDefaultVoiceNameFor_added(java.lang.String, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>onGetDefaultVoiceNameFor</b>
+(<code>String, String, String</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onGetVoices_added()" class="hiddenlink" target="rightframe"><b>onGetVoices</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onInterruptionFilterChanged_added(int)" class="hiddenlink" target="rightframe"><b>onInterruptionFilterChanged</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onIsValidVoiceName_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>onIsValidVoiceName</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onListenerConnected_added()" class="hiddenlink" target="rightframe"><b>onListenerConnected</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onListenerHintsChanged_added(int)" class="hiddenlink" target="rightframe"><b>onListenerHintsChanged</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onLoadVoice_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>onLoadVoice</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.onLockTaskModeEntering_added(android.content.Context, android.content.Intent, java.lang.String)" class="hiddenlink" target="rightframe"><b>onLockTaskModeEntering</b>
+(<code>Context, Intent, String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.onLockTaskModeExiting_added(android.content.Context, android.content.Intent)" class="hiddenlink" target="rightframe"><b>onLockTaskModeExiting</b>
+(<code>Context, Intent</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGattCallback.html#android.bluetooth.BluetoothGattCallback.onMtuChanged_added(android.bluetooth.BluetoothGatt, int, int)" class="hiddenlink" target="rightframe"><b>onMtuChanged</b>
+(<code>BluetoothGatt, int, int</code>)</A></nobr><br>
+<i>onNestedFling</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedFling_added(android.view.View, float, float, boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, float, float, boolean</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedFling_added(android.view.View, float, float, boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, float, float, boolean</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<i>onNestedPreFling</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedPreFling_added(android.view.View, float, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, float, float</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedPreFling_added(android.view.View, float, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, float, float</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<i>onNestedPreScroll</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedPreScroll_added(android.view.View, int, int, int[])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, int, int, int[]</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedPreScroll_added(android.view.View, int, int, int[])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, int, int, int[]</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<i>onNestedScroll</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedScroll_added(android.view.View, int, int, int, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, int, int, int, int</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedScroll_added(android.view.View, int, int, int, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, int, int, int, int</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<i>onNestedScrollAccepted</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedScrollAccepted_added(android.view.View, android.view.View, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, View, int</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedScrollAccepted_added(android.view.View, android.view.View, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, View, int</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationPosted_added(android.service.notification.StatusBarNotification, android.service.notification.NotificationListenerService.RankingMap)" class="hiddenlink" target="rightframe"><b>onNotificationPosted</b>
+(<code>StatusBarNotification, RankingMap</code>)</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationRankingUpdate_added(android.service.notification.NotificationListenerService.RankingMap)" class="hiddenlink" target="rightframe"><b>onNotificationRankingUpdate</b>
+(<code>RankingMap</code>)</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationRemoved_added(android.service.notification.StatusBarNotification, android.service.notification.NotificationListenerService.RankingMap)" class="hiddenlink" target="rightframe"><b>onNotificationRemoved</b>
+(<code>StatusBarNotification, RankingMap</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGattServerCallback.html#android.bluetooth.BluetoothGattServerCallback.onNotificationSent_added(android.bluetooth.BluetoothDevice, int)" class="hiddenlink" target="rightframe"><b>onNotificationSent</b>
+(<code>BluetoothDevice, int</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onPermissionRequest_added(android.webkit.PermissionRequest)" class="hiddenlink" target="rightframe"><b>onPermissionRequest</b>
+(<code>PermissionRequest</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onPermissionRequestCanceled_added(android.webkit.PermissionRequest)" class="hiddenlink" target="rightframe"><b>onPermissionRequestCanceled</b>
+(<code>PermissionRequest</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onPostCreate_added(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>onPostCreate</b>
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.onProfileProvisioningComplete_added(android.content.Context, android.content.Intent)" class="hiddenlink" target="rightframe"><b>onProfileProvisioningComplete</b>
+(<code>Context, Intent</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.onPull_added(float, float)" class="hiddenlink" target="rightframe"><b>onPull</b>
+(<code>float, float</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.onReceivedClientCertRequest_added(android.webkit.WebView, android.webkit.ClientCertRequest)" class="hiddenlink" target="rightframe"><b>onReceivedClientCertRequest</b>
+(<code>WebView, ClientCertRequest</code>)</A></nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetProvider.html#android.appwidget.AppWidgetProvider.onRestored_added(android.content.Context, int[], int[])" class="hiddenlink" target="rightframe"><b>onRestored</b>
+(<code>Context, int[], int[]</code>)</A></nobr><br>
+<nobr><A HREF="android.app.backup.BackupAgent.html#android.app.backup.BackupAgent.onRestoreFinished_added()" class="hiddenlink" target="rightframe"><b>onRestoreFinished</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onRestoreInstanceState_added(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>onRestoreInstanceState</b>
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onSaveInstanceState_added(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>onSaveInstanceState</b>
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onShowFileChooser_added(android.webkit.WebView, android.webkit.ValueCallback<android.net.Uri[]>, android.webkit.WebChromeClient.FileChooserParams)" class="hiddenlink" target="rightframe"><b>onShowFileChooser</b>
+(<code>WebView, ValueCallback&lt;Uri[]&gt;, FileChooserParams</code>)</A></nobr><br>
+<i>onStartNestedScroll</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onStartNestedScroll_added(android.view.View, android.view.View, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, View, int</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onStartNestedScroll_added(android.view.View, android.view.View, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, View, int</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<i>onStopNestedScroll</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onStopNestedScroll_added(android.view.View)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onStopNestedScroll_added(android.view.View)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.onUnhandledInputEvent_added(android.webkit.WebView, android.view.InputEvent)" class="hiddenlink" target="rightframe"><b>onUnhandledInputEvent</b>
+(<code>WebView, InputEvent</code>)</A></nobr><br>
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.onUpdateCursorAnchorInfo_added(android.view.inputmethod.CursorAnchorInfo)" class="hiddenlink" target="rightframe"><b>onUpdateCursorAnchorInfo</b>
+(<code>CursorAnchorInfo</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onVisibleBehindCanceled_added()" class="hiddenlink" target="rightframe"><b>onVisibleBehindCanceled</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.dreams.DreamService.html#android.service.dreams.DreamService.onWakeUp_added()" class="hiddenlink" target="rightframe"><b>onWakeUp</b>
+()</A></nobr><br>
+<i>openAssetFile</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.openAssetFile_added(android.net.Uri, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Uri, String</code>)</b>&nbsp;in&nbsp;android.provider.DocumentsProvider
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.openAssetFile_added(android.net.Uri, java.lang.String, android.os.CancellationSignal)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Uri, String, CancellationSignal</code>)</b>&nbsp;in&nbsp;android.provider.DocumentsProvider
+</A></nobr><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#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.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playEarcon_added(java.lang.String, int, android.os.Bundle, java.lang.String)" class="hiddenlink" target="rightframe"><b>playEarcon</b>
+(<code>String, int, Bundle, String</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playSilentUtterance_added(long, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>playSilentUtterance</b>
+(<code>long, int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.postponeEnterTransition_added()" class="hiddenlink" target="rightframe"><b>postponeEnterTransition</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putSize_added(java.lang.String, android.util.Size)" class="hiddenlink" target="rightframe"><b>putSize</b>
+(<code>String, Size</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putSizeF_added(java.lang.String, android.util.SizeF)" class="hiddenlink" target="rightframe"><b>putSizeF</b>
+(<code>String, SizeF</code>)</A></nobr><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#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>readPersistableBundle</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readPersistableBundle_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.os.Parcel
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readPersistableBundle_added(java.lang.ClassLoader)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ClassLoader</code>)</b>&nbsp;in&nbsp;android.os.Parcel
+</A></nobr><br>
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readSize_added()" class="hiddenlink" target="rightframe"><b>readSize</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readSizeF_added()" class="hiddenlink" target="rightframe"><b>readSizeF</b>
+()</A></nobr><br>
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.registerAidsForService_added(android.content.ComponentName, java.lang.String, java.util.List<java.lang.String>)" class="hiddenlink" target="rightframe"><b>registerAidsForService</b>
+(<code>ComponentName, String, List&lt;String&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.registerNetworkCallback_added(android.net.NetworkRequest, android.net.ConnectivityManager.NetworkCallback)" class="hiddenlink" target="rightframe"><b>registerNetworkCallback</b>
+(<code>NetworkRequest, NetworkCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.os.PowerManager.WakeLock.html#android.os.PowerManager.WakeLock.release_added(int)" class="hiddenlink" target="rightframe"><b>release</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.releaseInstance_added()" class="hiddenlink" target="rightframe"><b>releaseInstance</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.releaseOutputBuffer_added(int, long)" class="hiddenlink" target="rightframe"><b>releaseOutputBuffer</b>
+(<code>int, long</code>)</A></nobr><br>
+<i>removeAction</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.removeAction_added(android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AccessibilityAction</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.removeAction_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo
+</A></nobr><br>
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.removeAidsForService_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>removeAidsForService</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeAllCookies_added(android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>removeAllCookies</b>
+(<code>ValueCallback&lt;Boolean&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.net.nsd.NsdServiceInfo.html#android.net.nsd.NsdServiceInfo.removeAttribute_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>removeAttribute</b>
+(<code>String</code>)</A></nobr><br>
+<i>removeChild</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.removeChild_added(android.view.View)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.removeChild_added(android.view.View, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, int</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo
+</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.removeCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>removeCrossProfileWidgetProvider</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.removeDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><b>removeDefaultNetworkActiveListener</b>
+(<code>OnNetworkActiveListener</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeSessionCookies_added(android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>removeSessionCookies</b>
+(<code>ValueCallback&lt;Boolean&gt;</code>)</A></nobr><br>
+<i>removeTarget</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.removeTarget_added(java.lang.Class)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Class</code>)</b>&nbsp;in&nbsp;android.transition.Transition
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.removeTarget_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.transition.Transition
+</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.removeUser_added(android.content.ComponentName, android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>removeUser</b>
+(<code>ComponentName, UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.accounts.AccountManager.html#android.accounts.AccountManager.renameAccount_added(android.accounts.Account, java.lang.String, android.accounts.AccountManagerCallback<android.accounts.Account>, android.os.Handler)" class="hiddenlink" target="rightframe"><b>renameAccount</b>
+(<code>Account, String, AccountManagerCallback&lt;Account&gt;, Handler</code>)</A></nobr><br>
+<i>renameDocument</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.renameDocument_added(android.content.ContentResolver, android.net.Uri, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ContentResolver, Uri, String</code>)</b>&nbsp;in&nbsp;android.provider.DocumentsContract
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.renameDocument_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, String</code>)</b>&nbsp;in&nbsp;android.provider.DocumentsProvider
+</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.replaceSystemWindowInsets_added(android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>replaceSystemWindowInsets</b>
+(<code>Rect</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.replaceUnicodeDigits_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>replaceUnicodeDigits</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.reportBadNetwork_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>reportBadNetwork</b>
+(<code>Network</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.requestConnectionPriority_added(int)" class="hiddenlink" target="rightframe"><b>requestConnectionPriority</b>
+(<code>int</code>)</A></nobr><br>
+<i>requestCursorUpdates</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.BaseInputConnection.html#android.view.inputmethod.BaseInputConnection.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.BaseInputConnection
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.InputConnection
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.InputConnectionWrapper.html#android.view.inputmethod.InputConnectionWrapper.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.InputConnectionWrapper
+</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.requestInterruptionFilter_added(int)" class="hiddenlink" target="rightframe"><b>requestInterruptionFilter</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.requestListenerHints_added(int)" class="hiddenlink" target="rightframe"><b>requestListenerHints</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.requestMtu_added(int)" class="hiddenlink" target="rightframe"><b>requestMtu</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.requestNetwork_added(android.net.NetworkRequest, android.net.ConnectivityManager.NetworkCallback)" class="hiddenlink" target="rightframe"><b>requestNetwork</b>
+(<code>NetworkRequest, NetworkCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.requestUnbufferedDispatch_added(android.view.MotionEvent)" class="hiddenlink" target="rightframe"><b>requestUnbufferedDispatch</b>
+(<code>MotionEvent</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.requestVisibleBehind_added(boolean)" class="hiddenlink" target="rightframe"><b>requestVisibleBehind</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.reset_added()" class="hiddenlink" target="rightframe"><b>reset</b>
+()</A></nobr><br>
+<i>resize</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.display.VirtualDisplay.html#android.hardware.display.VirtualDisplay.resize_added(int, int, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, int</code>)</b>&nbsp;in&nbsp;android.hardware.display.VirtualDisplay
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.util.LruCache.html#android.util.LruCache.resize_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.util.LruCache
+</A></nobr><br>
+<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.revokeDocumentPermission_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>revokeDocumentPermission</b>
+(<code>String</code>)</A></nobr><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#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>saveLayer</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.saveLayer_added(android.graphics.RectF, android.graphics.Paint)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>RectF, Paint</code>)</b>&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.saveLayer_added(float, float, float, float, android.graphics.Paint)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float, float, float, float, Paint</code>)</b>&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<i>saveLayerAlpha</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.saveLayerAlpha_added(android.graphics.RectF, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>RectF, int</code>)</b>&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.saveLayerAlpha_added(float, float, float, float, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float, float, float, float, int</code>)</b>&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.sendEnvelopeWithStatus_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>sendEnvelopeWithStatus</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.sendMultimediaMessage_added(android.content.Context, android.net.Uri, java.lang.String, android.os.Bundle, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>sendMultimediaMessage</b>
+(<code>Context, Uri, String, Bundle, PendingIntent</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.setAcceptThirdPartyCookies_added(android.webkit.WebView, boolean)" class="hiddenlink" target="rightframe"><b>setAcceptThirdPartyCookies</b>
+(<code>WebView, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setAccountManagementDisabled_added(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setAccountManagementDisabled</b>
+(<code>ComponentName, String, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.setActionBar_added(android.widget.Toolbar)" class="hiddenlink" target="rightframe"><b>setActionBar</b>
+(<code>Toolbar</code>)</A></nobr><br>
+<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.setAlarmClock_added(android.app.AlarmManager.AlarmClockInfo, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>setAlarmClock</b>
+(<code>AlarmClockInfo, PendingIntent</code>)</A></nobr><br>
+<i>setAllowEnterTransitionOverlap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setAllowEnterTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setAllowEnterTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<i>setAllowReturnTransitionOverlap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setAllowReturnTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setAllowReturnTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setApplicationHidden_added(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setApplicationHidden</b>
+(<code>ComponentName, String, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setApplicationRestrictions_added(android.content.ComponentName, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>setApplicationRestrictions</b>
+(<code>ComponentName, String, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.net.nsd.NsdServiceInfo.html#android.net.nsd.NsdServiceInfo.setAttribute_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>setAttribute</b>
+(<code>String, String</code>)</A></nobr><br>
+<i>setAudioAttributes</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AudioAttributes</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AudioAttributes</code>)</b>&nbsp;in&nbsp;android.media.Ringtone
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AudioAttributes</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setAutoTimeRequired_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setAutoTimeRequired</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setBackgroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setBackgroundTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setBackgroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setBackgroundTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.setBlocking_added(boolean)" class="hiddenlink" target="rightframe"><b>setBlocking</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.setButtonTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setButtonTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.setButtonTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setButtonTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.setCallback_added(android.media.MediaCodec.Callback)" class="hiddenlink" target="rightframe"><b>setCallback</b>
+(<code>Callback</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setCategory_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setCategory</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.setCheckMarkTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setCheckMarkTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.setCheckMarkTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setCheckMarkTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setClipToOutline_added(boolean)" class="hiddenlink" target="rightframe"><b>setClipToOutline</b>
+(<code>boolean</code>)</A></nobr><br>
+<i>setColor</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setColor_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.app.Notification.Builder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.GradientDrawable.html#android.graphics.drawable.GradientDrawable.setColor_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ColorStateList</code>)</b>&nbsp;in&nbsp;android.graphics.drawable.GradientDrawable
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.setColor_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.widget.EdgeEffect
+</A></nobr><br>
+<nobr><A HREF="android.hardware.usb.UsbDeviceConnection.html#android.hardware.usb.UsbDeviceConnection.setConfiguration_added(android.hardware.usb.UsbConfiguration)" class="hiddenlink" target="rightframe"><b>setConfiguration</b>
+(<code>UsbConfiguration</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.setContentTransitionManager_added(android.transition.TransitionManager)" class="hiddenlink" target="rightframe"><b>setContentTransitionManager</b>
+(<code>TransitionManager</code>)</A></nobr><br>
+<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.setConverter_added(android.animation.TypeConverter)" class="hiddenlink" target="rightframe"><b>setConverter</b>
+(<code>TypeConverter</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.setCookie_added(java.lang.String, java.lang.String, android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>setCookie</b>
+(<code>String, String, ValueCallback&lt;Boolean&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.media.Image.html#android.media.Image.setCropRect_added(android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>setCropRect</b>
+(<code>Rect</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setCrossProfileCallerIdDisabled_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setCrossProfileCallerIdDisabled</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setDrawable_added(android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe"><b>setDrawable</b>
+(<code>Drawable</code>)</A></nobr><br>
+<i>setElegantTextHeight</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setElegantTextHeight_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setElegantTextHeight_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<i>setElevation</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setElevation_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.View.html#android.view.View.setElevation_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.view.View
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.PopupWindow.html#android.widget.PopupWindow.setElevation_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.widget.PopupWindow
+</A></nobr><br>
+<i>setEnterSharedElementCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setEnterSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setEnterSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<i>setEnterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.setEpicenterCallback_added(android.transition.Transition.EpicenterCallback)" class="hiddenlink" target="rightframe"><b>setEpicenterCallback</b>
+(<code>EpicenterCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.setError_added(java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>setError</b>
+(<code>CharSequence</code>)</A></nobr><br>
+<i>setExitSharedElementCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setExitSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setExitSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<i>setExitTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setExitTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setExitTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.widget.AbsListView.html#android.widget.AbsListView.setFastScrollStyle_added(int)" class="hiddenlink" target="rightframe"><b>setFastScrollStyle</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.setFeatureEnabled_added(java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setFeatureEnabled</b>
+(<code>String, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.DatePicker.html#android.widget.DatePicker.setFirstDayOfWeek_added(int)" class="hiddenlink" target="rightframe"><b>setFirstDayOfWeek</b>
+(<code>int</code>)</A></nobr><br>
+<i>setFontFeatureSettings</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setFontFeatureSettings_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setFontFeatureSettings_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.setForegroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setForegroundTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.setForegroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setForegroundTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setFromDegrees_added(float)" class="hiddenlink" target="rightframe"><b>setFromDegrees</b>
+(<code>float</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setGlobalSetting_added(android.content.ComponentName, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>setGlobalSetting</b>
+(<code>ComponentName, String, String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setHideOffset_added(int)" class="hiddenlink" target="rightframe"><b>setHideOffset</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setHideOnContentScrollEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setHideOnContentScrollEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setHotspot_added(float, float)" class="hiddenlink" target="rightframe"><b>setHotspot</b>
+(<code>float, float</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setHotspotBounds_added(int, int, int, int)" class="hiddenlink" target="rightframe"><b>setHotspotBounds</b>
+(<code>int, int, int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.setImageTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setImageTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.setImageTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setImageTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setIndeterminateDrawableTiled_added(android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe"><b>setIndeterminateDrawableTiled</b>
+(<code>Drawable</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setIndeterminateTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setIndeterminateTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setIndeterminateTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setIndeterminateTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.usb.UsbDeviceConnection.html#android.hardware.usb.UsbDeviceConnection.setInterface_added(android.hardware.usb.UsbInterface)" class="hiddenlink" target="rightframe"><b>setInterface</b>
+(<code>UsbInterface</code>)</A></nobr><br>
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.setIntValue_added(int)" class="hiddenlink" target="rightframe"><b>setIntValue</b>
+(<code>int</code>)</A></nobr><br>
+<i>setLetterSpacing</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setLetterSpacing_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setLetterSpacing_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setLockTaskPackages_added(android.content.ComponentName, java.lang.String[])" class="hiddenlink" target="rightframe"><b>setLockTaskPackages</b>
+(<code>ComponentName, String[]</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setMasterVolumeMuted_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setMasterVolumeMuted</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.setMatchOrder_added(int...)" class="hiddenlink" target="rightframe"><b>setMatchOrder</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.setMaxTextLength_added(int)" class="hiddenlink" target="rightframe"><b>setMaxTextLength</b>
+(<code>int</code>)</A></nobr><br>
+<i>setMediaController</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setMediaController_added(android.media.session.MediaController)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>MediaController</code>)</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setMediaController_added(android.media.session.MediaController)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>MediaController</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setMixedContentMode_added(int)" class="hiddenlink" target="rightframe"><b>setMixedContentMode</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.setMode_added(int)" class="hiddenlink" target="rightframe"><b>setMode</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.setNavigationBarColor_added(int)" class="hiddenlink" target="rightframe"><b>setNavigationBarColor</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setNestedScrollingEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setNestedScrollingEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.SurfaceTexture.html#android.graphics.SurfaceTexture.setOnFrameAvailableListener_added(android.graphics.SurfaceTexture.OnFrameAvailableListener, android.os.Handler)" class="hiddenlink" target="rightframe"><b>setOnFrameAvailableListener</b>
+(<code>OnFrameAvailableListener, Handler</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setOutlineProvider_added(android.view.ViewOutlineProvider)" class="hiddenlink" target="rightframe"><b>setOutlineProvider</b>
+(<code>ViewOutlineProvider</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.QuickContactBadge.html#android.widget.QuickContactBadge.setOverlay_added(android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe"><b>setOverlay</b>
+(<code>Drawable</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.LayerDrawable.html#android.graphics.drawable.LayerDrawable.setPaddingMode_added(int)" class="hiddenlink" target="rightframe"><b>setPaddingMode</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.setPathMotion_added(android.transition.PathMotion)" class="hiddenlink" target="rightframe"><b>setPathMotion</b>
+(<code>PathMotion</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setPermittedAccessibilityServices_added(android.content.ComponentName, java.util.List<java.lang.String>)" class="hiddenlink" target="rightframe"><b>setPermittedAccessibilityServices</b>
+(<code>ComponentName, List&lt;String&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setPermittedInputMethods_added(android.content.ComponentName, java.util.List<java.lang.String>)" class="hiddenlink" target="rightframe"><b>setPermittedInputMethods</b>
+(<code>ComponentName, List&lt;String&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setPivotX_added(float)" class="hiddenlink" target="rightframe"><b>setPivotX</b>
+(<code>float</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setPivotXRelative_added(boolean)" class="hiddenlink" target="rightframe"><b>setPivotXRelative</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setPivotY_added(float)" class="hiddenlink" target="rightframe"><b>setPivotY</b>
+(<code>float</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setPivotYRelative_added(boolean)" class="hiddenlink" target="rightframe"><b>setPivotYRelative</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.setPreferredService_added(android.app.Activity, android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>setPreferredService</b>
+(<code>Activity, ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.setProcessDefaultNetwork_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>setProcessDefaultNetwork</b>
+(<code>Network</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setProfileEnabled_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>setProfileEnabled</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setProfileName_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>setProfileName</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressBackgroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setProgressBackgroundTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressBackgroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setProgressBackgroundTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressDrawableTiled_added(android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe"><b>setProgressDrawableTiled</b>
+(<code>Drawable</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setProgressTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setProgressTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.setPropagation_added(android.transition.TransitionPropagation)" class="hiddenlink" target="rightframe"><b>setPropagation</b>
+(<code>TransitionPropagation</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setPublicVersion_added(android.app.Notification)" class="hiddenlink" target="rightframe"><b>setPublicVersion</b>
+(<code>Notification</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setRecommendedGlobalProxy_added(android.content.ComponentName, android.net.ProxyInfo)" class="hiddenlink" target="rightframe"><b>setRecommendedGlobalProxy</b>
+(<code>ComponentName, ProxyInfo</code>)</A></nobr><br>
+<i>setReenterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html#java.util.concurrent.ScheduledThreadPoolExecutor.setRemoveOnCancelPolicy_added(boolean)" class="hiddenlink" target="rightframe"><b>setRemoveOnCancelPolicy</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.setResponseHeaders_added(java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe"><b>setResponseHeaders</b>
+(<code>Map&lt;String, String&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setRestrictionsProvider_added(android.content.ComponentName, android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>setRestrictionsProvider</b>
+(<code>ComponentName, ComponentName</code>)</A></nobr><br>
+<i>setReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setScreenCaptureDisabled_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setScreenCaptureDisabled</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setSecondaryProgressTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setSecondaryProgressTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setSecondaryProgressTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setSecondaryProgressTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setSecureSetting_added(android.content.ComponentName, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>setSecureSetting</b>
+(<code>ComponentName, String, String</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.AbsListView.html#android.widget.AbsListView.setSelectionFromTop_added(int, int)" class="hiddenlink" target="rightframe"><b>setSelectionFromTop</b>
+(<code>int, int</code>)</A></nobr><br>
+<i>setSharedElementEnterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setSharedElementEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementExitTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setSharedElementExitTransition</b>
+(<code>Transition</code>)</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setSharedElementReenterTransition</b>
+(<code>Transition</code>)</A></nobr><br>
+<i>setSharedElementReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setSharedElementReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementsUseOverlay_added(boolean)" class="hiddenlink" target="rightframe"><b>setSharedElementsUseOverlay</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setShowSoftInputOnFocus_added(boolean)" class="hiddenlink" target="rightframe"><b>setShowSoftInputOnFocus</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.setShowText_added(boolean)" class="hiddenlink" target="rightframe"><b>setShowText</b>
+(<code>boolean</code>)</A></nobr><br>
+<i>setSound</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_added(android.net.Uri, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Uri, AudioAttributes</code>)</b>&nbsp;in&nbsp;android.app.Notification.Builder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_added(android.net.Uri, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Uri, int</code>)</b>&nbsp;in&nbsp;android.app.Notification.Builder
+</A></nobr><br>
+<i>setSplitTrack</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.setSplitTrack_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.widget.AbsSeekBar
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.setSplitTrack_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.widget.Switch
+</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setStateListAnimator_added(android.animation.StateListAnimator)" class="hiddenlink" target="rightframe"><b>setStateListAnimator</b>
+(<code>StateListAnimator</code>)</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.setStatusBarColor_added(int)" class="hiddenlink" target="rightframe"><b>setStatusBarColor</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.setStatusCodeAndReasonPhrase_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>setStatusCodeAndReasonPhrase</b>
+(<code>int, String</code>)</A></nobr><br>
+<i>setStroke</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.GradientDrawable.html#android.graphics.drawable.GradientDrawable.setStroke_added(int, android.content.res.ColorStateList)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, ColorStateList</code>)</b>&nbsp;in&nbsp;android.graphics.drawable.GradientDrawable
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.GradientDrawable.html#android.graphics.drawable.GradientDrawable.setStroke_added(int, android.content.res.ColorStateList, float, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, ColorStateList, float, float</code>)</b>&nbsp;in&nbsp;android.graphics.drawable.GradientDrawable
+</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.setTaskDescription_added(android.app.ActivityManager.TaskDescription)" class="hiddenlink" target="rightframe"><b>setTaskDescription</b>
+(<code>TaskDescription</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.setThumbTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setThumbTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.setThumbTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setThumbTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTint_added(int)" class="hiddenlink" target="rightframe"><b>setTint</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setToDegrees_added(float)" class="hiddenlink" target="rightframe"><b>setToDegrees</b>
+(<code>float</code>)</A></nobr><br>
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.setTouchscreenBlocksFocus_added(boolean)" class="hiddenlink" target="rightframe"><b>setTouchscreenBlocksFocus</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.setTransitionBackgroundFadeDuration_added(long)" class="hiddenlink" target="rightframe"><b>setTransitionBackgroundFadeDuration</b>
+(<code>long</code>)</A></nobr><br>
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.setTransitionGroup_added(boolean)" class="hiddenlink" target="rightframe"><b>setTransitionGroup</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.setTransitionManager_added(android.transition.TransitionManager)" class="hiddenlink" target="rightframe"><b>setTransitionManager</b>
+(<code>TransitionManager</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setTransitionName_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setTransitionName</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setTranslationZ_added(float)" class="hiddenlink" target="rightframe"><b>setTranslationZ</b>
+(<code>float</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setUninstallBlocked_added(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setUninstallBlocked</b>
+(<code>ComponentName, String, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.VideoView.html#android.widget.VideoView.setVideoURI_added(android.net.Uri, java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe"><b>setVideoURI</b>
+(<code>Uri, Map&lt;String, String&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.app.AlertDialog.Builder.html#android.app.AlertDialog.Builder.setView_added(int)" class="hiddenlink" target="rightframe"><b>setView</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setVisibility_added(int)" class="hiddenlink" target="rightframe"><b>setVisibility</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.setVoice_added(android.speech.tts.Voice)" class="hiddenlink" target="rightframe"><b>setVoice</b>
+(<code>Voice</code>)</A></nobr><br>
+<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.setVolume_added(float)" class="hiddenlink" target="rightframe"><b>setVolume</b>
+(<code>float</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setZ_added(float)" class="hiddenlink" target="rightframe"><b>setZ</b>
+(<code>float</code>)</A></nobr><br>
+<i>shouldInterceptRequest</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, android.webkit.WebResourceRequest)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>WebView, WebResourceRequest</code>)</b>&nbsp;in&nbsp;android.webkit.WebViewClient
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>WebView, String</code>)</b>&nbsp;in&nbsp;android.webkit.WebViewClient
+</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.speak_added(java.lang.CharSequence, int, android.os.Bundle, java.lang.String)" class="hiddenlink" target="rightframe"><b>speak</b>
+(<code>CharSequence, int, Bundle, String</code>)</A></nobr><br>
+<i>spec</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, android.widget.GridLayout.Alignment, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, Alignment, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, int, android.widget.GridLayout.Alignment, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, Alignment, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, int, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetHost.html#android.appwidget.AppWidgetHost.startAppWidgetConfigureActivityForResult_added(android.app.Activity, int, int, int, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>startAppWidgetConfigureActivityForResult</b>
+(<code>Activity, int, int, int, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.startLockTask_added()" class="hiddenlink" target="rightframe"><b>startLockTask</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.Debug.html#android.os.Debug.startMethodTracingSampling_added(java.lang.String, int, int)" class="hiddenlink" target="rightframe"><b>startMethodTracingSampling</b>
+(<code>String, int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.startNestedScroll_added(int)" class="hiddenlink" target="rightframe"><b>startNestedScroll</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.startPostponedEnterTransition_added()" class="hiddenlink" target="rightframe"><b>startPostponedEnterTransition</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.startWps_added(android.net.wifi.WpsInfo, android.net.wifi.WifiManager.WpsCallback)" class="hiddenlink" target="rightframe"><b>startWps</b>
+(<code>WpsInfo, WpsCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.stopLockTask_added()" class="hiddenlink" target="rightframe"><b>stopLockTask</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.stopNestedScroll_added()" class="hiddenlink" target="rightframe"><b>stopNestedScroll</b>
+()</A></nobr><br>
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.supportsAidPrefixRegistration_added()" class="hiddenlink" target="rightframe"><b>supportsAidPrefixRegistration</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.InputDevice.html#android.view.InputDevice.supportsSource_added(int)" class="hiddenlink" target="rightframe"><b>supportsSource</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.switchUser_added(android.content.ComponentName, android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>switchUser</b>
+(<code>ComponentName, UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.synthesizeToFile_added(java.lang.CharSequence, android.os.Bundle, java.io.File, java.lang.String)" class="hiddenlink" target="rightframe"><b>synthesizeToFile</b>
+(<code>CharSequence, Bundle, File, String</code>)</A></nobr><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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="#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="java.util.Locale.html#java.util.Locale.toLanguageTag_added()" class="hiddenlink" target="rightframe"><b>toLanguageTag</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.ViewPropertyAnimator.html#android.view.ViewPropertyAnimator.translationZ_added(float)" class="hiddenlink" target="rightframe"><b>translationZ</b>
+(<code>float</code>)</A></nobr><br>
+<nobr><A HREF="android.view.ViewPropertyAnimator.html#android.view.ViewPropertyAnimator.translationZBy_added(float)" class="hiddenlink" target="rightframe"><b>translationZBy</b>
+(<code>float</code>)</A></nobr><br>
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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="#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.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.uninstallAllUserCaCerts_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>uninstallAllUserCaCerts</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.uninstallCaCert_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>uninstallCaCert</b>
+(<code>ComponentName, byte[]</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.unregisterNetworkCallback_added(android.net.ConnectivityManager.NetworkCallback)" class="hiddenlink" target="rightframe"><b>unregisterNetworkCallback</b>
+(<code>NetworkCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.unsetPreferredService_added(android.app.Activity)" class="hiddenlink" target="rightframe"><b>unsetPreferredService</b>
+(<code>Activity</code>)</A></nobr><br>
+<i>updateCursorAnchorInfo</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.inputmethodservice.InputMethodService.InputMethodSessionImpl.html#android.inputmethodservice.InputMethodService.InputMethodSessionImpl.updateCursorAnchorInfo_added(android.view.inputmethod.CursorAnchorInfo)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CursorAnchorInfo</code>)</b>&nbsp;in&nbsp;android.inputmethodservice.InputMethodService.InputMethodSessionImpl
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.InputMethodManager.html#android.view.inputmethod.InputMethodManager.updateCursorAnchorInfo_added(android.view.View, android.view.inputmethod.CursorAnchorInfo)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, CursorAnchorInfo</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.InputMethodManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.InputMethodSession.html#android.view.inputmethod.InputMethodSession.updateCursorAnchorInfo_added(android.view.inputmethod.CursorAnchorInfo)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CursorAnchorInfo</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.InputMethodSession
+</A></nobr><br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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="#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>vibrate</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_added(long, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long, AudioAttributes</code>)</b>&nbsp;in&nbsp;android.os.Vibrator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_added(long[], int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long[], int</code>)</b>&nbsp;in&nbsp;android.os.Vibrator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_added(long[], int, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long[], int, AudioAttributes</code>)</b>&nbsp;in&nbsp;android.os.Vibrator
+</A></nobr><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#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">
+<nobr><A HREF="android.service.dreams.DreamService.html#android.service.dreams.DreamService.wakeUp_added()" class="hiddenlink" target="rightframe"><b>wakeUp</b>
+()</A></nobr><br>
+<i>write</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.write_added(float[], int, int, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float[], int, int, int</code>)</b>&nbsp;in&nbsp;android.media.AudioTrack
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.write_added(java.nio.ByteBuffer, int, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ByteBuffer, int, int</code>)</b>&nbsp;in&nbsp;android.media.AudioTrack
+</A></nobr><br>
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.writePersistableBundle_added(android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>writePersistableBundle</b>
+(<code>PersistableBundle</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.writeSize_added(android.util.Size)" class="hiddenlink" target="rightframe"><b>writeSize</b>
+(<code>Size</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.writeSizeF_added(android.util.SizeF)" class="hiddenlink" target="rightframe"><b>writeSizeF</b>
+(<code>SizeF</code>)</A></nobr><br>
+<A NAME="Z"></A>
+<br><font size="+2">Z</font>&nbsp;
+<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="#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.view.ViewPropertyAnimator.html#android.view.ViewPropertyAnimator.z_added(float)" class="hiddenlink" target="rightframe"><b>z</b>
+(<code>float</code>)</A></nobr><br>
+<nobr><A HREF="android.view.ViewPropertyAnimator.html#android.view.ViewPropertyAnimator.zBy_added(float)" class="hiddenlink" target="rightframe"><b>zBy</b>
+(<code>float</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.zoomBy_added(float)" class="hiddenlink" target="rightframe"><b>zoomBy</b>
+(<code>float</code>)</A></nobr><br>
+<script src="//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/21/changes/methods_index_all.html b/docs/html/sdk/api_diff/21/changes/methods_index_all.html
new file mode 100644
index 0000000..4c3ba31
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/methods_index_all.html
@@ -0,0 +1,2823 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<A HREF="methods_index_removals.html" xclass="hiddenlink">Removals</A>
+  <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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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">
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.acceptThirdPartyCookies_added(android.webkit.WebView)" class="hiddenlink" target="rightframe"><b>acceptThirdPartyCookies</b>
+(<code>WebView</code>)</A></nobr><br>
+<i>addAction</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.addAction_added(android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AccessibilityAction</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.addAction_changed(int)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>int</code>)&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo
+</A></nobr><br>
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.addAllowedApplication_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>addAllowedApplication</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.addAppTask_added(android.app.Activity, android.content.Intent, android.app.ActivityManager.TaskDescription, android.graphics.Bitmap)" class="hiddenlink" target="rightframe"><b>addAppTask</b>
+(<code>Activity, Intent, TaskDescription, Bitmap</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addArc_added(float, float, float, float, float, float)" class="hiddenlink" target="rightframe"><b>addArc</b>
+(<code>float, float, float, float, float, float</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addCrossProfileIntentFilter_added(android.content.ComponentName, android.content.IntentFilter, int)" class="hiddenlink" target="rightframe"><b>addCrossProfileIntentFilter</b>
+(<code>ComponentName, IntentFilter, int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>addCrossProfileWidgetProvider</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.addDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><b>addDefaultNetworkActiveListener</b>
+(<code>OnNetworkActiveListener</code>)</A></nobr><br>
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.addDisallowedApplication_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>addDisallowedApplication</b>
+(<code>String</code>)</A></nobr><br>
+<i>addEarcon</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_removed(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String, String</code>)</strike>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.io.File)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, File</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, String</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addOval_added(float, float, float, float, android.graphics.Path.Direction)" class="hiddenlink" target="rightframe"><b>addOval</b>
+(<code>float, float, float, float, Direction</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addPersistentPreferredActivity_added(android.content.ComponentName, android.content.IntentFilter, android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>addPersistentPreferredActivity</b>
+(<code>ComponentName, IntentFilter, ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.addPerson_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>addPerson</b>
+(<code>String</code>)</A></nobr><br>
+<i>addRoundRect</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addRoundRect_added(float, float, float, float, float, float, android.graphics.Path.Direction)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float, float, float, float, float, float, Direction</code>)</b>&nbsp;in&nbsp;android.graphics.Path
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addRoundRect_added(float, float, float, float, float[], android.graphics.Path.Direction)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float, float, float, float, float[], Direction</code>)</b>&nbsp;in&nbsp;android.graphics.Path
+</A></nobr><br>
+<nobr><A HREF="android.app.FragmentTransaction.html#android.app.FragmentTransaction.addSharedElement_added(android.view.View, java.lang.String)" class="hiddenlink" target="rightframe"><b>addSharedElement</b>
+(<code>View, String</code>)</A></nobr><br>
+<i>addSpeech</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.io.File)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, File</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, String, int</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<i>addTab</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Tab</code>)&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab, boolean)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Tab, boolean</code>)&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab, int)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Tab, int</code>)&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab, int, boolean)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Tab, int, boolean</code>)&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+<i>addTarget</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.addTarget_added(java.lang.Class)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Class</code>)</b>&nbsp;in&nbsp;android.transition.Transition
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.addTarget_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.transition.Transition
+</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addUserRestriction_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>addUserRestriction</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.allowBypass_added()" class="hiddenlink" target="rightframe"><b>allowBypass</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.allowFamily_added(int)" class="hiddenlink" target="rightframe"><b>allowFamily</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.text.SpannableStringBuilder.html#android.text.SpannableStringBuilder.append_added(java.lang.CharSequence, java.lang.Object, int)" class="hiddenlink" target="rightframe"><b>append</b>
+(<code>CharSequence, Object, int</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.applyTheme_added(android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>applyTheme</b>
+(<code>Theme</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.arcTo_added(float, float, float, float, float, float, boolean)" class="hiddenlink" target="rightframe"><b>arcTo</b>
+(<code>float, float, float, float, float, float, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.areDefaultsEnforced_changed()" class="hiddenlink" target="rightframe">areDefaultsEnforced
+()</A></nobr><br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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="#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.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.bindAppWidgetIdIfAllowed_added(int, android.os.UserHandle, android.content.ComponentName, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>bindAppWidgetIdIfAllowed</b>
+(<code>int, UserHandle, ComponentName, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.buildChildDocumentsUriUsingTree_added(android.net.Uri, java.lang.String)" class="hiddenlink" target="rightframe"><b>buildChildDocumentsUriUsingTree</b>
+(<code>Uri, String</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.buildDocumentUriUsingTree_added(android.net.Uri, java.lang.String)" class="hiddenlink" target="rightframe"><b>buildDocumentUriUsingTree</b>
+(<code>Uri, String</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.buildTreeDocumentUri_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>buildTreeDocumentUri</b>
+(<code>String, String</code>)</A></nobr><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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="#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.app.Instrumentation.html#android.app.Instrumentation.callActivityOnCreate_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>callActivityOnCreate</b>
+(<code>Activity, Bundle, PersistableBundle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Instrumentation.html#android.app.Instrumentation.callActivityOnPostCreate_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>callActivityOnPostCreate</b>
+(<code>Activity, Bundle, PersistableBundle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Instrumentation.html#android.app.Instrumentation.callActivityOnRestoreInstanceState_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>callActivityOnRestoreInstanceState</b>
+(<code>Activity, Bundle, PersistableBundle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Instrumentation.html#android.app.Instrumentation.callActivityOnSaveInstanceState_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>callActivityOnSaveInstanceState</b>
+(<code>Activity, Bundle, PersistableBundle</code>)</A></nobr><br>
+<i>canApplyTheme</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.canApplyTheme_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.graphics.drawable.Drawable
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.Drawable.ConstantState.html#android.graphics.drawable.Drawable.ConstantState.canApplyTheme_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.graphics.drawable.Drawable.ConstantState
+</A></nobr><br>
+<i>cancelNotification</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.cancelNotification_removed(java.lang.String, java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String, String, int</code>)</strike>&nbsp;in&nbsp;android.service.notification.NotificationListenerService
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.cancelNotification_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.service.notification.NotificationListenerService
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.cancelNotification_added(java.lang.String, java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, String, int</code>)</b>&nbsp;in&nbsp;android.service.notification.NotificationListenerService
+</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.cancelNotifications_added(java.lang.String[])" class="hiddenlink" target="rightframe"><b>cancelNotifications</b>
+(<code>String[]</code>)</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.cancelSync_added(android.content.SyncRequest)" class="hiddenlink" target="rightframe"><b>cancelSync</b>
+(<code>SyncRequest</code>)</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.cancelWps_added(android.net.wifi.WifiManager.WpsCallback)" class="hiddenlink" target="rightframe"><b>cancelWps</b>
+(<code>WpsCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.canRemoveViews_added()" class="hiddenlink" target="rightframe"><b>canRemoveViews</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.canVirtualize_added(int, int)" class="hiddenlink" target="rightframe"><b>canVirtualize</b>
+(<code>int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.categoryAllowsForegroundPreference_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>categoryAllowsForegroundPreference</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.clear_changed()" class="hiddenlink" target="rightframe">clear
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.clearClientCertPreferences_added(java.lang.Runnable)" class="hiddenlink" target="rightframe"><b>clearClientCertPreferences</b>
+(<code>Runnable</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearCrossProfileIntentFilters_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>clearCrossProfileIntentFilters</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearDeviceOwnerApp_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>clearDeviceOwnerApp</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearPackagePersistentPreferredActivities_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>clearPackagePersistentPreferredActivities</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearUserRestriction_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>clearUserRestriction</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.clearWindowAnimationFrameStats_added()" class="hiddenlink" target="rightframe"><b>clearWindowAnimationFrameStats</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.clearWindowContentFrameStats_added(int)" class="hiddenlink" target="rightframe"><b>clearWindowContentFrameStats</b>
+(<code>int</code>)</A></nobr><br>
+<i>clipRegion</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.clipRegion_changed(android.graphics.Region)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Region</code>)&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.clipRegion_changed(android.graphics.Region, android.graphics.Region.Op)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Region, Op</code>)&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.computeSystemWindowInsets_added(android.view.WindowInsets, android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>computeSystemWindowInsets</b>
+(<code>WindowInsets, Rect</code>)</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.consumeStableInsets_added()" class="hiddenlink" target="rightframe"><b>consumeStableInsets</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.containsKey_changed(java.lang.String)" class="hiddenlink" target="rightframe">containsKey
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copy1DRangeFrom_added(int, int, java.lang.Object)" class="hiddenlink" target="rightframe"><b>copy1DRangeFrom</b>
+(<code>int, int, Object</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copy1DRangeFromUnchecked_added(int, int, java.lang.Object)" class="hiddenlink" target="rightframe"><b>copy1DRangeFromUnchecked</b>
+(<code>int, int, Object</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copy2DRangeFrom_added(int, int, int, int, java.lang.Object)" class="hiddenlink" target="rightframe"><b>copy2DRangeFrom</b>
+(<code>int, int, int, int, Object</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copyFrom_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>copyFrom</b>
+(<code>Object</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copyFromUnchecked_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>copyFromUnchecked</b>
+(<code>Object</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copyTo_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>copyTo</b>
+(<code>Object</code>)</A></nobr><br>
+<i>create</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Dialog.html#android.app.Dialog.create_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Dialog
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.create_added(android.content.Context, android.net.Uri, android.view.SurfaceHolder, android.media.AudioAttributes, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context, Uri, SurfaceHolder, AudioAttributes, int</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.create_added(android.content.Context, int, android.media.AudioAttributes, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context, int, AudioAttributes, int</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.RenderScript.html#android.renderscript.RenderScript.create_added(android.content.Context, android.renderscript.RenderScript.ContextType, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context, ContextType, int</code>)</b>&nbsp;in&nbsp;android.renderscript.RenderScript
+</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.createAndInitializeUser_added(android.content.ComponentName, java.lang.String, java.lang.String, android.content.ComponentName, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>createAndInitializeUser</b>
+(<code>ComponentName, String, String, ComponentName, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.createByCodecName_changed(java.lang.String)" class="hiddenlink" target="rightframe">createByCodecName
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.KeyguardManager.html#android.app.KeyguardManager.createConfirmDeviceCredentialIntent_added(java.lang.CharSequence, java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>createConfirmDeviceCredentialIntent</b>
+(<code>CharSequence, CharSequence</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.createDecoderByType_changed(java.lang.String)" class="hiddenlink" target="rightframe">createDecoderByType
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.createDocument_added(android.content.ContentResolver, android.net.Uri, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>createDocument</b>
+(<code>ContentResolver, Uri, String, String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.createEncoderByType_changed(java.lang.String)" class="hiddenlink" target="rightframe">createEncoderByType
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.createFromProfileLevel_added(java.lang.String, int, int)" class="hiddenlink" target="rightframe"><b>createFromProfileLevel</b>
+(<code>String, int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.createFromXml_added(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>createFromXml</b>
+(<code>Resources, XmlPullParser, Theme</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.createFromXmlInner_added(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.util.AttributeSet, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>createFromXmlInner</b>
+(<code>Resources, XmlPullParser, AttributeSet, Theme</code>)</A></nobr><br>
+<i>createPrintDocumentAdapter</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.createPrintDocumentAdapter_removed()" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+()</strike>&nbsp;in&nbsp;android.webkit.WebView
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.createPrintDocumentAdapter_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.webkit.WebView
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.createPrintDocumentAdapter_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.webkit.WebView
+</A></nobr><br>
+<nobr><A HREF="android.nfc.NdefRecord.html#android.nfc.NdefRecord.createTextRecord_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>createTextRecord</b>
+(<code>String, String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.createUser_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>createUser</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.display.DisplayManager.html#android.hardware.display.DisplayManager.createVirtualDisplay_added(java.lang.String, int, int, int, android.view.Surface, int, android.hardware.display.VirtualDisplay.Callback, android.os.Handler)" class="hiddenlink" target="rightframe"><b>createVirtualDisplay</b>
+(<code>String, int, int, int, Surface, int, Callback, Handler</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.Type.html#android.renderscript.Type.createX_added(android.renderscript.RenderScript, android.renderscript.Element, int)" class="hiddenlink" target="rightframe"><b>createX</b>
+(<code>RenderScript, Element, int</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.Type.html#android.renderscript.Type.createXY_added(android.renderscript.RenderScript, android.renderscript.Element, int, int)" class="hiddenlink" target="rightframe"><b>createXY</b>
+(<code>RenderScript, Element, int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.Type.html#android.renderscript.Type.createXYZ_added(android.renderscript.RenderScript, android.renderscript.Element, int, int, int)" class="hiddenlink" target="rightframe"><b>createXYZ</b>
+(<code>RenderScript, Element, int, int, int</code>)</A></nobr><br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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="#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.view.View.html#android.view.View.dispatchNestedFling_added(float, float, boolean)" class="hiddenlink" target="rightframe"><b>dispatchNestedFling</b>
+(<code>float, float, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.dispatchNestedPreFling_added(float, float)" class="hiddenlink" target="rightframe"><b>dispatchNestedPreFling</b>
+(<code>float, float</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.dispatchNestedPreScroll_added(int, int, int[], int[])" class="hiddenlink" target="rightframe"><b>dispatchNestedPreScroll</b>
+(<code>int, int, int[], int[]</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.dispatchNestedScroll_added(int, int, int, int, int[])" class="hiddenlink" target="rightframe"><b>dispatchNestedScroll</b>
+(<code>int, int, int, int, int[]</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.downloadMultimediaMessage_added(android.content.Context, java.lang.String, android.net.Uri, android.os.Bundle, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>downloadMultimediaMessage</b>
+(<code>Context, String, Uri, Bundle, PendingIntent</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.drawableHotspotChanged_added(float, float)" class="hiddenlink" target="rightframe"><b>drawableHotspotChanged</b>
+(<code>float, float</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawArc_added(float, float, float, float, float, float, boolean, android.graphics.Paint)" class="hiddenlink" target="rightframe"><b>drawArc</b>
+(<code>float, float, float, float, float, float, boolean, Paint</code>)</A></nobr><br>
+<i>drawBitmap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawBitmap_changed(int[], int, int, float, float, int, int, boolean, android.graphics.Paint)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>int[], int, int, float, float, int, int, boolean, Paint</code>)&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawBitmap_changed(int[], int, int, int, int, int, int, boolean, android.graphics.Paint)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>int[], int, int, int, int, int, int, boolean, Paint</code>)&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawOval_added(float, float, float, float, android.graphics.Paint)" class="hiddenlink" target="rightframe"><b>drawOval</b>
+(<code>float, float, float, float, Paint</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawRoundRect_added(float, float, float, float, float, float, android.graphics.Paint)" class="hiddenlink" target="rightframe"><b>drawRoundRect</b>
+(<code>float, float, float, float, float, float, Paint</code>)</A></nobr><br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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="#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.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.enableHardwareAcceleration_changed()" class="hiddenlink" target="rightframe">enableHardwareAcceleration
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.enableSlowWholeDocumentDraw_added()" class="hiddenlink" target="rightframe"><b>enableSlowWholeDocumentDraw</b>
+()</A></nobr><br>
+<i>enableSystemApp</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.enableSystemApp_added(android.content.ComponentName, android.content.Intent)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ComponentName, Intent</code>)</b>&nbsp;in&nbsp;android.app.admin.DevicePolicyManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.enableSystemApp_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ComponentName, String</code>)</b>&nbsp;in&nbsp;android.app.admin.DevicePolicyManager
+</A></nobr><br>
+<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.error_added(int)" class="hiddenlink" target="rightframe"><b>error</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.excludeTarget_added(java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>excludeTarget</b>
+(<code>String, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.executeShellCommand_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>executeShellCommand</b>
+(<code>String</code>)</A></nobr><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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="#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.media.MediaCodecList.html#android.media.MediaCodecList.findDecoderForFormat_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>findDecoderForFormat</b>
+(<code>MediaFormat</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.findEncoderForFormat_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>findEncoderForFormat</b>
+(<code>MediaFormat</code>)</A></nobr><br>
+<i>findFocus</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.accessibilityservice.AccessibilityService.html#android.accessibilityservice.AccessibilityService.findFocus_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.accessibilityservice.AccessibilityService
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.findFocus_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.app.UiAutomation
+</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.finishAfterTransition_added()" class="hiddenlink" target="rightframe"><b>finishAfterTransition</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.finishAndRemoveTask_added()" class="hiddenlink" target="rightframe"><b>finishAndRemoveTask</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.AbsListView.html#android.widget.AbsListView.fling_added(int)" class="hiddenlink" target="rightframe"><b>fling</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.flush_added()" class="hiddenlink" target="rightframe"><b>flush</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.forceVirtualizationMode_added(int)" class="hiddenlink" target="rightframe"><b>forceVirtualizationMode</b>
+(<code>int</code>)</A></nobr><br>
+<i>forEach</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsic3DLUT.html#android.renderscript.ScriptIntrinsic3DLUT.forEach_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsic3DLUT
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsicBlur.html#android.renderscript.ScriptIntrinsicBlur.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsicBlur
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsicColorMatrix.html#android.renderscript.ScriptIntrinsicColorMatrix.forEach_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsicColorMatrix
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsicConvolve3x3.html#android.renderscript.ScriptIntrinsicConvolve3x3.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsicConvolve3x3
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsicConvolve5x5.html#android.renderscript.ScriptIntrinsicConvolve5x5.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsicConvolve5x5
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsicHistogram.html#android.renderscript.ScriptIntrinsicHistogram.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsicHistogram
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptIntrinsicLUT.html#android.renderscript.ScriptIntrinsicLUT.forEach_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</b>&nbsp;in&nbsp;android.renderscript.ScriptIntrinsicLUT
+</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicHistogram.html#android.renderscript.ScriptIntrinsicHistogram.forEach_Dot_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEach_Dot</b>
+(<code>Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachAdd_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachAdd</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachClear_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachClear</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDst_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDst</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDstAtop_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDstAtop</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDstIn_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDstIn</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDstOut_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDstOut</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDstOver_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDstOver</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachMultiply_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachMultiply</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrc_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrc</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrcAtop_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrcAtop</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrcIn_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrcIn</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrcOut_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrcOut</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrcOver_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrcOver</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSubtract_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSubtract</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachXor_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachXor</b>
+(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.forLanguageTag_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>forLanguageTag</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatJapaneseNumber_changed(android.text.Editable)" class="hiddenlink" target="rightframe">formatJapaneseNumber
+(<code>Editable</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNanpNumber_changed(android.text.Editable)" class="hiddenlink" target="rightframe">formatNanpNumber
+(<code>Editable</code>)</A></nobr><br>
+<i>formatNumber</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_removed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String</code>)</strike>&nbsp;in&nbsp;android.telephony.PhoneNumberUtils
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_removed(android.text.Editable, int)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Editable, int</code>)</strike>&nbsp;in&nbsp;android.telephony.PhoneNumberUtils
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, String</code>)</b>&nbsp;in&nbsp;android.telephony.PhoneNumberUtils
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_added(java.lang.String, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, String, String</code>)</b>&nbsp;in&nbsp;android.telephony.PhoneNumberUtils
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.telephony.PhoneNumberUtils
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_added(android.text.Editable, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Editable, int</code>)</b>&nbsp;in&nbsp;android.telephony.PhoneNumberUtils
+</A></nobr><br>
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumberToE164_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>formatNumberToE164</b>
+(<code>String, String</code>)</A></nobr><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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="#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.media.AudioManager.html#android.media.AudioManager.generateAudioSessionId_added()" class="hiddenlink" target="rightframe"><b>generateAudioSessionId</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.get_changed(java.lang.String)" class="hiddenlink" target="rightframe">get
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getAccountTypesWithManagementDisabled_added()" class="hiddenlink" target="rightframe"><b>getAccountTypesWithManagementDisabled</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getActionList_added()" class="hiddenlink" target="rightframe"><b>getActionList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getActions_changed()" class="hiddenlink" target="rightframe">getActions
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getActiveNotifications_added(java.lang.String[])" class="hiddenlink" target="rightframe"><b>getActiveNotifications</b>
+(<code>String[]</code>)</A></nobr><br>
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.getAidsForService_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>getAidsForService</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getAllNetworks_added()" class="hiddenlink" target="rightframe"><b>getAllNetworks</b>
+()</A></nobr><br>
+<i>getAllowEnterTransitionOverlap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getAllowEnterTransitionOverlap_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getAllowEnterTransitionOverlap_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<i>getAllowReturnTransitionOverlap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getAllowReturnTransitionOverlap_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getAllowReturnTransitionOverlap_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.hardware.usb.UsbInterface.html#android.hardware.usb.UsbInterface.getAlternateSetting_added()" class="hiddenlink" target="rightframe"><b>getAlternateSetting</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getApplicationRestrictions_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>getApplicationRestrictions</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getAppTasks_added()" class="hiddenlink" target="rightframe"><b>getAppTasks</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getAppTaskThumbnailSize_added()" class="hiddenlink" target="rightframe"><b>getAppTaskThumbnailSize</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.Display.html#android.view.Display.getAppVsyncOffsetNanos_added()" class="hiddenlink" target="rightframe"><b>getAppVsyncOffsetNanos</b>
+()</A></nobr><br>
+<nobr><A HREF="android.content.res.AssetManager.AssetInputStream.html#android.content.res.AssetManager.AssetInputStream.getAssetInt_removed()" class="hiddenlink" target="rightframe"><strike>getAssetInt</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.net.nsd.NsdServiceInfo.html#android.net.nsd.NsdServiceInfo.getAttributes_added()" class="hiddenlink" target="rightframe"><b>getAttributes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.getAudioAttributes_added()" class="hiddenlink" target="rightframe"><b>getAudioAttributes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getAudioCapabilities_added()" class="hiddenlink" target="rightframe"><b>getAudioCapabilities</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getAutoTimeRequired_added()" class="hiddenlink" target="rightframe"><b>getAutoTimeRequired</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getAvailableLanguages_added()" class="hiddenlink" target="rightframe"><b>getAvailableLanguages</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getBackgroundTintList_added()" class="hiddenlink" target="rightframe"><b>getBackgroundTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getBackgroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getBackgroundTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.getBluetoothLeAdvertiser_added()" class="hiddenlink" target="rightframe"><b>getBluetoothLeAdvertiser</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.getBluetoothLeScanner_added()" class="hiddenlink" target="rightframe"><b>getBluetoothLeScanner</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.getButtonTintList_added()" class="hiddenlink" target="rightframe"><b>getButtonTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.getButtonTintMode_added()" class="hiddenlink" target="rightframe"><b>getButtonTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.getCarrierConfigValues_added()" class="hiddenlink" target="rightframe"><b>getCarrierConfigValues</b>
+()</A></nobr><br>
+<nobr><A HREF="android.content.res.TypedArray.html#android.content.res.TypedArray.getChangingConfigurations_added()" class="hiddenlink" target="rightframe"><b>getChangingConfigurations</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getChannelMask_added()" class="hiddenlink" target="rightframe"><b>getChannelMask</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.textservice.TextInfo.html#android.view.textservice.TextInfo.getCharSequence_added()" class="hiddenlink" target="rightframe"><b>getCharSequence</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getCharSequenceText_added()" class="hiddenlink" target="rightframe"><b>getCharSequenceText</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.getCheckMarkTintList_added()" class="hiddenlink" target="rightframe"><b>getCheckMarkTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.getCheckMarkTintMode_added()" class="hiddenlink" target="rightframe"><b>getCheckMarkTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getClipToOutline_added()" class="hiddenlink" target="rightframe"><b>getClipToOutline</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.getClipToPadding_added()" class="hiddenlink" target="rightframe"><b>getClipToPadding</b>
+()</A></nobr><br>
+<i>getCodeCacheDir</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.Context.html#android.content.Context.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.Context
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.ContextWrapper
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockContext
+</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecCount_changed()" class="hiddenlink" target="rightframe">getCodecCount
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecInfoAt_changed(int)" class="hiddenlink" target="rightframe">getCodecInfoAt
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecInfos_added()" class="hiddenlink" target="rightframe"><b>getCodecInfos</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.getColor_added()" class="hiddenlink" target="rightframe"><b>getColor</b>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.getColorFilter_added()" class="hiddenlink" target="rightframe"><b>getColorFilter</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getConfiguration_added(int)" class="hiddenlink" target="rightframe"><b>getConfiguration</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getConfigurationCount_added()" class="hiddenlink" target="rightframe"><b>getConfigurationCount</b>
+()</A></nobr><br>
+<i>getContentScene</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.getContentScene_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getContentScene_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.getContentTransitionManager_added()" class="hiddenlink" target="rightframe"><b>getContentTransitionManager</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.Image.html#android.media.Image.getCropRect_added()" class="hiddenlink" target="rightframe"><b>getCropRect</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getCrossProfileCallerIdDisabled_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getCrossProfileCallerIdDisabled</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getCrossProfileWidgetProviders_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getCrossProfileWidgetProviders</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getCurrentInterruptionFilter_added()" class="hiddenlink" target="rightframe"><b>getCurrentInterruptionFilter</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getCurrentListenerHints_added()" class="hiddenlink" target="rightframe"><b>getCurrentListenerHints</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getCurrentRanking_added()" class="hiddenlink" target="rightframe"><b>getCurrentRanking</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getDefaultFormat_added()" class="hiddenlink" target="rightframe"><b>getDefaultFormat</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getDefaultLanguage_changed()" class="hiddenlink" target="rightframe">getDefaultLanguage
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.SensorManager.html#android.hardware.SensorManager.getDefaultSensor_added(int, boolean)" class="hiddenlink" target="rightframe"><b>getDefaultSensor</b>
+(<code>int, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getDefaultVoice_added()" class="hiddenlink" target="rightframe"><b>getDefaultVoice</b>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.getDirtyBounds_added()" class="hiddenlink" target="rightframe"><b>getDirtyBounds</b>
+()</A></nobr><br>
+<i>getDisplayScript</i><br>
+&nbsp;&nbsp;<nobr><A HREF="java.util.Locale.html#java.util.Locale.getDisplayScript_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;java.util.Locale
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="java.util.Locale.html#java.util.Locale.getDisplayScript_added(java.util.Locale)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Locale</code>)</b>&nbsp;in&nbsp;java.util.Locale
+</A></nobr><br>
+<i>getDouble</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getDouble_removed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getDouble_removed(java.lang.String, double)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String, double</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getDoubleArray_changed(java.lang.String)" class="hiddenlink" target="rightframe">getDoubleArray
+(<code>String</code>)</A></nobr><br>
+<i>getDrawable</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.Context.html#android.content.Context.getDrawable_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.content.Context
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.res.Resources.html#android.content.res.Resources.getDrawable_added(int, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, Theme</code>)</b>&nbsp;in&nbsp;android.content.res.Resources
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.res.Resources.Theme.html#android.content.res.Resources.Theme.getDrawable_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.content.res.Resources.Theme
+</A></nobr><br>
+<nobr><A HREF="android.content.res.Resources.html#android.content.res.Resources.getDrawableForDensity_added(int, int, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>getDrawableForDensity</b>
+(<code>int, int, Theme</code>)</A></nobr><br>
+<i>getElevation</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getElevation_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.View.html#android.view.View.getElevation_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.View
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.PopupWindow.html#android.widget.PopupWindow.getElevation_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.PopupWindow
+</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getEncoderCapabilities_added()" class="hiddenlink" target="rightframe"><b>getEncoderCapabilities</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getEncoding_added()" class="hiddenlink" target="rightframe"><b>getEncoding</b>
+()</A></nobr><br>
+<i>getEnterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getEnterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getEnterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getEpicenter_added()" class="hiddenlink" target="rightframe"><b>getEpicenter</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getEpicenterCallback_added()" class="hiddenlink" target="rightframe"><b>getEpicenterCallback</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getError_added()" class="hiddenlink" target="rightframe"><b>getError</b>
+()</A></nobr><br>
+<i>getExitTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getExitTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getExitTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getExtension_added(char)" class="hiddenlink" target="rightframe"><b>getExtension</b>
+(<code>char</code>)</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getExtensionKeys_added()" class="hiddenlink" target="rightframe"><b>getExtensionKeys</b>
+()</A></nobr><br>
+<i>getExternalMediaDirs</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.Context.html#android.content.Context.getExternalMediaDirs_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.Context
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.getExternalMediaDirs_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.ContextWrapper
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.getExternalMediaDirs_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockContext
+</A></nobr><br>
+<nobr><A HREF="android.os.Environment.html#android.os.Environment.getExternalStorageState_added(java.io.File)" class="hiddenlink" target="rightframe"><b>getExternalStorageState</b>
+(<code>File</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.getFeatureEnabled_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getFeatureEnabled</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getFeatures_changed(java.util.Locale)" class="hiddenlink" target="rightframe">getFeatures
+(<code>Locale</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.DatePicker.html#android.widget.DatePicker.getFirstDayOfWeek_added()" class="hiddenlink" target="rightframe"><b>getFirstDayOfWeek</b>
+()</A></nobr><br>
+<i>getFontFeatureSettings</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.getFontFeatureSettings_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getFontFeatureSettings_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.getForegroundTintList_added()" class="hiddenlink" target="rightframe"><b>getForegroundTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.getForegroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getForegroundTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.getFormatTypeForLocale_changed(java.util.Locale)" class="hiddenlink" target="rightframe">getFormatTypeForLocale
+(<code>Locale</code>)</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiInfo.html#android.net.wifi.WifiInfo.getFrequency_added()" class="hiddenlink" target="rightframe"><b>getFrequency</b>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.getFromDegrees_added()" class="hiddenlink" target="rightframe"><b>getFromDegrees</b>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.GradientDrawable.html#android.graphics.drawable.GradientDrawable.getGradientRadius_added()" class="hiddenlink" target="rightframe"><b>getGradientRadius</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.StatusBarNotification.html#android.service.notification.StatusBarNotification.getGroupKey_added()" class="hiddenlink" target="rightframe"><b>getGroupKey</b>
+()</A></nobr><br>
+<nobr><A HREF="android.opengl.EGLObjectHandle.html#android.opengl.EGLObjectHandle.getHandle_changed()" class="hiddenlink" target="rightframe">getHandle
+()</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getHideOffset_added()" class="hiddenlink" target="rightframe"><b>getHideOffset</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.getImageTintList_added()" class="hiddenlink" target="rightframe"><b>getImageTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.getImageTintMode_added()" class="hiddenlink" target="rightframe"><b>getImageTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getIndeterminateTintList_added()" class="hiddenlink" target="rightframe"><b>getIndeterminateTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getIndeterminateTintMode_added()" class="hiddenlink" target="rightframe"><b>getIndeterminateTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputBuffer_added(int)" class="hiddenlink" target="rightframe"><b>getInputBuffer</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputBuffers_changed()" class="hiddenlink" target="rightframe">getInputBuffers
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputFormat_added()" class="hiddenlink" target="rightframe"><b>getInputFormat</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputImage_added(int)" class="hiddenlink" target="rightframe"><b>getInputImage</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.getInputMethodWindowRecommendedHeight_added()" class="hiddenlink" target="rightframe"><b>getInputMethodWindowRecommendedHeight</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getInstalledCaCerts_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getInstalledCaCerts</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.getInstalledProvidersForProfile_added(android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>getInstalledProvidersForProfile</b>
+(<code>UserHandle</code>)</A></nobr><br>
+<i>getInt</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getInt_removed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getInt_removed(java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String, int</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getIntArray_changed(java.lang.String)" class="hiddenlink" target="rightframe">getIntArray
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.getIntProperty_added(int)" class="hiddenlink" target="rightframe"><b>getIntProperty</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.getIntValue_added()" class="hiddenlink" target="rightframe"><b>getIntValue</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getLanguage_changed()" class="hiddenlink" target="rightframe">getLanguage
+()</A></nobr><br>
+<i>getLeanbackLaunchIntentForPackage</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getLeanbackLaunchIntentForPackage_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getLeanbackLaunchIntentForPackage_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<i>getLetterSpacing</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.getLetterSpacing_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getLetterSpacing_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getLinkProperties_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>getLinkProperties</b>
+(<code>Network</code>)</A></nobr><br>
+<i>getLong</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getLong_removed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getLong_removed(java.lang.String, long)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String, long</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getLongArray_changed(java.lang.String)" class="hiddenlink" target="rightframe">getLongArray
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.getLongProperty_added(int)" class="hiddenlink" target="rightframe"><b>getLongProperty</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getManufacturerName_added()" class="hiddenlink" target="rightframe"><b>getManufacturerName</b>
+()</A></nobr><br>
+<nobr><A HREF="android.text.InputFilter.LengthFilter.html#android.text.InputFilter.LengthFilter.getMax_added()" class="hiddenlink" target="rightframe"><b>getMax</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.getMaxDelay_added()" class="hiddenlink" target="rightframe"><b>getMaxDelay</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.getMaxHeight_added()" class="hiddenlink" target="rightframe"><b>getMaxHeight</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getMaxTextLength_added()" class="hiddenlink" target="rightframe"><b>getMaxTextLength</b>
+()</A></nobr><br>
+<i>getMediaController</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.getMediaController_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getMediaController_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.media.RemoteControlClient.html#android.media.RemoteControlClient.getMediaSession_added()" class="hiddenlink" target="rightframe"><b>getMediaSession</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getMimeType_added()" class="hiddenlink" target="rightframe"><b>getMimeType</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.getMixedContentMode_added()" class="hiddenlink" target="rightframe"><b>getMixedContentMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.getMode_added()" class="hiddenlink" target="rightframe"><b>getMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.usb.UsbInterface.html#android.hardware.usb.UsbInterface.getName_added()" class="hiddenlink" target="rightframe"><b>getName</b>
+()</A></nobr><br>
+<nobr><A HREF="android.opengl.EGLObjectHandle.html#android.opengl.EGLObjectHandle.getNativeHandle_added()" class="hiddenlink" target="rightframe"><b>getNativeHandle</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.getNavigationBarColor_added()" class="hiddenlink" target="rightframe"><b>getNavigationBarColor</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getNavigationItemCount_changed()" class="hiddenlink" target="rightframe">getNavigationItemCount
+()</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getNavigationMode_changed()" class="hiddenlink" target="rightframe">getNavigationMode
+()</A></nobr><br>
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.getNestedScrollAxes_added()" class="hiddenlink" target="rightframe"><b>getNestedScrollAxes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getNetworkCapabilities_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>getNetworkCapabilities</b>
+(<code>Network</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getNetworkInfo_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>getNetworkInfo</b>
+(<code>Network</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getNetworkPreference_changed()" class="hiddenlink" target="rightframe">getNetworkPreference
+()</A></nobr><br>
+<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.getNextAlarmClock_added()" class="hiddenlink" target="rightframe"><b>getNextAlarmClock</b>
+()</A></nobr><br>
+<i>getNoBackupFilesDir</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.Context.html#android.content.Context.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.Context
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.ContextWrapper
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockContext
+</A></nobr><br>
+<i>getOutline</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.getOutline_added(android.graphics.Outline)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Outline</code>)</b>&nbsp;in&nbsp;android.graphics.drawable.Drawable
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.shapes.Shape.html#android.graphics.drawable.shapes.Shape.getOutline_added(android.graphics.Outline)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Outline</code>)</b>&nbsp;in&nbsp;android.graphics.drawable.shapes.Shape
+</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getOutlineProvider_added()" class="hiddenlink" target="rightframe"><b>getOutlineProvider</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputBuffer_added(int)" class="hiddenlink" target="rightframe"><b>getOutputBuffer</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputBuffers_changed()" class="hiddenlink" target="rightframe">getOutputBuffers
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputFormat_added(int)" class="hiddenlink" target="rightframe"><b>getOutputFormat</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputImage_added(int)" class="hiddenlink" target="rightframe"><b>getOutputImage</b>
+(<code>int</code>)</A></nobr><br>
+<i>getPackageInstaller</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getPackageInstaller_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getPackageInstaller_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.LayerDrawable.html#android.graphics.drawable.LayerDrawable.getPaddingMode_added()" class="hiddenlink" target="rightframe"><b>getPaddingMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getPathMotion_added()" class="hiddenlink" target="rightframe"><b>getPathMotion</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getPermittedAccessibilityServices_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getPermittedAccessibilityServices</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getPermittedInputMethods_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getPermittedInputMethods</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.getPivotX_added()" class="hiddenlink" target="rightframe"><b>getPivotX</b>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.getPivotY_added()" class="hiddenlink" target="rightframe"><b>getPivotY</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.Display.html#android.view.Display.getPresentationDeadlineNanos_added()" class="hiddenlink" target="rightframe"><b>getPresentationDeadlineNanos</b>
+()</A></nobr><br>
+<nobr><A HREF="android.accounts.AccountManager.html#android.accounts.AccountManager.getPreviousName_added(android.accounts.Account)" class="hiddenlink" target="rightframe"><b>getPreviousName</b>
+(<code>Account</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getProcessDefaultNetwork_added()" class="hiddenlink" target="rightframe"><b>getProcessDefaultNetwork</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getProductName_added()" class="hiddenlink" target="rightframe"><b>getProductName</b>
+()</A></nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.getProfile_added()" class="hiddenlink" target="rightframe"><b>getProfile</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressBackgroundTintList_added()" class="hiddenlink" target="rightframe"><b>getProgressBackgroundTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressBackgroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getProgressBackgroundTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressTintList_added()" class="hiddenlink" target="rightframe"><b>getProgressTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressTintMode_added()" class="hiddenlink" target="rightframe"><b>getProgressTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getPropagation_added()" class="hiddenlink" target="rightframe"><b>getPropagation</b>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.getRasterizer_changed()" class="hiddenlink" target="rightframe">getRasterizer
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getReasonPhrase_added()" class="hiddenlink" target="rightframe"><b>getReasonPhrase</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getRecentTasks_changed(int, int)" class="hiddenlink" target="rightframe">getRecentTasks
+(<code>int, int</code>)</A></nobr><br>
+<i>getReenterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getReenterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getReenterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html#java.util.concurrent.ScheduledThreadPoolExecutor.getRemoveOnCancelPolicy_added()" class="hiddenlink" target="rightframe"><b>getRemoveOnCancelPolicy</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.getReportingMode_added()" class="hiddenlink" target="rightframe"><b>getReportingMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.content.res.Resources.Theme.html#android.content.res.Resources.Theme.getResources_added()" class="hiddenlink" target="rightframe"><b>getResources</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getResponseHeaders_added()" class="hiddenlink" target="rightframe"><b>getResponseHeaders</b>
+()</A></nobr><br>
+<i>getReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getRunningTasks_changed(int)" class="hiddenlink" target="rightframe">getRunningTasks
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getSampleRate_added()" class="hiddenlink" target="rightframe"><b>getSampleRate</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getScreenCaptureDisabled_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getScreenCaptureDisabled</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getScript_added()" class="hiddenlink" target="rightframe"><b>getScript</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getSecondaryProgressTintList_added()" class="hiddenlink" target="rightframe"><b>getSecondaryProgressTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getSecondaryProgressTintMode_added()" class="hiddenlink" target="rightframe"><b>getSecondaryProgressTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getSelectedNavigationIndex_changed()" class="hiddenlink" target="rightframe">getSelectedNavigationIndex
+()</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getSelectedTab_changed()" class="hiddenlink" target="rightframe">getSelectedTab
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.getSelectedTrack_added(int)" class="hiddenlink" target="rightframe"><b>getSelectedTrack</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.getSelectionMode_added()" class="hiddenlink" target="rightframe"><b>getSelectionMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getSerialNumber_added()" class="hiddenlink" target="rightframe"><b>getSerialNumber</b>
+()</A></nobr><br>
+<i>getSharedElementEnterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getSharedElementEnterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementEnterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementExitTransition_added()" class="hiddenlink" target="rightframe"><b>getSharedElementExitTransition</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementReenterTransition_added()" class="hiddenlink" target="rightframe"><b>getSharedElementReenterTransition</b>
+()</A></nobr><br>
+<i>getSharedElementReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getSharedElementReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementsUseOverlay_added()" class="hiddenlink" target="rightframe"><b>getSharedElementsUseOverlay</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getShowSoftInputOnFocus_added()" class="hiddenlink" target="rightframe"><b>getShowSoftInputOnFocus</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.getShowText_added()" class="hiddenlink" target="rightframe"><b>getShowText</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getSize_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getSize</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getSizeF_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getSizeF</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.getSpeakerAngles_added(int, int, int[])" class="hiddenlink" target="rightframe"><b>getSpeakerAngles</b>
+(<code>int, int, int[]</code>)</A></nobr><br>
+<i>getSplitTrack</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.getSplitTrack_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.AbsSeekBar
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.getSplitTrack_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.Switch
+</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetBottom_added()" class="hiddenlink" target="rightframe"><b>getStableInsetBottom</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetLeft_added()" class="hiddenlink" target="rightframe"><b>getStableInsetLeft</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetRight_added()" class="hiddenlink" target="rightframe"><b>getStableInsetRight</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetTop_added()" class="hiddenlink" target="rightframe"><b>getStableInsetTop</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getStateListAnimator_added()" class="hiddenlink" target="rightframe"><b>getStateListAnimator</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.getStatusBarColor_added()" class="hiddenlink" target="rightframe"><b>getStatusBarColor</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getStatusCode_added()" class="hiddenlink" target="rightframe"><b>getStatusCode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.Environment.html#android.os.Environment.getStorageState_changed(java.io.File)" class="hiddenlink" target="rightframe">getStorageState
+(<code>File</code>)</A></nobr><br>
+<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.getStreamType_changed()" class="hiddenlink" target="rightframe">getStreamType
+()</A></nobr><br>
+<i>getString</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getString_removed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getString_removed(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String, String</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getStringArray_changed(java.lang.String)" class="hiddenlink" target="rightframe">getStringArray
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.Display.html#android.view.Display.getSupportedRefreshRates_added()" class="hiddenlink" target="rightframe"><b>getSupportedRefreshRates</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaRecorder.html#android.media.MediaRecorder.getSurface_added()" class="hiddenlink" target="rightframe"><b>getSurface</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getTabAt_changed(int)" class="hiddenlink" target="rightframe">getTabAt
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getTabCount_changed()" class="hiddenlink" target="rightframe">getTabCount
+()</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getTargetNames_added()" class="hiddenlink" target="rightframe"><b>getTargetNames</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getTargetTypes_added()" class="hiddenlink" target="rightframe"><b>getTargetTypes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getText_changed()" class="hiddenlink" target="rightframe">getText
+()</A></nobr><br>
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getTextColor_removed(android.content.Context, android.content.res.TypedArray, int)" class="hiddenlink" target="rightframe"><strike>getTextColor</strike>
+(<code>Context, TypedArray, int</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getTextColors_removed(android.content.Context, android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>getTextColors</strike>
+(<code>Context, TypedArray</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.getThumbTintList_added()" class="hiddenlink" target="rightframe"><b>getThumbTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.getThumbTintMode_added()" class="hiddenlink" target="rightframe"><b>getThumbTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.getToDegrees_added()" class="hiddenlink" target="rightframe"><b>getToDegrees</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.getTouchscreenBlocksFocus_added()" class="hiddenlink" target="rightframe"><b>getTouchscreenBlocksFocus</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.getTransitionAt_added(int)" class="hiddenlink" target="rightframe"><b>getTransitionAt</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.getTransitionBackgroundFadeDuration_added()" class="hiddenlink" target="rightframe"><b>getTransitionBackgroundFadeDuration</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.getTransitionCount_added()" class="hiddenlink" target="rightframe"><b>getTransitionCount</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.getTransitionManager_added()" class="hiddenlink" target="rightframe"><b>getTransitionManager</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getTransitionName_added()" class="hiddenlink" target="rightframe"><b>getTransitionName</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getTranslationZ_added()" class="hiddenlink" target="rightframe"><b>getTranslationZ</b>
+()</A></nobr><br>
+<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.getTreeDocumentId_added(android.net.Uri)" class="hiddenlink" target="rightframe"><b>getTreeDocumentId</b>
+(<code>Uri</code>)</A></nobr><br>
+<nobr><A HREF="android.content.res.TypedArray.html#android.content.res.TypedArray.getType_added(int)" class="hiddenlink" target="rightframe"><b>getType</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.getTypeLabel_added(android.content.res.Resources, int, java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>getTypeLabel</b>
+(<code>Resources, int, CharSequence</code>)</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleAttributes_added()" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleAttributes</b>
+()</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleKeys_added()" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleKeys</b>
+()</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleType_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleType</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.service.notification.StatusBarNotification.html#android.service.notification.StatusBarNotification.getUser_added()" class="hiddenlink" target="rightframe"><b>getUser</b>
+()</A></nobr><br>
+<i>getUserBadgedDrawableForDensity</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle, Rect, int</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle, Rect, int</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<i>getUserBadgedIcon</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<i>getUserBadgedLabel</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, UserHandle</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, UserHandle</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<nobr><A HREF="android.service.notification.StatusBarNotification.html#android.service.notification.StatusBarNotification.getUserId_changed()" class="hiddenlink" target="rightframe">getUserId
+()</A></nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.getUserProfiles_added()" class="hiddenlink" target="rightframe"><b>getUserProfiles</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getVideoCapabilities_added()" class="hiddenlink" target="rightframe"><b>getVideoCapabilities</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.getVirtualizationMode_added()" class="hiddenlink" target="rightframe"><b>getVirtualizationMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getVoice_added()" class="hiddenlink" target="rightframe"><b>getVoice</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getVoiceName_added()" class="hiddenlink" target="rightframe"><b>getVoiceName</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getVoices_added()" class="hiddenlink" target="rightframe"><b>getVoices</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getWindow_added()" class="hiddenlink" target="rightframe"><b>getWindow</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.getWindowAnimationFrameStats_added()" class="hiddenlink" target="rightframe"><b>getWindowAnimationFrameStats</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.getWindowContentFrameStats_added(int)" class="hiddenlink" target="rightframe"><b>getWindowContentFrameStats</b>
+(<code>int</code>)</A></nobr><br>
+<i>getWindows</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.accessibilityservice.AccessibilityService.html#android.accessibilityservice.AccessibilityService.getWindows_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.accessibilityservice.AccessibilityService
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.getWindows_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.UiAutomation
+</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getZ_added()" class="hiddenlink" target="rightframe"><b>getZ</b>
+()</A></nobr><br>
+<nobr><A HREF="android.opengl.GLES20.html#android.opengl.GLES20.glGetActiveAttrib_removed(int, int, int, java.nio.IntBuffer, java.nio.IntBuffer, java.nio.IntBuffer, byte)" class="hiddenlink" target="rightframe"><strike>glGetActiveAttrib</strike>
+(<code>int, int, int, IntBuffer, IntBuffer, IntBuffer, byte</code>)</A></nobr><br>
+<nobr><A HREF="android.opengl.GLES20.html#android.opengl.GLES20.glGetActiveUniform_removed(int, int, int, java.nio.IntBuffer, java.nio.IntBuffer, java.nio.IntBuffer, byte)" class="hiddenlink" target="rightframe"><strike>glGetActiveUniform</strike>
+(<code>int, int, int, IntBuffer, IntBuffer, IntBuffer, byte</code>)</A></nobr><br>
+<nobr><A HREF="android.opengl.GLES20.html#android.opengl.GLES20.glGetShaderSource_removed(int, int, java.nio.IntBuffer, byte)" class="hiddenlink" target="rightframe"><strike>glGetShaderSource</strike>
+(<code>int, int, IntBuffer, byte</code>)</A></nobr><br>
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.goToSleep_removed(long)" class="hiddenlink" target="rightframe"><strike>goToSleep</strike>
+(<code>long</code>)</A></nobr><br>
+<A NAME="H"></A>
+<br><font size="+2">H</font>&nbsp;
+<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="#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.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasBackgroundColor_added()" class="hiddenlink" target="rightframe"><b>hasBackgroundColor</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.hasCaCertInstalled_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>hasCaCertInstalled</b>
+(<code>ComponentName, byte[]</code>)</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasEdgeColor_added()" class="hiddenlink" target="rightframe"><b>hasEdgeColor</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasEdgeType_added()" class="hiddenlink" target="rightframe"><b>hasEdgeType</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.hasFinished_added()" class="hiddenlink" target="rightframe"><b>hasFinished</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasForegroundColor_added()" class="hiddenlink" target="rightframe"><b>hasForegroundColor</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.hasNestedScrollingParent_added()" class="hiddenlink" target="rightframe"><b>hasNestedScrollingParent</b>
+()</A></nobr><br>
+<i>hasQueuedPredecessors</i><br>
+&nbsp;&nbsp;<nobr><A HREF="java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html#java.util.concurrent.locks.AbstractQueuedLongSynchronizer.hasQueuedPredecessors_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;java.util.concurrent.locks.AbstractQueuedLongSynchronizer
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="java.util.concurrent.locks.AbstractQueuedSynchronizer.html#java.util.concurrent.locks.AbstractQueuedSynchronizer.hasQueuedPredecessors_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;java.util.concurrent.locks.AbstractQueuedSynchronizer
+</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.hasStableInsets_added()" class="hiddenlink" target="rightframe"><b>hasStableInsets</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.hasStarted_added()" class="hiddenlink" target="rightframe"><b>hasStarted</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.hasUserRestriction_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>hasUserRestriction</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasWindowColor_added()" class="hiddenlink" target="rightframe"><b>hasWindowColor</b>
+()</A></nobr><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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="#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.TelephonyManager.html#android.telephony.TelephonyManager.iccCloseLogicalChannel_added(int)" class="hiddenlink" target="rightframe"><b>iccCloseLogicalChannel</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccExchangeSimIO_added(int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccExchangeSimIO</b>
+(<code>int, int, int, int, int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccOpenLogicalChannel_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>iccOpenLogicalChannel</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccTransmitApduBasicChannel_added(int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccTransmitApduBasicChannel</b>
+(<code>int, int, int, int, int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccTransmitApduLogicalChannel_added(int, int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccTransmitApduLogicalChannel</b>
+(<code>int, int, int, int, int, int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.util.ArrayMap.html#android.util.ArrayMap.indexOfKey_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>indexOfKey</b>
+(<code>Object</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.inflate_added(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.util.AttributeSet, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>inflate</b>
+(<code>Resources, XmlPullParser, AttributeSet, Theme</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.initializeFadingEdge_removed(android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>initializeFadingEdge</strike>
+(<code>TypedArray</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.initializeScrollbars_removed(android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>initializeScrollbars</strike>
+(<code>TypedArray</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.installCaCert_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>installCaCert</b>
+(<code>ComponentName, byte[]</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.installKeyPair_added(android.content.ComponentName, java.security.PrivateKey, java.security.cert.Certificate, java.lang.String)" class="hiddenlink" target="rightframe"><b>installKeyPair</b>
+(<code>ComponentName, PrivateKey, Certificate, String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.invalidateOutline_added()" class="hiddenlink" target="rightframe"><b>invalidateOutline</b>
+()</A></nobr><br>
+<nobr><A HREF="android.nfc.NfcAdapter.html#android.nfc.NfcAdapter.invokeBeam_added(android.app.Activity)" class="hiddenlink" target="rightframe"><b>invokeBeam</b>
+(<code>Activity</code>)</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.is5GHzBandSupported_added()" class="hiddenlink" target="rightframe"><b>is5GHzBandSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.isAccessibilityFocused_added()" class="hiddenlink" target="rightframe"><b>isAccessibilityFocused</b>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.Matrix.html#android.graphics.Matrix.isAffine_added()" class="hiddenlink" target="rightframe"><b>isAffine</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isApplicationHidden_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>isApplicationHidden</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.isButtonPressed_added(int)" class="hiddenlink" target="rightframe"><b>isButtonPressed</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.isChildDocument_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>isChildDocument</b>
+(<code>String, String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.isConsumed_added()" class="hiddenlink" target="rightframe"><b>isConsumed</b>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.isConvex_added()" class="hiddenlink" target="rightframe"><b>isConvex</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.isDefaultNetworkActive_added()" class="hiddenlink" target="rightframe"><b>isDefaultNetworkActive</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isDeviceToApRttSupported_added()" class="hiddenlink" target="rightframe"><b>isDeviceToApRttSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.isElegantTextHeight_added()" class="hiddenlink" target="rightframe"><b>isElegantTextHeight</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.isEmpty_changed()" class="hiddenlink" target="rightframe">isEmpty
+()</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isEnhancedPowerReportingSupported_added()" class="hiddenlink" target="rightframe"><b>isEnhancedPowerReportingSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.isEnterpriseContactId_added(long)" class="hiddenlink" target="rightframe"><b>isEnterpriseContactId</b>
+(<code>long</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Environment.html#android.os.Environment.isExternalStorageEmulated_added(java.io.File)" class="hiddenlink" target="rightframe"><b>isExternalStorageEmulated</b>
+(<code>File</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Environment.html#android.os.Environment.isExternalStorageRemovable_added(java.io.File)" class="hiddenlink" target="rightframe"><b>isExternalStorageRemovable</b>
+(<code>File</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.isFeatureRequired_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>isFeatureRequired</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.isFormatSupported_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>isFormatSupported</b>
+(<code>MediaFormat</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.isHideOnContentScrollEnabled_added()" class="hiddenlink" target="rightframe"><b>isHideOnContentScrollEnabled</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.isImportantForAccessibility_added()" class="hiddenlink" target="rightframe"><b>isImportantForAccessibility</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.isInLockTaskMode_added()" class="hiddenlink" target="rightframe"><b>isInLockTaskMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.isLocalEmergencyNumber_added(android.content.Context, java.lang.String)" class="hiddenlink" target="rightframe"><b>isLocalEmergencyNumber</b>
+(<code>Context, String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isLockTaskPermitted_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>isLockTaskPermitted</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isMasterVolumeMuted_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>isMasterVolumeMuted</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isMultipleAdvertisementSupported_added()" class="hiddenlink" target="rightframe"><b>isMultipleAdvertisementSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.isNestedScrollingEnabled_added()" class="hiddenlink" target="rightframe"><b>isNestedScrollingEnabled</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isOffloadedFilteringSupported_added()" class="hiddenlink" target="rightframe"><b>isOffloadedFilteringSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isOffloadedScanBatchingSupported_added()" class="hiddenlink" target="rightframe"><b>isOffloadedScanBatchingSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.content.res.ColorStateList.html#android.content.res.ColorStateList.isOpaque_added()" class="hiddenlink" target="rightframe"><b>isOpaque</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isP2pSupported_added()" class="hiddenlink" target="rightframe"><b>isP2pSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.isPivotXRelative_added()" class="hiddenlink" target="rightframe"><b>isPivotXRelative</b>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.isPivotYRelative_added()" class="hiddenlink" target="rightframe"><b>isPivotYRelative</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.isPowerSaveMode_added()" class="hiddenlink" target="rightframe"><b>isPowerSaveMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isPreferredNetworkOffloadSupported_added()" class="hiddenlink" target="rightframe"><b>isPreferredNetworkOffloadSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isProfileOwnerApp_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>isProfileOwnerApp</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.isSelected_added()" class="hiddenlink" target="rightframe"><b>isSelected</b>
+()</A></nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.isSmsCapable_added()" class="hiddenlink" target="rightframe"><b>isSmsCapable</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isTdlsSupported_added()" class="hiddenlink" target="rightframe"><b>isTdlsSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.isTransitionGroup_added()" class="hiddenlink" target="rightframe"><b>isTransitionGroup</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isUninstallBlocked_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>isUninstallBlocked</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.net.http.X509TrustManagerExtensions.html#android.net.http.X509TrustManagerExtensions.isUserAddedCertificate_added(java.security.cert.X509Certificate)" class="hiddenlink" target="rightframe"><b>isUserAddedCertificate</b>
+(<code>X509Certificate</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.isVoiceMailNumber_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>isVoiceMailNumber</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.isVolumeFixed_added()" class="hiddenlink" target="rightframe"><b>isVolumeFixed</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.isWakeLockLevelSupported_added(int)" class="hiddenlink" target="rightframe"><b>isWakeLockLevelSupported</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.isWakeUpSensor_added()" class="hiddenlink" target="rightframe"><b>isWakeUpSensor</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.inputmethod.InputMethodManager.html#android.view.inputmethod.InputMethodManager.isWatchingCursor_changed(android.view.View)" class="hiddenlink" target="rightframe">isWatchingCursor
+(<code>View</code>)</A></nobr><br>
+<A NAME="K"></A>
+<br><font size="+2">K</font>&nbsp;
+<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="#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.os.Bundle.html#android.os.Bundle.keySet_changed()" class="hiddenlink" target="rightframe">keySet
+()</A></nobr><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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="#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.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadIcon_added(android.content.Context, int)" class="hiddenlink" target="rightframe"><b>loadIcon</b>
+(<code>Context, int</code>)</A></nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadLabel_added(android.content.pm.PackageManager)" class="hiddenlink" target="rightframe"><b>loadLabel</b>
+(<code>PackageManager</code>)</A></nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadPreviewImage_added(android.content.Context, int)" class="hiddenlink" target="rightframe"><b>loadPreviewImage</b>
+(<code>Context, int</code>)</A></nobr><br>
+<nobr><A HREF="android.animation.AnimatorInflater.html#android.animation.AnimatorInflater.loadStateListAnimator_added(android.content.Context, int)" class="hiddenlink" target="rightframe"><b>loadStateListAnimator</b>
+(<code>Context, int</code>)</A></nobr><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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="#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>makeSceneTransitionAnimation</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActivityOptions.html#android.app.ActivityOptions.makeSceneTransitionAnimation_added(android.app.Activity, android.util.Pair<android.view.View, java.lang.String>...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Activity, Pair&lt;View, String&gt;</code>)</b>&nbsp;in&nbsp;android.app.ActivityOptions
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActivityOptions.html#android.app.ActivityOptions.makeSceneTransitionAnimation_added(android.app.Activity, android.view.View, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Activity, View, String</code>)</b>&nbsp;in&nbsp;android.app.ActivityOptions
+</A></nobr><br>
+<nobr><A HREF="android.app.ActivityOptions.html#android.app.ActivityOptions.makeTaskLaunchBehind_added()" class="hiddenlink" target="rightframe"><b>makeTaskLaunchBehind</b>
+()</A></nobr><br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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="#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.drawable.Drawable.ConstantState.html#android.graphics.drawable.Drawable.ConstantState.newDrawable_added(android.content.res.Resources, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>newDrawable</b>
+(<code>Resources, Theme</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.newTab_changed()" class="hiddenlink" target="rightframe">newTab
+()</A></nobr><br>
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.normalizeNumber_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>normalizeNumber</b>
+(<code>String</code>)</A></nobr><br>
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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="#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>obtain</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.obtain_removed(int)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>int</code>)</strike>&nbsp;in&nbsp;android.os.Parcel
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.obtain_added(int, int, boolean, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, boolean, int</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo.CollectionInfo
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.obtain_added(int, int, int, int, boolean, boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, int, int, boolean, boolean</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo
+</A></nobr><br>
+<i>ofArgb</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofArgb_added(T, android.util.Property<T, java.lang.Integer>, int...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, Property&lt;T, Integer&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofArgb_added(java.lang.Object, java.lang.String, int...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, </code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ValueAnimator.html#android.animation.ValueAnimator.ofArgb_added(int...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.animation.ValueAnimator
+</A></nobr><br>
+<i>ofFloat</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofFloat_added(T, android.util.Property<T, java.lang.Float>, android.util.Property<T, java.lang.Float>, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, Property&lt;T, Float&gt;, Property&lt;T, Float&gt;, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofFloat_added(java.lang.Object, java.lang.String, java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, String, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<i>ofInt</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofInt_added(T, android.util.Property<T, java.lang.Integer>, android.util.Property<T, java.lang.Integer>, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, Property&lt;T, Integer&gt;, Property&lt;T, Integer&gt;, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofInt_added(java.lang.Object, java.lang.String, java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, String, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+<i>ofMultiFloat</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiFloat_added(java.lang.Object, java.lang.String, android.animation.TypeConverter<T, float[]>, android.animation.TypeEvaluator<T>, T...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, TypeConverter&lt;T, float[]&gt;, TypeEvaluator&lt;T&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiFloat_added(java.lang.Object, java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiFloat_added(java.lang.Object, java.lang.String, float[][])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, float[][]</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, android.animation.TypeConverter<T, float[]>, android.animation.TypeEvaluator<T>, android.animation.Keyframe...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, TypeConverter&lt;T, float[]&gt;, TypeEvaluator&lt;T&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, android.animation.TypeConverter<V, float[]>, android.animation.TypeEvaluator<V>, V...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, TypeConverter&lt;V, float[]&gt;, TypeEvaluator&lt;V&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, Path</code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, float[][])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, float[][]</code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<i>ofMultiInt</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiInt_added(java.lang.Object, java.lang.String, android.animation.TypeConverter<T, int[]>, android.animation.TypeEvaluator<T>, T...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, TypeConverter&lt;T, int[]&gt;, TypeEvaluator&lt;T&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiInt_added(java.lang.Object, java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiInt_added(java.lang.Object, java.lang.String, int[][])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, int[][]</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, android.animation.TypeConverter<T, int[]>, android.animation.TypeEvaluator<T>, android.animation.Keyframe...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, TypeConverter&lt;T, int[]&gt;, TypeEvaluator&lt;T&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, android.animation.TypeConverter<V, int[]>, android.animation.TypeEvaluator<V>, V...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, TypeConverter&lt;V, int[]&gt;, TypeEvaluator&lt;V&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, Path</code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, int[][])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, int[][]</code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<i>ofObject</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofObject_added(T, android.util.Property<T, P>, android.animation.TypeConverter<V, P>, android.animation.TypeEvaluator<V>, V...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, Property&lt;T, P&gt;, TypeConverter&lt;V, P&gt;, TypeEvaluator&lt;V&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofObject_added(T, android.util.Property<T, V>, android.animation.TypeConverter<android.graphics.PointF, V>, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, Property&lt;T, V&gt;, TypeConverter&lt;PointF, V&gt;, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofObject_added(java.lang.Object, java.lang.String, android.animation.TypeConverter<android.graphics.PointF, ?>, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Object, String, TypeConverter&lt;PointF, ?&gt;, Path</code>)</b>&nbsp;in&nbsp;android.animation.ObjectAnimator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofObject_added(android.util.Property<?, V>, android.animation.TypeConverter<T, V>, android.animation.TypeEvaluator<T>, T...)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Property&lt;?, V&gt;, TypeConverter&lt;T, V&gt;, TypeEvaluator&lt;T&gt;, </code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofObject_added(android.util.Property<?, V>, android.animation.TypeConverter<android.graphics.PointF, V>, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Property&lt;?, V&gt;, TypeConverter&lt;PointF, V&gt;, Path</code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofObject_added(java.lang.String, android.animation.TypeConverter<android.graphics.PointF, ?>, android.graphics.Path)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, TypeConverter&lt;PointF, ?&gt;, Path</code>)</b>&nbsp;in&nbsp;android.animation.PropertyValuesHolder
+</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onActivityReenter_added(int, android.content.Intent)" class="hiddenlink" target="rightframe"><b>onActivityReenter</b>
+(<code>int, Intent</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.onAppear_added(android.view.ViewGroup, android.view.View, android.transition.TransitionValues, android.transition.TransitionValues)" class="hiddenlink" target="rightframe"><b>onAppear</b>
+(<code>ViewGroup, View, TransitionValues, TransitionValues</code>)</A></nobr><br>
+<nobr><A HREF="android.service.wallpaper.WallpaperService.Engine.html#android.service.wallpaper.WallpaperService.Engine.onApplyWindowInsets_added(android.view.WindowInsets)" class="hiddenlink" target="rightframe"><b>onApplyWindowInsets</b>
+(<code>WindowInsets</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onCreate_added(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>onCreate</b>
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.onDisappear_added(android.view.ViewGroup, android.view.View, android.transition.TransitionValues, android.transition.TransitionValues)" class="hiddenlink" target="rightframe"><b>onDisappear</b>
+(<code>ViewGroup, View, TransitionValues, TransitionValues</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onEnterAnimationComplete_added()" class="hiddenlink" target="rightframe"><b>onEnterAnimationComplete</b>
+()</A></nobr><br>
+<i>onError</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_removed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String</code>)</strike>&nbsp;in&nbsp;android.speech.tts.UtteranceProgressListener
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_added(java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, int</code>)</b>&nbsp;in&nbsp;android.speech.tts.UtteranceProgressListener
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.speech.tts.UtteranceProgressListener
+</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onGetDefaultVoiceNameFor_added(java.lang.String, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>onGetDefaultVoiceNameFor</b>
+(<code>String, String, String</code>)</A></nobr><br>
+<nobr><A HREF="android.location.SettingInjectorService.html#android.location.SettingInjectorService.onGetSummary_changed()" class="hiddenlink" target="rightframe">onGetSummary
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onGetVoices_added()" class="hiddenlink" target="rightframe"><b>onGetVoices</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onInterruptionFilterChanged_added(int)" class="hiddenlink" target="rightframe"><b>onInterruptionFilterChanged</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onIsValidVoiceName_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>onIsValidVoiceName</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onListenerConnected_added()" class="hiddenlink" target="rightframe"><b>onListenerConnected</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onListenerHintsChanged_added(int)" class="hiddenlink" target="rightframe"><b>onListenerHintsChanged</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onLoadVoice_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>onLoadVoice</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.onLockTaskModeEntering_added(android.content.Context, android.content.Intent, java.lang.String)" class="hiddenlink" target="rightframe"><b>onLockTaskModeEntering</b>
+(<code>Context, Intent, String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.onLockTaskModeExiting_added(android.content.Context, android.content.Intent)" class="hiddenlink" target="rightframe"><b>onLockTaskModeExiting</b>
+(<code>Context, Intent</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGattCallback.html#android.bluetooth.BluetoothGattCallback.onMtuChanged_added(android.bluetooth.BluetoothGatt, int, int)" class="hiddenlink" target="rightframe"><b>onMtuChanged</b>
+(<code>BluetoothGatt, int, int</code>)</A></nobr><br>
+<i>onNestedFling</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedFling_added(android.view.View, float, float, boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, float, float, boolean</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedFling_added(android.view.View, float, float, boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, float, float, boolean</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<i>onNestedPreFling</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedPreFling_added(android.view.View, float, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, float, float</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedPreFling_added(android.view.View, float, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, float, float</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<i>onNestedPreScroll</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedPreScroll_added(android.view.View, int, int, int[])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, int, int, int[]</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedPreScroll_added(android.view.View, int, int, int[])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, int, int, int[]</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<i>onNestedScroll</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedScroll_added(android.view.View, int, int, int, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, int, int, int, int</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedScroll_added(android.view.View, int, int, int, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, int, int, int, int</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<i>onNestedScrollAccepted</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedScrollAccepted_added(android.view.View, android.view.View, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, View, int</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedScrollAccepted_added(android.view.View, android.view.View, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, View, int</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<i>onNotificationPosted</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationPosted_added(android.service.notification.StatusBarNotification, android.service.notification.NotificationListenerService.RankingMap)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>StatusBarNotification, RankingMap</code>)</b>&nbsp;in&nbsp;android.service.notification.NotificationListenerService
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationPosted_changed(android.service.notification.StatusBarNotification)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>StatusBarNotification</code>)&nbsp;in&nbsp;android.service.notification.NotificationListenerService
+</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationRankingUpdate_added(android.service.notification.NotificationListenerService.RankingMap)" class="hiddenlink" target="rightframe"><b>onNotificationRankingUpdate</b>
+(<code>RankingMap</code>)</A></nobr><br>
+<i>onNotificationRemoved</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationRemoved_added(android.service.notification.StatusBarNotification, android.service.notification.NotificationListenerService.RankingMap)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>StatusBarNotification, RankingMap</code>)</b>&nbsp;in&nbsp;android.service.notification.NotificationListenerService
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationRemoved_changed(android.service.notification.StatusBarNotification)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>StatusBarNotification</code>)&nbsp;in&nbsp;android.service.notification.NotificationListenerService
+</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGattServerCallback.html#android.bluetooth.BluetoothGattServerCallback.onNotificationSent_added(android.bluetooth.BluetoothDevice, int)" class="hiddenlink" target="rightframe"><b>onNotificationSent</b>
+(<code>BluetoothDevice, int</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onPermissionRequest_added(android.webkit.PermissionRequest)" class="hiddenlink" target="rightframe"><b>onPermissionRequest</b>
+(<code>PermissionRequest</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onPermissionRequestCanceled_added(android.webkit.PermissionRequest)" class="hiddenlink" target="rightframe"><b>onPermissionRequestCanceled</b>
+(<code>PermissionRequest</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onPostCreate_added(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>onPostCreate</b>
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.onProfileProvisioningComplete_added(android.content.Context, android.content.Intent)" class="hiddenlink" target="rightframe"><b>onProfileProvisioningComplete</b>
+(<code>Context, Intent</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.onPull_added(float, float)" class="hiddenlink" target="rightframe"><b>onPull</b>
+(<code>float, float</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.onReceivedClientCertRequest_added(android.webkit.WebView, android.webkit.ClientCertRequest)" class="hiddenlink" target="rightframe"><b>onReceivedClientCertRequest</b>
+(<code>WebView, ClientCertRequest</code>)</A></nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetProvider.html#android.appwidget.AppWidgetProvider.onRestored_added(android.content.Context, int[], int[])" class="hiddenlink" target="rightframe"><b>onRestored</b>
+(<code>Context, int[], int[]</code>)</A></nobr><br>
+<nobr><A HREF="android.app.backup.BackupAgent.html#android.app.backup.BackupAgent.onRestoreFinished_added()" class="hiddenlink" target="rightframe"><b>onRestoreFinished</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onRestoreInstanceState_added(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>onRestoreInstanceState</b>
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onSaveInstanceState_added(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>onSaveInstanceState</b>
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onShowFileChooser_added(android.webkit.WebView, android.webkit.ValueCallback<android.net.Uri[]>, android.webkit.WebChromeClient.FileChooserParams)" class="hiddenlink" target="rightframe"><b>onShowFileChooser</b>
+(<code>WebView, ValueCallback&lt;Uri[]&gt;, FileChooserParams</code>)</A></nobr><br>
+<i>onStartNestedScroll</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onStartNestedScroll_added(android.view.View, android.view.View, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, View, int</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onStartNestedScroll_added(android.view.View, android.view.View, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, View, int</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<i>onStopNestedScroll</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onStopNestedScroll_added(android.view.View)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onStopNestedScroll_added(android.view.View)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.onUnhandledInputEvent_added(android.webkit.WebView, android.view.InputEvent)" class="hiddenlink" target="rightframe"><b>onUnhandledInputEvent</b>
+(<code>WebView, InputEvent</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.onUnhandledKeyEvent_changed(android.webkit.WebView, android.view.KeyEvent)" class="hiddenlink" target="rightframe">onUnhandledKeyEvent
+(<code>WebView, KeyEvent</code>)</A></nobr><br>
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.onUpdateCursor_changed(android.graphics.Rect)" class="hiddenlink" target="rightframe">onUpdateCursor
+(<code>Rect</code>)</A></nobr><br>
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.onUpdateCursorAnchorInfo_added(android.view.inputmethod.CursorAnchorInfo)" class="hiddenlink" target="rightframe"><b>onUpdateCursorAnchorInfo</b>
+(<code>CursorAnchorInfo</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onVisibleBehindCanceled_added()" class="hiddenlink" target="rightframe"><b>onVisibleBehindCanceled</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.dreams.DreamService.html#android.service.dreams.DreamService.onWakeUp_added()" class="hiddenlink" target="rightframe"><b>onWakeUp</b>
+()</A></nobr><br>
+<i>openAssetFile</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.openAssetFile_added(android.net.Uri, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Uri, String</code>)</b>&nbsp;in&nbsp;android.provider.DocumentsProvider
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.openAssetFile_added(android.net.Uri, java.lang.String, android.os.CancellationSignal)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Uri, String, CancellationSignal</code>)</b>&nbsp;in&nbsp;android.provider.DocumentsProvider
+</A></nobr><br>
+<nobr><A HREF="android.media.MediaDrm.html#android.media.MediaDrm.openSession_changed()" class="hiddenlink" target="rightframe">openSession
+()</A></nobr><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#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>playEarcon</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playEarcon_added(java.lang.String, int, android.os.Bundle, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, int, Bundle, String</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playEarcon_changed(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>String, int, HashMap&lt;String, String&gt;</code>)&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playSilence_changed(long, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">playSilence
+(<code>long, int, HashMap&lt;String, String&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playSilentUtterance_added(long, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>playSilentUtterance</b>
+(<code>long, int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.postponeEnterTransition_added()" class="hiddenlink" target="rightframe"><b>postponeEnterTransition</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putDouble_changed(java.lang.String, double)" class="hiddenlink" target="rightframe">putDouble
+(<code>String, double</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putDoubleArray_changed(java.lang.String, double[])" class="hiddenlink" target="rightframe">putDoubleArray
+(<code>String, double[]</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putInt_changed(java.lang.String, int)" class="hiddenlink" target="rightframe">putInt
+(<code>String, int</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putIntArray_changed(java.lang.String, int[])" class="hiddenlink" target="rightframe">putIntArray
+(<code>String, int[]</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putLong_changed(java.lang.String, long)" class="hiddenlink" target="rightframe">putLong
+(<code>String, long</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putLongArray_changed(java.lang.String, long[])" class="hiddenlink" target="rightframe">putLongArray
+(<code>String, long[]</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putSize_added(java.lang.String, android.util.Size)" class="hiddenlink" target="rightframe"><b>putSize</b>
+(<code>String, Size</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putSizeF_added(java.lang.String, android.util.SizeF)" class="hiddenlink" target="rightframe"><b>putSizeF</b>
+(<code>String, SizeF</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putString_changed(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">putString
+(<code>String, String</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putStringArray_changed(java.lang.String, java.lang.String[])" class="hiddenlink" target="rightframe">putStringArray
+(<code>String, String[]</code>)</A></nobr><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#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>readPersistableBundle</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readPersistableBundle_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.os.Parcel
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readPersistableBundle_added(java.lang.ClassLoader)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ClassLoader</code>)</b>&nbsp;in&nbsp;android.os.Parcel
+</A></nobr><br>
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readSize_added()" class="hiddenlink" target="rightframe"><b>readSize</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readSizeF_added()" class="hiddenlink" target="rightframe"><b>readSizeF</b>
+()</A></nobr><br>
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.registerAidsForService_added(android.content.ComponentName, java.lang.String, java.util.List<java.lang.String>)" class="hiddenlink" target="rightframe"><b>registerAidsForService</b>
+(<code>ComponentName, String, List&lt;String&gt;</code>)</A></nobr><br>
+<i>registerMediaButtonEventReceiver</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.app.PendingIntent)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>PendingIntent</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.content.ComponentName)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>ComponentName</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.registerNetworkCallback_added(android.net.NetworkRequest, android.net.ConnectivityManager.NetworkCallback)" class="hiddenlink" target="rightframe"><b>registerNetworkCallback</b>
+(<code>NetworkRequest, NetworkCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerRemoteControlClient_changed(android.media.RemoteControlClient)" class="hiddenlink" target="rightframe">registerRemoteControlClient
+(<code>RemoteControlClient</code>)</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerRemoteController_changed(android.media.RemoteController)" class="hiddenlink" target="rightframe">registerRemoteController
+(<code>RemoteController</code>)</A></nobr><br>
+<nobr><A HREF="android.os.PowerManager.WakeLock.html#android.os.PowerManager.WakeLock.release_added(int)" class="hiddenlink" target="rightframe"><b>release</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.releaseInstance_added()" class="hiddenlink" target="rightframe"><b>releaseInstance</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.releaseOutputBuffer_added(int, long)" class="hiddenlink" target="rightframe"><b>releaseOutputBuffer</b>
+(<code>int, long</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.remove_changed(java.lang.String)" class="hiddenlink" target="rightframe">remove
+(<code>String</code>)</A></nobr><br>
+<i>removeAction</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.removeAction_added(android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AccessibilityAction</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.removeAction_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo
+</A></nobr><br>
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.removeAidsForService_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>removeAidsForService</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeAllCookie_changed()" class="hiddenlink" target="rightframe">removeAllCookie
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeAllCookies_added(android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>removeAllCookies</b>
+(<code>ValueCallback&lt;Boolean&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.removeAllTabs_changed()" class="hiddenlink" target="rightframe">removeAllTabs
+()</A></nobr><br>
+<nobr><A HREF="android.net.nsd.NsdServiceInfo.html#android.net.nsd.NsdServiceInfo.removeAttribute_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>removeAttribute</b>
+(<code>String</code>)</A></nobr><br>
+<i>removeChild</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.removeChild_added(android.view.View)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.removeChild_added(android.view.View, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, int</code>)</b>&nbsp;in&nbsp;android.view.accessibility.AccessibilityNodeInfo
+</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.removeCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>removeCrossProfileWidgetProvider</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.removeDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><b>removeDefaultNetworkActiveListener</b>
+(<code>OnNetworkActiveListener</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeExpiredCookie_changed()" class="hiddenlink" target="rightframe">removeExpiredCookie
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeSessionCookie_changed()" class="hiddenlink" target="rightframe">removeSessionCookie
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeSessionCookies_added(android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>removeSessionCookies</b>
+(<code>ValueCallback&lt;Boolean&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.removeStickyBroadcast_changed(android.content.Intent)" class="hiddenlink" target="rightframe">removeStickyBroadcast
+(<code>Intent</code>)</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.removeStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)" class="hiddenlink" target="rightframe">removeStickyBroadcastAsUser
+(<code>Intent, UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.removeTab_changed(android.app.ActionBar.Tab)" class="hiddenlink" target="rightframe">removeTab
+(<code>Tab</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.removeTabAt_changed(int)" class="hiddenlink" target="rightframe">removeTabAt
+(<code>int</code>)</A></nobr><br>
+<i>removeTarget</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.removeTarget_added(java.lang.Class)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Class</code>)</b>&nbsp;in&nbsp;android.transition.Transition
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.removeTarget_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.transition.Transition
+</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.removeUser_added(android.content.ComponentName, android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>removeUser</b>
+(<code>ComponentName, UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.accounts.AccountManager.html#android.accounts.AccountManager.renameAccount_added(android.accounts.Account, java.lang.String, android.accounts.AccountManagerCallback<android.accounts.Account>, android.os.Handler)" class="hiddenlink" target="rightframe"><b>renameAccount</b>
+(<code>Account, String, AccountManagerCallback&lt;Account&gt;, Handler</code>)</A></nobr><br>
+<i>renameDocument</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.renameDocument_added(android.content.ContentResolver, android.net.Uri, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ContentResolver, Uri, String</code>)</b>&nbsp;in&nbsp;android.provider.DocumentsContract
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.renameDocument_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, String</code>)</b>&nbsp;in&nbsp;android.provider.DocumentsProvider
+</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.replaceSystemWindowInsets_added(android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>replaceSystemWindowInsets</b>
+(<code>Rect</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.replaceUnicodeDigits_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>replaceUnicodeDigits</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.reportBadNetwork_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>reportBadNetwork</b>
+(<code>Network</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.requestConnectionPriority_added(int)" class="hiddenlink" target="rightframe"><b>requestConnectionPriority</b>
+(<code>int</code>)</A></nobr><br>
+<i>requestCursorUpdates</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.BaseInputConnection.html#android.view.inputmethod.BaseInputConnection.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.BaseInputConnection
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.InputConnection
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.InputConnectionWrapper.html#android.view.inputmethod.InputConnectionWrapper.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.InputConnectionWrapper
+</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.requestInterruptionFilter_added(int)" class="hiddenlink" target="rightframe"><b>requestInterruptionFilter</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.requestListenerHints_added(int)" class="hiddenlink" target="rightframe"><b>requestListenerHints</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.requestMtu_added(int)" class="hiddenlink" target="rightframe"><b>requestMtu</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.requestNetwork_added(android.net.NetworkRequest, android.net.ConnectivityManager.NetworkCallback)" class="hiddenlink" target="rightframe"><b>requestNetwork</b>
+(<code>NetworkRequest, NetworkCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.requestRouteToHost_changed(int, int)" class="hiddenlink" target="rightframe">requestRouteToHost
+(<code>int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.requestUnbufferedDispatch_added(android.view.MotionEvent)" class="hiddenlink" target="rightframe"><b>requestUnbufferedDispatch</b>
+(<code>MotionEvent</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.requestVisibleBehind_added(boolean)" class="hiddenlink" target="rightframe"><b>requestVisibleBehind</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.reset_added()" class="hiddenlink" target="rightframe"><b>reset</b>
+()</A></nobr><br>
+<i>resize</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.display.VirtualDisplay.html#android.hardware.display.VirtualDisplay.resize_added(int, int, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, int</code>)</b>&nbsp;in&nbsp;android.hardware.display.VirtualDisplay
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.util.LruCache.html#android.util.LruCache.resize_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.util.LruCache
+</A></nobr><br>
+<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.revokeDocumentPermission_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>revokeDocumentPermission</b>
+(<code>String</code>)</A></nobr><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#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>saveLayer</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.saveLayer_added(android.graphics.RectF, android.graphics.Paint)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>RectF, Paint</code>)</b>&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.saveLayer_added(float, float, float, float, android.graphics.Paint)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float, float, float, float, Paint</code>)</b>&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<i>saveLayerAlpha</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.saveLayerAlpha_added(android.graphics.RectF, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>RectF, int</code>)</b>&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.saveLayerAlpha_added(float, float, float, float, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float, float, float, float, int</code>)</b>&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.selectTab_changed(android.app.ActionBar.Tab)" class="hiddenlink" target="rightframe">selectTab
+(<code>Tab</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.sendEnvelopeWithStatus_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>sendEnvelopeWithStatus</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.sendMultimediaMessage_added(android.content.Context, android.net.Uri, java.lang.String, android.os.Bundle, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>sendMultimediaMessage</b>
+(<code>Context, Uri, String, Bundle, PendingIntent</code>)</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyBroadcast_changed(android.content.Intent)" class="hiddenlink" target="rightframe">sendStickyBroadcast
+(<code>Intent</code>)</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)" class="hiddenlink" target="rightframe">sendStickyBroadcastAsUser
+(<code>Intent, UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyOrderedBroadcast_changed(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">sendStickyOrderedBroadcast
+(<code>Intent, BroadcastReceiver, Handler, int, String, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyOrderedBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">sendStickyOrderedBroadcastAsUser
+(<code>Intent, UserHandle, BroadcastReceiver, Handler, int, String, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.setAcceptThirdPartyCookies_added(android.webkit.WebView, boolean)" class="hiddenlink" target="rightframe"><b>setAcceptThirdPartyCookies</b>
+(<code>WebView, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setAccountManagementDisabled_added(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setAccountManagementDisabled</b>
+(<code>ComponentName, String, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.setActionBar_added(android.widget.Toolbar)" class="hiddenlink" target="rightframe"><b>setActionBar</b>
+(<code>Toolbar</code>)</A></nobr><br>
+<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.setAlarmClock_added(android.app.AlarmManager.AlarmClockInfo, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>setAlarmClock</b>
+(<code>AlarmClockInfo, PendingIntent</code>)</A></nobr><br>
+<i>setAllowEnterTransitionOverlap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setAllowEnterTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setAllowEnterTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<i>setAllowReturnTransitionOverlap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setAllowReturnTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setAllowReturnTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setApplicationHidden_added(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setApplicationHidden</b>
+(<code>ComponentName, String, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setApplicationRestrictions_added(android.content.ComponentName, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>setApplicationRestrictions</b>
+(<code>ComponentName, String, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.net.nsd.NsdServiceInfo.html#android.net.nsd.NsdServiceInfo.setAttribute_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>setAttribute</b>
+(<code>String, String</code>)</A></nobr><br>
+<i>setAudioAttributes</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AudioAttributes</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AudioAttributes</code>)</b>&nbsp;in&nbsp;android.media.Ringtone
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AudioAttributes</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setAutoTimeRequired_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setAutoTimeRequired</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setBackgroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setBackgroundTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setBackgroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setBackgroundTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.setBlocking_added(boolean)" class="hiddenlink" target="rightframe"><b>setBlocking</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.setButtonTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setButtonTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.setButtonTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setButtonTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.setCallback_added(android.media.MediaCodec.Callback)" class="hiddenlink" target="rightframe"><b>setCallback</b>
+(<code>Callback</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaRecorder.html#android.media.MediaRecorder.setCamera_changed(android.hardware.Camera)" class="hiddenlink" target="rightframe">setCamera
+(<code>Camera</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setCategory_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setCategory</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.setCheckMarkTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setCheckMarkTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.setCheckMarkTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setCheckMarkTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setClipToOutline_added(boolean)" class="hiddenlink" target="rightframe"><b>setClipToOutline</b>
+(<code>boolean</code>)</A></nobr><br>
+<i>setColor</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setColor_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.app.Notification.Builder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.GradientDrawable.html#android.graphics.drawable.GradientDrawable.setColor_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ColorStateList</code>)</b>&nbsp;in&nbsp;android.graphics.drawable.GradientDrawable
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.setColor_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.widget.EdgeEffect
+</A></nobr><br>
+<nobr><A HREF="android.hardware.usb.UsbDeviceConnection.html#android.hardware.usb.UsbDeviceConnection.setConfiguration_added(android.hardware.usb.UsbConfiguration)" class="hiddenlink" target="rightframe"><b>setConfiguration</b>
+(<code>UsbConfiguration</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.setContentTransitionManager_added(android.transition.TransitionManager)" class="hiddenlink" target="rightframe"><b>setContentTransitionManager</b>
+(<code>TransitionManager</code>)</A></nobr><br>
+<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.setConverter_added(android.animation.TypeConverter)" class="hiddenlink" target="rightframe"><b>setConverter</b>
+(<code>TypeConverter</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.setCookie_added(java.lang.String, java.lang.String, android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>setCookie</b>
+(<code>String, String, ValueCallback&lt;Boolean&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.media.Image.html#android.media.Image.setCropRect_added(android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>setCropRect</b>
+(<code>Rect</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setCrossProfileCallerIdDisabled_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setCrossProfileCallerIdDisabled</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setDrawable_added(android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe"><b>setDrawable</b>
+(<code>Drawable</code>)</A></nobr><br>
+<i>setElegantTextHeight</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setElegantTextHeight_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setElegantTextHeight_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<i>setElevation</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setElevation_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.View.html#android.view.View.setElevation_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.view.View
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.PopupWindow.html#android.widget.PopupWindow.setElevation_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.widget.PopupWindow
+</A></nobr><br>
+<i>setEnterSharedElementCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setEnterSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setEnterSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<i>setEnterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.setEpicenterCallback_added(android.transition.Transition.EpicenterCallback)" class="hiddenlink" target="rightframe"><b>setEpicenterCallback</b>
+(<code>EpicenterCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.setError_added(java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>setError</b>
+(<code>CharSequence</code>)</A></nobr><br>
+<i>setExitSharedElementCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setExitSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setExitSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<i>setExitTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setExitTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setExitTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.widget.AbsListView.html#android.widget.AbsListView.setFastScrollStyle_added(int)" class="hiddenlink" target="rightframe"><b>setFastScrollStyle</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.setFeatureEnabled_added(java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setFeatureEnabled</b>
+(<code>String, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.DatePicker.html#android.widget.DatePicker.setFirstDayOfWeek_added(int)" class="hiddenlink" target="rightframe"><b>setFirstDayOfWeek</b>
+(<code>int</code>)</A></nobr><br>
+<i>setFontFeatureSettings</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setFontFeatureSettings_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setFontFeatureSettings_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.setForegroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setForegroundTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.setForegroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setForegroundTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setFromDegrees_added(float)" class="hiddenlink" target="rightframe"><b>setFromDegrees</b>
+(<code>float</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setGlobalSetting_added(android.content.ComponentName, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>setGlobalSetting</b>
+(<code>ComponentName, String, String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setHideOffset_added(int)" class="hiddenlink" target="rightframe"><b>setHideOffset</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setHideOnContentScrollEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setHideOnContentScrollEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setHotspot_added(float, float)" class="hiddenlink" target="rightframe"><b>setHotspot</b>
+(<code>float, float</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setHotspotBounds_added(int, int, int, int)" class="hiddenlink" target="rightframe"><b>setHotspotBounds</b>
+(<code>int, int, int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.setImageTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setImageTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.setImageTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setImageTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setIndeterminateDrawableTiled_added(android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe"><b>setIndeterminateDrawableTiled</b>
+(<code>Drawable</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setIndeterminateTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setIndeterminateTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setIndeterminateTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setIndeterminateTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.usb.UsbDeviceConnection.html#android.hardware.usb.UsbDeviceConnection.setInterface_added(android.hardware.usb.UsbInterface)" class="hiddenlink" target="rightframe"><b>setInterface</b>
+(<code>UsbInterface</code>)</A></nobr><br>
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.setIntValue_added(int)" class="hiddenlink" target="rightframe"><b>setIntValue</b>
+(<code>int</code>)</A></nobr><br>
+<i>setLetterSpacing</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setLetterSpacing_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setLetterSpacing_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setListNavigationCallbacks_changed(android.widget.SpinnerAdapter, android.app.ActionBar.OnNavigationListener)" class="hiddenlink" target="rightframe">setListNavigationCallbacks
+(<code>SpinnerAdapter, OnNavigationListener</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setLockTaskPackages_added(android.content.ComponentName, java.lang.String[])" class="hiddenlink" target="rightframe"><b>setLockTaskPackages</b>
+(<code>ComponentName, String[]</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setMasterVolumeMuted_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setMasterVolumeMuted</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.setMatchOrder_added(int...)" class="hiddenlink" target="rightframe"><b>setMatchOrder</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.setMaxTextLength_added(int)" class="hiddenlink" target="rightframe"><b>setMaxTextLength</b>
+(<code>int</code>)</A></nobr><br>
+<i>setMediaController</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setMediaController_added(android.media.session.MediaController)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>MediaController</code>)</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setMediaController_added(android.media.session.MediaController)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>MediaController</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setMixedContentMode_added(int)" class="hiddenlink" target="rightframe"><b>setMixedContentMode</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.setMode_added(int)" class="hiddenlink" target="rightframe"><b>setMode</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.setNavigationBarColor_added(int)" class="hiddenlink" target="rightframe"><b>setNavigationBarColor</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setNavigationMode_changed(int)" class="hiddenlink" target="rightframe">setNavigationMode
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setNestedScrollingEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setNestedScrollingEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.setNetworkPreference_changed(int)" class="hiddenlink" target="rightframe">setNetworkPreference
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.SurfaceTexture.html#android.graphics.SurfaceTexture.setOnFrameAvailableListener_added(android.graphics.SurfaceTexture.OnFrameAvailableListener, android.os.Handler)" class="hiddenlink" target="rightframe"><b>setOnFrameAvailableListener</b>
+(<code>OnFrameAvailableListener, Handler</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setOutlineProvider_added(android.view.ViewOutlineProvider)" class="hiddenlink" target="rightframe"><b>setOutlineProvider</b>
+(<code>ViewOutlineProvider</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.QuickContactBadge.html#android.widget.QuickContactBadge.setOverlay_added(android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe"><b>setOverlay</b>
+(<code>Drawable</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.LayerDrawable.html#android.graphics.drawable.LayerDrawable.setPaddingMode_added(int)" class="hiddenlink" target="rightframe"><b>setPaddingMode</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.setPathMotion_added(android.transition.PathMotion)" class="hiddenlink" target="rightframe"><b>setPathMotion</b>
+(<code>PathMotion</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setPermittedAccessibilityServices_added(android.content.ComponentName, java.util.List<java.lang.String>)" class="hiddenlink" target="rightframe"><b>setPermittedAccessibilityServices</b>
+(<code>ComponentName, List&lt;String&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setPermittedInputMethods_added(android.content.ComponentName, java.util.List<java.lang.String>)" class="hiddenlink" target="rightframe"><b>setPermittedInputMethods</b>
+(<code>ComponentName, List&lt;String&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setPivotX_added(float)" class="hiddenlink" target="rightframe"><b>setPivotX</b>
+(<code>float</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setPivotXRelative_added(boolean)" class="hiddenlink" target="rightframe"><b>setPivotXRelative</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setPivotY_added(float)" class="hiddenlink" target="rightframe"><b>setPivotY</b>
+(<code>float</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setPivotYRelative_added(boolean)" class="hiddenlink" target="rightframe"><b>setPivotYRelative</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.setPreferredService_added(android.app.Activity, android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>setPreferredService</b>
+(<code>Activity, ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.setProcessDefaultNetwork_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>setProcessDefaultNetwork</b>
+(<code>Network</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setProfileEnabled_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>setProfileEnabled</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setProfileName_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>setProfileName</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressBackgroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setProgressBackgroundTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressBackgroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setProgressBackgroundTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressDrawableTiled_added(android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe"><b>setProgressDrawableTiled</b>
+(<code>Drawable</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setProgressTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setProgressTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.setPropagation_added(android.transition.TransitionPropagation)" class="hiddenlink" target="rightframe"><b>setPropagation</b>
+(<code>TransitionPropagation</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setPublicVersion_added(android.app.Notification)" class="hiddenlink" target="rightframe"><b>setPublicVersion</b>
+(<code>Notification</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setRasterizer_changed(android.graphics.Rasterizer)" class="hiddenlink" target="rightframe">setRasterizer
+(<code>Rasterizer</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setRecommendedGlobalProxy_added(android.content.ComponentName, android.net.ProxyInfo)" class="hiddenlink" target="rightframe"><b>setRecommendedGlobalProxy</b>
+(<code>ComponentName, ProxyInfo</code>)</A></nobr><br>
+<i>setReenterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html#java.util.concurrent.ScheduledThreadPoolExecutor.setRemoveOnCancelPolicy_added(boolean)" class="hiddenlink" target="rightframe"><b>setRemoveOnCancelPolicy</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.ChangeBounds.html#android.transition.ChangeBounds.setReparent_changed(boolean)" class="hiddenlink" target="rightframe">setReparent
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.setResponseHeaders_added(java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe"><b>setResponseHeaders</b>
+(<code>Map&lt;String, String&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setRestrictionsProvider_added(android.content.ComponentName, android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>setRestrictionsProvider</b>
+(<code>ComponentName, ComponentName</code>)</A></nobr><br>
+<i>setReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setScreenCaptureDisabled_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setScreenCaptureDisabled</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setSecondaryProgressTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setSecondaryProgressTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setSecondaryProgressTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setSecondaryProgressTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setSecureSetting_added(android.content.ComponentName, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>setSecureSetting</b>
+(<code>ComponentName, String, String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setSelectedNavigationItem_changed(int)" class="hiddenlink" target="rightframe">setSelectedNavigationItem
+(<code>int</code>)</A></nobr><br>
+<i>setSelectionFromTop</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AbsListView.html#android.widget.AbsListView.setSelectionFromTop_added(int, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int</code>)</b>&nbsp;in&nbsp;android.widget.AbsListView
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.ListView.html#android.widget.ListView.setSelectionFromTop_changed(int, int)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>int, int</code>)&nbsp;in&nbsp;android.widget.ListView
+</A></nobr><br>
+<i>setSharedElementEnterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setSharedElementEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementExitTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setSharedElementExitTransition</b>
+(<code>Transition</code>)</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setSharedElementReenterTransition</b>
+(<code>Transition</code>)</A></nobr><br>
+<i>setSharedElementReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setSharedElementReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementsUseOverlay_added(boolean)" class="hiddenlink" target="rightframe"><b>setSharedElementsUseOverlay</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setShowSoftInputOnFocus_added(boolean)" class="hiddenlink" target="rightframe"><b>setShowSoftInputOnFocus</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.setShowText_added(boolean)" class="hiddenlink" target="rightframe"><b>setShowText</b>
+(<code>boolean</code>)</A></nobr><br>
+<i>setSound</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_removed(android.net.Uri, int)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Uri, int</code>)</strike>&nbsp;in&nbsp;android.app.Notification.Builder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_added(android.net.Uri, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Uri, AudioAttributes</code>)</b>&nbsp;in&nbsp;android.app.Notification.Builder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_added(android.net.Uri, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Uri, int</code>)</b>&nbsp;in&nbsp;android.app.Notification.Builder
+</A></nobr><br>
+<i>setSplitTrack</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.setSplitTrack_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.widget.AbsSeekBar
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.setSplitTrack_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.widget.Switch
+</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setStateListAnimator_added(android.animation.StateListAnimator)" class="hiddenlink" target="rightframe"><b>setStateListAnimator</b>
+(<code>StateListAnimator</code>)</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.setStatusBarColor_added(int)" class="hiddenlink" target="rightframe"><b>setStatusBarColor</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.setStatusCodeAndReasonPhrase_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>setStatusCodeAndReasonPhrase</b>
+(<code>int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.setStereoVolume_changed(float, float)" class="hiddenlink" target="rightframe">setStereoVolume
+(<code>float, float</code>)</A></nobr><br>
+<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.setStreamType_changed(int)" class="hiddenlink" target="rightframe">setStreamType
+(<code>int</code>)</A></nobr><br>
+<i>setStroke</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.GradientDrawable.html#android.graphics.drawable.GradientDrawable.setStroke_added(int, android.content.res.ColorStateList)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, ColorStateList</code>)</b>&nbsp;in&nbsp;android.graphics.drawable.GradientDrawable
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.GradientDrawable.html#android.graphics.drawable.GradientDrawable.setStroke_added(int, android.content.res.ColorStateList, float, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, ColorStateList, float, float</code>)</b>&nbsp;in&nbsp;android.graphics.drawable.GradientDrawable
+</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.setTaskDescription_added(android.app.ActivityManager.TaskDescription)" class="hiddenlink" target="rightframe"><b>setTaskDescription</b>
+(<code>TaskDescription</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.setThumbTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setThumbTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.setThumbTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setThumbTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setTicker_changed(java.lang.CharSequence, android.widget.RemoteViews)" class="hiddenlink" target="rightframe">setTicker
+(<code>CharSequence, RemoteViews</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTint_added(int)" class="hiddenlink" target="rightframe"><b>setTint</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<i>setTitleColor</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setTitleColor_changed(int)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>int</code>)&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setTitleColor_changed(int)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>int</code>)&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setToDegrees_added(float)" class="hiddenlink" target="rightframe"><b>setToDegrees</b>
+(<code>float</code>)</A></nobr><br>
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.setTouchscreenBlocksFocus_added(boolean)" class="hiddenlink" target="rightframe"><b>setTouchscreenBlocksFocus</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.setTransitionBackgroundFadeDuration_added(long)" class="hiddenlink" target="rightframe"><b>setTransitionBackgroundFadeDuration</b>
+(<code>long</code>)</A></nobr><br>
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.setTransitionGroup_added(boolean)" class="hiddenlink" target="rightframe"><b>setTransitionGroup</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.setTransitionManager_added(android.transition.TransitionManager)" class="hiddenlink" target="rightframe"><b>setTransitionManager</b>
+(<code>TransitionManager</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setTransitionName_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setTransitionName</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setTranslationZ_added(float)" class="hiddenlink" target="rightframe"><b>setTranslationZ</b>
+(<code>float</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setUninstallBlocked_added(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setUninstallBlocked</b>
+(<code>ComponentName, String, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestriction_changed(java.lang.String, boolean)" class="hiddenlink" target="rightframe">setUserRestriction
+(<code>String, boolean</code>)</A></nobr><br>
+<i>setUserRestrictions</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestrictions_changed(android.os.Bundle)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Bundle</code>)&nbsp;in&nbsp;android.os.UserManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestrictions_changed(android.os.Bundle, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Bundle, UserHandle</code>)&nbsp;in&nbsp;android.os.UserManager
+</A></nobr><br>
+<nobr><A HREF="android.widget.VideoView.html#android.widget.VideoView.setVideoURI_added(android.net.Uri, java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe"><b>setVideoURI</b>
+(<code>Uri, Map&lt;String, String&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.app.AlertDialog.Builder.html#android.app.AlertDialog.Builder.setView_added(int)" class="hiddenlink" target="rightframe"><b>setView</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setVisibility_added(int)" class="hiddenlink" target="rightframe"><b>setVisibility</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.setVoice_added(android.speech.tts.Voice)" class="hiddenlink" target="rightframe"><b>setVoice</b>
+(<code>Voice</code>)</A></nobr><br>
+<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.setVolume_added(float)" class="hiddenlink" target="rightframe"><b>setVolume</b>
+(<code>float</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setZ_added(float)" class="hiddenlink" target="rightframe"><b>setZ</b>
+(<code>float</code>)</A></nobr><br>
+<i>shouldInterceptRequest</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_removed(android.webkit.WebView, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>WebView, String</code>)</strike>&nbsp;in&nbsp;android.webkit.WebViewClient
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, android.webkit.WebResourceRequest)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>WebView, WebResourceRequest</code>)</b>&nbsp;in&nbsp;android.webkit.WebViewClient
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>WebView, String</code>)</b>&nbsp;in&nbsp;android.webkit.WebViewClient
+</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.size_changed()" class="hiddenlink" target="rightframe">size
+()</A></nobr><br>
+<i>speak</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.speak_added(java.lang.CharSequence, int, android.os.Bundle, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, int, Bundle, String</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.speak_changed(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>String, int, HashMap&lt;String, String&gt;</code>)&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<i>spec</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, android.widget.GridLayout.Alignment, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, Alignment, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, int, android.widget.GridLayout.Alignment, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, Alignment, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, int, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetHost.html#android.appwidget.AppWidgetHost.startAppWidgetConfigureActivityForResult_added(android.app.Activity, int, int, int, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>startAppWidgetConfigureActivityForResult</b>
+(<code>Activity, int, int, int, Bundle</code>)</A></nobr><br>
+<i>startLeScan</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.startLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>LeScanCallback</code>)&nbsp;in&nbsp;android.bluetooth.BluetoothAdapter
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.startLeScan_changed(java.util.UUID[], android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>UUID[], LeScanCallback</code>)&nbsp;in&nbsp;android.bluetooth.BluetoothAdapter
+</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.startLockTask_added()" class="hiddenlink" target="rightframe"><b>startLockTask</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.Debug.html#android.os.Debug.startMethodTracingSampling_added(java.lang.String, int, int)" class="hiddenlink" target="rightframe"><b>startMethodTracingSampling</b>
+(<code>String, int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.startNestedScroll_added(int)" class="hiddenlink" target="rightframe"><b>startNestedScroll</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.startPostponedEnterTransition_added()" class="hiddenlink" target="rightframe"><b>startPostponedEnterTransition</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.startUsingNetworkFeature_changed(int, java.lang.String)" class="hiddenlink" target="rightframe">startUsingNetworkFeature
+(<code>int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.startWps_added(android.net.wifi.WpsInfo, android.net.wifi.WifiManager.WpsCallback)" class="hiddenlink" target="rightframe"><b>startWps</b>
+(<code>WpsInfo, WpsCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.stopLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">stopLeScan
+(<code>LeScanCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.stopLockTask_added()" class="hiddenlink" target="rightframe"><b>stopLockTask</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.stopNestedScroll_added()" class="hiddenlink" target="rightframe"><b>stopNestedScroll</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.stopUsingNetworkFeature_changed(int, java.lang.String)" class="hiddenlink" target="rightframe">stopUsingNetworkFeature
+(<code>int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.supportsAidPrefixRegistration_added()" class="hiddenlink" target="rightframe"><b>supportsAidPrefixRegistration</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.InputDevice.html#android.view.InputDevice.supportsSource_added(int)" class="hiddenlink" target="rightframe"><b>supportsSource</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.switchUser_added(android.content.ComponentName, android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>switchUser</b>
+(<code>ComponentName, UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieSyncManager.html#android.webkit.CookieSyncManager.syncFromRamToFlash_changed()" class="hiddenlink" target="rightframe">syncFromRamToFlash
+()</A></nobr><br>
+<i>synthesizeToFile</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.synthesizeToFile_added(java.lang.CharSequence, android.os.Bundle, java.io.File, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, Bundle, File, String</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.synthesizeToFile_changed(java.lang.String, java.util.HashMap<java.lang.String, java.lang.String>, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>String, HashMap&lt;String, String&gt;, String</code>)&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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="#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="java.util.Locale.html#java.util.Locale.toLanguageTag_added()" class="hiddenlink" target="rightframe"><b>toLanguageTag</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.ViewPropertyAnimator.html#android.view.ViewPropertyAnimator.translationZ_added(float)" class="hiddenlink" target="rightframe"><b>translationZ</b>
+(<code>float</code>)</A></nobr><br>
+<nobr><A HREF="android.view.ViewPropertyAnimator.html#android.view.ViewPropertyAnimator.translationZBy_added(float)" class="hiddenlink" target="rightframe"><b>translationZBy</b>
+(<code>float</code>)</A></nobr><br>
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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="#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.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.uninstallAllUserCaCerts_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>uninstallAllUserCaCerts</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.uninstallCaCert_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>uninstallCaCert</b>
+(<code>ComponentName, byte[]</code>)</A></nobr><br>
+<i>unregisterMediaButtonEventReceiver</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.app.PendingIntent)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>PendingIntent</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.content.ComponentName)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>ComponentName</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.unregisterNetworkCallback_added(android.net.ConnectivityManager.NetworkCallback)" class="hiddenlink" target="rightframe"><b>unregisterNetworkCallback</b>
+(<code>NetworkCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterRemoteControlClient_changed(android.media.RemoteControlClient)" class="hiddenlink" target="rightframe">unregisterRemoteControlClient
+(<code>RemoteControlClient</code>)</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterRemoteController_changed(android.media.RemoteController)" class="hiddenlink" target="rightframe">unregisterRemoteController
+(<code>RemoteController</code>)</A></nobr><br>
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.unsetPreferredService_added(android.app.Activity)" class="hiddenlink" target="rightframe"><b>unsetPreferredService</b>
+(<code>Activity</code>)</A></nobr><br>
+<nobr><A HREF="android.view.inputmethod.InputMethodManager.html#android.view.inputmethod.InputMethodManager.updateCursor_changed(android.view.View, int, int, int, int)" class="hiddenlink" target="rightframe">updateCursor
+(<code>View, int, int, int, int</code>)</A></nobr><br>
+<i>updateCursorAnchorInfo</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.inputmethodservice.InputMethodService.InputMethodSessionImpl.html#android.inputmethodservice.InputMethodService.InputMethodSessionImpl.updateCursorAnchorInfo_added(android.view.inputmethod.CursorAnchorInfo)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CursorAnchorInfo</code>)</b>&nbsp;in&nbsp;android.inputmethodservice.InputMethodService.InputMethodSessionImpl
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.InputMethodManager.html#android.view.inputmethod.InputMethodManager.updateCursorAnchorInfo_added(android.view.View, android.view.inputmethod.CursorAnchorInfo)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, CursorAnchorInfo</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.InputMethodManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.InputMethodSession.html#android.view.inputmethod.InputMethodSession.updateCursorAnchorInfo_added(android.view.inputmethod.CursorAnchorInfo)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CursorAnchorInfo</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.InputMethodSession
+</A></nobr><br>
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.userActivity_removed(long, boolean)" class="hiddenlink" target="rightframe"><strike>userActivity</strike>
+(<code>long, boolean</code>)</A></nobr><br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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="#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>vibrate</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_removed(long[], int)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>long[], int</code>)</strike>&nbsp;in&nbsp;android.os.Vibrator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_added(long, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long, AudioAttributes</code>)</b>&nbsp;in&nbsp;android.os.Vibrator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_added(long[], int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long[], int</code>)</b>&nbsp;in&nbsp;android.os.Vibrator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_added(long[], int, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long[], int, AudioAttributes</code>)</b>&nbsp;in&nbsp;android.os.Vibrator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_changed(long)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>long</code>)&nbsp;in&nbsp;android.os.Vibrator
+</A></nobr><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#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>wakeUp</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.wakeUp_removed(long)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>long</code>)</strike>&nbsp;in&nbsp;android.os.PowerManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.service.dreams.DreamService.html#android.service.dreams.DreamService.wakeUp_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.service.dreams.DreamService
+</A></nobr><br>
+<i>write</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.write_added(float[], int, int, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float[], int, int, int</code>)</b>&nbsp;in&nbsp;android.media.AudioTrack
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.write_added(java.nio.ByteBuffer, int, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ByteBuffer, int, int</code>)</b>&nbsp;in&nbsp;android.media.AudioTrack
+</A></nobr><br>
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.writePersistableBundle_added(android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>writePersistableBundle</b>
+(<code>PersistableBundle</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.writeSize_added(android.util.Size)" class="hiddenlink" target="rightframe"><b>writeSize</b>
+(<code>Size</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.writeSizeF_added(android.util.SizeF)" class="hiddenlink" target="rightframe"><b>writeSizeF</b>
+(<code>SizeF</code>)</A></nobr><br>
+<A NAME="Z"></A>
+<br><font size="+2">Z</font>&nbsp;
+<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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.view.ViewPropertyAnimator.html#android.view.ViewPropertyAnimator.z_added(float)" class="hiddenlink" target="rightframe"><b>z</b>
+(<code>float</code>)</A></nobr><br>
+<nobr><A HREF="android.view.ViewPropertyAnimator.html#android.view.ViewPropertyAnimator.zBy_added(float)" class="hiddenlink" target="rightframe"><b>zBy</b>
+(<code>float</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.zoomBy_added(float)" class="hiddenlink" target="rightframe"><b>zoomBy</b>
+(<code>float</code>)</A></nobr><br>
+<script src="//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/21/changes/methods_index_changes.html b/docs/html/sdk/api_diff/21/changes/methods_index_changes.html
new file mode 100644
index 0000000..cf39247
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/methods_index_changes.html
@@ -0,0 +1,591 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<A HREF="methods_index_removals.html" xclass="hiddenlink">Removals</A>
+  <br>
+<A HREF="methods_index_additions.html"xclass="hiddenlink">Additions</A>
+  <br>
+<b>Changes</b>
+  </td>
+  </tr>
+</table>
+<div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#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="#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.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.addAction_changed(int)" class="hiddenlink" target="rightframe">addAction
+(<code>int</code>)</A></nobr><br>
+<i>addTab</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Tab</code>)&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab, boolean)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Tab, boolean</code>)&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab, int)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Tab, int</code>)&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab, int, boolean)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Tab, int, boolean</code>)&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.areDefaultsEnforced_changed()" class="hiddenlink" target="rightframe">areDefaultsEnforced
+()</A></nobr><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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="#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="#U"><font size="-2">U</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.os.Bundle.html#android.os.Bundle.clear_changed()" class="hiddenlink" target="rightframe">clear
+()</A></nobr><br>
+<i>clipRegion</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.clipRegion_changed(android.graphics.Region)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Region</code>)&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.clipRegion_changed(android.graphics.Region, android.graphics.Region.Op)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Region, Op</code>)&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.containsKey_changed(java.lang.String)" class="hiddenlink" target="rightframe">containsKey
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.createByCodecName_changed(java.lang.String)" class="hiddenlink" target="rightframe">createByCodecName
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.createDecoderByType_changed(java.lang.String)" class="hiddenlink" target="rightframe">createDecoderByType
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.createEncoderByType_changed(java.lang.String)" class="hiddenlink" target="rightframe">createEncoderByType
+(<code>String</code>)</A></nobr><br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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="#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="#U"><font size="-2">U</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>drawBitmap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawBitmap_changed(int[], int, int, float, float, int, int, boolean, android.graphics.Paint)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>int[], int, int, float, float, int, int, boolean, Paint</code>)&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawBitmap_changed(int[], int, int, int, int, int, int, boolean, android.graphics.Paint)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>int[], int, int, int, int, int, int, boolean, Paint</code>)&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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="#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="#U"><font size="-2">U</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.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.enableHardwareAcceleration_changed()" class="hiddenlink" target="rightframe">enableHardwareAcceleration
+()</A></nobr><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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="#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="#U"><font size="-2">U</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.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatJapaneseNumber_changed(android.text.Editable)" class="hiddenlink" target="rightframe">formatJapaneseNumber
+(<code>Editable</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNanpNumber_changed(android.text.Editable)" class="hiddenlink" target="rightframe">formatNanpNumber
+(<code>Editable</code>)</A></nobr><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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="#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="#U"><font size="-2">U</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.os.Bundle.html#android.os.Bundle.get_changed(java.lang.String)" class="hiddenlink" target="rightframe">get
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getActions_changed()" class="hiddenlink" target="rightframe">getActions
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecCount_changed()" class="hiddenlink" target="rightframe">getCodecCount
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecInfoAt_changed(int)" class="hiddenlink" target="rightframe">getCodecInfoAt
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getDefaultLanguage_changed()" class="hiddenlink" target="rightframe">getDefaultLanguage
+()</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getDoubleArray_changed(java.lang.String)" class="hiddenlink" target="rightframe">getDoubleArray
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getFeatures_changed(java.util.Locale)" class="hiddenlink" target="rightframe">getFeatures
+(<code>Locale</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.getFormatTypeForLocale_changed(java.util.Locale)" class="hiddenlink" target="rightframe">getFormatTypeForLocale
+(<code>Locale</code>)</A></nobr><br>
+<nobr><A HREF="android.opengl.EGLObjectHandle.html#android.opengl.EGLObjectHandle.getHandle_changed()" class="hiddenlink" target="rightframe">getHandle
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputBuffers_changed()" class="hiddenlink" target="rightframe">getInputBuffers
+()</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getIntArray_changed(java.lang.String)" class="hiddenlink" target="rightframe">getIntArray
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getLanguage_changed()" class="hiddenlink" target="rightframe">getLanguage
+()</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getLongArray_changed(java.lang.String)" class="hiddenlink" target="rightframe">getLongArray
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getNavigationItemCount_changed()" class="hiddenlink" target="rightframe">getNavigationItemCount
+()</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getNavigationMode_changed()" class="hiddenlink" target="rightframe">getNavigationMode
+()</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getNetworkPreference_changed()" class="hiddenlink" target="rightframe">getNetworkPreference
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputBuffers_changed()" class="hiddenlink" target="rightframe">getOutputBuffers
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.getRasterizer_changed()" class="hiddenlink" target="rightframe">getRasterizer
+()</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getRecentTasks_changed(int, int)" class="hiddenlink" target="rightframe">getRecentTasks
+(<code>int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getRunningTasks_changed(int)" class="hiddenlink" target="rightframe">getRunningTasks
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getSelectedNavigationIndex_changed()" class="hiddenlink" target="rightframe">getSelectedNavigationIndex
+()</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getSelectedTab_changed()" class="hiddenlink" target="rightframe">getSelectedTab
+()</A></nobr><br>
+<nobr><A HREF="android.os.Environment.html#android.os.Environment.getStorageState_changed(java.io.File)" class="hiddenlink" target="rightframe">getStorageState
+(<code>File</code>)</A></nobr><br>
+<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.getStreamType_changed()" class="hiddenlink" target="rightframe">getStreamType
+()</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getStringArray_changed(java.lang.String)" class="hiddenlink" target="rightframe">getStringArray
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getTabAt_changed(int)" class="hiddenlink" target="rightframe">getTabAt
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getTabCount_changed()" class="hiddenlink" target="rightframe">getTabCount
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getText_changed()" class="hiddenlink" target="rightframe">getText
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.StatusBarNotification.html#android.service.notification.StatusBarNotification.getUserId_changed()" class="hiddenlink" target="rightframe">getUserId
+()</A></nobr><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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="#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="#U"><font size="-2">U</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.os.Bundle.html#android.os.Bundle.isEmpty_changed()" class="hiddenlink" target="rightframe">isEmpty
+()</A></nobr><br>
+<nobr><A HREF="android.view.inputmethod.InputMethodManager.html#android.view.inputmethod.InputMethodManager.isWatchingCursor_changed(android.view.View)" class="hiddenlink" target="rightframe">isWatchingCursor
+(<code>View</code>)</A></nobr><br>
+<A NAME="K"></A>
+<br><font size="+2">K</font>&nbsp;
+<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="#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="#U"><font size="-2">U</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.os.Bundle.html#android.os.Bundle.keySet_changed()" class="hiddenlink" target="rightframe">keySet
+()</A></nobr><br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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="#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="#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.app.ActionBar.html#android.app.ActionBar.newTab_changed()" class="hiddenlink" target="rightframe">newTab
+()</A></nobr><br>
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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="#U"><font size="-2">U</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.location.SettingInjectorService.html#android.location.SettingInjectorService.onGetSummary_changed()" class="hiddenlink" target="rightframe">onGetSummary
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationPosted_changed(android.service.notification.StatusBarNotification)" class="hiddenlink" target="rightframe">onNotificationPosted
+(<code>StatusBarNotification</code>)</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationRemoved_changed(android.service.notification.StatusBarNotification)" class="hiddenlink" target="rightframe">onNotificationRemoved
+(<code>StatusBarNotification</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.onUnhandledKeyEvent_changed(android.webkit.WebView, android.view.KeyEvent)" class="hiddenlink" target="rightframe">onUnhandledKeyEvent
+(<code>WebView, KeyEvent</code>)</A></nobr><br>
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.onUpdateCursor_changed(android.graphics.Rect)" class="hiddenlink" target="rightframe">onUpdateCursor
+(<code>Rect</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaDrm.html#android.media.MediaDrm.openSession_changed()" class="hiddenlink" target="rightframe">openSession
+()</A></nobr><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#O"><font size="-2">O</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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playEarcon_changed(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">playEarcon
+(<code>String, int, HashMap&lt;String, String&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playSilence_changed(long, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">playSilence
+(<code>long, int, HashMap&lt;String, String&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putDouble_changed(java.lang.String, double)" class="hiddenlink" target="rightframe">putDouble
+(<code>String, double</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putDoubleArray_changed(java.lang.String, double[])" class="hiddenlink" target="rightframe">putDoubleArray
+(<code>String, double[]</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putInt_changed(java.lang.String, int)" class="hiddenlink" target="rightframe">putInt
+(<code>String, int</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putIntArray_changed(java.lang.String, int[])" class="hiddenlink" target="rightframe">putIntArray
+(<code>String, int[]</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putLong_changed(java.lang.String, long)" class="hiddenlink" target="rightframe">putLong
+(<code>String, long</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putLongArray_changed(java.lang.String, long[])" class="hiddenlink" target="rightframe">putLongArray
+(<code>String, long[]</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putString_changed(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">putString
+(<code>String, String</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putStringArray_changed(java.lang.String, java.lang.String[])" class="hiddenlink" target="rightframe">putStringArray
+(<code>String, String[]</code>)</A></nobr><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#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="#U"><font size="-2">U</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>registerMediaButtonEventReceiver</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.app.PendingIntent)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>PendingIntent</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.content.ComponentName)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>ComponentName</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerRemoteControlClient_changed(android.media.RemoteControlClient)" class="hiddenlink" target="rightframe">registerRemoteControlClient
+(<code>RemoteControlClient</code>)</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerRemoteController_changed(android.media.RemoteController)" class="hiddenlink" target="rightframe">registerRemoteController
+(<code>RemoteController</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.remove_changed(java.lang.String)" class="hiddenlink" target="rightframe">remove
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeAllCookie_changed()" class="hiddenlink" target="rightframe">removeAllCookie
+()</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.removeAllTabs_changed()" class="hiddenlink" target="rightframe">removeAllTabs
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeExpiredCookie_changed()" class="hiddenlink" target="rightframe">removeExpiredCookie
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeSessionCookie_changed()" class="hiddenlink" target="rightframe">removeSessionCookie
+()</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.removeStickyBroadcast_changed(android.content.Intent)" class="hiddenlink" target="rightframe">removeStickyBroadcast
+(<code>Intent</code>)</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.removeStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)" class="hiddenlink" target="rightframe">removeStickyBroadcastAsUser
+(<code>Intent, UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.removeTab_changed(android.app.ActionBar.Tab)" class="hiddenlink" target="rightframe">removeTab
+(<code>Tab</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.removeTabAt_changed(int)" class="hiddenlink" target="rightframe">removeTabAt
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.requestRouteToHost_changed(int, int)" class="hiddenlink" target="rightframe">requestRouteToHost
+(<code>int, int</code>)</A></nobr><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#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="#U"><font size="-2">U</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.app.ActionBar.html#android.app.ActionBar.selectTab_changed(android.app.ActionBar.Tab)" class="hiddenlink" target="rightframe">selectTab
+(<code>Tab</code>)</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyBroadcast_changed(android.content.Intent)" class="hiddenlink" target="rightframe">sendStickyBroadcast
+(<code>Intent</code>)</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)" class="hiddenlink" target="rightframe">sendStickyBroadcastAsUser
+(<code>Intent, UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyOrderedBroadcast_changed(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">sendStickyOrderedBroadcast
+(<code>Intent, BroadcastReceiver, Handler, int, String, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyOrderedBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">sendStickyOrderedBroadcastAsUser
+(<code>Intent, UserHandle, BroadcastReceiver, Handler, int, String, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaRecorder.html#android.media.MediaRecorder.setCamera_changed(android.hardware.Camera)" class="hiddenlink" target="rightframe">setCamera
+(<code>Camera</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setListNavigationCallbacks_changed(android.widget.SpinnerAdapter, android.app.ActionBar.OnNavigationListener)" class="hiddenlink" target="rightframe">setListNavigationCallbacks
+(<code>SpinnerAdapter, OnNavigationListener</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setNavigationMode_changed(int)" class="hiddenlink" target="rightframe">setNavigationMode
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.setNetworkPreference_changed(int)" class="hiddenlink" target="rightframe">setNetworkPreference
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setRasterizer_changed(android.graphics.Rasterizer)" class="hiddenlink" target="rightframe">setRasterizer
+(<code>Rasterizer</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.ChangeBounds.html#android.transition.ChangeBounds.setReparent_changed(boolean)" class="hiddenlink" target="rightframe">setReparent
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setSelectedNavigationItem_changed(int)" class="hiddenlink" target="rightframe">setSelectedNavigationItem
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ListView.html#android.widget.ListView.setSelectionFromTop_changed(int, int)" class="hiddenlink" target="rightframe">setSelectionFromTop
+(<code>int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.setStereoVolume_changed(float, float)" class="hiddenlink" target="rightframe">setStereoVolume
+(<code>float, float</code>)</A></nobr><br>
+<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.setStreamType_changed(int)" class="hiddenlink" target="rightframe">setStreamType
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setTicker_changed(java.lang.CharSequence, android.widget.RemoteViews)" class="hiddenlink" target="rightframe">setTicker
+(<code>CharSequence, RemoteViews</code>)</A></nobr><br>
+<i>setTitleColor</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setTitleColor_changed(int)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>int</code>)&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setTitleColor_changed(int)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>int</code>)&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestriction_changed(java.lang.String, boolean)" class="hiddenlink" target="rightframe">setUserRestriction
+(<code>String, boolean</code>)</A></nobr><br>
+<i>setUserRestrictions</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestrictions_changed(android.os.Bundle)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Bundle</code>)&nbsp;in&nbsp;android.os.UserManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestrictions_changed(android.os.Bundle, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Bundle, UserHandle</code>)&nbsp;in&nbsp;android.os.UserManager
+</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.size_changed()" class="hiddenlink" target="rightframe">size
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.speak_changed(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">speak
+(<code>String, int, HashMap&lt;String, String&gt;</code>)</A></nobr><br>
+<i>startLeScan</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.startLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>LeScanCallback</code>)&nbsp;in&nbsp;android.bluetooth.BluetoothAdapter
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.startLeScan_changed(java.util.UUID[], android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>UUID[], LeScanCallback</code>)&nbsp;in&nbsp;android.bluetooth.BluetoothAdapter
+</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.startUsingNetworkFeature_changed(int, java.lang.String)" class="hiddenlink" target="rightframe">startUsingNetworkFeature
+(<code>int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.stopLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">stopLeScan
+(<code>LeScanCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.stopUsingNetworkFeature_changed(int, java.lang.String)" class="hiddenlink" target="rightframe">stopUsingNetworkFeature
+(<code>int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieSyncManager.html#android.webkit.CookieSyncManager.syncFromRamToFlash_changed()" class="hiddenlink" target="rightframe">syncFromRamToFlash
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.synthesizeToFile_changed(java.lang.String, java.util.HashMap<java.lang.String, java.lang.String>, java.lang.String)" class="hiddenlink" target="rightframe">synthesizeToFile
+(<code>String, HashMap&lt;String, String&gt;, String</code>)</A></nobr><br>
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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="#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="#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>unregisterMediaButtonEventReceiver</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.app.PendingIntent)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>PendingIntent</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.content.ComponentName)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>ComponentName</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterRemoteControlClient_changed(android.media.RemoteControlClient)" class="hiddenlink" target="rightframe">unregisterRemoteControlClient
+(<code>RemoteControlClient</code>)</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterRemoteController_changed(android.media.RemoteController)" class="hiddenlink" target="rightframe">unregisterRemoteController
+(<code>RemoteController</code>)</A></nobr><br>
+<nobr><A HREF="android.view.inputmethod.InputMethodManager.html#android.view.inputmethod.InputMethodManager.updateCursor_changed(android.view.View, int, int, int, int)" class="hiddenlink" target="rightframe">updateCursor
+(<code>View, int, int, int, int</code>)</A></nobr><br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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="#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.os.Vibrator.html#android.os.Vibrator.vibrate_changed(long)" class="hiddenlink" target="rightframe">vibrate
+(<code>long</code>)</A></nobr><br>
+<script src="//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/21/changes/methods_index_removals.html b/docs/html/sdk/api_diff/21/changes/methods_index_removals.html
new file mode 100644
index 0000000..e527c30
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/methods_index_removals.html
@@ -0,0 +1,264 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<b>Removals</b>
+  <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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#I"><font size="-2">I</font></a> 
+<a href="#O"><font size="-2">O</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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_removed(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><strike>addEarcon</strike>
+(<code>String, String</code>)</A></nobr><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<a href="#A"><font size="-2">A</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="#O"><font size="-2">O</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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.cancelNotification_removed(java.lang.String, java.lang.String, int)" class="hiddenlink" target="rightframe"><strike>cancelNotification</strike>
+(<code>String, String, int</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.createPrintDocumentAdapter_removed()" class="hiddenlink" target="rightframe"><strike>createPrintDocumentAdapter</strike>
+()</A></nobr><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<a href="#A"><font size="-2">A</font></a> 
+<a href="#C"><font size="-2">C</font></a> 
+<a href="#G"><font size="-2">G</font></a> 
+<a href="#I"><font size="-2">I</font></a> 
+<a href="#O"><font size="-2">O</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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>formatNumber</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_removed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String</code>)</strike>&nbsp;in&nbsp;android.telephony.PhoneNumberUtils
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_removed(android.text.Editable, int)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Editable, int</code>)</strike>&nbsp;in&nbsp;android.telephony.PhoneNumberUtils
+</A></nobr><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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="#I"><font size="-2">I</font></a> 
+<a href="#O"><font size="-2">O</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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.content.res.AssetManager.AssetInputStream.html#android.content.res.AssetManager.AssetInputStream.getAssetInt_removed()" class="hiddenlink" target="rightframe"><strike>getAssetInt</strike>
+()</A></nobr><br>
+<i>getDouble</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getDouble_removed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getDouble_removed(java.lang.String, double)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String, double</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+<i>getInt</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getInt_removed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getInt_removed(java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String, int</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+<i>getLong</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getLong_removed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getLong_removed(java.lang.String, long)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String, long</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+<i>getString</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getString_removed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getString_removed(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String, String</code>)</strike>&nbsp;in&nbsp;android.os.Bundle
+</A></nobr><br>
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getTextColor_removed(android.content.Context, android.content.res.TypedArray, int)" class="hiddenlink" target="rightframe"><strike>getTextColor</strike>
+(<code>Context, TypedArray, int</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getTextColors_removed(android.content.Context, android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>getTextColors</strike>
+(<code>Context, TypedArray</code>)</A></nobr><br>
+<nobr><A HREF="android.opengl.GLES20.html#android.opengl.GLES20.glGetActiveAttrib_removed(int, int, int, java.nio.IntBuffer, java.nio.IntBuffer, java.nio.IntBuffer, byte)" class="hiddenlink" target="rightframe"><strike>glGetActiveAttrib</strike>
+(<code>int, int, int, IntBuffer, IntBuffer, IntBuffer, byte</code>)</A></nobr><br>
+<nobr><A HREF="android.opengl.GLES20.html#android.opengl.GLES20.glGetActiveUniform_removed(int, int, int, java.nio.IntBuffer, java.nio.IntBuffer, java.nio.IntBuffer, byte)" class="hiddenlink" target="rightframe"><strike>glGetActiveUniform</strike>
+(<code>int, int, int, IntBuffer, IntBuffer, IntBuffer, byte</code>)</A></nobr><br>
+<nobr><A HREF="android.opengl.GLES20.html#android.opengl.GLES20.glGetShaderSource_removed(int, int, java.nio.IntBuffer, byte)" class="hiddenlink" target="rightframe"><strike>glGetShaderSource</strike>
+(<code>int, int, IntBuffer, byte</code>)</A></nobr><br>
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.goToSleep_removed(long)" class="hiddenlink" target="rightframe"><strike>goToSleep</strike>
+(<code>long</code>)</A></nobr><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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="#O"><font size="-2">O</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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.view.View.html#android.view.View.initializeFadingEdge_removed(android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>initializeFadingEdge</strike>
+(<code>TypedArray</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.initializeScrollbars_removed(android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>initializeScrollbars</strike>
+(<code>TypedArray</code>)</A></nobr><br>
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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="#I"><font size="-2">I</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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.obtain_removed(int)" class="hiddenlink" target="rightframe"><strike>obtain</strike>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_removed(java.lang.String)" class="hiddenlink" target="rightframe"><strike>onError</strike>
+(<code>String</code>)</A></nobr><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#I"><font size="-2">I</font></a> 
+<a href="#O"><font size="-2">O</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.app.Notification.Builder.html#android.app.Notification.Builder.setSound_removed(android.net.Uri, int)" class="hiddenlink" target="rightframe"><strike>setSound</strike>
+(<code>Uri, int</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_removed(android.webkit.WebView, java.lang.String)" class="hiddenlink" target="rightframe"><strike>shouldInterceptRequest</strike>
+(<code>WebView, String</code>)</A></nobr><br>
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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="#I"><font size="-2">I</font></a> 
+<a href="#O"><font size="-2">O</font></a> 
+<a href="#S"><font size="-2">S</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.os.PowerManager.html#android.os.PowerManager.userActivity_removed(long, boolean)" class="hiddenlink" target="rightframe"><strike>userActivity</strike>
+(<code>long, boolean</code>)</A></nobr><br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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="#I"><font size="-2">I</font></a> 
+<a href="#O"><font size="-2">O</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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_removed(long[], int)" class="hiddenlink" target="rightframe"><strike>vibrate</strike>
+(<code>long[], int</code>)</A></nobr><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#I"><font size="-2">I</font></a> 
+<a href="#O"><font size="-2">O</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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.wakeUp_removed(long)" class="hiddenlink" target="rightframe"><strike>wakeUp</strike>
+(<code>long</code>)</A></nobr><br>
+<script src="//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/21/changes/packages_index_additions.html b/docs/html/sdk/api_diff/21/changes/packages_index_additions.html
new file mode 100644
index 0000000..3155137
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/packages_index_additions.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<A HREF="packages_index_removals.html" xclass="hiddenlink">Removals</A>
+  <br>
+<b>Additions</b>
+  <br>
+<A HREF="packages_index_changes.html"xclass="hiddenlink">Changes</A>
+  </td>
+  </tr>
+</table>
+<div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<br>
+<div id="indexTableEntries">
+<A NAME="A"></A>
+<A HREF="changes-summary.html#android.app.job" class="hiddenlink" target="rightframe"><b>android.app.job</b></A><br>
+<A HREF="changes-summary.html#android.app.usage" class="hiddenlink" target="rightframe"><b>android.app.usage</b></A><br>
+<A HREF="changes-summary.html#android.bluetooth.le" class="hiddenlink" target="rightframe"><b>android.bluetooth.le</b></A><br>
+<A HREF="changes-summary.html#android.hardware.camera2" class="hiddenlink" target="rightframe"><b>android.hardware.camera2</b></A><br>
+<A HREF="changes-summary.html#android.hardware.camera2.params" class="hiddenlink" target="rightframe"><b>android.hardware.camera2.params</b></A><br>
+<A HREF="changes-summary.html#android.media.browse" class="hiddenlink" target="rightframe"><b>android.media.browse</b></A><br>
+<A HREF="changes-summary.html#android.media.projection" class="hiddenlink" target="rightframe"><b>android.media.projection</b></A><br>
+<A HREF="changes-summary.html#android.media.session" class="hiddenlink" target="rightframe"><b>android.media.session</b></A><br>
+<A HREF="changes-summary.html#android.media.tv" class="hiddenlink" target="rightframe"><b>android.media.tv</b></A><br>
+<A HREF="changes-summary.html#android.service.media" class="hiddenlink" target="rightframe"><b>android.service.media</b></A><br>
+<A HREF="changes-summary.html#android.service.restrictions" class="hiddenlink" target="rightframe"><b>android.service.restrictions</b></A><br>
+<A HREF="changes-summary.html#android.service.voice" class="hiddenlink" target="rightframe"><b>android.service.voice</b></A><br>
+<A HREF="changes-summary.html#android.system" class="hiddenlink" target="rightframe"><b>android.system</b></A><br>
+<A HREF="changes-summary.html#android.telecom" class="hiddenlink" target="rightframe"><b>android.telecom</b></A><br>
+<script src="//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/21/changes/packages_index_all.html b/docs/html/sdk/api_diff/21/changes/packages_index_all.html
new file mode 100644
index 0000000..5bc8b32
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/packages_index_all.html
@@ -0,0 +1,137 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<A HREF="packages_index_removals.html" xclass="hiddenlink">Removals</A>
+  <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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></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.accessibilityservice.html" class="hiddenlink" target="rightframe">android.accessibilityservice</A><br>
+<A HREF="pkg_android.accounts.html" class="hiddenlink" target="rightframe">android.accounts</A><br>
+<A HREF="pkg_android.animation.html" class="hiddenlink" target="rightframe">android.animation</A><br>
+<A HREF="pkg_android.app.html" class="hiddenlink" target="rightframe">android.app</A><br>
+<A HREF="pkg_android.app.admin.html" class="hiddenlink" target="rightframe">android.app.admin</A><br>
+<A HREF="pkg_android.app.backup.html" class="hiddenlink" target="rightframe">android.app.backup</A><br>
+<A HREF="changes-summary.html#android.app.job" class="hiddenlink" target="rightframe"><b>android.app.job</b></A><br>
+<A HREF="changes-summary.html#android.app.usage" class="hiddenlink" target="rightframe"><b>android.app.usage</b></A><br>
+<A HREF="pkg_android.appwidget.html" class="hiddenlink" target="rightframe">android.appwidget</A><br>
+<A HREF="pkg_android.bluetooth.html" class="hiddenlink" target="rightframe">android.bluetooth</A><br>
+<A HREF="changes-summary.html#android.bluetooth.le" class="hiddenlink" target="rightframe"><b>android.bluetooth.le</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.gesture.html" class="hiddenlink" target="rightframe">android.gesture</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.graphics.drawable.shapes.html" class="hiddenlink" target="rightframe">android.graphics.drawable.shapes</A><br>
+<A HREF="pkg_android.graphics.pdf.html" class="hiddenlink" target="rightframe">android.graphics.pdf</A><br>
+<A HREF="pkg_android.hardware.html" class="hiddenlink" target="rightframe">android.hardware</A><br>
+<A HREF="changes-summary.html#android.hardware.camera2" class="hiddenlink" target="rightframe"><b>android.hardware.camera2</b></A><br>
+<A HREF="changes-summary.html#android.hardware.camera2.params" class="hiddenlink" target="rightframe"><b>android.hardware.camera2.params</b></A><br>
+<A HREF="pkg_android.hardware.display.html" class="hiddenlink" target="rightframe">android.hardware.display</A><br>
+<A HREF="changes-summary.html#android.hardware.location" class="hiddenlink" target="rightframe"><strike>android.hardware.location</strike></A><br>
+<A HREF="pkg_android.hardware.usb.html" class="hiddenlink" target="rightframe">android.hardware.usb</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.media.audiofx.html" class="hiddenlink" target="rightframe">android.media.audiofx</A><br>
+<A HREF="changes-summary.html#android.media.browse" class="hiddenlink" target="rightframe"><b>android.media.browse</b></A><br>
+<A HREF="changes-summary.html#android.media.projection" class="hiddenlink" target="rightframe"><b>android.media.projection</b></A><br>
+<A HREF="changes-summary.html#android.media.session" class="hiddenlink" target="rightframe"><b>android.media.session</b></A><br>
+<A HREF="changes-summary.html#android.media.tv" class="hiddenlink" target="rightframe"><b>android.media.tv</b></A><br>
+<A HREF="pkg_android.net.html" class="hiddenlink" target="rightframe">android.net</A><br>
+<A HREF="pkg_android.net.http.html" class="hiddenlink" target="rightframe">android.net.http</A><br>
+<A HREF="pkg_android.net.nsd.html" class="hiddenlink" target="rightframe">android.net.nsd</A><br>
+<A HREF="pkg_android.net.wifi.html" class="hiddenlink" target="rightframe">android.net.wifi</A><br>
+<A HREF="pkg_android.nfc.html" class="hiddenlink" target="rightframe">android.nfc</A><br>
+<A HREF="pkg_android.nfc.cardemulation.html" class="hiddenlink" target="rightframe">android.nfc.cardemulation</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.preference.html" class="hiddenlink" target="rightframe">android.preference</A><br>
+<A HREF="pkg_android.printservice.html" class="hiddenlink" target="rightframe">android.printservice</A><br>
+<A HREF="pkg_android.provider.html" class="hiddenlink" target="rightframe">android.provider</A><br>
+<A HREF="pkg_android.renderscript.html" class="hiddenlink" target="rightframe">android.renderscript</A><br>
+<A HREF="pkg_android.service.dreams.html" class="hiddenlink" target="rightframe">android.service.dreams</A><br>
+<A HREF="changes-summary.html#android.service.media" class="hiddenlink" target="rightframe"><b>android.service.media</b></A><br>
+<A HREF="pkg_android.service.notification.html" class="hiddenlink" target="rightframe">android.service.notification</A><br>
+<A HREF="changes-summary.html#android.service.restrictions" class="hiddenlink" target="rightframe"><b>android.service.restrictions</b></A><br>
+<A HREF="changes-summary.html#android.service.voice" class="hiddenlink" target="rightframe"><b>android.service.voice</b></A><br>
+<A HREF="pkg_android.service.wallpaper.html" class="hiddenlink" target="rightframe">android.service.wallpaper</A><br>
+<A HREF="pkg_android.speech.tts.html" class="hiddenlink" target="rightframe">android.speech.tts</A><br>
+<A HREF="changes-summary.html#android.system" class="hiddenlink" target="rightframe"><b>android.system</b></A><br>
+<A HREF="changes-summary.html#android.telecom" class="hiddenlink" target="rightframe"><b>android.telecom</b></A><br>
+<A HREF="pkg_android.telephony.html" class="hiddenlink" target="rightframe">android.telephony</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.style.html" class="hiddenlink" target="rightframe">android.text.style</A><br>
+<A HREF="pkg_android.transition.html" class="hiddenlink" target="rightframe">android.transition</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.accessibility.html" class="hiddenlink" target="rightframe">android.view.accessibility</A><br>
+<A HREF="pkg_android.view.animation.html" class="hiddenlink" target="rightframe">android.view.animation</A><br>
+<A HREF="pkg_android.view.inputmethod.html" class="hiddenlink" target="rightframe">android.view.inputmethod</A><br>
+<A HREF="pkg_android.view.textservice.html" class="hiddenlink" target="rightframe">android.view.textservice</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="J"></A>
+<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>
+<A HREF="pkg_java.util.zip.html" class="hiddenlink" target="rightframe">java.util.zip</A><br>
+<script src="//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/21/changes/packages_index_changes.html b/docs/html/sdk/api_diff/21/changes/packages_index_changes.html
new file mode 100644
index 0000000..0594474
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/packages_index_changes.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<A HREF="packages_index_removals.html" xclass="hiddenlink">Removals</A>
+  <br>
+<A HREF="packages_index_additions.html"xclass="hiddenlink">Additions</A>
+  <br>
+<b>Changes</b>
+  </td>
+  </tr>
+</table>
+<div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></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.accessibilityservice.html" class="hiddenlink" target="rightframe">android.accessibilityservice</A><br>
+<A HREF="pkg_android.accounts.html" class="hiddenlink" target="rightframe">android.accounts</A><br>
+<A HREF="pkg_android.animation.html" class="hiddenlink" target="rightframe">android.animation</A><br>
+<A HREF="pkg_android.app.html" class="hiddenlink" target="rightframe">android.app</A><br>
+<A HREF="pkg_android.app.admin.html" class="hiddenlink" target="rightframe">android.app.admin</A><br>
+<A HREF="pkg_android.app.backup.html" class="hiddenlink" target="rightframe">android.app.backup</A><br>
+<A HREF="pkg_android.appwidget.html" class="hiddenlink" target="rightframe">android.appwidget</A><br>
+<A HREF="pkg_android.bluetooth.html" class="hiddenlink" target="rightframe">android.bluetooth</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.gesture.html" class="hiddenlink" target="rightframe">android.gesture</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.graphics.drawable.shapes.html" class="hiddenlink" target="rightframe">android.graphics.drawable.shapes</A><br>
+<A HREF="pkg_android.graphics.pdf.html" class="hiddenlink" target="rightframe">android.graphics.pdf</A><br>
+<A HREF="pkg_android.hardware.html" class="hiddenlink" target="rightframe">android.hardware</A><br>
+<A HREF="pkg_android.hardware.display.html" class="hiddenlink" target="rightframe">android.hardware.display</A><br>
+<A HREF="pkg_android.hardware.usb.html" class="hiddenlink" target="rightframe">android.hardware.usb</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.media.audiofx.html" class="hiddenlink" target="rightframe">android.media.audiofx</A><br>
+<A HREF="pkg_android.net.html" class="hiddenlink" target="rightframe">android.net</A><br>
+<A HREF="pkg_android.net.http.html" class="hiddenlink" target="rightframe">android.net.http</A><br>
+<A HREF="pkg_android.net.nsd.html" class="hiddenlink" target="rightframe">android.net.nsd</A><br>
+<A HREF="pkg_android.net.wifi.html" class="hiddenlink" target="rightframe">android.net.wifi</A><br>
+<A HREF="pkg_android.nfc.html" class="hiddenlink" target="rightframe">android.nfc</A><br>
+<A HREF="pkg_android.nfc.cardemulation.html" class="hiddenlink" target="rightframe">android.nfc.cardemulation</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.preference.html" class="hiddenlink" target="rightframe">android.preference</A><br>
+<A HREF="pkg_android.printservice.html" class="hiddenlink" target="rightframe">android.printservice</A><br>
+<A HREF="pkg_android.provider.html" class="hiddenlink" target="rightframe">android.provider</A><br>
+<A HREF="pkg_android.renderscript.html" class="hiddenlink" target="rightframe">android.renderscript</A><br>
+<A HREF="pkg_android.service.dreams.html" class="hiddenlink" target="rightframe">android.service.dreams</A><br>
+<A HREF="pkg_android.service.notification.html" class="hiddenlink" target="rightframe">android.service.notification</A><br>
+<A HREF="pkg_android.service.wallpaper.html" class="hiddenlink" target="rightframe">android.service.wallpaper</A><br>
+<A HREF="pkg_android.speech.tts.html" class="hiddenlink" target="rightframe">android.speech.tts</A><br>
+<A HREF="pkg_android.telephony.html" class="hiddenlink" target="rightframe">android.telephony</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.style.html" class="hiddenlink" target="rightframe">android.text.style</A><br>
+<A HREF="pkg_android.transition.html" class="hiddenlink" target="rightframe">android.transition</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.accessibility.html" class="hiddenlink" target="rightframe">android.view.accessibility</A><br>
+<A HREF="pkg_android.view.animation.html" class="hiddenlink" target="rightframe">android.view.animation</A><br>
+<A HREF="pkg_android.view.inputmethod.html" class="hiddenlink" target="rightframe">android.view.inputmethod</A><br>
+<A HREF="pkg_android.view.textservice.html" class="hiddenlink" target="rightframe">android.view.textservice</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="J"></A>
+<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>
+<A HREF="pkg_java.util.zip.html" class="hiddenlink" target="rightframe">java.util.zip</A><br>
+<script src="//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/21/changes/packages_index_removals.html b/docs/html/sdk/api_diff/21/changes/packages_index_removals.html
new file mode 100644
index 0000000..b1f4a8c
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/packages_index_removals.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<b>Removals</b>
+  <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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<br>
+<div id="indexTableEntries">
+<A NAME="A"></A>
+<A HREF="changes-summary.html#android.hardware.location" class="hiddenlink" target="rightframe"><strike>android.hardware.location</strike></A><br>
+<script src="//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/21/changes/pkg_android.accessibilityservice.html b/docs/html/sdk/api_diff/21/changes/pkg_android.accessibilityservice.html
new file mode 100644
index 0000000..168e810
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.accessibilityservice.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.accessibilityservice
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/accessibilityservice/package-summary.html" target="_top"><font size="+1"><code>android.accessibilityservice</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="AccessibilityService"></A>
+  <nobr><A HREF="android.accessibilityservice.AccessibilityService.html">AccessibilityService</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AccessibilityServiceInfo"></A>
+  <nobr><A HREF="android.accessibilityservice.AccessibilityServiceInfo.html">AccessibilityServiceInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.accounts.html b/docs/html/sdk/api_diff/21/changes/pkg_android.accounts.html
new file mode 100644
index 0000000..66dd451
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.accounts.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.accounts
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/accounts/package-summary.html" target="_top"><font size="+1"><code>android.accounts</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="AccountManager"></A>
+  <nobr><A HREF="android.accounts.AccountManager.html">AccountManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.animation.html b/docs/html/sdk/api_diff/21/changes/pkg_android.animation.html
new file mode 100644
index 0000000..4cf8aa9
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.animation.html
@@ -0,0 +1,197 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/animation/package-summary.html" target="_top"><font size="+1"><code>android.animation</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="BidirectionalTypeConverter"></A>
+  <nobr><A HREF="../../../../reference/android/animation/BidirectionalTypeConverter.html" target="_top"><code>BidirectionalTypeConverter</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="FloatArrayEvaluator"></A>
+  <nobr><A HREF="../../../../reference/android/animation/FloatArrayEvaluator.html" target="_top"><code>FloatArrayEvaluator</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="IntArrayEvaluator"></A>
+  <nobr><A HREF="../../../../reference/android/animation/IntArrayEvaluator.html" target="_top"><code>IntArrayEvaluator</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PointFEvaluator"></A>
+  <nobr><A HREF="../../../../reference/android/animation/PointFEvaluator.html" target="_top"><code>PointFEvaluator</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="StateListAnimator"></A>
+  <nobr><A HREF="../../../../reference/android/animation/StateListAnimator.html" target="_top"><code>StateListAnimator</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TypeConverter"></A>
+  <nobr><A HREF="../../../../reference/android/animation/TypeConverter.html" target="_top"><code>TypeConverter</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="AnimatorInflater"></A>
+  <nobr><A HREF="android.animation.AnimatorInflater.html">AnimatorInflater</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ObjectAnimator"></A>
+  <nobr><A HREF="android.animation.ObjectAnimator.html">ObjectAnimator</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PropertyValuesHolder"></A>
+  <nobr><A HREF="android.animation.PropertyValuesHolder.html">PropertyValuesHolder</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="RectEvaluator"></A>
+  <nobr><A HREF="android.animation.RectEvaluator.html">RectEvaluator</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ValueAnimator"></A>
+  <nobr><A HREF="android.animation.ValueAnimator.html">ValueAnimator</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.app.admin.html b/docs/html/sdk/api_diff/21/changes/pkg_android.app.admin.html
new file mode 100644
index 0000000..e8d2660
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.app.admin.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.admin
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/admin/package-summary.html" target="_top"><font size="+1"><code>android.app.admin</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="DeviceAdminReceiver"></A>
+  <nobr><A HREF="android.app.admin.DeviceAdminReceiver.html">DeviceAdminReceiver</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="DevicePolicyManager"></A>
+  <nobr><A HREF="android.app.admin.DevicePolicyManager.html">DevicePolicyManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.app.backup.html b/docs/html/sdk/api_diff/21/changes/pkg_android.app.backup.html
new file mode 100644
index 0000000..3e63b35
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.app.backup.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.backup
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/backup/package-summary.html" target="_top"><font size="+1"><code>android.app.backup</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="BackupAgent"></A>
+  <nobr><A HREF="android.app.backup.BackupAgent.html">BackupAgent</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.app.html b/docs/html/sdk/api_diff/21/changes/pkg_android.app.html
new file mode 100644
index 0000000..050e53e
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.app.html
@@ -0,0 +1,323 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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="ActivityManager.AppTask"></A>
+  <nobr><A HREF="../../../../reference/android/app/ActivityManager.AppTask.html" target="_top"><code>ActivityManager.AppTask</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ActivityManager.TaskDescription"></A>
+  <nobr><A HREF="../../../../reference/android/app/ActivityManager.TaskDescription.html" target="_top"><code>ActivityManager.TaskDescription</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AlarmManager.AlarmClockInfo"></A>
+  <nobr><A HREF="../../../../reference/android/app/AlarmManager.AlarmClockInfo.html" target="_top"><code>AlarmManager.AlarmClockInfo</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Notification.MediaStyle"></A>
+  <nobr><A HREF="../../../../reference/android/app/Notification.MediaStyle.html" target="_top"><code>Notification.MediaStyle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="SharedElementCallback"></A>
+  <nobr><A HREF="../../../../reference/android/app/SharedElementCallback.html" target="_top"><code>SharedElementCallback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="ActionBar"></A>
+  <nobr><A HREF="android.app.ActionBar.html">ActionBar</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ActionBar.OnNavigationListener"></A>
+  <nobr><A HREF="android.app.ActionBar.OnNavigationListener.html"><I>ActionBar.OnNavigationListener</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ActionBar.Tab"></A>
+  <nobr><A HREF="android.app.ActionBar.Tab.html">ActionBar.Tab</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ActionBar.TabListener"></A>
+  <nobr><A HREF="android.app.ActionBar.TabListener.html"><I>ActionBar.TabListener</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<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>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ActivityManager.RecentTaskInfo"></A>
+  <nobr><A HREF="android.app.ActivityManager.RecentTaskInfo.html">ActivityManager.RecentTaskInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ActivityOptions"></A>
+  <nobr><A HREF="android.app.ActivityOptions.html">ActivityOptions</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AlarmManager"></A>
+  <nobr><A HREF="android.app.AlarmManager.html">AlarmManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AlertDialog.Builder"></A>
+  <nobr><A HREF="android.app.AlertDialog.Builder.html">AlertDialog.Builder</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AppOpsManager"></A>
+  <nobr><A HREF="android.app.AppOpsManager.html">AppOpsManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Fragment"></A>
+  <nobr><A HREF="android.app.Fragment.html">Fragment</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="FragmentBreadCrumbs"></A>
+  <nobr><A HREF="android.app.FragmentBreadCrumbs.html">FragmentBreadCrumbs</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="FragmentTransaction"></A>
+  <nobr><A HREF="android.app.FragmentTransaction.html">FragmentTransaction</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Instrumentation"></A>
+  <nobr><A HREF="android.app.Instrumentation.html">Instrumentation</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="KeyguardManager"></A>
+  <nobr><A HREF="android.app.KeyguardManager.html">KeyguardManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaRouteButton"></A>
+  <nobr><A HREF="android.app.MediaRouteButton.html">MediaRouteButton</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Notification.Builder"></A>
+  <nobr><A HREF="android.app.Notification.Builder.html">Notification.Builder</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="UiAutomation"></A>
+  <nobr><A HREF="android.app.UiAutomation.html">UiAutomation</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="UiModeManager"></A>
+  <nobr><A HREF="android.app.UiModeManager.html">UiModeManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.appwidget.html b/docs/html/sdk/api_diff/21/changes/pkg_android.appwidget.html
new file mode 100644
index 0000000..5c65116
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.appwidget.html
@@ -0,0 +1,140 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.appwidget
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/appwidget/package-summary.html" target="_top"><font size="+1"><code>android.appwidget</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="AppWidgetHost"></A>
+  <nobr><A HREF="android.appwidget.AppWidgetHost.html">AppWidgetHost</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AppWidgetManager"></A>
+  <nobr><A HREF="android.appwidget.AppWidgetManager.html">AppWidgetManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AppWidgetProvider"></A>
+  <nobr><A HREF="android.appwidget.AppWidgetProvider.html">AppWidgetProvider</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AppWidgetProviderInfo"></A>
+  <nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html">AppWidgetProviderInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.bluetooth.html b/docs/html/sdk/api_diff/21/changes/pkg_android.bluetooth.html
new file mode 100644
index 0000000..783b872
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.bluetooth.html
@@ -0,0 +1,140 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.bluetooth
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/bluetooth/package-summary.html" target="_top"><font size="+1"><code>android.bluetooth</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="BluetoothAdapter"></A>
+  <nobr><A HREF="android.bluetooth.BluetoothAdapter.html">BluetoothAdapter</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="BluetoothGatt"></A>
+  <nobr><A HREF="android.bluetooth.BluetoothGatt.html">BluetoothGatt</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="BluetoothGattCallback"></A>
+  <nobr><A HREF="android.bluetooth.BluetoothGattCallback.html">BluetoothGattCallback</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="BluetoothGattServerCallback"></A>
+  <nobr><A HREF="android.bluetooth.BluetoothGattServerCallback.html">BluetoothGattServerCallback</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.content.html b/docs/html/sdk/api_diff/21/changes/pkg_android.content.html
new file mode 100644
index 0000000..eee85c5
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.content.html
@@ -0,0 +1,162 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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" 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="RestrictionsManager"></A>
+  <nobr><A HREF="../../../../reference/android/content/RestrictionsManager.html" target="_top"><code>RestrictionsManager</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="ContentResolver"></A>
+  <nobr><A HREF="android.content.ContentResolver.html">ContentResolver</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="RestrictionEntry"></A>
+  <nobr><A HREF="android.content.RestrictionEntry.html">RestrictionEntry</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.content.pm.html b/docs/html/sdk/api_diff/21/changes/pkg_android.content.pm.html
new file mode 100644
index 0000000..cab9705
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.content.pm.html
@@ -0,0 +1,225 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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="FeatureGroupInfo"></A>
+  <nobr><A HREF="../../../../reference/android/content/pm/FeatureGroupInfo.html" target="_top"><code>FeatureGroupInfo</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="LauncherActivityInfo"></A>
+  <nobr><A HREF="../../../../reference/android/content/pm/LauncherActivityInfo.html" target="_top"><code>LauncherActivityInfo</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="LauncherApps"></A>
+  <nobr><A HREF="../../../../reference/android/content/pm/LauncherApps.html" target="_top"><code>LauncherApps</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="LauncherApps.Callback"></A>
+  <nobr><A HREF="../../../../reference/android/content/pm/LauncherApps.Callback.html" target="_top"><code>LauncherApps.Callback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PackageInstaller"></A>
+  <nobr><A HREF="../../../../reference/android/content/pm/PackageInstaller.html" target="_top"><code>PackageInstaller</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PackageInstaller.Session"></A>
+  <nobr><A HREF="../../../../reference/android/content/pm/PackageInstaller.Session.html" target="_top"><code>PackageInstaller.Session</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PackageInstaller.SessionCallback"></A>
+  <nobr><A HREF="../../../../reference/android/content/pm/PackageInstaller.SessionCallback.html" target="_top"><code>PackageInstaller.SessionCallback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PackageInstaller.SessionInfo"></A>
+  <nobr><A HREF="../../../../reference/android/content/pm/PackageInstaller.SessionInfo.html" target="_top"><code>PackageInstaller.SessionInfo</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PackageInstaller.SessionParams"></A>
+  <nobr><A HREF="../../../../reference/android/content/pm/PackageInstaller.SessionParams.html" target="_top"><code>PackageInstaller.SessionParams</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ApplicationInfo"></A>
+  <nobr><A HREF="android.content.pm.ApplicationInfo.html">ApplicationInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="InstrumentationInfo"></A>
+  <nobr><A HREF="android.content.pm.InstrumentationInfo.html">InstrumentationInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PermissionInfo"></A>
+  <nobr><A HREF="android.content.pm.PermissionInfo.html">PermissionInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.content.res.html b/docs/html/sdk/api_diff/21/changes/pkg_android.content.res.html
new file mode 100644
index 0000000..dda54d6
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.content.res.html
@@ -0,0 +1,154 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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="AssetManager"></A>
+  <nobr><A HREF="android.content.res.AssetManager.html">AssetManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AssetManager.AssetInputStream"></A>
+  <nobr><A HREF="android.content.res.AssetManager.AssetInputStream.html">AssetManager.AssetInputStream</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ColorStateList"></A>
+  <nobr><A HREF="android.content.res.ColorStateList.html">ColorStateList</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Resources"></A>
+  <nobr><A HREF="android.content.res.Resources.html">Resources</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Resources.Theme"></A>
+  <nobr><A HREF="android.content.res.Resources.Theme.html">Resources.Theme</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TypedArray"></A>
+  <nobr><A HREF="android.content.res.TypedArray.html">TypedArray</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.gesture.html b/docs/html/sdk/api_diff/21/changes/pkg_android.gesture.html
new file mode 100644
index 0000000..3e7934b
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.gesture.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.gesture
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/gesture/package-summary.html" target="_top"><font size="+1"><code>android.gesture</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="GestureOverlayView"></A>
+  <nobr><A HREF="android.gesture.GestureOverlayView.html">GestureOverlayView</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.graphics.drawable.html b/docs/html/sdk/api_diff/21/changes/pkg_android.graphics.drawable.html
new file mode 100644
index 0000000..5cc14bd
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.graphics.drawable.html
@@ -0,0 +1,183 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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="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="AnimatedStateListDrawable"></A>
+  <nobr><A HREF="../../../../reference/android/graphics/drawable/AnimatedStateListDrawable.html" target="_top"><code>AnimatedStateListDrawable</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AnimatedVectorDrawable"></A>
+  <nobr><A HREF="../../../../reference/android/graphics/drawable/AnimatedVectorDrawable.html" target="_top"><code>AnimatedVectorDrawable</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="RippleDrawable"></A>
+  <nobr><A HREF="../../../../reference/android/graphics/drawable/RippleDrawable.html" target="_top"><code>RippleDrawable</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="VectorDrawable"></A>
+  <nobr><A HREF="../../../../reference/android/graphics/drawable/VectorDrawable.html" target="_top"><code>VectorDrawable</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="Drawable"></A>
+  <nobr><A HREF="android.graphics.drawable.Drawable.html">Drawable</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="GradientDrawable"></A>
+  <nobr><A HREF="android.graphics.drawable.GradientDrawable.html">GradientDrawable</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="LayerDrawable"></A>
+  <nobr><A HREF="android.graphics.drawable.LayerDrawable.html">LayerDrawable</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="RotateDrawable"></A>
+  <nobr><A HREF="android.graphics.drawable.RotateDrawable.html">RotateDrawable</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.graphics.drawable.shapes.html b/docs/html/sdk/api_diff/21/changes/pkg_android.graphics.drawable.shapes.html
new file mode 100644
index 0000000..533b47c7
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.graphics.drawable.shapes.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.shapes
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/shapes/package-summary.html" target="_top"><font size="+1"><code>android.graphics.drawable.shapes</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="Shape"></A>
+  <nobr><A HREF="android.graphics.drawable.shapes.Shape.html">Shape</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.graphics.html b/docs/html/sdk/api_diff/21/changes/pkg_android.graphics.html
new file mode 100644
index 0000000..7d799f2
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.graphics.html
@@ -0,0 +1,190 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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="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="Outline"></A>
+  <nobr><A HREF="../../../../reference/android/graphics/Outline.html" target="_top"><code>Outline</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="BitmapFactory.Options"></A>
+  <nobr><A HREF="android.graphics.BitmapFactory.Options.html">BitmapFactory.Options</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Canvas"></A>
+  <nobr><A HREF="android.graphics.Canvas.html">Canvas</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ImageFormat"></A>
+  <nobr><A HREF="android.graphics.ImageFormat.html">ImageFormat</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="LayerRasterizer"></A>
+  <nobr><A HREF="android.graphics.LayerRasterizer.html">LayerRasterizer</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Matrix"></A>
+  <nobr><A HREF="android.graphics.Matrix.html">Matrix</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Paint"></A>
+  <nobr><A HREF="android.graphics.Paint.html">Paint</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Path"></A>
+  <nobr><A HREF="android.graphics.Path.html">Path</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Rasterizer"></A>
+  <nobr><A HREF="android.graphics.Rasterizer.html">Rasterizer</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="SurfaceTexture"></A>
+  <nobr><A HREF="android.graphics.SurfaceTexture.html">SurfaceTexture</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.graphics.pdf.html b/docs/html/sdk/api_diff/21/changes/pkg_android.graphics.pdf.html
new file mode 100644
index 0000000..4ccc9a8
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.graphics.pdf.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.pdf
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/pdf/package-summary.html" target="_top"><font size="+1"><code>android.graphics.pdf</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="PdfRenderer"></A>
+  <nobr><A HREF="../../../../reference/android/graphics/pdf/PdfRenderer.html" target="_top"><code>PdfRenderer</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PdfRenderer.Page"></A>
+  <nobr><A HREF="../../../../reference/android/graphics/pdf/PdfRenderer.Page.html" target="_top"><code>PdfRenderer.Page</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.hardware.display.html b/docs/html/sdk/api_diff/21/changes/pkg_android.hardware.display.html
new file mode 100644
index 0000000..7ab1256
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.hardware.display.html
@@ -0,0 +1,141 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.display
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/display/package-summary.html" target="_top"><font size="+1"><code>android.hardware.display</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="VirtualDisplay.Callback"></A>
+  <nobr><A HREF="../../../../reference/android/hardware/display/VirtualDisplay.Callback.html" target="_top"><code>VirtualDisplay.Callback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="DisplayManager"></A>
+  <nobr><A HREF="android.hardware.display.DisplayManager.html">DisplayManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="VirtualDisplay"></A>
+  <nobr><A HREF="android.hardware.display.VirtualDisplay.html">VirtualDisplay</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.hardware.html b/docs/html/sdk/api_diff/21/changes/pkg_android.hardware.html
new file mode 100644
index 0000000..8bd8ced
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.hardware.html
@@ -0,0 +1,224 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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 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="Camera"></A>
+  <nobr><A HREF="android.hardware.Camera.html">Camera</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Camera.Area"></A>
+  <nobr><A HREF="android.hardware.Camera.Area.html">Camera.Area</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Camera.AutoFocusCallback"></A>
+  <nobr><A HREF="android.hardware.Camera.AutoFocusCallback.html"><I>Camera.AutoFocusCallback</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Camera.AutoFocusMoveCallback"></A>
+  <nobr><A HREF="android.hardware.Camera.AutoFocusMoveCallback.html"><I>Camera.AutoFocusMoveCallback</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Camera.CameraInfo"></A>
+  <nobr><A HREF="android.hardware.Camera.CameraInfo.html">Camera.CameraInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Camera.ErrorCallback"></A>
+  <nobr><A HREF="android.hardware.Camera.ErrorCallback.html"><I>Camera.ErrorCallback</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Camera.Face"></A>
+  <nobr><A HREF="android.hardware.Camera.Face.html">Camera.Face</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Camera.FaceDetectionListener"></A>
+  <nobr><A HREF="android.hardware.Camera.FaceDetectionListener.html"><I>Camera.FaceDetectionListener</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Camera.OnZoomChangeListener"></A>
+  <nobr><A HREF="android.hardware.Camera.OnZoomChangeListener.html"><I>Camera.OnZoomChangeListener</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Camera.PictureCallback"></A>
+  <nobr><A HREF="android.hardware.Camera.PictureCallback.html"><I>Camera.PictureCallback</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Camera.PreviewCallback"></A>
+  <nobr><A HREF="android.hardware.Camera.PreviewCallback.html"><I>Camera.PreviewCallback</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Camera.ShutterCallback"></A>
+  <nobr><A HREF="android.hardware.Camera.ShutterCallback.html"><I>Camera.ShutterCallback</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Camera.Size"></A>
+  <nobr><A HREF="android.hardware.Camera.Size.html">Camera.Size</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Sensor"></A>
+  <nobr><A HREF="android.hardware.Sensor.html">Sensor</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="SensorManager"></A>
+  <nobr><A HREF="android.hardware.SensorManager.html">SensorManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.hardware.usb.html b/docs/html/sdk/api_diff/21/changes/pkg_android.hardware.usb.html
new file mode 100644
index 0000000..c008624
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.hardware.usb.html
@@ -0,0 +1,148 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.usb
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/usb/package-summary.html" target="_top"><font size="+1"><code>android.hardware.usb</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="UsbConfiguration"></A>
+  <nobr><A HREF="../../../../reference/android/hardware/usb/UsbConfiguration.html" target="_top"><code>UsbConfiguration</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="UsbDevice"></A>
+  <nobr><A HREF="android.hardware.usb.UsbDevice.html">UsbDevice</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="UsbDeviceConnection"></A>
+  <nobr><A HREF="android.hardware.usb.UsbDeviceConnection.html">UsbDeviceConnection</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="UsbInterface"></A>
+  <nobr><A HREF="android.hardware.usb.UsbInterface.html">UsbInterface</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.html b/docs/html/sdk/api_diff/21/changes/pkg_android.html
new file mode 100644
index 0000000..8e81049
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.html
@@ -0,0 +1,162 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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="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="R.transition"></A>
+  <nobr><A HREF="../../../../reference/android/R.transition.html" target="_top"><code>R.transition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="R.id"></A>
+  <nobr><A HREF="android.R.id.html">R.id</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="R.interpolator"></A>
+  <nobr><A HREF="android.R.interpolator.html">R.interpolator</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.inputmethodservice.html b/docs/html/sdk/api_diff/21/changes/pkg_android.inputmethodservice.html
new file mode 100644
index 0000000..29ab107
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.inputmethodservice.html
@@ -0,0 +1,140 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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="ExtractEditText"></A>
+  <nobr><A HREF="android.inputmethodservice.ExtractEditText.html">ExtractEditText</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="InputMethodService.InputMethodSessionImpl"></A>
+  <nobr><A HREF="android.inputmethodservice.InputMethodService.InputMethodSessionImpl.html">InputMethodService.InputMethodSessionImpl</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="KeyboardView"></A>
+  <nobr><A HREF="android.inputmethodservice.KeyboardView.html">KeyboardView</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.location.html b/docs/html/sdk/api_diff/21/changes/pkg_android.location.html
new file mode 100644
index 0000000..121cdb1
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.location.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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="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="SettingInjectorService"></A>
+  <nobr><A HREF="android.location.SettingInjectorService.html">SettingInjectorService</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.media.audiofx.html b/docs/html/sdk/api_diff/21/changes/pkg_android.media.audiofx.html
new file mode 100644
index 0000000..7e3de50
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.media.audiofx.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.audiofx
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/audiofx/package-summary.html" target="_top"><font size="+1"><code>android.media.audiofx</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="Virtualizer"></A>
+  <nobr><A HREF="android.media.audiofx.Virtualizer.html">Virtualizer</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.media.html b/docs/html/sdk/api_diff/21/changes/pkg_android.media.html
new file mode 100644
index 0000000..97fae54
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.media.html
@@ -0,0 +1,414 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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="AudioAttributes"></A>
+  <nobr><A HREF="../../../../reference/android/media/AudioAttributes.html" target="_top"><code>AudioAttributes</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AudioAttributes.Builder"></A>
+  <nobr><A HREF="../../../../reference/android/media/AudioAttributes.Builder.html" target="_top"><code>AudioAttributes.Builder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AudioFormat.Builder"></A>
+  <nobr><A HREF="../../../../reference/android/media/AudioFormat.Builder.html" target="_top"><code>AudioFormat.Builder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaCodec.Callback"></A>
+  <nobr><A HREF="../../../../reference/android/media/MediaCodec.Callback.html" target="_top"><code>MediaCodec.Callback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaCodec.CodecException"></A>
+  <nobr><A HREF="../../../../reference/android/media/MediaCodec.CodecException.html" target="_top"><code>MediaCodec.CodecException</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaCodecInfo.AudioCapabilities"></A>
+  <nobr><A HREF="../../../../reference/android/media/MediaCodecInfo.AudioCapabilities.html" target="_top"><code>MediaCodecInfo.AudioCapabilities</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaCodecInfo.EncoderCapabilities"></A>
+  <nobr><A HREF="../../../../reference/android/media/MediaCodecInfo.EncoderCapabilities.html" target="_top"><code>MediaCodecInfo.EncoderCapabilities</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaCodecInfo.VideoCapabilities"></A>
+  <nobr><A HREF="../../../../reference/android/media/MediaCodecInfo.VideoCapabilities.html" target="_top"><code>MediaCodecInfo.VideoCapabilities</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaDescription"></A>
+  <nobr><A HREF="../../../../reference/android/media/MediaDescription.html" target="_top"><code>MediaDescription</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaDescription.Builder"></A>
+  <nobr><A HREF="../../../../reference/android/media/MediaDescription.Builder.html" target="_top"><code>MediaDescription.Builder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaDrm.MediaDrmStateException"></A>
+  <nobr><A HREF="../../../../reference/android/media/MediaDrm.MediaDrmStateException.html" target="_top"><code>MediaDrm.MediaDrmStateException</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaMetadata"></A>
+  <nobr><A HREF="../../../../reference/android/media/MediaMetadata.html" target="_top"><code>MediaMetadata</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaMetadata.Builder"></A>
+  <nobr><A HREF="../../../../reference/android/media/MediaMetadata.Builder.html" target="_top"><code>MediaMetadata.Builder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="SoundPool.Builder"></A>
+  <nobr><A HREF="../../../../reference/android/media/SoundPool.Builder.html" target="_top"><code>SoundPool.Builder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="VolumeProvider"></A>
+  <nobr><A HREF="../../../../reference/android/media/VolumeProvider.html" target="_top"><code>VolumeProvider</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AudioTrack"></A>
+  <nobr><A HREF="android.media.AudioTrack.html">AudioTrack</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CamcorderProfile"></A>
+  <nobr><A HREF="android.media.CamcorderProfile.html">CamcorderProfile</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Image"></A>
+  <nobr><A HREF="android.media.Image.html">Image</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaCodec"></A>
+  <nobr><A HREF="android.media.MediaCodec.html">MediaCodec</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaCodec.CryptoException"></A>
+  <nobr><A HREF="android.media.MediaCodec.CryptoException.html">MediaCodec.CryptoException</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaCodecInfo.CodecCapabilities"></A>
+  <nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html">MediaCodecInfo.CodecCapabilities</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaCodecInfo.CodecProfileLevel"></A>
+  <nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html">MediaCodecInfo.CodecProfileLevel</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaCodecList"></A>
+  <nobr><A HREF="android.media.MediaCodecList.html">MediaCodecList</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaDrm"></A>
+  <nobr><A HREF="android.media.MediaDrm.html">MediaDrm</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaFormat"></A>
+  <nobr><A HREF="android.media.MediaFormat.html">MediaFormat</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaMetadataEditor"></A>
+  <nobr><A HREF="android.media.MediaMetadataEditor.html">MediaMetadataEditor</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaMuxer.OutputFormat"></A>
+  <nobr><A HREF="android.media.MediaMuxer.OutputFormat.html">MediaMuxer.OutputFormat</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaPlayer.TrackInfo"></A>
+  <nobr><A HREF="android.media.MediaPlayer.TrackInfo.html">MediaPlayer.TrackInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaRecorder"></A>
+  <nobr><A HREF="android.media.MediaRecorder.html">MediaRecorder</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaRecorder.AudioEncoder"></A>
+  <nobr><A HREF="android.media.MediaRecorder.AudioEncoder.html">MediaRecorder.AudioEncoder</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaRecorder.OutputFormat"></A>
+  <nobr><A HREF="android.media.MediaRecorder.OutputFormat.html">MediaRecorder.OutputFormat</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaRecorder.VideoEncoder"></A>
+  <nobr><A HREF="android.media.MediaRecorder.VideoEncoder.html">MediaRecorder.VideoEncoder</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaRecorder.VideoSource"></A>
+  <nobr><A HREF="android.media.MediaRecorder.VideoSource.html">MediaRecorder.VideoSource</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Rating"></A>
+  <nobr><A HREF="android.media.Rating.html">Rating</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="RemoteControlClient"></A>
+  <nobr><A HREF="android.media.RemoteControlClient.html">RemoteControlClient</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="RemoteControlClient.MetadataEditor"></A>
+  <nobr><A HREF="android.media.RemoteControlClient.MetadataEditor.html">RemoteControlClient.MetadataEditor</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="RemoteController"></A>
+  <nobr><A HREF="android.media.RemoteController.html">RemoteController</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Ringtone"></A>
+  <nobr><A HREF="android.media.Ringtone.html">Ringtone</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="SoundPool"></A>
+  <nobr><A HREF="android.media.SoundPool.html">SoundPool</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.net.html b/docs/html/sdk/api_diff/21/changes/pkg_android.net.html
new file mode 100644
index 0000000..35d26e1
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.net.html
@@ -0,0 +1,225 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/net/package-summary.html" target="_top"><font size="+1"><code>android.net</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="ConnectivityManager.NetworkCallback"></A>
+  <nobr><A HREF="../../../../reference/android/net/ConnectivityManager.NetworkCallback.html" target="_top"><code>ConnectivityManager.NetworkCallback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ConnectivityManager.OnNetworkActiveListener"></A>
+  <nobr><A HREF="../../../../reference/android/net/ConnectivityManager.OnNetworkActiveListener.html" target="_top"><code><I>ConnectivityManager.OnNetworkActiveListener</I></code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="IpPrefix"></A>
+  <nobr><A HREF="../../../../reference/android/net/IpPrefix.html" target="_top"><code>IpPrefix</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="LinkAddress"></A>
+  <nobr><A HREF="../../../../reference/android/net/LinkAddress.html" target="_top"><code>LinkAddress</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="LinkProperties"></A>
+  <nobr><A HREF="../../../../reference/android/net/LinkProperties.html" target="_top"><code>LinkProperties</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Network"></A>
+  <nobr><A HREF="../../../../reference/android/net/Network.html" target="_top"><code>Network</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="NetworkCapabilities"></A>
+  <nobr><A HREF="../../../../reference/android/net/NetworkCapabilities.html" target="_top"><code>NetworkCapabilities</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="NetworkRequest"></A>
+  <nobr><A HREF="../../../../reference/android/net/NetworkRequest.html" target="_top"><code>NetworkRequest</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="NetworkRequest.Builder"></A>
+  <nobr><A HREF="../../../../reference/android/net/NetworkRequest.Builder.html" target="_top"><code>NetworkRequest.Builder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ProxyInfo"></A>
+  <nobr><A HREF="../../../../reference/android/net/ProxyInfo.html" target="_top"><code>ProxyInfo</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PskKeyManager"></A>
+  <nobr><A HREF="../../../../reference/android/net/PskKeyManager.html" target="_top"><code>PskKeyManager</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="RouteInfo"></A>
+  <nobr><A HREF="../../../../reference/android/net/RouteInfo.html" target="_top"><code>RouteInfo</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="ConnectivityManager"></A>
+  <nobr><A HREF="android.net.ConnectivityManager.html">ConnectivityManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Proxy"></A>
+  <nobr><A HREF="android.net.Proxy.html">Proxy</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="VpnService.Builder"></A>
+  <nobr><A HREF="android.net.VpnService.Builder.html">VpnService.Builder</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.net.http.html b/docs/html/sdk/api_diff/21/changes/pkg_android.net.http.html
new file mode 100644
index 0000000..1bd5d97
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.net.http.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.net.http
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/net/http/package-summary.html" target="_top"><font size="+1"><code>android.net.http</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="X509TrustManagerExtensions"></A>
+  <nobr><A HREF="android.net.http.X509TrustManagerExtensions.html">X509TrustManagerExtensions</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.net.nsd.html b/docs/html/sdk/api_diff/21/changes/pkg_android.net.nsd.html
new file mode 100644
index 0000000..ea76c93
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.net.nsd.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.net.nsd
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/net/nsd/package-summary.html" target="_top"><font size="+1"><code>android.net.nsd</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="NsdServiceInfo"></A>
+  <nobr><A HREF="android.net.nsd.NsdServiceInfo.html">NsdServiceInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.net.wifi.html b/docs/html/sdk/api_diff/21/changes/pkg_android.net.wifi.html
new file mode 100644
index 0000000..661d032
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.net.wifi.html
@@ -0,0 +1,162 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.net.wifi
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/net/wifi/package-summary.html" target="_top"><font size="+1"><code>android.net.wifi</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="WifiManager.WpsCallback"></A>
+  <nobr><A HREF="../../../../reference/android/net/wifi/WifiManager.WpsCallback.html" target="_top"><code>WifiManager.WpsCallback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="WifiConfiguration"></A>
+  <nobr><A HREF="android.net.wifi.WifiConfiguration.html">WifiConfiguration</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="WifiEnterpriseConfig.Eap"></A>
+  <nobr><A HREF="android.net.wifi.WifiEnterpriseConfig.Eap.html">WifiEnterpriseConfig.Eap</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="WifiInfo"></A>
+  <nobr><A HREF="android.net.wifi.WifiInfo.html">WifiInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="WifiManager"></A>
+  <nobr><A HREF="android.net.wifi.WifiManager.html">WifiManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="WpsInfo"></A>
+  <nobr><A HREF="android.net.wifi.WpsInfo.html">WpsInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.nfc.cardemulation.html b/docs/html/sdk/api_diff/21/changes/pkg_android.nfc.cardemulation.html
new file mode 100644
index 0000000..77ea49d
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.nfc.cardemulation.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.nfc.cardemulation
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/nfc/cardemulation/package-summary.html" target="_top"><font size="+1"><code>android.nfc.cardemulation</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="CardEmulation"></A>
+  <nobr><A HREF="android.nfc.cardemulation.CardEmulation.html">CardEmulation</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.nfc.html b/docs/html/sdk/api_diff/21/changes/pkg_android.nfc.html
new file mode 100644
index 0000000..2ad648a
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.nfc.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.nfc
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/nfc/package-summary.html" target="_top"><font size="+1"><code>android.nfc</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="NdefRecord"></A>
+  <nobr><A HREF="android.nfc.NdefRecord.html">NdefRecord</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="NfcAdapter"></A>
+  <nobr><A HREF="android.nfc.NfcAdapter.html">NfcAdapter</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.opengl.html b/docs/html/sdk/api_diff/21/changes/pkg_android.opengl.html
new file mode 100644
index 0000000..81c832c
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.opengl.html
@@ -0,0 +1,155 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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 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="GLES31"></A>
+  <nobr><A HREF="../../../../reference/android/opengl/GLES31.html" target="_top"><code>GLES31</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="GLES31Ext"></A>
+  <nobr><A HREF="../../../../reference/android/opengl/GLES31Ext.html" target="_top"><code>GLES31Ext</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="GLES31Ext.DebugProcKHR"></A>
+  <nobr><A HREF="../../../../reference/android/opengl/GLES31Ext.DebugProcKHR.html" target="_top"><code><I>GLES31Ext.DebugProcKHR</I></code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="EGLObjectHandle"></A>
+  <nobr><A HREF="android.opengl.EGLObjectHandle.html">EGLObjectHandle</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="GLES20"></A>
+  <nobr><A HREF="android.opengl.GLES20.html">GLES20</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.os.html b/docs/html/sdk/api_diff/21/changes/pkg_android.os.html
new file mode 100644
index 0000000..97e0650
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.os.html
@@ -0,0 +1,218 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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="BaseBundle"></A>
+  <nobr><A HREF="../../../../reference/android/os/BaseBundle.html" target="_top"><code>BaseBundle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PersistableBundle"></A>
+  <nobr><A HREF="../../../../reference/android/os/PersistableBundle.html" target="_top"><code>PersistableBundle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Build"></A>
+  <nobr><A HREF="android.os.Build.html">Build</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Bundle"></A>
+  <nobr><A HREF="android.os.Bundle.html">Bundle</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Debug"></A>
+  <nobr><A HREF="android.os.Debug.html">Debug</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Environment"></A>
+  <nobr><A HREF="android.os.Environment.html">Environment</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Message"></A>
+  <nobr><A HREF="android.os.Message.html">Message</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Parcel"></A>
+  <nobr><A HREF="android.os.Parcel.html">Parcel</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PowerManager"></A>
+  <nobr><A HREF="android.os.PowerManager.html">PowerManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PowerManager.WakeLock"></A>
+  <nobr><A HREF="android.os.PowerManager.WakeLock.html">PowerManager.WakeLock</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="UserManager"></A>
+  <nobr><A HREF="android.os.UserManager.html">UserManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Vibrator"></A>
+  <nobr><A HREF="android.os.Vibrator.html">Vibrator</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.preference.html b/docs/html/sdk/api_diff/21/changes/pkg_android.preference.html
new file mode 100644
index 0000000..6ae5e0a
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.preference.html
@@ -0,0 +1,189 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.preference
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/preference/package-summary.html" target="_top"><font size="+1"><code>android.preference</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="CheckBoxPreference"></A>
+  <nobr><A HREF="android.preference.CheckBoxPreference.html">CheckBoxPreference</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="DialogPreference"></A>
+  <nobr><A HREF="android.preference.DialogPreference.html">DialogPreference</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="EditTextPreference"></A>
+  <nobr><A HREF="android.preference.EditTextPreference.html">EditTextPreference</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ListPreference"></A>
+  <nobr><A HREF="android.preference.ListPreference.html">ListPreference</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MultiSelectListPreference"></A>
+  <nobr><A HREF="android.preference.MultiSelectListPreference.html">MultiSelectListPreference</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Preference"></A>
+  <nobr><A HREF="android.preference.Preference.html">Preference</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PreferenceCategory"></A>
+  <nobr><A HREF="android.preference.PreferenceCategory.html">PreferenceCategory</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PreferenceGroup"></A>
+  <nobr><A HREF="android.preference.PreferenceGroup.html">PreferenceGroup</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="RingtonePreference"></A>
+  <nobr><A HREF="android.preference.RingtonePreference.html">RingtonePreference</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="SwitchPreference"></A>
+  <nobr><A HREF="android.preference.SwitchPreference.html">SwitchPreference</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TwoStatePreference"></A>
+  <nobr><A HREF="android.preference.TwoStatePreference.html">TwoStatePreference</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.printservice.html b/docs/html/sdk/api_diff/21/changes/pkg_android.printservice.html
new file mode 100644
index 0000000..26071ab
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.printservice.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.printservice
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/printservice/package-summary.html" target="_top"><font size="+1"><code>android.printservice</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="PrintService"></A>
+  <nobr><A HREF="android.printservice.PrintService.html">PrintService</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.provider.html b/docs/html/sdk/api_diff/21/changes/pkg_android.provider.html
new file mode 100644
index 0000000..9e2aaa0
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.provider.html
@@ -0,0 +1,491 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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" 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="ContactsContract.CommonDataKinds.Callable"></A>
+  <nobr><A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Callable.html" target="_top"><code>ContactsContract.CommonDataKinds.<br>Callable</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.PinnedPositions"></A>
+  <nobr><A HREF="../../../../reference/android/provider/ContactsContract.PinnedPositions.html" target="_top"><code>ContactsContract.PinnedPositions</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.SearchSnippets"></A>
+  <nobr><A HREF="../../../../reference/android/provider/ContactsContract.SearchSnippets.html" target="_top"><code>ContactsContract.SearchSnippets</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaStore.Audio.Radio"></A>
+  <nobr><A HREF="../../../../reference/android/provider/MediaStore.Audio.Radio.html" target="_top"><code>MediaStore.Audio.Radio</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="CallLog.Calls"></A>
+  <nobr><A HREF="android.provider.CallLog.Calls.html">CallLog.Calls</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract"></A>
+  <nobr><A HREF="android.provider.ContactsContract.html">ContactsContract</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Contactables"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html">ContactsContract.CommonDataKinds.<br>Contactables</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Email"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html">ContactsContract.CommonDataKinds.<br>Email</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Event"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html">ContactsContract.CommonDataKinds.<br>Event</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.GroupMembership"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html">ContactsContract.CommonDataKinds.<br>GroupMembership</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Identity"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html">ContactsContract.CommonDataKinds.<br>Identity</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Im"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html">ContactsContract.CommonDataKinds.<br>Im</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Nickname"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html">ContactsContract.CommonDataKinds.<br>Nickname</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Note"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html">ContactsContract.CommonDataKinds.<br>Note</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Organization"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html">ContactsContract.CommonDataKinds.<br>Organization</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Phone"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html">ContactsContract.CommonDataKinds.<br>Phone</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Photo"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html">ContactsContract.CommonDataKinds.<br>Photo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Relation"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html">ContactsContract.CommonDataKinds.<br>Relation</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.SipAddress"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html">ContactsContract.CommonDataKinds.<br>SipAddress</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.StructuredName"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html">ContactsContract.CommonDataKinds.<br>StructuredName</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.StructuredPostal"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html">ContactsContract.CommonDataKinds.<br>StructuredPostal</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Website"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html">ContactsContract.CommonDataKinds.<br>Website</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.ContactOptionsColumns"></A>
+  <nobr><A HREF="android.provider.ContactsContract.ContactOptionsColumns.html"><I>ContactsContract.ContactOptionsColumns</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.Contacts"></A>
+  <nobr><A HREF="android.provider.ContactsContract.Contacts.html">ContactsContract.Contacts</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.Contacts.Entity"></A>
+  <nobr><A HREF="android.provider.ContactsContract.Contacts.Entity.html">ContactsContract.Contacts.<br>Entity</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.Contacts.StreamItems"></A>
+  <nobr><A HREF="android.provider.ContactsContract.Contacts.StreamItems.html">ContactsContract.Contacts.<br>StreamItems</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.ContactsColumns"></A>
+  <nobr><A HREF="android.provider.ContactsContract.ContactsColumns.html"><I>ContactsContract.ContactsColumns</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.Data"></A>
+  <nobr><A HREF="android.provider.ContactsContract.Data.html">ContactsContract.Data</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.DataColumns"></A>
+  <nobr><A HREF="android.provider.ContactsContract.DataColumns.html"><I>ContactsContract.DataColumns</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.GroupsColumns"></A>
+  <nobr><A HREF="android.provider.ContactsContract.GroupsColumns.html"><I>ContactsContract.GroupsColumns</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.PhoneLookup"></A>
+  <nobr><A HREF="android.provider.ContactsContract.PhoneLookup.html">ContactsContract.PhoneLookup</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.QuickContact"></A>
+  <nobr><A HREF="android.provider.ContactsContract.QuickContact.html">ContactsContract.QuickContact</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.RawContacts.StreamItems"></A>
+  <nobr><A HREF="android.provider.ContactsContract.RawContacts.StreamItems.html">ContactsContract.RawContacts.<br>StreamItems</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.RawContactsColumns"></A>
+  <nobr><A HREF="android.provider.ContactsContract.RawContactsColumns.html"><I>ContactsContract.RawContactsColumns</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.StreamItemPhotos"></A>
+  <nobr><A HREF="android.provider.ContactsContract.StreamItemPhotos.html">ContactsContract.StreamItemPhotos</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.StreamItemPhotosColumns"></A>
+  <nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html"><I>ContactsContract.StreamItemPhotosColumns</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.StreamItems"></A>
+  <nobr><A HREF="android.provider.ContactsContract.StreamItems.html">ContactsContract.StreamItems</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.StreamItems.StreamItemPhotos"></A>
+  <nobr><A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html">ContactsContract.StreamItems.<br>StreamItemPhotos</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.StreamItemsColumns"></A>
+  <nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html"><I>ContactsContract.StreamItemsColumns</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="DocumentsContract"></A>
+  <nobr><A HREF="android.provider.DocumentsContract.html">DocumentsContract</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="DocumentsContract.Document"></A>
+  <nobr><A HREF="android.provider.DocumentsContract.Document.html">DocumentsContract.Document</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="DocumentsContract.Root"></A>
+  <nobr><A HREF="android.provider.DocumentsContract.Root.html">DocumentsContract.Root</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="DocumentsProvider"></A>
+  <nobr><A HREF="android.provider.DocumentsProvider.html">DocumentsProvider</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaStore"></A>
+  <nobr><A HREF="android.provider.MediaStore.html">MediaStore</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaStore.Audio.Media"></A>
+  <nobr><A HREF="android.provider.MediaStore.Audio.Media.html">MediaStore.Audio.Media</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Settings.Global"></A>
+  <nobr><A HREF="android.provider.Settings.Global.html">Settings.Global</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Settings.Secure"></A>
+  <nobr><A HREF="android.provider.Settings.Secure.html">Settings.Secure</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Telephony.BaseMmsColumns"></A>
+  <nobr><A HREF="android.provider.Telephony.BaseMmsColumns.html"><I>Telephony.BaseMmsColumns</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Telephony.TextBasedSmsColumns"></A>
+  <nobr><A HREF="android.provider.Telephony.TextBasedSmsColumns.html"><I>Telephony.TextBasedSmsColumns</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Telephony.ThreadsColumns"></A>
+  <nobr><A HREF="android.provider.Telephony.ThreadsColumns.html"><I>Telephony.ThreadsColumns</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="VoicemailContract.Voicemails"></A>
+  <nobr><A HREF="android.provider.VoicemailContract.Voicemails.html">VoicemailContract.Voicemails</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.renderscript.html b/docs/html/sdk/api_diff/21/changes/pkg_android.renderscript.html
new file mode 100644
index 0000000..3827165
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.renderscript.html
@@ -0,0 +1,196 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.renderscript
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/renderscript/package-summary.html" target="_top"><font size="+1"><code>android.renderscript</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="Allocation"></A>
+  <nobr><A HREF="android.renderscript.Allocation.html">Allocation</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="RenderScript"></A>
+  <nobr><A HREF="android.renderscript.RenderScript.html">RenderScript</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ScriptC"></A>
+  <nobr><A HREF="android.renderscript.ScriptC.html">ScriptC</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ScriptIntrinsic3DLUT"></A>
+  <nobr><A HREF="android.renderscript.ScriptIntrinsic3DLUT.html">ScriptIntrinsic3DLUT</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ScriptIntrinsicBlend"></A>
+  <nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html">ScriptIntrinsicBlend</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ScriptIntrinsicBlur"></A>
+  <nobr><A HREF="android.renderscript.ScriptIntrinsicBlur.html">ScriptIntrinsicBlur</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ScriptIntrinsicColorMatrix"></A>
+  <nobr><A HREF="android.renderscript.ScriptIntrinsicColorMatrix.html">ScriptIntrinsicColorMatrix</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ScriptIntrinsicConvolve3x3"></A>
+  <nobr><A HREF="android.renderscript.ScriptIntrinsicConvolve3x3.html">ScriptIntrinsicConvolve3x3</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ScriptIntrinsicConvolve5x5"></A>
+  <nobr><A HREF="android.renderscript.ScriptIntrinsicConvolve5x5.html">ScriptIntrinsicConvolve5x5</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ScriptIntrinsicHistogram"></A>
+  <nobr><A HREF="android.renderscript.ScriptIntrinsicHistogram.html">ScriptIntrinsicHistogram</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ScriptIntrinsicLUT"></A>
+  <nobr><A HREF="android.renderscript.ScriptIntrinsicLUT.html">ScriptIntrinsicLUT</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Type"></A>
+  <nobr><A HREF="android.renderscript.Type.html">Type</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.service.dreams.html b/docs/html/sdk/api_diff/21/changes/pkg_android.service.dreams.html
new file mode 100644
index 0000000..48f7c03
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.service.dreams.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.service.dreams
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/service/dreams/package-summary.html" target="_top"><font size="+1"><code>android.service.dreams</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="DreamService"></A>
+  <nobr><A HREF="android.service.dreams.DreamService.html">DreamService</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.service.notification.html b/docs/html/sdk/api_diff/21/changes/pkg_android.service.notification.html
new file mode 100644
index 0000000..43c6cb4
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.service.notification.html
@@ -0,0 +1,148 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.service.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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/service/notification/package-summary.html" target="_top"><font size="+1"><code>android.service.notification</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="NotificationListenerService.Ranking"></A>
+  <nobr><A HREF="../../../../reference/android/service/notification/NotificationListenerService.Ranking.html" target="_top"><code>NotificationListenerService.<br>Ranking</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="NotificationListenerService.RankingMap"></A>
+  <nobr><A HREF="../../../../reference/android/service/notification/NotificationListenerService.RankingMap.html" target="_top"><code>NotificationListenerService.<br>RankingMap</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="NotificationListenerService"></A>
+  <nobr><A HREF="android.service.notification.NotificationListenerService.html">NotificationListenerService</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="StatusBarNotification"></A>
+  <nobr><A HREF="android.service.notification.StatusBarNotification.html">StatusBarNotification</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.service.wallpaper.html b/docs/html/sdk/api_diff/21/changes/pkg_android.service.wallpaper.html
new file mode 100644
index 0000000..9e239d4
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.service.wallpaper.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.service.wallpaper
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/service/wallpaper/package-summary.html" target="_top"><font size="+1"><code>android.service.wallpaper</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="WallpaperService.Engine"></A>
+  <nobr><A HREF="android.service.wallpaper.WallpaperService.Engine.html">WallpaperService.Engine</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.speech.tts.html b/docs/html/sdk/api_diff/21/changes/pkg_android.speech.tts.html
new file mode 100644
index 0000000..5f11ebd
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.speech.tts.html
@@ -0,0 +1,169 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.speech.tts
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/speech/tts/package-summary.html" target="_top"><font size="+1"><code>android.speech.tts</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="Voice"></A>
+  <nobr><A HREF="../../../../reference/android/speech/tts/Voice.html" target="_top"><code>Voice</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="SynthesisCallback"></A>
+  <nobr><A HREF="android.speech.tts.SynthesisCallback.html"><I>SynthesisCallback</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="SynthesisRequest"></A>
+  <nobr><A HREF="android.speech.tts.SynthesisRequest.html">SynthesisRequest</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TextToSpeech"></A>
+  <nobr><A HREF="android.speech.tts.TextToSpeech.html">TextToSpeech</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TextToSpeech.Engine"></A>
+  <nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html">TextToSpeech.Engine</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TextToSpeechService"></A>
+  <nobr><A HREF="android.speech.tts.TextToSpeechService.html">TextToSpeechService</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="UtteranceProgressListener"></A>
+  <nobr><A HREF="android.speech.tts.UtteranceProgressListener.html">UtteranceProgressListener</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.telephony.html b/docs/html/sdk/api_diff/21/changes/pkg_android.telephony.html
new file mode 100644
index 0000000..356b945
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.telephony.html
@@ -0,0 +1,155 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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="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="IccOpenLogicalChannelResponse"></A>
+  <nobr><A HREF="../../../../reference/android/telephony/IccOpenLogicalChannelResponse.html" target="_top"><code>IccOpenLogicalChannelResponse</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="PhoneNumberFormattingTextWatcher"></A>
+  <nobr><A HREF="android.telephony.PhoneNumberFormattingTextWatcher.html">PhoneNumberFormattingTextWatcher</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="SmsManager"></A>
+  <nobr><A HREF="android.telephony.SmsManager.html">SmsManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.test.mock.html b/docs/html/sdk/api_diff/21/changes/pkg_android.test.mock.html
new file mode 100644
index 0000000..3584ff4
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.test.mock.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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>&nbsp;</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>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.text.html b/docs/html/sdk/api_diff/21/changes/pkg_android.text.html
new file mode 100644
index 0000000..ad6d27d
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.text.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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" 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="InputFilter.LengthFilter"></A>
+  <nobr><A HREF="android.text.InputFilter.LengthFilter.html">InputFilter.LengthFilter</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="SpannableStringBuilder"></A>
+  <nobr><A HREF="android.text.SpannableStringBuilder.html">SpannableStringBuilder</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.text.style.html b/docs/html/sdk/api_diff/21/changes/pkg_android.text.style.html
new file mode 100644
index 0000000..0e16b0a
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.text.style.html
@@ -0,0 +1,224 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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 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="TtsSpan"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.html" target="_top"><code>TtsSpan</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.Builder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.Builder.html" target="_top"><code>TtsSpan.Builder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.CardinalBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.CardinalBuilder.html" target="_top"><code>TtsSpan.CardinalBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.DateBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.DateBuilder.html" target="_top"><code>TtsSpan.DateBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.DecimalBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.DecimalBuilder.html" target="_top"><code>TtsSpan.DecimalBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.DigitsBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.DigitsBuilder.html" target="_top"><code>TtsSpan.DigitsBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.ElectronicBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.ElectronicBuilder.html" target="_top"><code>TtsSpan.ElectronicBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.FractionBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.FractionBuilder.html" target="_top"><code>TtsSpan.FractionBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.MeasureBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.MeasureBuilder.html" target="_top"><code>TtsSpan.MeasureBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.MoneyBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.MoneyBuilder.html" target="_top"><code>TtsSpan.MoneyBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.OrdinalBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.OrdinalBuilder.html" target="_top"><code>TtsSpan.OrdinalBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.SemioticClassBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.SemioticClassBuilder.html" target="_top"><code>TtsSpan.SemioticClassBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.TelephoneBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.TelephoneBuilder.html" target="_top"><code>TtsSpan.TelephoneBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.TextBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.TextBuilder.html" target="_top"><code>TtsSpan.TextBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.TimeBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.TimeBuilder.html" target="_top"><code>TtsSpan.TimeBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.VerbatimBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.VerbatimBuilder.html" target="_top"><code>TtsSpan.VerbatimBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.transition.html b/docs/html/sdk/api_diff/21/changes/pkg_android.transition.html
new file mode 100644
index 0000000..9245b14
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.transition.html
@@ -0,0 +1,260 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.transition
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/transition/package-summary.html" target="_top"><font size="+1"><code>android.transition</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="ArcMotion"></A>
+  <nobr><A HREF="../../../../reference/android/transition/ArcMotion.html" target="_top"><code>ArcMotion</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ChangeClipBounds"></A>
+  <nobr><A HREF="../../../../reference/android/transition/ChangeClipBounds.html" target="_top"><code>ChangeClipBounds</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ChangeImageTransform"></A>
+  <nobr><A HREF="../../../../reference/android/transition/ChangeImageTransform.html" target="_top"><code>ChangeImageTransform</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ChangeTransform"></A>
+  <nobr><A HREF="../../../../reference/android/transition/ChangeTransform.html" target="_top"><code>ChangeTransform</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CircularPropagation"></A>
+  <nobr><A HREF="../../../../reference/android/transition/CircularPropagation.html" target="_top"><code>CircularPropagation</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Explode"></A>
+  <nobr><A HREF="../../../../reference/android/transition/Explode.html" target="_top"><code>Explode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PathMotion"></A>
+  <nobr><A HREF="../../../../reference/android/transition/PathMotion.html" target="_top"><code>PathMotion</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PatternPathMotion"></A>
+  <nobr><A HREF="../../../../reference/android/transition/PatternPathMotion.html" target="_top"><code>PatternPathMotion</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="SidePropagation"></A>
+  <nobr><A HREF="../../../../reference/android/transition/SidePropagation.html" target="_top"><code>SidePropagation</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Slide"></A>
+  <nobr><A HREF="../../../../reference/android/transition/Slide.html" target="_top"><code>Slide</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Transition.EpicenterCallback"></A>
+  <nobr><A HREF="../../../../reference/android/transition/Transition.EpicenterCallback.html" target="_top"><code>Transition.EpicenterCallback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TransitionPropagation"></A>
+  <nobr><A HREF="../../../../reference/android/transition/TransitionPropagation.html" target="_top"><code>TransitionPropagation</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="VisibilityPropagation"></A>
+  <nobr><A HREF="../../../../reference/android/transition/VisibilityPropagation.html" target="_top"><code>VisibilityPropagation</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="AutoTransition"></A>
+  <nobr><A HREF="android.transition.AutoTransition.html">AutoTransition</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ChangeBounds"></A>
+  <nobr><A HREF="android.transition.ChangeBounds.html">ChangeBounds</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Fade"></A>
+  <nobr><A HREF="android.transition.Fade.html">Fade</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Scene"></A>
+  <nobr><A HREF="android.transition.Scene.html">Scene</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Transition"></A>
+  <nobr><A HREF="android.transition.Transition.html">Transition</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TransitionSet"></A>
+  <nobr><A HREF="android.transition.TransitionSet.html">TransitionSet</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Visibility"></A>
+  <nobr><A HREF="android.transition.Visibility.html">Visibility</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.util.html b/docs/html/sdk/api_diff/21/changes/pkg_android.util.html
new file mode 100644
index 0000000..1c638db
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.util.html
@@ -0,0 +1,232 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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="MutableBoolean"></A>
+  <nobr><A HREF="../../../../reference/android/util/MutableBoolean.html" target="_top"><code>MutableBoolean</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MutableByte"></A>
+  <nobr><A HREF="../../../../reference/android/util/MutableByte.html" target="_top"><code>MutableByte</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MutableChar"></A>
+  <nobr><A HREF="../../../../reference/android/util/MutableChar.html" target="_top"><code>MutableChar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MutableDouble"></A>
+  <nobr><A HREF="../../../../reference/android/util/MutableDouble.html" target="_top"><code>MutableDouble</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MutableFloat"></A>
+  <nobr><A HREF="../../../../reference/android/util/MutableFloat.html" target="_top"><code>MutableFloat</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MutableInt"></A>
+  <nobr><A HREF="../../../../reference/android/util/MutableInt.html" target="_top"><code>MutableInt</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MutableLong"></A>
+  <nobr><A HREF="../../../../reference/android/util/MutableLong.html" target="_top"><code>MutableLong</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MutableShort"></A>
+  <nobr><A HREF="../../../../reference/android/util/MutableShort.html" target="_top"><code>MutableShort</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Range"></A>
+  <nobr><A HREF="../../../../reference/android/util/Range.html" target="_top"><code>Range</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Rational"></A>
+  <nobr><A HREF="../../../../reference/android/util/Rational.html" target="_top"><code>Rational</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Size"></A>
+  <nobr><A HREF="../../../../reference/android/util/Size.html" target="_top"><code>Size</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="SizeF"></A>
+  <nobr><A HREF="../../../../reference/android/util/SizeF.html" target="_top"><code>SizeF</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="ArrayMap"></A>
+  <nobr><A HREF="android.util.ArrayMap.html">ArrayMap</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="DisplayMetrics"></A>
+  <nobr><A HREF="android.util.DisplayMetrics.html">DisplayMetrics</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="LruCache"></A>
+  <nobr><A HREF="android.util.LruCache.html">LruCache</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Patterns"></A>
+  <nobr><A HREF="android.util.Patterns.html">Patterns</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.view.accessibility.html b/docs/html/sdk/api_diff/21/changes/pkg_android.view.accessibility.html
new file mode 100644
index 0000000..359767f
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.view.accessibility.html
@@ -0,0 +1,176 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.accessibility
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/accessibility/package-summary.html" target="_top"><font size="+1"><code>android.view.accessibility</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="AccessibilityNodeInfo.AccessibilityAction"></A>
+  <nobr><A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.AccessibilityAction.html" target="_top"><code>AccessibilityNodeInfo.<br>AccessibilityAction</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AccessibilityWindowInfo"></A>
+  <nobr><A HREF="../../../../reference/android/view/accessibility/AccessibilityWindowInfo.html" target="_top"><code>AccessibilityWindowInfo</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="AccessibilityEvent"></A>
+  <nobr><A HREF="android.view.accessibility.AccessibilityEvent.html">AccessibilityEvent</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AccessibilityNodeInfo"></A>
+  <nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html">AccessibilityNodeInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AccessibilityNodeInfo.CollectionInfo"></A>
+  <nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html">AccessibilityNodeInfo.<br>CollectionInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AccessibilityNodeInfo.CollectionItemInfo"></A>
+  <nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.html">AccessibilityNodeInfo.<br>CollectionItemInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AccessibilityNodeProvider"></A>
+  <nobr><A HREF="android.view.accessibility.AccessibilityNodeProvider.html">AccessibilityNodeProvider</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CaptioningManager.CaptionStyle"></A>
+  <nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html">CaptioningManager.CaptionStyle</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.view.animation.html b/docs/html/sdk/api_diff/21/changes/pkg_android.view.animation.html
new file mode 100644
index 0000000..d124663
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.view.animation.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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="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="PathInterpolator"></A>
+  <nobr><A HREF="../../../../reference/android/view/animation/PathInterpolator.html" target="_top"><code>PathInterpolator</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.view.html b/docs/html/sdk/api_diff/21/changes/pkg_android.view.html
new file mode 100644
index 0000000..18d2f40
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.view.html
@@ -0,0 +1,260 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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="FrameStats"></A>
+  <nobr><A HREF="../../../../reference/android/view/FrameStats.html" target="_top"><code>FrameStats</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ViewAnimationUtils"></A>
+  <nobr><A HREF="../../../../reference/android/view/ViewAnimationUtils.html" target="_top"><code>ViewAnimationUtils</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ViewOutlineProvider"></A>
+  <nobr><A HREF="../../../../reference/android/view/ViewOutlineProvider.html" target="_top"><code>ViewOutlineProvider</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="WindowAnimationFrameStats"></A>
+  <nobr><A HREF="../../../../reference/android/view/WindowAnimationFrameStats.html" target="_top"><code>WindowAnimationFrameStats</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="WindowContentFrameStats"></A>
+  <nobr><A HREF="../../../../reference/android/view/WindowContentFrameStats.html" target="_top"><code>WindowContentFrameStats</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="Display"></A>
+  <nobr><A HREF="android.view.Display.html">Display</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="InputDevice"></A>
+  <nobr><A HREF="android.view.InputDevice.html">InputDevice</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TextureView"></A>
+  <nobr><A HREF="android.view.TextureView.html">TextureView</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ViewGroup"></A>
+  <nobr><A HREF="android.view.ViewGroup.html">ViewGroup</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ViewParent"></A>
+  <nobr><A HREF="android.view.ViewParent.html"><I>ViewParent</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ViewPropertyAnimator"></A>
+  <nobr><A HREF="android.view.ViewPropertyAnimator.html">ViewPropertyAnimator</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ViewStub"></A>
+  <nobr><A HREF="android.view.ViewStub.html">ViewStub</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Window"></A>
+  <nobr><A HREF="android.view.Window.html">Window</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="WindowInsets"></A>
+  <nobr><A HREF="android.view.WindowInsets.html">WindowInsets</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.view.inputmethod.html b/docs/html/sdk/api_diff/21/changes/pkg_android.view.inputmethod.html
new file mode 100644
index 0000000..12e695a
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.view.inputmethod.html
@@ -0,0 +1,169 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.inputmethod
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/inputmethod/package-summary.html" target="_top"><font size="+1"><code>android.view.inputmethod</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="CursorAnchorInfo"></A>
+  <nobr><A HREF="../../../../reference/android/view/inputmethod/CursorAnchorInfo.html" target="_top"><code>CursorAnchorInfo</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CursorAnchorInfo.Builder"></A>
+  <nobr><A HREF="../../../../reference/android/view/inputmethod/CursorAnchorInfo.Builder.html" target="_top"><code>CursorAnchorInfo.Builder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="BaseInputConnection"></A>
+  <nobr><A HREF="android.view.inputmethod.BaseInputConnection.html">BaseInputConnection</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="InputConnection"></A>
+  <nobr><A HREF="android.view.inputmethod.InputConnection.html"><I>InputConnection</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="InputConnectionWrapper"></A>
+  <nobr><A HREF="android.view.inputmethod.InputConnectionWrapper.html">InputConnectionWrapper</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="InputMethodManager"></A>
+  <nobr><A HREF="android.view.inputmethod.InputMethodManager.html">InputMethodManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="InputMethodSession"></A>
+  <nobr><A HREF="android.view.inputmethod.InputMethodSession.html"><I>InputMethodSession</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.view.textservice.html b/docs/html/sdk/api_diff/21/changes/pkg_android.view.textservice.html
new file mode 100644
index 0000000..5ea0257
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.view.textservice.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.textservice
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/textservice/package-summary.html" target="_top"><font size="+1"><code>android.view.textservice</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="TextInfo"></A>
+  <nobr><A HREF="android.view.textservice.TextInfo.html">TextInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.webkit.html b/docs/html/sdk/api_diff/21/changes/pkg_android.webkit.html
new file mode 100644
index 0000000..75cd937
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.webkit.html
@@ -0,0 +1,204 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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="ClientCertRequest"></A>
+  <nobr><A HREF="../../../../reference/android/webkit/ClientCertRequest.html" target="_top"><code>ClientCertRequest</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PermissionRequest"></A>
+  <nobr><A HREF="../../../../reference/android/webkit/PermissionRequest.html" target="_top"><code>PermissionRequest</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="WebChromeClient.FileChooserParams"></A>
+  <nobr><A HREF="../../../../reference/android/webkit/WebChromeClient.FileChooserParams.html" target="_top"><code>WebChromeClient.FileChooserParams</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="WebResourceRequest"></A>
+  <nobr><A HREF="../../../../reference/android/webkit/WebResourceRequest.html" target="_top"><code><I>WebResourceRequest</I></code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="CookieManager"></A>
+  <nobr><A HREF="android.webkit.CookieManager.html">CookieManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CookieSyncManager"></A>
+  <nobr><A HREF="android.webkit.CookieSyncManager.html">CookieSyncManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="WebResourceResponse"></A>
+  <nobr><A HREF="android.webkit.WebResourceResponse.html">WebResourceResponse</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="WebSyncManager"></A>
+  <nobr><A HREF="android.webkit.WebSyncManager.html">WebSyncManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</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>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_android.widget.html b/docs/html/sdk/api_diff/21/changes/pkg_android.widget.html
new file mode 100644
index 0000000..cdb5122
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_android.widget.html
@@ -0,0 +1,533 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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="ActionMenuView"></A>
+  <nobr><A HREF="../../../../reference/android/widget/ActionMenuView.html" target="_top"><code>ActionMenuView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ActionMenuView.LayoutParams"></A>
+  <nobr><A HREF="../../../../reference/android/widget/ActionMenuView.LayoutParams.html" target="_top"><code>ActionMenuView.LayoutParams</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ActionMenuView.OnMenuItemClickListener"></A>
+  <nobr><A HREF="../../../../reference/android/widget/ActionMenuView.OnMenuItemClickListener.html" target="_top"><code><I>ActionMenuView.OnMenuItemClickListener</I></code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Toolbar"></A>
+  <nobr><A HREF="../../../../reference/android/widget/Toolbar.html" target="_top"><code>Toolbar</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Toolbar.LayoutParams"></A>
+  <nobr><A HREF="../../../../reference/android/widget/Toolbar.LayoutParams.html" target="_top"><code>Toolbar.LayoutParams</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Toolbar.OnMenuItemClickListener"></A>
+  <nobr><A HREF="../../../../reference/android/widget/Toolbar.OnMenuItemClickListener.html" target="_top"><code><I>Toolbar.OnMenuItemClickListener</I></code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="AbsListView"></A>
+  <nobr><A HREF="android.widget.AbsListView.html">AbsListView</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AbsSeekBar"></A>
+  <nobr><A HREF="android.widget.AbsSeekBar.html">AbsSeekBar</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AbsSpinner"></A>
+  <nobr><A HREF="android.widget.AbsSpinner.html">AbsSpinner</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AbsoluteLayout"></A>
+  <nobr><A HREF="android.widget.AbsoluteLayout.html">AbsoluteLayout</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AdapterView"></A>
+  <nobr><A HREF="android.widget.AdapterView.html">AdapterView</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AdapterViewAnimator"></A>
+  <nobr><A HREF="android.widget.AdapterViewAnimator.html">AdapterViewAnimator</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AdapterViewFlipper"></A>
+  <nobr><A HREF="android.widget.AdapterViewFlipper.html">AdapterViewFlipper</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AnalogClock"></A>
+  <nobr><A HREF="android.widget.AnalogClock.html">AnalogClock</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Button"></A>
+  <nobr><A HREF="android.widget.Button.html">Button</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CalendarView"></A>
+  <nobr><A HREF="android.widget.CalendarView.html">CalendarView</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CheckBox"></A>
+  <nobr><A HREF="android.widget.CheckBox.html">CheckBox</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CheckedTextView"></A>
+  <nobr><A HREF="android.widget.CheckedTextView.html">CheckedTextView</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Chronometer"></A>
+  <nobr><A HREF="android.widget.Chronometer.html">Chronometer</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CompoundButton"></A>
+  <nobr><A HREF="android.widget.CompoundButton.html">CompoundButton</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="DatePicker"></A>
+  <nobr><A HREF="android.widget.DatePicker.html">DatePicker</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="EdgeEffect"></A>
+  <nobr><A HREF="android.widget.EdgeEffect.html">EdgeEffect</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="EditText"></A>
+  <nobr><A HREF="android.widget.EditText.html">EditText</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ExpandableListView"></A>
+  <nobr><A HREF="android.widget.ExpandableListView.html">ExpandableListView</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="FrameLayout"></A>
+  <nobr><A HREF="android.widget.FrameLayout.html">FrameLayout</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Gallery"></A>
+  <nobr><A HREF="android.widget.Gallery.html">Gallery</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="GridLayout"></A>
+  <nobr><A HREF="android.widget.GridLayout.html">GridLayout</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="GridView"></A>
+  <nobr><A HREF="android.widget.GridView.html">GridView</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="HorizontalScrollView"></A>
+  <nobr><A HREF="android.widget.HorizontalScrollView.html">HorizontalScrollView</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ImageButton"></A>
+  <nobr><A HREF="android.widget.ImageButton.html">ImageButton</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ImageView"></A>
+  <nobr><A HREF="android.widget.ImageView.html">ImageView</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="LinearLayout"></A>
+  <nobr><A HREF="android.widget.LinearLayout.html">LinearLayout</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ListView"></A>
+  <nobr><A HREF="android.widget.ListView.html">ListView</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MultiAutoCompleteTextView"></A>
+  <nobr><A HREF="android.widget.MultiAutoCompleteTextView.html">MultiAutoCompleteTextView</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="NumberPicker"></A>
+  <nobr><A HREF="android.widget.NumberPicker.html">NumberPicker</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PopupWindow"></A>
+  <nobr><A HREF="android.widget.PopupWindow.html">PopupWindow</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ProgressBar"></A>
+  <nobr><A HREF="android.widget.ProgressBar.html">ProgressBar</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="QuickContactBadge"></A>
+  <nobr><A HREF="android.widget.QuickContactBadge.html">QuickContactBadge</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="RadioButton"></A>
+  <nobr><A HREF="android.widget.RadioButton.html">RadioButton</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="RatingBar"></A>
+  <nobr><A HREF="android.widget.RatingBar.html">RatingBar</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="RelativeLayout"></A>
+  <nobr><A HREF="android.widget.RelativeLayout.html">RelativeLayout</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ScrollView"></A>
+  <nobr><A HREF="android.widget.ScrollView.html">ScrollView</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="SearchView"></A>
+  <nobr><A HREF="android.widget.SearchView.html">SearchView</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="SeekBar"></A>
+  <nobr><A HREF="android.widget.SeekBar.html">SeekBar</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="SlidingDrawer"></A>
+  <nobr><A HREF="android.widget.SlidingDrawer.html">SlidingDrawer</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Space"></A>
+  <nobr><A HREF="android.widget.Space.html">Space</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Spinner"></A>
+  <nobr><A HREF="android.widget.Spinner.html">Spinner</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="StackView"></A>
+  <nobr><A HREF="android.widget.StackView.html">StackView</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Switch"></A>
+  <nobr><A HREF="android.widget.Switch.html">Switch</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TabHost"></A>
+  <nobr><A HREF="android.widget.TabHost.html">TabHost</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TabWidget"></A>
+  <nobr><A HREF="android.widget.TabWidget.html">TabWidget</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TextClock"></A>
+  <nobr><A HREF="android.widget.TextClock.html">TextClock</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TextView"></A>
+  <nobr><A HREF="android.widget.TextView.html">TextView</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TimePicker"></A>
+  <nobr><A HREF="android.widget.TimePicker.html">TimePicker</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ToggleButton"></A>
+  <nobr><A HREF="android.widget.ToggleButton.html">ToggleButton</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TwoLineListItem"></A>
+  <nobr><A HREF="android.widget.TwoLineListItem.html">TwoLineListItem</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ZoomButton"></A>
+  <nobr><A HREF="android.widget.ZoomButton.html">ZoomButton</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_java.util.concurrent.html b/docs/html/sdk/api_diff/21/changes/pkg_java.util.concurrent.html
new file mode 100644
index 0000000..022f456
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_java.util.concurrent.html
@@ -0,0 +1,211 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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="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="ConcurrentLinkedDeque"></A>
+  <nobr><A HREF="../../../../reference/java/util/concurrent/ConcurrentLinkedDeque.html" target="_top"><code>ConcurrentLinkedDeque</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ForkJoinPool"></A>
+  <nobr><A HREF="../../../../reference/java/util/concurrent/ForkJoinPool.html" target="_top"><code>ForkJoinPool</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ForkJoinPool.ForkJoinWorkerThreadFactory"></A>
+  <nobr><A HREF="../../../../reference/java/util/concurrent/ForkJoinPool.ForkJoinWorkerThreadFactory.html" target="_top"><code><I>ForkJoinPool.ForkJoinWorkerThreadFactory</I></code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ForkJoinPool.ManagedBlocker"></A>
+  <nobr><A HREF="../../../../reference/java/util/concurrent/ForkJoinPool.ManagedBlocker.html" target="_top"><code><I>ForkJoinPool.ManagedBlocker</I></code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ForkJoinTask"></A>
+  <nobr><A HREF="../../../../reference/java/util/concurrent/ForkJoinTask.html" target="_top"><code>ForkJoinTask</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ForkJoinWorkerThread"></A>
+  <nobr><A HREF="../../../../reference/java/util/concurrent/ForkJoinWorkerThread.html" target="_top"><code>ForkJoinWorkerThread</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="LinkedTransferQueue"></A>
+  <nobr><A HREF="../../../../reference/java/util/concurrent/LinkedTransferQueue.html" target="_top"><code>LinkedTransferQueue</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Phaser"></A>
+  <nobr><A HREF="../../../../reference/java/util/concurrent/Phaser.html" target="_top"><code>Phaser</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="RecursiveAction"></A>
+  <nobr><A HREF="../../../../reference/java/util/concurrent/RecursiveAction.html" target="_top"><code>RecursiveAction</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="RecursiveTask"></A>
+  <nobr><A HREF="../../../../reference/java/util/concurrent/RecursiveTask.html" target="_top"><code>RecursiveTask</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ThreadLocalRandom"></A>
+  <nobr><A HREF="../../../../reference/java/util/concurrent/ThreadLocalRandom.html" target="_top"><code>ThreadLocalRandom</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TransferQueue"></A>
+  <nobr><A HREF="../../../../reference/java/util/concurrent/TransferQueue.html" target="_top"><code><I>TransferQueue</I></code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="ScheduledThreadPoolExecutor"></A>
+  <nobr><A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html">ScheduledThreadPoolExecutor</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_java.util.concurrent.locks.html b/docs/html/sdk/api_diff/21/changes/pkg_java.util.concurrent.locks.html
new file mode 100644
index 0000000..3f3b0a1
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_java.util.concurrent.locks.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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="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="AbstractQueuedLongSynchronizer"></A>
+  <nobr><A HREF="java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html">AbstractQueuedLongSynchronizer</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AbstractQueuedSynchronizer"></A>
+  <nobr><A HREF="java.util.concurrent.locks.AbstractQueuedSynchronizer.html">AbstractQueuedSynchronizer</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_java.util.html b/docs/html/sdk/api_diff/21/changes/pkg_java.util.html
new file mode 100644
index 0000000..6091a97
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_java.util.html
@@ -0,0 +1,141 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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="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="IllformedLocaleException"></A>
+  <nobr><A HREF="../../../../reference/java/util/IllformedLocaleException.html" target="_top"><code>IllformedLocaleException</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Locale.Builder"></A>
+  <nobr><A HREF="../../../../reference/java/util/Locale.Builder.html" target="_top"><code>Locale.Builder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="Locale"></A>
+  <nobr><A HREF="java.util.Locale.html">Locale</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/changes/pkg_java.util.zip.html b/docs/html/sdk/api_diff/21/changes/pkg_java.util.zip.html
new file mode 100644
index 0000000..c704d98
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/changes/pkg_java.util.zip.html
@@ -0,0 +1,140 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.zip
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">20</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 15:01</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/zip/package-summary.html" target="_top"><font size="+1"><code>java.util.zip</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="ZipEntry"></A>
+  <nobr><A HREF="java.util.zip.ZipEntry.html">ZipEntry</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ZipFile"></A>
+  <nobr><A HREF="java.util.zip.ZipFile.html">ZipFile</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ZipInputStream"></A>
+  <nobr><A HREF="java.util.zip.ZipInputStream.html">ZipInputStream</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ZipOutputStream"></A>
+  <nobr><A HREF="java.util.zip.ZipOutputStream.html">ZipOutputStream</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/21/missingSinces.txt b/docs/html/sdk/api_diff/21/missingSinces.txt
new file mode 100644
index 0000000..be96492
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/missingSinces.txt
@@ -0,0 +1,2165 @@
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction Class
+NO DOC BLOCK: android.view.accessibility.AccessibilityWindowInfo Class
+NO DOC BLOCK: android.widget.ActionMenuView Class
+NO DOC BLOCK: android.widget.ActionMenuView.LayoutParams Class
+NO DOC BLOCK: android.widget.ActionMenuView.OnMenuItemClickListener Interface
+NO DOC BLOCK: android.app.ActivityManager.AppTask Class
+NO DOC BLOCK: android.app.ActivityManager.TaskDescription Class
+NO DOC BLOCK: android.app.AlarmManager.AlarmClockInfo Class
+NO DOC BLOCK: android.graphics.drawable.AnimatedStateListDrawable Class
+NO DOC BLOCK: android.graphics.drawable.AnimatedVectorDrawable Class
+NO DOC BLOCK: android.transition.ArcMotion Class
+NO DOC BLOCK: android.media.AudioAttributes Class
+NO DOC BLOCK: android.media.AudioAttributes.Builder Class
+NO DOC BLOCK: android.media.AudioFormat.Builder Class
+NO DOC BLOCK: android.os.BaseBundle Class
+NO DOC BLOCK: android.animation.BidirectionalTypeConverter Class
+NO DOC BLOCK: android.transition.ChangeClipBounds Class
+NO DOC BLOCK: android.transition.ChangeImageTransform Class
+NO DOC BLOCK: android.transition.ChangeTransform Class
+NO DOC BLOCK: android.transition.CircularPropagation Class
+NO DOC BLOCK: android.webkit.ClientCertRequest Class
+NO DOC BLOCK: java.util.concurrent.ConcurrentLinkedDeque Class
+NO DOC BLOCK: android.net.ConnectivityManager.NetworkCallback Class
+NO DOC BLOCK: android.net.ConnectivityManager.OnNetworkActiveListener Interface
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Callable Class
+NO DOC BLOCK: android.provider.ContactsContract.PinnedPositions Class
+NO DOC BLOCK: android.provider.ContactsContract.SearchSnippets Class
+NO DOC BLOCK: android.view.inputmethod.CursorAnchorInfo Class
+NO DOC BLOCK: android.view.inputmethod.CursorAnchorInfo.Builder Class
+NO DOC BLOCK: android.transition.Explode Class
+NO DOC BLOCK: android.content.pm.FeatureGroupInfo Class
+NO DOC BLOCK: android.animation.FloatArrayEvaluator Class
+NO DOC BLOCK: java.util.concurrent.ForkJoinPool Class
+NO DOC BLOCK: java.util.concurrent.ForkJoinPool.ForkJoinWorkerThreadFactory Interface
+NO DOC BLOCK: java.util.concurrent.ForkJoinPool.ManagedBlocker Interface
+NO DOC BLOCK: java.util.concurrent.ForkJoinTask Class
+NO DOC BLOCK: java.util.concurrent.ForkJoinWorkerThread Class
+NO DOC BLOCK: android.view.FrameStats Class
+NO DOC BLOCK: android.opengl.GLES31 Class
+NO DOC BLOCK: android.opengl.GLES31Ext Class
+NO DOC BLOCK: android.opengl.GLES31Ext.DebugProcKHR Interface
+NO DOC BLOCK: android.telephony.IccOpenLogicalChannelResponse Class
+NO DOC BLOCK: java.util.IllformedLocaleException Class
+NO DOC BLOCK: android.animation.IntArrayEvaluator Class
+NO DOC BLOCK: android.net.IpPrefix Class
+NO DOC BLOCK: android.content.pm.LauncherActivityInfo Class
+NO DOC BLOCK: android.content.pm.LauncherApps Class
+NO DOC BLOCK: android.content.pm.LauncherApps.Callback Class
+NO DOC BLOCK: android.net.LinkAddress Class
+NO DOC BLOCK: java.util.concurrent.LinkedTransferQueue Class
+NO DOC BLOCK: android.net.LinkProperties Class
+NO DOC BLOCK: java.util.Locale.Builder Class
+NO DOC BLOCK: android.media.MediaCodec.Callback Class
+NO DOC BLOCK: android.media.MediaCodec.CodecException Class
+NO DOC BLOCK: android.media.MediaCodecInfo.AudioCapabilities Class
+NO DOC BLOCK: android.media.MediaCodecInfo.EncoderCapabilities Class
+NO DOC BLOCK: android.media.MediaCodecInfo.VideoCapabilities Class
+NO DOC BLOCK: android.media.MediaDescription Class
+NO DOC BLOCK: android.media.MediaDescription.Builder Class
+NO DOC BLOCK: android.media.MediaDrm.MediaDrmStateException Class
+NO DOC BLOCK: android.media.MediaMetadata Class
+NO DOC BLOCK: android.media.MediaMetadata.Builder Class
+NO DOC BLOCK: android.provider.MediaStore.Audio.Radio Class
+NO DOC BLOCK: android.util.MutableBoolean Class
+NO DOC BLOCK: android.util.MutableByte Class
+NO DOC BLOCK: android.util.MutableChar Class
+NO DOC BLOCK: android.util.MutableDouble Class
+NO DOC BLOCK: android.util.MutableFloat Class
+NO DOC BLOCK: android.util.MutableInt Class
+NO DOC BLOCK: android.util.MutableLong Class
+NO DOC BLOCK: android.util.MutableShort Class
+NO DOC BLOCK: android.net.Network Class
+NO DOC BLOCK: android.net.NetworkCapabilities Class
+NO DOC BLOCK: android.net.NetworkRequest Class
+NO DOC BLOCK: android.net.NetworkRequest.Builder Class
+NO DOC BLOCK: android.app.Notification.MediaStyle Class
+NO DOC BLOCK: android.service.notification.NotificationListenerService.Ranking Class
+NO DOC BLOCK: android.service.notification.NotificationListenerService.RankingMap Class
+NO DOC BLOCK: android.graphics.Outline Class
+NO DOC BLOCK: android.content.pm.PackageInstaller Class
+NO DOC BLOCK: android.content.pm.PackageInstaller.Session Class
+NO DOC BLOCK: android.content.pm.PackageInstaller.SessionCallback Class
+NO DOC BLOCK: android.content.pm.PackageInstaller.SessionInfo Class
+NO DOC BLOCK: android.content.pm.PackageInstaller.SessionParams Class
+NO DOC BLOCK: android.view.animation.PathInterpolator Class
+NO DOC BLOCK: android.transition.PathMotion Class
+NO DOC BLOCK: android.transition.PatternPathMotion Class
+NO DOC BLOCK: android.graphics.pdf.PdfRenderer Class
+NO DOC BLOCK: android.graphics.pdf.PdfRenderer.Page Class
+NO DOC BLOCK: android.webkit.PermissionRequest Class
+NO DOC BLOCK: android.os.PersistableBundle Class
+NO DOC BLOCK: java.util.concurrent.Phaser Class
+NO DOC BLOCK: android.animation.PointFEvaluator Class
+NO DOC BLOCK: android.net.ProxyInfo Class
+NO DOC BLOCK: android.net.PskKeyManager Class
+NO DOC BLOCK: android.R.transition Class
+NO DOC BLOCK: android.util.Range Class
+NO DOC BLOCK: android.util.Rational Class
+NO DOC BLOCK: java.util.concurrent.RecursiveAction Class
+NO DOC BLOCK: java.util.concurrent.RecursiveTask Class
+NO DOC BLOCK: android.content.RestrictionsManager Class
+NO DOC BLOCK: android.graphics.drawable.RippleDrawable Class
+NO DOC BLOCK: android.net.RouteInfo Class
+NO DOC BLOCK: android.app.SharedElementCallback Class
+NO DOC BLOCK: android.transition.SidePropagation Class
+NO DOC BLOCK: android.util.Size Class
+NO DOC BLOCK: android.util.SizeF Class
+NO DOC BLOCK: android.transition.Slide Class
+NO DOC BLOCK: android.media.SoundPool.Builder Class
+NO DOC BLOCK: android.animation.StateListAnimator Class
+NO DOC BLOCK: java.util.concurrent.ThreadLocalRandom Class
+NO DOC BLOCK: android.widget.Toolbar Class
+NO DOC BLOCK: android.widget.Toolbar.LayoutParams Class
+NO DOC BLOCK: android.widget.Toolbar.OnMenuItemClickListener Interface
+NO DOC BLOCK: java.util.concurrent.TransferQueue Interface
+NO DOC BLOCK: android.transition.Transition.EpicenterCallback Class
+NO DOC BLOCK: android.transition.TransitionPropagation Class
+NO DOC BLOCK: android.text.style.TtsSpan Class
+NO DOC BLOCK: android.text.style.TtsSpan.Builder Class
+NO DOC BLOCK: android.text.style.TtsSpan.CardinalBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.DateBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.DecimalBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.DigitsBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.ElectronicBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.FractionBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.MeasureBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.MoneyBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.OrdinalBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.SemioticClassBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.TelephoneBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.TextBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.TimeBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.VerbatimBuilder Class
+NO DOC BLOCK: android.animation.TypeConverter Class
+NO DOC BLOCK: android.hardware.usb.UsbConfiguration Class
+NO DOC BLOCK: android.graphics.drawable.VectorDrawable Class
+NO DOC BLOCK: android.view.ViewAnimationUtils Class
+NO DOC BLOCK: android.view.ViewOutlineProvider Class
+NO DOC BLOCK: android.hardware.display.VirtualDisplay.Callback Class
+NO DOC BLOCK: android.transition.VisibilityPropagation Class
+NO DOC BLOCK: android.speech.tts.Voice Class
+NO DOC BLOCK: android.media.VolumeProvider Class
+NO DOC BLOCK: android.webkit.WebChromeClient.FileChooserParams Class
+NO DOC BLOCK: android.webkit.WebResourceRequest Interface
+NO DOC BLOCK: android.net.wifi.WifiManager.WpsCallback Class
+NO DOC BLOCK: android.view.WindowAnimationFrameStats Class
+NO DOC BLOCK: android.view.WindowContentFrameStats Class
+NO DOC BLOCK: android.widget.AbsListView Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.AbsoluteLayout Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.AbsSeekBar Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.AbsSpinner Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.AdapterView Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.AdapterViewAnimator Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.AdapterViewFlipper Constructor (android.content.Context, android.util.AttributeSet, int)
+NO DOC BLOCK: android.widget.AdapterViewFlipper Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.AnalogClock Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.media.AudioTrack Constructor (android.media.AudioAttributes, android.media.AudioFormat, int, int, int)
+NO DOC BLOCK: android.widget.AutoCompleteTextView Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.transition.AutoTransition Constructor (android.content.Context, android.util.AttributeSet)
+NO DOC BLOCK: android.os.Bundle Constructor (android.os.PersistableBundle)
+NO DOC BLOCK: android.widget.Button Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.CalendarView Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.transition.ChangeBounds Constructor (android.content.Context, android.util.AttributeSet)
+NO DOC BLOCK: android.widget.CheckBox Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.preference.CheckBoxPreference Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.CheckedTextView Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.Chronometer Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.CompoundButton Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.DatePicker Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.preference.DialogPreference Constructor (android.content.Context)
+NO DOC BLOCK: android.preference.DialogPreference Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.EditText Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.preference.EditTextPreference Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.opengl.EGLObjectHandle Constructor (long)
+NO DOC BLOCK: android.widget.ExpandableListView Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.inputmethodservice.ExtractEditText Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.transition.Fade Constructor (android.content.Context, android.util.AttributeSet)
+NO DOC BLOCK: android.widget.FrameLayout Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.Gallery Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.gesture.GestureOverlayView Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.GridLayout Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.GridView Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.HorizontalScrollView Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.ImageButton Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.ImageView Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.inputmethodservice.KeyboardView Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.LinearLayout Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.preference.ListPreference Constructor (android.content.Context, android.util.AttributeSet, int)
+NO DOC BLOCK: android.preference.ListPreference Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.ListView Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.media.MediaCodecList Constructor (int)
+NO DOC BLOCK: android.app.MediaRouteButton Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.MultiAutoCompleteTextView Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.preference.MultiSelectListPreference Constructor (android.content.Context, android.util.AttributeSet, int)
+NO DOC BLOCK: android.preference.MultiSelectListPreference Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.NumberPicker Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.telephony.PhoneNumberFormattingTextWatcher Constructor (java.lang.String)
+NO DOC BLOCK: android.preference.Preference Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.preference.PreferenceCategory Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.preference.PreferenceGroup Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.ProgressBar Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.QuickContactBadge Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.RadioButton Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.RatingBar Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.animation.RectEvaluator Constructor (android.graphics.Rect)
+NO DOC BLOCK: android.widget.RelativeLayout Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.content.RestrictionEntry Constructor (int, java.lang.String)
+NO DOC BLOCK: android.content.RestrictionEntry Constructor (java.lang.String, int)
+NO DOC BLOCK: android.preference.RingtonePreference Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.transition.Scene Constructor (android.view.ViewGroup, android.view.View)
+NO DOC BLOCK: android.renderscript.ScriptC Constructor (android.renderscript.RenderScript, java.lang.String, byte[], byte[])
+NO DOC BLOCK: android.renderscript.ScriptC Constructor (long, android.renderscript.RenderScript)
+NO DOC BLOCK: android.widget.ScrollView Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.SearchView Constructor (android.content.Context, android.util.AttributeSet, int)
+NO DOC BLOCK: android.widget.SearchView Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.SeekBar Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.SlidingDrawer Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.Space Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.Spinner Constructor (android.content.Context, android.util.AttributeSet, int, int, int)
+NO DOC BLOCK: android.widget.StackView Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.view.SurfaceView Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.Switch Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.preference.SwitchPreference Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.speech.tts.SynthesisRequest Constructor (java.lang.CharSequence, android.os.Bundle)
+NO DOC BLOCK: android.widget.TabHost Constructor (android.content.Context, android.util.AttributeSet, int)
+NO DOC BLOCK: android.widget.TabHost Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.TabWidget Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.TextClock Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.view.textservice.TextInfo Constructor (java.lang.CharSequence, int, int, int, int)
+NO DOC BLOCK: android.view.TextureView Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.TextView Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.TimePicker Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.ToggleButton Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.transition.Transition Constructor (android.content.Context, android.util.AttributeSet)
+NO DOC BLOCK: android.transition.TransitionSet Constructor (android.content.Context, android.util.AttributeSet)
+NO DOC BLOCK: android.widget.TwoLineListItem Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.preference.TwoStatePreference Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.VideoView Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.view.View Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.view.ViewGroup Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.view.ViewStub Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.transition.Visibility Constructor (android.content.Context, android.util.AttributeSet)
+NO DOC BLOCK: android.webkit.WebResourceResponse Constructor (java.lang.String, java.lang.String, int, java.lang.String, java.util.Map<java.lang.String, java.lang.String>, java.io.InputStream)
+NO DOC BLOCK: android.webkit.WebView Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.widget.ZoomButton Constructor (android.content.Context, android.util.AttributeSet, int, int)
+NO DOC BLOCK: android.webkit.CookieManager Method acceptThirdPartyCookies(android.webkit.WebView)
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo Method addAction(android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction)
+NO DOC BLOCK: android.net.VpnService.Builder Method addAllowedApplication(java.lang.String)
+NO DOC BLOCK: android.app.ActivityManager Method addAppTask(android.app.Activity, android.content.Intent, android.app.ActivityManager.TaskDescription, android.graphics.Bitmap)
+NO DOC BLOCK: android.graphics.Path Method addArc(float, float, float, float, float, float)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method addCrossProfileIntentFilter(android.content.ComponentName, android.content.IntentFilter, int)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method addCrossProfileWidgetProvider(android.content.ComponentName, java.lang.String)
+NO DOC BLOCK: android.net.ConnectivityManager Method addDefaultNetworkActiveListener(android.net.ConnectivityManager.OnNetworkActiveListener)
+NO DOC BLOCK: android.net.VpnService.Builder Method addDisallowedApplication(java.lang.String)
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method addEarcon(java.lang.String, java.io.File)
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method addEarcon(java.lang.String, java.lang.String)
+NO DOC BLOCK: android.graphics.Path Method addOval(float, float, float, float, android.graphics.Path.Direction)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method addPersistentPreferredActivity(android.content.ComponentName, android.content.IntentFilter, android.content.ComponentName)
+NO DOC BLOCK: android.app.Notification.Builder Method addPerson(java.lang.String)
+NO DOC BLOCK: android.graphics.Path Method addRoundRect(float, float, float, float, float, float, android.graphics.Path.Direction)
+NO DOC BLOCK: android.graphics.Path Method addRoundRect(float, float, float, float, float[], android.graphics.Path.Direction)
+NO DOC BLOCK: android.app.FragmentTransaction Method addSharedElement(android.view.View, java.lang.String)
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method addSpeech(java.lang.CharSequence, java.io.File)
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method addSpeech(java.lang.CharSequence, java.lang.String, int)
+NO DOC BLOCK: android.transition.Transition Method addTarget(java.lang.Class)
+NO DOC BLOCK: android.transition.Transition Method addTarget(java.lang.String)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method addUserRestriction(android.content.ComponentName, java.lang.String)
+NO DOC BLOCK: android.net.VpnService.Builder Method allowBypass()
+NO DOC BLOCK: android.net.VpnService.Builder Method allowFamily(int)
+NO DOC BLOCK: android.text.SpannableStringBuilder Method append(java.lang.CharSequence, java.lang.Object, int)
+NO DOC BLOCK: android.graphics.drawable.Drawable Method applyTheme(android.content.res.Resources.Theme)
+NO DOC BLOCK: android.graphics.Path Method arcTo(float, float, float, float, float, float, boolean)
+NO DOC BLOCK: android.appwidget.AppWidgetManager Method bindAppWidgetIdIfAllowed(int, android.os.UserHandle, android.content.ComponentName, android.os.Bundle)
+NO DOC BLOCK: android.provider.DocumentsContract Method buildChildDocumentsUriUsingTree(android.net.Uri, java.lang.String)
+NO DOC BLOCK: android.provider.DocumentsContract Method buildDocumentUriUsingTree(android.net.Uri, java.lang.String)
+NO DOC BLOCK: android.provider.DocumentsContract Method buildTreeDocumentUri(java.lang.String, java.lang.String)
+NO DOC BLOCK: android.app.Instrumentation Method callActivityOnCreate(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)
+NO DOC BLOCK: android.app.Instrumentation Method callActivityOnPostCreate(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)
+NO DOC BLOCK: android.app.Instrumentation Method callActivityOnRestoreInstanceState(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)
+NO DOC BLOCK: android.app.Instrumentation Method callActivityOnSaveInstanceState(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)
+NO DOC BLOCK: android.graphics.drawable.Drawable Method canApplyTheme()
+NO DOC BLOCK: android.graphics.drawable.Drawable.ConstantState Method canApplyTheme()
+NO DOC BLOCK: android.service.notification.NotificationListenerService Method cancelNotification(java.lang.String)
+NO DOC BLOCK: android.service.notification.NotificationListenerService Method cancelNotification(java.lang.String, java.lang.String, int)
+NO DOC BLOCK: android.service.notification.NotificationListenerService Method cancelNotifications(java.lang.String[])
+NO DOC BLOCK: android.content.ContentResolver Method cancelSync(android.content.SyncRequest)
+NO DOC BLOCK: android.net.wifi.WifiManager Method cancelWps(android.net.wifi.WifiManager.WpsCallback)
+NO DOC BLOCK: android.transition.Transition Method canRemoveViews()
+NO DOC BLOCK: android.media.audiofx.Virtualizer Method canVirtualize(int, int)
+NO DOC BLOCK: android.nfc.cardemulation.CardEmulation Method categoryAllowsForegroundPreference(java.lang.String)
+NO DOC BLOCK: android.webkit.WebView Method clearClientCertPreferences(java.lang.Runnable)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method clearCrossProfileIntentFilters(android.content.ComponentName)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method clearDeviceOwnerApp(java.lang.String)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method clearPackagePersistentPreferredActivities(android.content.ComponentName, java.lang.String)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method clearUserRestriction(android.content.ComponentName, java.lang.String)
+NO DOC BLOCK: android.app.UiAutomation Method clearWindowAnimationFrameStats()
+NO DOC BLOCK: android.app.UiAutomation Method clearWindowContentFrameStats(int)
+NO DOC BLOCK: android.view.View Method computeSystemWindowInsets(android.view.WindowInsets, android.graphics.Rect)
+NO DOC BLOCK: android.view.WindowInsets Method consumeStableInsets()
+NO DOC BLOCK: android.renderscript.Allocation Method copy1DRangeFrom(int, int, java.lang.Object)
+NO DOC BLOCK: android.renderscript.Allocation Method copy1DRangeFromUnchecked(int, int, java.lang.Object)
+NO DOC BLOCK: android.renderscript.Allocation Method copy2DRangeFrom(int, int, int, int, java.lang.Object)
+NO DOC BLOCK: android.renderscript.Allocation Method copyFrom(java.lang.Object)
+NO DOC BLOCK: android.renderscript.Allocation Method copyFromUnchecked(java.lang.Object)
+NO DOC BLOCK: android.renderscript.Allocation Method copyTo(java.lang.Object)
+NO DOC BLOCK: android.app.Dialog Method create()
+NO DOC BLOCK: android.media.MediaPlayer Method create(android.content.Context, android.net.Uri, android.view.SurfaceHolder, android.media.AudioAttributes, int)
+NO DOC BLOCK: android.media.MediaPlayer Method create(android.content.Context, int, android.media.AudioAttributes, int)
+NO DOC BLOCK: android.renderscript.RenderScript Method create(android.content.Context, android.renderscript.RenderScript.ContextType, int)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method createAndInitializeUser(android.content.ComponentName, java.lang.String, java.lang.String, android.content.ComponentName, android.os.Bundle)
+NO DOC BLOCK: android.app.KeyguardManager Method createConfirmDeviceCredentialIntent(java.lang.CharSequence, java.lang.CharSequence)
+NO DOC BLOCK: android.provider.DocumentsContract Method createDocument(android.content.ContentResolver, android.net.Uri, java.lang.String, java.lang.String)
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecCapabilities Method createFromProfileLevel(java.lang.String, int, int)
+NO DOC BLOCK: android.graphics.drawable.Drawable Method createFromXml(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.content.res.Resources.Theme)
+NO DOC BLOCK: android.graphics.drawable.Drawable Method createFromXmlInner(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.util.AttributeSet, android.content.res.Resources.Theme)
+NO DOC BLOCK: android.webkit.WebView Method createPrintDocumentAdapter(java.lang.String)
+NO DOC BLOCK: android.webkit.WebView Method createPrintDocumentAdapter()
+NO DOC BLOCK: android.nfc.NdefRecord Method createTextRecord(java.lang.String, java.lang.String)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method createUser(android.content.ComponentName, java.lang.String)
+NO DOC BLOCK: android.hardware.display.DisplayManager Method createVirtualDisplay(java.lang.String, int, int, int, android.view.Surface, int, android.hardware.display.VirtualDisplay.Callback, android.os.Handler)
+NO DOC BLOCK: android.renderscript.Type Method createX(android.renderscript.RenderScript, android.renderscript.Element, int)
+NO DOC BLOCK: android.renderscript.Type Method createXY(android.renderscript.RenderScript, android.renderscript.Element, int, int)
+NO DOC BLOCK: android.renderscript.Type Method createXYZ(android.renderscript.RenderScript, android.renderscript.Element, int, int, int)
+NO DOC BLOCK: android.view.View Method dispatchNestedFling(float, float, boolean)
+NO DOC BLOCK: android.view.View Method dispatchNestedPreFling(float, float)
+NO DOC BLOCK: android.view.View Method dispatchNestedPreScroll(int, int, int[], int[])
+NO DOC BLOCK: android.view.View Method dispatchNestedScroll(int, int, int, int, int[])
+NO DOC BLOCK: android.telephony.SmsManager Method downloadMultimediaMessage(android.content.Context, java.lang.String, android.net.Uri, android.os.Bundle, android.app.PendingIntent)
+NO DOC BLOCK: android.view.View Method drawableHotspotChanged(float, float)
+NO DOC BLOCK: android.graphics.Canvas Method drawArc(float, float, float, float, float, float, boolean, android.graphics.Paint)
+NO DOC BLOCK: android.graphics.Canvas Method drawOval(float, float, float, float, android.graphics.Paint)
+NO DOC BLOCK: android.graphics.Canvas Method drawRoundRect(float, float, float, float, float, float, android.graphics.Paint)
+NO DOC BLOCK: android.webkit.WebView Method enableSlowWholeDocumentDraw()
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method enableSystemApp(android.content.ComponentName, android.content.Intent)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method enableSystemApp(android.content.ComponentName, java.lang.String)
+NO DOC BLOCK: android.speech.tts.SynthesisCallback Method error(int)
+NO DOC BLOCK: android.transition.Transition Method excludeTarget(java.lang.String, boolean)
+NO DOC BLOCK: android.app.UiAutomation Method executeShellCommand(java.lang.String)
+NO DOC BLOCK: android.media.MediaCodecList Method findDecoderForFormat(android.media.MediaFormat)
+NO DOC BLOCK: android.media.MediaCodecList Method findEncoderForFormat(android.media.MediaFormat)
+NO DOC BLOCK: android.accessibilityservice.AccessibilityService Method findFocus(int)
+NO DOC BLOCK: android.app.UiAutomation Method findFocus(int)
+NO DOC BLOCK: android.app.Activity Method finishAfterTransition()
+NO DOC BLOCK: android.app.Activity Method finishAndRemoveTask()
+NO DOC BLOCK: android.widget.AbsListView Method fling(int)
+NO DOC BLOCK: android.webkit.CookieManager Method flush()
+NO DOC BLOCK: android.media.audiofx.Virtualizer Method forceVirtualizationMode(int)
+NO DOC BLOCK: android.renderscript.ScriptIntrinsic3DLUT Method forEach(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)
+NO DOC BLOCK: android.renderscript.ScriptIntrinsicBlur Method forEach(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)
+NO DOC BLOCK: android.renderscript.ScriptIntrinsicColorMatrix Method forEach(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)
+NO DOC BLOCK: android.renderscript.ScriptIntrinsicConvolve3x3 Method forEach(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)
+NO DOC BLOCK: android.renderscript.ScriptIntrinsicConvolve5x5 Method forEach(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)
+NO DOC BLOCK: android.renderscript.ScriptIntrinsicHistogram Method forEach(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)
+NO DOC BLOCK: android.renderscript.ScriptIntrinsicLUT Method forEach(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)
+NO DOC BLOCK: android.renderscript.ScriptIntrinsicHistogram Method forEach_Dot(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)
+NO DOC BLOCK: android.renderscript.ScriptIntrinsicBlend Method forEachAdd(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)
+NO DOC BLOCK: android.renderscript.ScriptIntrinsicBlend Method forEachClear(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)
+NO DOC BLOCK: android.renderscript.ScriptIntrinsicBlend Method forEachDst(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)
+NO DOC BLOCK: android.renderscript.ScriptIntrinsicBlend Method forEachDstAtop(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)
+NO DOC BLOCK: android.renderscript.ScriptIntrinsicBlend Method forEachDstIn(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)
+NO DOC BLOCK: android.renderscript.ScriptIntrinsicBlend Method forEachDstOut(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)
+NO DOC BLOCK: android.renderscript.ScriptIntrinsicBlend Method forEachDstOver(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)
+NO DOC BLOCK: android.renderscript.ScriptIntrinsicBlend Method forEachMultiply(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)
+NO DOC BLOCK: android.renderscript.ScriptIntrinsicBlend Method forEachSrc(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)
+NO DOC BLOCK: android.renderscript.ScriptIntrinsicBlend Method forEachSrcAtop(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)
+NO DOC BLOCK: android.renderscript.ScriptIntrinsicBlend Method forEachSrcIn(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)
+NO DOC BLOCK: android.renderscript.ScriptIntrinsicBlend Method forEachSrcOut(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)
+NO DOC BLOCK: android.renderscript.ScriptIntrinsicBlend Method forEachSrcOver(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)
+NO DOC BLOCK: android.renderscript.ScriptIntrinsicBlend Method forEachSubtract(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)
+NO DOC BLOCK: android.renderscript.ScriptIntrinsicBlend Method forEachXor(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)
+NO DOC BLOCK: java.util.Locale Method forLanguageTag(java.lang.String)
+NO DOC BLOCK: android.telephony.PhoneNumberUtils Method formatNumber(java.lang.String, java.lang.String)
+NO DOC BLOCK: android.telephony.PhoneNumberUtils Method formatNumber(java.lang.String, java.lang.String, java.lang.String)
+NO DOC BLOCK: android.telephony.PhoneNumberUtils Method formatNumber(java.lang.String)
+NO DOC BLOCK: android.telephony.PhoneNumberUtils Method formatNumber(android.text.Editable, int)
+NO DOC BLOCK: android.telephony.PhoneNumberUtils Method formatNumberToE164(java.lang.String, java.lang.String)
+NO DOC BLOCK: android.media.AudioManager Method generateAudioSessionId()
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method getAccountTypesWithManagementDisabled()
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo Method getActionList()
+NO DOC BLOCK: android.service.notification.NotificationListenerService Method getActiveNotifications(java.lang.String[])
+NO DOC BLOCK: android.nfc.cardemulation.CardEmulation Method getAidsForService(android.content.ComponentName, java.lang.String)
+NO DOC BLOCK: android.net.ConnectivityManager Method getAllNetworks()
+NO DOC BLOCK: android.app.Fragment Method getAllowEnterTransitionOverlap()
+NO DOC BLOCK: android.view.Window Method getAllowEnterTransitionOverlap()
+NO DOC BLOCK: android.app.Fragment Method getAllowReturnTransitionOverlap()
+NO DOC BLOCK: android.view.Window Method getAllowReturnTransitionOverlap()
+NO DOC BLOCK: android.hardware.usb.UsbInterface Method getAlternateSetting()
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method getApplicationRestrictions(android.content.ComponentName, java.lang.String)
+NO DOC BLOCK: android.app.ActivityManager Method getAppTasks()
+NO DOC BLOCK: android.app.ActivityManager Method getAppTaskThumbnailSize()
+NO DOC BLOCK: android.view.Display Method getAppVsyncOffsetNanos()
+NO DOC BLOCK: android.net.nsd.NsdServiceInfo Method getAttributes()
+NO DOC BLOCK: android.media.Ringtone Method getAudioAttributes()
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecCapabilities Method getAudioCapabilities()
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method getAutoTimeRequired()
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method getAvailableLanguages()
+NO DOC BLOCK: android.view.View Method getBackgroundTintList()
+NO DOC BLOCK: android.view.View Method getBackgroundTintMode()
+NO DOC BLOCK: android.bluetooth.BluetoothAdapter Method getBluetoothLeAdvertiser()
+NO DOC BLOCK: android.bluetooth.BluetoothAdapter Method getBluetoothLeScanner()
+NO DOC BLOCK: android.widget.CompoundButton Method getButtonTintList()
+NO DOC BLOCK: android.widget.CompoundButton Method getButtonTintMode()
+NO DOC BLOCK: android.telephony.SmsManager Method getCarrierConfigValues()
+NO DOC BLOCK: android.content.res.TypedArray Method getChangingConfigurations()
+NO DOC BLOCK: android.media.AudioFormat Method getChannelMask()
+NO DOC BLOCK: android.view.textservice.TextInfo Method getCharSequence()
+NO DOC BLOCK: android.speech.tts.SynthesisRequest Method getCharSequenceText()
+NO DOC BLOCK: android.widget.CheckedTextView Method getCheckMarkTintList()
+NO DOC BLOCK: android.widget.CheckedTextView Method getCheckMarkTintMode()
+NO DOC BLOCK: android.view.View Method getClipToOutline()
+NO DOC BLOCK: android.view.ViewGroup Method getClipToPadding()
+NO DOC BLOCK: android.content.Context Method getCodeCacheDir()
+NO DOC BLOCK: android.content.ContextWrapper Method getCodeCacheDir()
+NO DOC BLOCK: android.test.mock.MockContext Method getCodeCacheDir()
+NO DOC BLOCK: android.media.MediaCodecList Method getCodecInfos()
+NO DOC BLOCK: android.widget.EdgeEffect Method getColor()
+NO DOC BLOCK: android.graphics.drawable.Drawable Method getColorFilter()
+NO DOC BLOCK: android.hardware.usb.UsbDevice Method getConfiguration(int)
+NO DOC BLOCK: android.hardware.usb.UsbDevice Method getConfigurationCount()
+NO DOC BLOCK: android.app.Activity Method getContentScene()
+NO DOC BLOCK: android.view.Window Method getContentScene()
+NO DOC BLOCK: android.app.Activity Method getContentTransitionManager()
+NO DOC BLOCK: android.media.Image Method getCropRect()
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method getCrossProfileCallerIdDisabled(android.content.ComponentName)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method getCrossProfileWidgetProviders(android.content.ComponentName)
+NO DOC BLOCK: android.service.notification.NotificationListenerService Method getCurrentInterruptionFilter()
+NO DOC BLOCK: android.service.notification.NotificationListenerService Method getCurrentListenerHints()
+NO DOC BLOCK: android.service.notification.NotificationListenerService Method getCurrentRanking()
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecCapabilities Method getDefaultFormat()
+NO DOC BLOCK: android.hardware.SensorManager Method getDefaultSensor(int, boolean)
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method getDefaultVoice()
+NO DOC BLOCK: android.graphics.drawable.Drawable Method getDirtyBounds()
+NO DOC BLOCK: java.util.Locale Method getDisplayScript()
+NO DOC BLOCK: java.util.Locale Method getDisplayScript(java.util.Locale)
+NO DOC BLOCK: android.content.Context Method getDrawable(int)
+NO DOC BLOCK: android.content.res.Resources Method getDrawable(int, android.content.res.Resources.Theme)
+NO DOC BLOCK: android.content.res.Resources.Theme Method getDrawable(int)
+NO DOC BLOCK: android.content.res.Resources Method getDrawableForDensity(int, int, android.content.res.Resources.Theme)
+NO DOC BLOCK: android.app.ActionBar Method getElevation()
+NO DOC BLOCK: android.view.View Method getElevation()
+NO DOC BLOCK: android.widget.PopupWindow Method getElevation()
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecCapabilities Method getEncoderCapabilities()
+NO DOC BLOCK: android.media.AudioFormat Method getEncoding()
+NO DOC BLOCK: android.app.Fragment Method getEnterTransition()
+NO DOC BLOCK: android.view.Window Method getEnterTransition()
+NO DOC BLOCK: android.transition.Transition Method getEpicenter()
+NO DOC BLOCK: android.transition.Transition Method getEpicenterCallback()
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo Method getError()
+NO DOC BLOCK: android.app.Fragment Method getExitTransition()
+NO DOC BLOCK: android.view.Window Method getExitTransition()
+NO DOC BLOCK: java.util.Locale Method getExtension(char)
+NO DOC BLOCK: java.util.Locale Method getExtensionKeys()
+NO DOC BLOCK: android.content.Context Method getExternalMediaDirs()
+NO DOC BLOCK: android.content.ContextWrapper Method getExternalMediaDirs()
+NO DOC BLOCK: android.test.mock.MockContext Method getExternalMediaDirs()
+NO DOC BLOCK: android.os.Environment Method getExternalStorageState(java.io.File)
+NO DOC BLOCK: android.media.MediaFormat Method getFeatureEnabled(java.lang.String)
+NO DOC BLOCK: android.widget.DatePicker Method getFirstDayOfWeek()
+NO DOC BLOCK: android.graphics.Paint Method getFontFeatureSettings()
+NO DOC BLOCK: android.widget.TextView Method getFontFeatureSettings()
+NO DOC BLOCK: android.widget.FrameLayout Method getForegroundTintList()
+NO DOC BLOCK: android.widget.FrameLayout Method getForegroundTintMode()
+NO DOC BLOCK: android.net.wifi.WifiInfo Method getFrequency()
+NO DOC BLOCK: android.graphics.drawable.RotateDrawable Method getFromDegrees()
+NO DOC BLOCK: android.graphics.drawable.GradientDrawable Method getGradientRadius()
+NO DOC BLOCK: android.service.notification.StatusBarNotification Method getGroupKey()
+NO DOC BLOCK: android.app.ActionBar Method getHideOffset()
+NO DOC BLOCK: android.widget.ImageView Method getImageTintList()
+NO DOC BLOCK: android.widget.ImageView Method getImageTintMode()
+NO DOC BLOCK: android.widget.ProgressBar Method getIndeterminateTintList()
+NO DOC BLOCK: android.widget.ProgressBar Method getIndeterminateTintMode()
+NO DOC BLOCK: android.media.MediaCodec Method getInputBuffer(int)
+NO DOC BLOCK: android.media.MediaCodec Method getInputFormat()
+NO DOC BLOCK: android.media.MediaCodec Method getInputImage(int)
+NO DOC BLOCK: android.inputmethodservice.InputMethodService Method getInputMethodWindowRecommendedHeight()
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method getInstalledCaCerts(android.content.ComponentName)
+NO DOC BLOCK: android.appwidget.AppWidgetManager Method getInstalledProvidersForProfile(android.os.UserHandle)
+NO DOC BLOCK: android.os.BatteryManager Method getIntProperty(int)
+NO DOC BLOCK: android.content.RestrictionEntry Method getIntValue()
+NO DOC BLOCK: android.content.pm.PackageManager Method getLeanbackLaunchIntentForPackage(java.lang.String)
+NO DOC BLOCK: android.test.mock.MockPackageManager Method getLeanbackLaunchIntentForPackage(java.lang.String)
+NO DOC BLOCK: android.graphics.Paint Method getLetterSpacing()
+NO DOC BLOCK: android.widget.TextView Method getLetterSpacing()
+NO DOC BLOCK: android.net.ConnectivityManager Method getLinkProperties(android.net.Network)
+NO DOC BLOCK: android.os.BatteryManager Method getLongProperty(int)
+NO DOC BLOCK: android.hardware.usb.UsbDevice Method getManufacturerName()
+NO DOC BLOCK: android.text.InputFilter.LengthFilter Method getMax()
+NO DOC BLOCK: android.hardware.Sensor Method getMaxDelay()
+NO DOC BLOCK: android.widget.EdgeEffect Method getMaxHeight()
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo Method getMaxTextLength()
+NO DOC BLOCK: android.app.Activity Method getMediaController()
+NO DOC BLOCK: android.view.Window Method getMediaController()
+NO DOC BLOCK: android.media.RemoteControlClient Method getMediaSession()
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecCapabilities Method getMimeType()
+NO DOC BLOCK: android.webkit.WebSettings Method getMixedContentMode()
+NO DOC BLOCK: android.transition.Visibility Method getMode()
+NO DOC BLOCK: android.hardware.usb.UsbInterface Method getName()
+NO DOC BLOCK: android.opengl.EGLObjectHandle Method getNativeHandle()
+NO DOC BLOCK: android.view.Window Method getNavigationBarColor()
+NO DOC BLOCK: android.view.ViewGroup Method getNestedScrollAxes()
+NO DOC BLOCK: android.net.ConnectivityManager Method getNetworkCapabilities(android.net.Network)
+NO DOC BLOCK: android.net.ConnectivityManager Method getNetworkInfo(android.net.Network)
+NO DOC BLOCK: android.app.AlarmManager Method getNextAlarmClock()
+NO DOC BLOCK: android.content.Context Method getNoBackupFilesDir()
+NO DOC BLOCK: android.content.ContextWrapper Method getNoBackupFilesDir()
+NO DOC BLOCK: android.test.mock.MockContext Method getNoBackupFilesDir()
+NO DOC BLOCK: android.graphics.drawable.Drawable Method getOutline(android.graphics.Outline)
+NO DOC BLOCK: android.graphics.drawable.shapes.Shape Method getOutline(android.graphics.Outline)
+NO DOC BLOCK: android.view.View Method getOutlineProvider()
+NO DOC BLOCK: android.media.MediaCodec Method getOutputBuffer(int)
+NO DOC BLOCK: android.media.MediaCodec Method getOutputFormat(int)
+NO DOC BLOCK: android.media.MediaCodec Method getOutputImage(int)
+NO DOC BLOCK: android.content.pm.PackageManager Method getPackageInstaller()
+NO DOC BLOCK: android.test.mock.MockPackageManager Method getPackageInstaller()
+NO DOC BLOCK: android.graphics.drawable.LayerDrawable Method getPaddingMode()
+NO DOC BLOCK: android.transition.Transition Method getPathMotion()
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method getPermittedAccessibilityServices(android.content.ComponentName)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method getPermittedInputMethods(android.content.ComponentName)
+NO DOC BLOCK: android.graphics.drawable.RotateDrawable Method getPivotX()
+NO DOC BLOCK: android.graphics.drawable.RotateDrawable Method getPivotY()
+NO DOC BLOCK: android.view.Display Method getPresentationDeadlineNanos()
+NO DOC BLOCK: android.accounts.AccountManager Method getPreviousName(android.accounts.Account)
+NO DOC BLOCK: android.net.ConnectivityManager Method getProcessDefaultNetwork()
+NO DOC BLOCK: android.hardware.usb.UsbDevice Method getProductName()
+NO DOC BLOCK: android.appwidget.AppWidgetProviderInfo Method getProfile()
+NO DOC BLOCK: android.widget.ProgressBar Method getProgressBackgroundTintList()
+NO DOC BLOCK: android.widget.ProgressBar Method getProgressBackgroundTintMode()
+NO DOC BLOCK: android.widget.ProgressBar Method getProgressTintList()
+NO DOC BLOCK: android.widget.ProgressBar Method getProgressTintMode()
+NO DOC BLOCK: android.transition.Transition Method getPropagation()
+NO DOC BLOCK: android.webkit.WebResourceResponse Method getReasonPhrase()
+NO DOC BLOCK: android.app.Fragment Method getReenterTransition()
+NO DOC BLOCK: android.view.Window Method getReenterTransition()
+NO DOC BLOCK: java.util.concurrent.ScheduledThreadPoolExecutor Method getRemoveOnCancelPolicy()
+NO DOC BLOCK: android.hardware.Sensor Method getReportingMode()
+NO DOC BLOCK: android.content.res.Resources.Theme Method getResources()
+NO DOC BLOCK: android.webkit.WebResourceResponse Method getResponseHeaders()
+NO DOC BLOCK: android.app.Fragment Method getReturnTransition()
+NO DOC BLOCK: android.view.Window Method getReturnTransition()
+NO DOC BLOCK: android.media.AudioFormat Method getSampleRate()
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method getScreenCaptureDisabled(android.content.ComponentName)
+NO DOC BLOCK: java.util.Locale Method getScript()
+NO DOC BLOCK: android.widget.ProgressBar Method getSecondaryProgressTintList()
+NO DOC BLOCK: android.widget.ProgressBar Method getSecondaryProgressTintMode()
+NO DOC BLOCK: android.media.MediaPlayer Method getSelectedTrack(int)
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo.CollectionInfo Method getSelectionMode()
+NO DOC BLOCK: android.hardware.usb.UsbDevice Method getSerialNumber()
+NO DOC BLOCK: android.app.Fragment Method getSharedElementEnterTransition()
+NO DOC BLOCK: android.view.Window Method getSharedElementEnterTransition()
+NO DOC BLOCK: android.view.Window Method getSharedElementExitTransition()
+NO DOC BLOCK: android.view.Window Method getSharedElementReenterTransition()
+NO DOC BLOCK: android.app.Fragment Method getSharedElementReturnTransition()
+NO DOC BLOCK: android.view.Window Method getSharedElementReturnTransition()
+NO DOC BLOCK: android.view.Window Method getSharedElementsUseOverlay()
+NO DOC BLOCK: android.widget.TextView Method getShowSoftInputOnFocus()
+NO DOC BLOCK: android.widget.Switch Method getShowText()
+NO DOC BLOCK: android.os.Bundle Method getSize(java.lang.String)
+NO DOC BLOCK: android.os.Bundle Method getSizeF(java.lang.String)
+NO DOC BLOCK: android.media.audiofx.Virtualizer Method getSpeakerAngles(int, int, int[])
+NO DOC BLOCK: android.widget.AbsSeekBar Method getSplitTrack()
+NO DOC BLOCK: android.widget.Switch Method getSplitTrack()
+NO DOC BLOCK: android.view.WindowInsets Method getStableInsetBottom()
+NO DOC BLOCK: android.view.WindowInsets Method getStableInsetLeft()
+NO DOC BLOCK: android.view.WindowInsets Method getStableInsetRight()
+NO DOC BLOCK: android.view.WindowInsets Method getStableInsetTop()
+NO DOC BLOCK: android.view.View Method getStateListAnimator()
+NO DOC BLOCK: android.view.Window Method getStatusBarColor()
+NO DOC BLOCK: android.webkit.WebResourceResponse Method getStatusCode()
+NO DOC BLOCK: android.view.Display Method getSupportedRefreshRates()
+NO DOC BLOCK: android.media.MediaRecorder Method getSurface()
+NO DOC BLOCK: android.transition.Transition Method getTargetNames()
+NO DOC BLOCK: android.transition.Transition Method getTargetTypes()
+NO DOC BLOCK: android.widget.AbsSeekBar Method getThumbTintList()
+NO DOC BLOCK: android.widget.AbsSeekBar Method getThumbTintMode()
+NO DOC BLOCK: android.graphics.drawable.RotateDrawable Method getToDegrees()
+NO DOC BLOCK: android.view.ViewGroup Method getTouchscreenBlocksFocus()
+NO DOC BLOCK: android.transition.TransitionSet Method getTransitionAt(int)
+NO DOC BLOCK: android.view.Window Method getTransitionBackgroundFadeDuration()
+NO DOC BLOCK: android.transition.TransitionSet Method getTransitionCount()
+NO DOC BLOCK: android.view.Window Method getTransitionManager()
+NO DOC BLOCK: android.view.View Method getTransitionName()
+NO DOC BLOCK: android.view.View Method getTranslationZ()
+NO DOC BLOCK: android.provider.DocumentsContract Method getTreeDocumentId(android.net.Uri)
+NO DOC BLOCK: android.content.res.TypedArray Method getType(int)
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Event Method getTypeLabel(android.content.res.Resources, int, java.lang.CharSequence)
+NO DOC BLOCK: java.util.Locale Method getUnicodeLocaleAttributes()
+NO DOC BLOCK: java.util.Locale Method getUnicodeLocaleKeys()
+NO DOC BLOCK: java.util.Locale Method getUnicodeLocaleType(java.lang.String)
+NO DOC BLOCK: android.service.notification.StatusBarNotification Method getUser()
+NO DOC BLOCK: android.content.pm.PackageManager Method getUserBadgedDrawableForDensity(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)
+NO DOC BLOCK: android.test.mock.MockPackageManager Method getUserBadgedDrawableForDensity(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)
+NO DOC BLOCK: android.content.pm.PackageManager Method getUserBadgedIcon(android.graphics.drawable.Drawable, android.os.UserHandle)
+NO DOC BLOCK: android.test.mock.MockPackageManager Method getUserBadgedIcon(android.graphics.drawable.Drawable, android.os.UserHandle)
+NO DOC BLOCK: android.content.pm.PackageManager Method getUserBadgedLabel(java.lang.CharSequence, android.os.UserHandle)
+NO DOC BLOCK: android.test.mock.MockPackageManager Method getUserBadgedLabel(java.lang.CharSequence, android.os.UserHandle)
+NO DOC BLOCK: android.os.UserManager Method getUserProfiles()
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecCapabilities Method getVideoCapabilities()
+NO DOC BLOCK: android.media.audiofx.Virtualizer Method getVirtualizationMode()
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method getVoice()
+NO DOC BLOCK: android.speech.tts.SynthesisRequest Method getVoiceName()
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method getVoices()
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo Method getWindow()
+NO DOC BLOCK: android.app.UiAutomation Method getWindowAnimationFrameStats()
+NO DOC BLOCK: android.app.UiAutomation Method getWindowContentFrameStats(int)
+NO DOC BLOCK: android.accessibilityservice.AccessibilityService Method getWindows()
+NO DOC BLOCK: android.app.UiAutomation Method getWindows()
+NO DOC BLOCK: android.view.View Method getZ()
+NO DOC BLOCK: android.view.accessibility.CaptioningManager.CaptionStyle Method hasBackgroundColor()
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method hasCaCertInstalled(android.content.ComponentName, byte[])
+NO DOC BLOCK: android.view.accessibility.CaptioningManager.CaptionStyle Method hasEdgeColor()
+NO DOC BLOCK: android.view.accessibility.CaptioningManager.CaptionStyle Method hasEdgeType()
+NO DOC BLOCK: android.speech.tts.SynthesisCallback Method hasFinished()
+NO DOC BLOCK: android.view.accessibility.CaptioningManager.CaptionStyle Method hasForegroundColor()
+NO DOC BLOCK: android.view.View Method hasNestedScrollingParent()
+NO DOC BLOCK: java.util.concurrent.locks.AbstractQueuedLongSynchronizer Method hasQueuedPredecessors()
+NO DOC BLOCK: java.util.concurrent.locks.AbstractQueuedSynchronizer Method hasQueuedPredecessors()
+NO DOC BLOCK: android.view.WindowInsets Method hasStableInsets()
+NO DOC BLOCK: android.speech.tts.SynthesisCallback Method hasStarted()
+NO DOC BLOCK: android.os.UserManager Method hasUserRestriction(java.lang.String)
+NO DOC BLOCK: android.view.accessibility.CaptioningManager.CaptionStyle Method hasWindowColor()
+NO DOC BLOCK: android.telephony.TelephonyManager Method iccCloseLogicalChannel(int)
+NO DOC BLOCK: android.telephony.TelephonyManager Method iccExchangeSimIO(int, int, int, int, int, java.lang.String)
+NO DOC BLOCK: android.telephony.TelephonyManager Method iccOpenLogicalChannel(java.lang.String)
+NO DOC BLOCK: android.telephony.TelephonyManager Method iccTransmitApduBasicChannel(int, int, int, int, int, java.lang.String)
+NO DOC BLOCK: android.telephony.TelephonyManager Method iccTransmitApduLogicalChannel(int, int, int, int, int, int, java.lang.String)
+NO DOC BLOCK: android.util.ArrayMap Method indexOfKey(java.lang.Object)
+NO DOC BLOCK: android.graphics.drawable.Drawable Method inflate(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.util.AttributeSet, android.content.res.Resources.Theme)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method installCaCert(android.content.ComponentName, byte[])
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method installKeyPair(android.content.ComponentName, java.security.PrivateKey, java.security.cert.Certificate, java.lang.String)
+NO DOC BLOCK: android.view.View Method invalidateOutline()
+NO DOC BLOCK: android.nfc.NfcAdapter Method invokeBeam(android.app.Activity)
+NO DOC BLOCK: android.net.wifi.WifiManager Method is5GHzBandSupported()
+NO DOC BLOCK: android.view.View Method isAccessibilityFocused()
+NO DOC BLOCK: android.graphics.Matrix Method isAffine()
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method isApplicationHidden(android.content.ComponentName, java.lang.String)
+NO DOC BLOCK: android.view.MotionEvent Method isButtonPressed(int)
+NO DOC BLOCK: android.provider.DocumentsProvider Method isChildDocument(java.lang.String, java.lang.String)
+NO DOC BLOCK: android.view.WindowInsets Method isConsumed()
+NO DOC BLOCK: android.graphics.Path Method isConvex()
+NO DOC BLOCK: android.net.ConnectivityManager Method isDefaultNetworkActive()
+NO DOC BLOCK: android.net.wifi.WifiManager Method isDeviceToApRttSupported()
+NO DOC BLOCK: android.graphics.Paint Method isElegantTextHeight()
+NO DOC BLOCK: android.net.wifi.WifiManager Method isEnhancedPowerReportingSupported()
+NO DOC BLOCK: android.provider.ContactsContract.Contacts Method isEnterpriseContactId(long)
+NO DOC BLOCK: android.os.Environment Method isExternalStorageEmulated(java.io.File)
+NO DOC BLOCK: android.os.Environment Method isExternalStorageRemovable(java.io.File)
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecCapabilities Method isFeatureRequired(java.lang.String)
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecCapabilities Method isFormatSupported(android.media.MediaFormat)
+NO DOC BLOCK: android.app.ActionBar Method isHideOnContentScrollEnabled()
+NO DOC BLOCK: android.view.View Method isImportantForAccessibility()
+NO DOC BLOCK: android.app.ActivityManager Method isInLockTaskMode()
+NO DOC BLOCK: android.telephony.PhoneNumberUtils Method isLocalEmergencyNumber(android.content.Context, java.lang.String)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method isLockTaskPermitted(java.lang.String)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method isMasterVolumeMuted(android.content.ComponentName)
+NO DOC BLOCK: android.bluetooth.BluetoothAdapter Method isMultipleAdvertisementSupported()
+NO DOC BLOCK: android.view.View Method isNestedScrollingEnabled()
+NO DOC BLOCK: android.bluetooth.BluetoothAdapter Method isOffloadedFilteringSupported()
+NO DOC BLOCK: android.bluetooth.BluetoothAdapter Method isOffloadedScanBatchingSupported()
+NO DOC BLOCK: android.content.res.ColorStateList Method isOpaque()
+NO DOC BLOCK: android.net.wifi.WifiManager Method isP2pSupported()
+NO DOC BLOCK: android.graphics.drawable.RotateDrawable Method isPivotXRelative()
+NO DOC BLOCK: android.graphics.drawable.RotateDrawable Method isPivotYRelative()
+NO DOC BLOCK: android.os.PowerManager Method isPowerSaveMode()
+NO DOC BLOCK: android.net.wifi.WifiManager Method isPreferredNetworkOffloadSupported()
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method isProfileOwnerApp(java.lang.String)
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo Method isSelected()
+NO DOC BLOCK: android.telephony.TelephonyManager Method isSmsCapable()
+NO DOC BLOCK: android.net.wifi.WifiManager Method isTdlsSupported()
+NO DOC BLOCK: android.view.ViewGroup Method isTransitionGroup()
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method isUninstallBlocked(android.content.ComponentName, java.lang.String)
+NO DOC BLOCK: android.net.http.X509TrustManagerExtensions Method isUserAddedCertificate(java.security.cert.X509Certificate)
+NO DOC BLOCK: android.telephony.PhoneNumberUtils Method isVoiceMailNumber(java.lang.String)
+NO DOC BLOCK: android.media.AudioManager Method isVolumeFixed()
+NO DOC BLOCK: android.os.PowerManager Method isWakeLockLevelSupported(int)
+NO DOC BLOCK: android.hardware.Sensor Method isWakeUpSensor()
+NO DOC BLOCK: android.appwidget.AppWidgetProviderInfo Method loadIcon(android.content.Context, int)
+NO DOC BLOCK: android.appwidget.AppWidgetProviderInfo Method loadLabel(android.content.pm.PackageManager)
+NO DOC BLOCK: android.appwidget.AppWidgetProviderInfo Method loadPreviewImage(android.content.Context, int)
+NO DOC BLOCK: android.animation.AnimatorInflater Method loadStateListAnimator(android.content.Context, int)
+NO DOC BLOCK: android.app.ActivityOptions Method makeSceneTransitionAnimation(android.app.Activity, android.util.Pair<android.view.View, java.lang.String>...)
+NO DOC BLOCK: android.app.ActivityOptions Method makeSceneTransitionAnimation(android.app.Activity, android.view.View, java.lang.String)
+NO DOC BLOCK: android.app.ActivityOptions Method makeTaskLaunchBehind()
+NO DOC BLOCK: android.graphics.drawable.Drawable.ConstantState Method newDrawable(android.content.res.Resources, android.content.res.Resources.Theme)
+NO DOC BLOCK: android.telephony.PhoneNumberUtils Method normalizeNumber(java.lang.String)
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo.CollectionInfo Method obtain(int, int, boolean, int)
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo Method obtain(int, int, int, int, boolean, boolean)
+NO DOC BLOCK: android.animation.ObjectAnimator Method ofArgb(T, android.util.Property<T, java.lang.Integer>, int...)
+NO DOC BLOCK: android.animation.ObjectAnimator Method ofArgb(java.lang.Object, java.lang.String, int...)
+NO DOC BLOCK: android.animation.ValueAnimator Method ofArgb(int...)
+NO DOC BLOCK: android.animation.ObjectAnimator Method ofFloat(T, android.util.Property<T, java.lang.Float>, android.util.Property<T, java.lang.Float>, android.graphics.Path)
+NO DOC BLOCK: android.animation.ObjectAnimator Method ofFloat(java.lang.Object, java.lang.String, java.lang.String, android.graphics.Path)
+NO DOC BLOCK: android.animation.ObjectAnimator Method ofInt(T, android.util.Property<T, java.lang.Integer>, android.util.Property<T, java.lang.Integer>, android.graphics.Path)
+NO DOC BLOCK: android.animation.ObjectAnimator Method ofInt(java.lang.Object, java.lang.String, java.lang.String, android.graphics.Path)
+NO DOC BLOCK: android.animation.ObjectAnimator Method ofMultiFloat(java.lang.Object, java.lang.String, android.animation.TypeConverter<T, float[]>, android.animation.TypeEvaluator<T>, T...)
+NO DOC BLOCK: android.animation.ObjectAnimator Method ofMultiFloat(java.lang.Object, java.lang.String, android.graphics.Path)
+NO DOC BLOCK: android.animation.ObjectAnimator Method ofMultiFloat(java.lang.Object, java.lang.String, float[][])
+NO DOC BLOCK: android.animation.PropertyValuesHolder Method ofMultiFloat(java.lang.String, android.animation.TypeConverter<T, float[]>, android.animation.TypeEvaluator<T>, android.animation.Keyframe...)
+NO DOC BLOCK: android.animation.PropertyValuesHolder Method ofMultiFloat(java.lang.String, android.animation.TypeConverter<V, float[]>, android.animation.TypeEvaluator<V>, V...)
+NO DOC BLOCK: android.animation.PropertyValuesHolder Method ofMultiFloat(java.lang.String, android.graphics.Path)
+NO DOC BLOCK: android.animation.PropertyValuesHolder Method ofMultiFloat(java.lang.String, float[][])
+NO DOC BLOCK: android.animation.ObjectAnimator Method ofMultiInt(java.lang.Object, java.lang.String, android.animation.TypeConverter<T, int[]>, android.animation.TypeEvaluator<T>, T...)
+NO DOC BLOCK: android.animation.ObjectAnimator Method ofMultiInt(java.lang.Object, java.lang.String, android.graphics.Path)
+NO DOC BLOCK: android.animation.ObjectAnimator Method ofMultiInt(java.lang.Object, java.lang.String, int[][])
+NO DOC BLOCK: android.animation.PropertyValuesHolder Method ofMultiInt(java.lang.String, android.animation.TypeConverter<T, int[]>, android.animation.TypeEvaluator<T>, android.animation.Keyframe...)
+NO DOC BLOCK: android.animation.PropertyValuesHolder Method ofMultiInt(java.lang.String, android.animation.TypeConverter<V, int[]>, android.animation.TypeEvaluator<V>, V...)
+NO DOC BLOCK: android.animation.PropertyValuesHolder Method ofMultiInt(java.lang.String, android.graphics.Path)
+NO DOC BLOCK: android.animation.PropertyValuesHolder Method ofMultiInt(java.lang.String, int[][])
+NO DOC BLOCK: android.animation.ObjectAnimator Method ofObject(T, android.util.Property<T, P>, android.animation.TypeConverter<V, P>, android.animation.TypeEvaluator<V>, V...)
+NO DOC BLOCK: android.animation.ObjectAnimator Method ofObject(T, android.util.Property<T, V>, android.animation.TypeConverter<android.graphics.PointF, V>, android.graphics.Path)
+NO DOC BLOCK: android.animation.ObjectAnimator Method ofObject(java.lang.Object, java.lang.String, android.animation.TypeConverter<android.graphics.PointF, ?>, android.graphics.Path)
+NO DOC BLOCK: android.animation.PropertyValuesHolder Method ofObject(android.util.Property<?, V>, android.animation.TypeConverter<T, V>, android.animation.TypeEvaluator<T>, T...)
+NO DOC BLOCK: android.animation.PropertyValuesHolder Method ofObject(android.util.Property<?, V>, android.animation.TypeConverter<android.graphics.PointF, V>, android.graphics.Path)
+NO DOC BLOCK: android.animation.PropertyValuesHolder Method ofObject(java.lang.String, android.animation.TypeConverter<android.graphics.PointF, ?>, android.graphics.Path)
+NO DOC BLOCK: android.app.Activity Method onActivityReenter(int, android.content.Intent)
+NO DOC BLOCK: android.transition.Visibility Method onAppear(android.view.ViewGroup, android.view.View, android.transition.TransitionValues, android.transition.TransitionValues)
+NO DOC BLOCK: android.service.wallpaper.WallpaperService.Engine Method onApplyWindowInsets(android.view.WindowInsets)
+NO DOC BLOCK: android.app.Activity Method onCreate(android.os.Bundle, android.os.PersistableBundle)
+NO DOC BLOCK: android.transition.Visibility Method onDisappear(android.view.ViewGroup, android.view.View, android.transition.TransitionValues, android.transition.TransitionValues)
+NO DOC BLOCK: android.app.Activity Method onEnterAnimationComplete()
+NO DOC BLOCK: android.speech.tts.UtteranceProgressListener Method onError(java.lang.String, int)
+NO DOC BLOCK: android.speech.tts.UtteranceProgressListener Method onError(java.lang.String)
+NO DOC BLOCK: android.speech.tts.TextToSpeechService Method onGetDefaultVoiceNameFor(java.lang.String, java.lang.String, java.lang.String)
+NO DOC BLOCK: android.speech.tts.TextToSpeechService Method onGetVoices()
+NO DOC BLOCK: android.service.notification.NotificationListenerService Method onInterruptionFilterChanged(int)
+NO DOC BLOCK: android.speech.tts.TextToSpeechService Method onIsValidVoiceName(java.lang.String)
+NO DOC BLOCK: android.service.notification.NotificationListenerService Method onListenerConnected()
+NO DOC BLOCK: android.service.notification.NotificationListenerService Method onListenerHintsChanged(int)
+NO DOC BLOCK: android.speech.tts.TextToSpeechService Method onLoadVoice(java.lang.String)
+NO DOC BLOCK: android.app.admin.DeviceAdminReceiver Method onLockTaskModeEntering(android.content.Context, android.content.Intent, java.lang.String)
+NO DOC BLOCK: android.app.admin.DeviceAdminReceiver Method onLockTaskModeExiting(android.content.Context, android.content.Intent)
+NO DOC BLOCK: android.bluetooth.BluetoothGattCallback Method onMtuChanged(android.bluetooth.BluetoothGatt, int, int)
+NO DOC BLOCK: android.view.ViewGroup Method onNestedFling(android.view.View, float, float, boolean)
+NO DOC BLOCK: android.view.ViewParent Method onNestedFling(android.view.View, float, float, boolean)
+NO DOC BLOCK: android.view.ViewGroup Method onNestedPreFling(android.view.View, float, float)
+NO DOC BLOCK: android.view.ViewParent Method onNestedPreFling(android.view.View, float, float)
+NO DOC BLOCK: android.view.ViewGroup Method onNestedPreScroll(android.view.View, int, int, int[])
+NO DOC BLOCK: android.view.ViewParent Method onNestedPreScroll(android.view.View, int, int, int[])
+NO DOC BLOCK: android.view.ViewGroup Method onNestedScroll(android.view.View, int, int, int, int)
+NO DOC BLOCK: android.view.ViewParent Method onNestedScroll(android.view.View, int, int, int, int)
+NO DOC BLOCK: android.view.ViewGroup Method onNestedScrollAccepted(android.view.View, android.view.View, int)
+NO DOC BLOCK: android.view.ViewParent Method onNestedScrollAccepted(android.view.View, android.view.View, int)
+NO DOC BLOCK: android.service.notification.NotificationListenerService Method onNotificationPosted(android.service.notification.StatusBarNotification, android.service.notification.NotificationListenerService.RankingMap)
+NO DOC BLOCK: android.service.notification.NotificationListenerService Method onNotificationRankingUpdate(android.service.notification.NotificationListenerService.RankingMap)
+NO DOC BLOCK: android.service.notification.NotificationListenerService Method onNotificationRemoved(android.service.notification.StatusBarNotification, android.service.notification.NotificationListenerService.RankingMap)
+NO DOC BLOCK: android.bluetooth.BluetoothGattServerCallback Method onNotificationSent(android.bluetooth.BluetoothDevice, int)
+NO DOC BLOCK: android.webkit.WebChromeClient Method onPermissionRequest(android.webkit.PermissionRequest)
+NO DOC BLOCK: android.webkit.WebChromeClient Method onPermissionRequestCanceled(android.webkit.PermissionRequest)
+NO DOC BLOCK: android.app.Activity Method onPostCreate(android.os.Bundle, android.os.PersistableBundle)
+NO DOC BLOCK: android.app.admin.DeviceAdminReceiver Method onProfileProvisioningComplete(android.content.Context, android.content.Intent)
+NO DOC BLOCK: android.widget.EdgeEffect Method onPull(float, float)
+NO DOC BLOCK: android.webkit.WebViewClient Method onReceivedClientCertRequest(android.webkit.WebView, android.webkit.ClientCertRequest)
+NO DOC BLOCK: android.appwidget.AppWidgetProvider Method onRestored(android.content.Context, int[], int[])
+NO DOC BLOCK: android.app.backup.BackupAgent Method onRestoreFinished()
+NO DOC BLOCK: android.app.Activity Method onRestoreInstanceState(android.os.Bundle, android.os.PersistableBundle)
+NO DOC BLOCK: android.app.Activity Method onSaveInstanceState(android.os.Bundle, android.os.PersistableBundle)
+NO DOC BLOCK: android.webkit.WebChromeClient Method onShowFileChooser(android.webkit.WebView, android.webkit.ValueCallback<android.net.Uri[]>, android.webkit.WebChromeClient.FileChooserParams)
+NO DOC BLOCK: android.view.ViewGroup Method onStartNestedScroll(android.view.View, android.view.View, int)
+NO DOC BLOCK: android.view.ViewParent Method onStartNestedScroll(android.view.View, android.view.View, int)
+NO DOC BLOCK: android.view.ViewGroup Method onStopNestedScroll(android.view.View)
+NO DOC BLOCK: android.view.ViewParent Method onStopNestedScroll(android.view.View)
+NO DOC BLOCK: android.webkit.WebViewClient Method onUnhandledInputEvent(android.webkit.WebView, android.view.InputEvent)
+NO DOC BLOCK: android.inputmethodservice.InputMethodService Method onUpdateCursorAnchorInfo(android.view.inputmethod.CursorAnchorInfo)
+NO DOC BLOCK: android.app.Activity Method onVisibleBehindCanceled()
+NO DOC BLOCK: android.service.dreams.DreamService Method onWakeUp()
+NO DOC BLOCK: android.provider.DocumentsProvider Method openAssetFile(android.net.Uri, java.lang.String)
+NO DOC BLOCK: android.provider.DocumentsProvider Method openAssetFile(android.net.Uri, java.lang.String, android.os.CancellationSignal)
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method playEarcon(java.lang.String, int, android.os.Bundle, java.lang.String)
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method playSilentUtterance(long, int, java.lang.String)
+NO DOC BLOCK: android.app.Activity Method postponeEnterTransition()
+NO DOC BLOCK: android.os.Bundle Method putSize(java.lang.String, android.util.Size)
+NO DOC BLOCK: android.os.Bundle Method putSizeF(java.lang.String, android.util.SizeF)
+NO DOC BLOCK: android.os.Parcel Method readPersistableBundle()
+NO DOC BLOCK: android.os.Parcel Method readPersistableBundle(java.lang.ClassLoader)
+NO DOC BLOCK: android.os.Parcel Method readSize()
+NO DOC BLOCK: android.os.Parcel Method readSizeF()
+NO DOC BLOCK: android.nfc.cardemulation.CardEmulation Method registerAidsForService(android.content.ComponentName, java.lang.String, java.util.List<java.lang.String>)
+NO DOC BLOCK: android.net.ConnectivityManager Method registerNetworkCallback(android.net.NetworkRequest, android.net.ConnectivityManager.NetworkCallback)
+NO DOC BLOCK: android.os.PowerManager.WakeLock Method release(int)
+NO DOC BLOCK: android.app.Activity Method releaseInstance()
+NO DOC BLOCK: android.media.MediaCodec Method releaseOutputBuffer(int, long)
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo Method removeAction(android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction)
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo Method removeAction(int)
+NO DOC BLOCK: android.nfc.cardemulation.CardEmulation Method removeAidsForService(android.content.ComponentName, java.lang.String)
+NO DOC BLOCK: android.webkit.CookieManager Method removeAllCookies(android.webkit.ValueCallback<java.lang.Boolean>)
+NO DOC BLOCK: android.net.nsd.NsdServiceInfo Method removeAttribute(java.lang.String)
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo Method removeChild(android.view.View)
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo Method removeChild(android.view.View, int)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method removeCrossProfileWidgetProvider(android.content.ComponentName, java.lang.String)
+NO DOC BLOCK: android.net.ConnectivityManager Method removeDefaultNetworkActiveListener(android.net.ConnectivityManager.OnNetworkActiveListener)
+NO DOC BLOCK: android.webkit.CookieManager Method removeSessionCookies(android.webkit.ValueCallback<java.lang.Boolean>)
+NO DOC BLOCK: android.transition.Transition Method removeTarget(java.lang.Class)
+NO DOC BLOCK: android.transition.Transition Method removeTarget(java.lang.String)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method removeUser(android.content.ComponentName, android.os.UserHandle)
+NO DOC BLOCK: android.accounts.AccountManager Method renameAccount(android.accounts.Account, java.lang.String, android.accounts.AccountManagerCallback<android.accounts.Account>, android.os.Handler)
+NO DOC BLOCK: android.provider.DocumentsContract Method renameDocument(android.content.ContentResolver, android.net.Uri, java.lang.String)
+NO DOC BLOCK: android.provider.DocumentsProvider Method renameDocument(java.lang.String, java.lang.String)
+NO DOC BLOCK: android.view.WindowInsets Method replaceSystemWindowInsets(android.graphics.Rect)
+NO DOC BLOCK: android.telephony.PhoneNumberUtils Method replaceUnicodeDigits(java.lang.String)
+NO DOC BLOCK: android.net.ConnectivityManager Method reportBadNetwork(android.net.Network)
+NO DOC BLOCK: android.bluetooth.BluetoothGatt Method requestConnectionPriority(int)
+NO DOC BLOCK: android.view.inputmethod.BaseInputConnection Method requestCursorUpdates(int)
+NO DOC BLOCK: android.view.inputmethod.InputConnection Method requestCursorUpdates(int)
+NO DOC BLOCK: android.view.inputmethod.InputConnectionWrapper Method requestCursorUpdates(int)
+NO DOC BLOCK: android.service.notification.NotificationListenerService Method requestInterruptionFilter(int)
+NO DOC BLOCK: android.service.notification.NotificationListenerService Method requestListenerHints(int)
+NO DOC BLOCK: android.bluetooth.BluetoothGatt Method requestMtu(int)
+NO DOC BLOCK: android.net.ConnectivityManager Method requestNetwork(android.net.NetworkRequest, android.net.ConnectivityManager.NetworkCallback)
+NO DOC BLOCK: android.view.View Method requestUnbufferedDispatch(android.view.MotionEvent)
+NO DOC BLOCK: android.app.Activity Method requestVisibleBehind(boolean)
+NO DOC BLOCK: android.media.MediaCodec Method reset()
+NO DOC BLOCK: android.hardware.display.VirtualDisplay Method resize(int, int, int)
+NO DOC BLOCK: android.util.LruCache Method resize(int)
+NO DOC BLOCK: android.provider.DocumentsProvider Method revokeDocumentPermission(java.lang.String)
+NO DOC BLOCK: android.graphics.Canvas Method saveLayer(android.graphics.RectF, android.graphics.Paint)
+NO DOC BLOCK: android.graphics.Canvas Method saveLayer(float, float, float, float, android.graphics.Paint)
+NO DOC BLOCK: android.graphics.Canvas Method saveLayerAlpha(android.graphics.RectF, int)
+NO DOC BLOCK: android.graphics.Canvas Method saveLayerAlpha(float, float, float, float, int)
+NO DOC BLOCK: android.telephony.TelephonyManager Method sendEnvelopeWithStatus(java.lang.String)
+NO DOC BLOCK: android.telephony.SmsManager Method sendMultimediaMessage(android.content.Context, android.net.Uri, java.lang.String, android.os.Bundle, android.app.PendingIntent)
+NO DOC BLOCK: android.webkit.CookieManager Method setAcceptThirdPartyCookies(android.webkit.WebView, boolean)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setAccountManagementDisabled(android.content.ComponentName, java.lang.String, boolean)
+NO DOC BLOCK: android.app.Activity Method setActionBar(android.widget.Toolbar)
+NO DOC BLOCK: android.app.AlarmManager Method setAlarmClock(android.app.AlarmManager.AlarmClockInfo, android.app.PendingIntent)
+NO DOC BLOCK: android.app.Fragment Method setAllowEnterTransitionOverlap(boolean)
+NO DOC BLOCK: android.view.Window Method setAllowEnterTransitionOverlap(boolean)
+NO DOC BLOCK: android.app.Fragment Method setAllowReturnTransitionOverlap(boolean)
+NO DOC BLOCK: android.view.Window Method setAllowReturnTransitionOverlap(boolean)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setApplicationHidden(android.content.ComponentName, java.lang.String, boolean)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setApplicationRestrictions(android.content.ComponentName, java.lang.String, android.os.Bundle)
+NO DOC BLOCK: android.net.nsd.NsdServiceInfo Method setAttribute(java.lang.String, java.lang.String)
+NO DOC BLOCK: android.media.MediaPlayer Method setAudioAttributes(android.media.AudioAttributes)
+NO DOC BLOCK: android.media.Ringtone Method setAudioAttributes(android.media.AudioAttributes)
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method setAudioAttributes(android.media.AudioAttributes)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setAutoTimeRequired(android.content.ComponentName, boolean)
+NO DOC BLOCK: android.view.View Method setBackgroundTintList(android.content.res.ColorStateList)
+NO DOC BLOCK: android.view.View Method setBackgroundTintMode(android.graphics.PorterDuff.Mode)
+NO DOC BLOCK: android.net.VpnService.Builder Method setBlocking(boolean)
+NO DOC BLOCK: android.widget.CompoundButton Method setButtonTintList(android.content.res.ColorStateList)
+NO DOC BLOCK: android.widget.CompoundButton Method setButtonTintMode(android.graphics.PorterDuff.Mode)
+NO DOC BLOCK: android.media.MediaCodec Method setCallback(android.media.MediaCodec.Callback)
+NO DOC BLOCK: android.app.Notification.Builder Method setCategory(java.lang.String)
+NO DOC BLOCK: android.widget.CheckedTextView Method setCheckMarkTintList(android.content.res.ColorStateList)
+NO DOC BLOCK: android.widget.CheckedTextView Method setCheckMarkTintMode(android.graphics.PorterDuff.Mode)
+NO DOC BLOCK: android.view.View Method setClipToOutline(boolean)
+NO DOC BLOCK: android.app.Notification.Builder Method setColor(int)
+NO DOC BLOCK: android.graphics.drawable.GradientDrawable Method setColor(android.content.res.ColorStateList)
+NO DOC BLOCK: android.widget.EdgeEffect Method setColor(int)
+NO DOC BLOCK: android.hardware.usb.UsbDeviceConnection Method setConfiguration(android.hardware.usb.UsbConfiguration)
+NO DOC BLOCK: android.app.Activity Method setContentTransitionManager(android.transition.TransitionManager)
+NO DOC BLOCK: android.animation.PropertyValuesHolder Method setConverter(android.animation.TypeConverter)
+NO DOC BLOCK: android.webkit.CookieManager Method setCookie(java.lang.String, java.lang.String, android.webkit.ValueCallback<java.lang.Boolean>)
+NO DOC BLOCK: android.media.Image Method setCropRect(android.graphics.Rect)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setCrossProfileCallerIdDisabled(android.content.ComponentName, boolean)
+NO DOC BLOCK: android.graphics.drawable.RotateDrawable Method setDrawable(android.graphics.drawable.Drawable)
+NO DOC BLOCK: android.graphics.Paint Method setElegantTextHeight(boolean)
+NO DOC BLOCK: android.widget.TextView Method setElegantTextHeight(boolean)
+NO DOC BLOCK: android.app.ActionBar Method setElevation(float)
+NO DOC BLOCK: android.view.View Method setElevation(float)
+NO DOC BLOCK: android.widget.PopupWindow Method setElevation(float)
+NO DOC BLOCK: android.app.Activity Method setEnterSharedElementCallback(android.app.SharedElementCallback)
+NO DOC BLOCK: android.app.Fragment Method setEnterSharedElementCallback(android.app.SharedElementCallback)
+NO DOC BLOCK: android.app.Fragment Method setEnterTransition(android.transition.Transition)
+NO DOC BLOCK: android.view.Window Method setEnterTransition(android.transition.Transition)
+NO DOC BLOCK: android.transition.Transition Method setEpicenterCallback(android.transition.Transition.EpicenterCallback)
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo Method setError(java.lang.CharSequence)
+NO DOC BLOCK: android.app.Activity Method setExitSharedElementCallback(android.app.SharedElementCallback)
+NO DOC BLOCK: android.app.Fragment Method setExitSharedElementCallback(android.app.SharedElementCallback)
+NO DOC BLOCK: android.app.Fragment Method setExitTransition(android.transition.Transition)
+NO DOC BLOCK: android.view.Window Method setExitTransition(android.transition.Transition)
+NO DOC BLOCK: android.widget.AbsListView Method setFastScrollStyle(int)
+NO DOC BLOCK: android.media.MediaFormat Method setFeatureEnabled(java.lang.String, boolean)
+NO DOC BLOCK: android.widget.DatePicker Method setFirstDayOfWeek(int)
+NO DOC BLOCK: android.graphics.Paint Method setFontFeatureSettings(java.lang.String)
+NO DOC BLOCK: android.widget.TextView Method setFontFeatureSettings(java.lang.String)
+NO DOC BLOCK: android.widget.FrameLayout Method setForegroundTintList(android.content.res.ColorStateList)
+NO DOC BLOCK: android.widget.FrameLayout Method setForegroundTintMode(android.graphics.PorterDuff.Mode)
+NO DOC BLOCK: android.graphics.drawable.RotateDrawable Method setFromDegrees(float)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setGlobalSetting(android.content.ComponentName, java.lang.String, java.lang.String)
+NO DOC BLOCK: android.app.ActionBar Method setHideOffset(int)
+NO DOC BLOCK: android.app.ActionBar Method setHideOnContentScrollEnabled(boolean)
+NO DOC BLOCK: android.graphics.drawable.Drawable Method setHotspot(float, float)
+NO DOC BLOCK: android.graphics.drawable.Drawable Method setHotspotBounds(int, int, int, int)
+NO DOC BLOCK: android.widget.ImageView Method setImageTintList(android.content.res.ColorStateList)
+NO DOC BLOCK: android.widget.ImageView Method setImageTintMode(android.graphics.PorterDuff.Mode)
+NO DOC BLOCK: android.widget.ProgressBar Method setIndeterminateDrawableTiled(android.graphics.drawable.Drawable)
+NO DOC BLOCK: android.widget.ProgressBar Method setIndeterminateTintList(android.content.res.ColorStateList)
+NO DOC BLOCK: android.widget.ProgressBar Method setIndeterminateTintMode(android.graphics.PorterDuff.Mode)
+NO DOC BLOCK: android.hardware.usb.UsbDeviceConnection Method setInterface(android.hardware.usb.UsbInterface)
+NO DOC BLOCK: android.content.RestrictionEntry Method setIntValue(int)
+NO DOC BLOCK: android.graphics.Paint Method setLetterSpacing(float)
+NO DOC BLOCK: android.widget.TextView Method setLetterSpacing(float)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setLockTaskPackages(android.content.ComponentName, java.lang.String[])
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setMasterVolumeMuted(android.content.ComponentName, boolean)
+NO DOC BLOCK: android.transition.Transition Method setMatchOrder(int...)
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo Method setMaxTextLength(int)
+NO DOC BLOCK: android.app.Activity Method setMediaController(android.media.session.MediaController)
+NO DOC BLOCK: android.view.Window Method setMediaController(android.media.session.MediaController)
+NO DOC BLOCK: android.webkit.WebSettings Method setMixedContentMode(int)
+NO DOC BLOCK: android.transition.Visibility Method setMode(int)
+NO DOC BLOCK: android.view.Window Method setNavigationBarColor(int)
+NO DOC BLOCK: android.view.View Method setNestedScrollingEnabled(boolean)
+NO DOC BLOCK: android.graphics.SurfaceTexture Method setOnFrameAvailableListener(android.graphics.SurfaceTexture.OnFrameAvailableListener, android.os.Handler)
+NO DOC BLOCK: android.view.View Method setOutlineProvider(android.view.ViewOutlineProvider)
+NO DOC BLOCK: android.widget.QuickContactBadge Method setOverlay(android.graphics.drawable.Drawable)
+NO DOC BLOCK: android.graphics.drawable.LayerDrawable Method setPaddingMode(int)
+NO DOC BLOCK: android.transition.Transition Method setPathMotion(android.transition.PathMotion)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setPermittedAccessibilityServices(android.content.ComponentName, java.util.List<java.lang.String>)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setPermittedInputMethods(android.content.ComponentName, java.util.List<java.lang.String>)
+NO DOC BLOCK: android.graphics.drawable.RotateDrawable Method setPivotX(float)
+NO DOC BLOCK: android.graphics.drawable.RotateDrawable Method setPivotXRelative(boolean)
+NO DOC BLOCK: android.graphics.drawable.RotateDrawable Method setPivotY(float)
+NO DOC BLOCK: android.graphics.drawable.RotateDrawable Method setPivotYRelative(boolean)
+NO DOC BLOCK: android.nfc.cardemulation.CardEmulation Method setPreferredService(android.app.Activity, android.content.ComponentName)
+NO DOC BLOCK: android.net.ConnectivityManager Method setProcessDefaultNetwork(android.net.Network)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setProfileEnabled(android.content.ComponentName)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setProfileName(android.content.ComponentName, java.lang.String)
+NO DOC BLOCK: android.widget.ProgressBar Method setProgressBackgroundTintList(android.content.res.ColorStateList)
+NO DOC BLOCK: android.widget.ProgressBar Method setProgressBackgroundTintMode(android.graphics.PorterDuff.Mode)
+NO DOC BLOCK: android.widget.ProgressBar Method setProgressDrawableTiled(android.graphics.drawable.Drawable)
+NO DOC BLOCK: android.widget.ProgressBar Method setProgressTintList(android.content.res.ColorStateList)
+NO DOC BLOCK: android.widget.ProgressBar Method setProgressTintMode(android.graphics.PorterDuff.Mode)
+NO DOC BLOCK: android.transition.Transition Method setPropagation(android.transition.TransitionPropagation)
+NO DOC BLOCK: android.app.Notification.Builder Method setPublicVersion(android.app.Notification)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setRecommendedGlobalProxy(android.content.ComponentName, android.net.ProxyInfo)
+NO DOC BLOCK: android.app.Fragment Method setReenterTransition(android.transition.Transition)
+NO DOC BLOCK: android.view.Window Method setReenterTransition(android.transition.Transition)
+NO DOC BLOCK: java.util.concurrent.ScheduledThreadPoolExecutor Method setRemoveOnCancelPolicy(boolean)
+NO DOC BLOCK: android.webkit.WebResourceResponse Method setResponseHeaders(java.util.Map<java.lang.String, java.lang.String>)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setRestrictionsProvider(android.content.ComponentName, android.content.ComponentName)
+NO DOC BLOCK: android.app.Fragment Method setReturnTransition(android.transition.Transition)
+NO DOC BLOCK: android.view.Window Method setReturnTransition(android.transition.Transition)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setScreenCaptureDisabled(android.content.ComponentName, boolean)
+NO DOC BLOCK: android.widget.ProgressBar Method setSecondaryProgressTintList(android.content.res.ColorStateList)
+NO DOC BLOCK: android.widget.ProgressBar Method setSecondaryProgressTintMode(android.graphics.PorterDuff.Mode)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setSecureSetting(android.content.ComponentName, java.lang.String, java.lang.String)
+NO DOC BLOCK: android.widget.AbsListView Method setSelectionFromTop(int, int)
+NO DOC BLOCK: android.app.Fragment Method setSharedElementEnterTransition(android.transition.Transition)
+NO DOC BLOCK: android.view.Window Method setSharedElementEnterTransition(android.transition.Transition)
+NO DOC BLOCK: android.view.Window Method setSharedElementExitTransition(android.transition.Transition)
+NO DOC BLOCK: android.view.Window Method setSharedElementReenterTransition(android.transition.Transition)
+NO DOC BLOCK: android.app.Fragment Method setSharedElementReturnTransition(android.transition.Transition)
+NO DOC BLOCK: android.view.Window Method setSharedElementReturnTransition(android.transition.Transition)
+NO DOC BLOCK: android.view.Window Method setSharedElementsUseOverlay(boolean)
+NO DOC BLOCK: android.widget.TextView Method setShowSoftInputOnFocus(boolean)
+NO DOC BLOCK: android.widget.Switch Method setShowText(boolean)
+NO DOC BLOCK: android.app.Notification.Builder Method setSound(android.net.Uri, android.media.AudioAttributes)
+NO DOC BLOCK: android.app.Notification.Builder Method setSound(android.net.Uri, int)
+NO DOC BLOCK: android.widget.AbsSeekBar Method setSplitTrack(boolean)
+NO DOC BLOCK: android.widget.Switch Method setSplitTrack(boolean)
+NO DOC BLOCK: android.view.View Method setStateListAnimator(android.animation.StateListAnimator)
+NO DOC BLOCK: android.view.Window Method setStatusBarColor(int)
+NO DOC BLOCK: android.webkit.WebResourceResponse Method setStatusCodeAndReasonPhrase(int, java.lang.String)
+NO DOC BLOCK: android.graphics.drawable.GradientDrawable Method setStroke(int, android.content.res.ColorStateList)
+NO DOC BLOCK: android.graphics.drawable.GradientDrawable Method setStroke(int, android.content.res.ColorStateList, float, float)
+NO DOC BLOCK: android.app.Activity Method setTaskDescription(android.app.ActivityManager.TaskDescription)
+NO DOC BLOCK: android.widget.AbsSeekBar Method setThumbTintList(android.content.res.ColorStateList)
+NO DOC BLOCK: android.widget.AbsSeekBar Method setThumbTintMode(android.graphics.PorterDuff.Mode)
+NO DOC BLOCK: android.graphics.drawable.Drawable Method setTint(int)
+NO DOC BLOCK: android.graphics.drawable.Drawable Method setTintList(android.content.res.ColorStateList)
+NO DOC BLOCK: android.graphics.drawable.Drawable Method setTintMode(android.graphics.PorterDuff.Mode)
+NO DOC BLOCK: android.graphics.drawable.RotateDrawable Method setToDegrees(float)
+NO DOC BLOCK: android.view.ViewGroup Method setTouchscreenBlocksFocus(boolean)
+NO DOC BLOCK: android.view.Window Method setTransitionBackgroundFadeDuration(long)
+NO DOC BLOCK: android.view.ViewGroup Method setTransitionGroup(boolean)
+NO DOC BLOCK: android.view.Window Method setTransitionManager(android.transition.TransitionManager)
+NO DOC BLOCK: android.view.View Method setTransitionName(java.lang.String)
+NO DOC BLOCK: android.view.View Method setTranslationZ(float)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setUninstallBlocked(android.content.ComponentName, java.lang.String, boolean)
+NO DOC BLOCK: android.widget.VideoView Method setVideoURI(android.net.Uri, java.util.Map<java.lang.String, java.lang.String>)
+NO DOC BLOCK: android.app.AlertDialog.Builder Method setView(int)
+NO DOC BLOCK: android.app.Notification.Builder Method setVisibility(int)
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method setVoice(android.speech.tts.Voice)
+NO DOC BLOCK: android.media.AudioTrack Method setVolume(float)
+NO DOC BLOCK: android.view.View Method setZ(float)
+NO DOC BLOCK: android.webkit.WebViewClient Method shouldInterceptRequest(android.webkit.WebView, android.webkit.WebResourceRequest)
+NO DOC BLOCK: android.webkit.WebViewClient Method shouldInterceptRequest(android.webkit.WebView, java.lang.String)
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method speak(java.lang.CharSequence, int, android.os.Bundle, java.lang.String)
+NO DOC BLOCK: android.widget.GridLayout Method spec(int, android.widget.GridLayout.Alignment, float)
+NO DOC BLOCK: android.widget.GridLayout Method spec(int, float)
+NO DOC BLOCK: android.widget.GridLayout Method spec(int, int, android.widget.GridLayout.Alignment, float)
+NO DOC BLOCK: android.widget.GridLayout Method spec(int, int, float)
+NO DOC BLOCK: android.appwidget.AppWidgetHost Method startAppWidgetConfigureActivityForResult(android.app.Activity, int, int, int, android.os.Bundle)
+NO DOC BLOCK: android.app.Activity Method startLockTask()
+NO DOC BLOCK: android.os.Debug Method startMethodTracingSampling(java.lang.String, int, int)
+NO DOC BLOCK: android.view.View Method startNestedScroll(int)
+NO DOC BLOCK: android.app.Activity Method startPostponedEnterTransition()
+NO DOC BLOCK: android.net.wifi.WifiManager Method startWps(android.net.wifi.WpsInfo, android.net.wifi.WifiManager.WpsCallback)
+NO DOC BLOCK: android.app.Activity Method stopLockTask()
+NO DOC BLOCK: android.view.View Method stopNestedScroll()
+NO DOC BLOCK: android.nfc.cardemulation.CardEmulation Method supportsAidPrefixRegistration()
+NO DOC BLOCK: android.view.InputDevice Method supportsSource(int)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method switchUser(android.content.ComponentName, android.os.UserHandle)
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method synthesizeToFile(java.lang.CharSequence, android.os.Bundle, java.io.File, java.lang.String)
+NO DOC BLOCK: java.util.Locale Method toLanguageTag()
+NO DOC BLOCK: android.view.ViewPropertyAnimator Method translationZ(float)
+NO DOC BLOCK: android.view.ViewPropertyAnimator Method translationZBy(float)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method uninstallAllUserCaCerts(android.content.ComponentName)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method uninstallCaCert(android.content.ComponentName, byte[])
+NO DOC BLOCK: android.net.ConnectivityManager Method unregisterNetworkCallback(android.net.ConnectivityManager.NetworkCallback)
+NO DOC BLOCK: android.nfc.cardemulation.CardEmulation Method unsetPreferredService(android.app.Activity)
+NO DOC BLOCK: android.inputmethodservice.InputMethodService.InputMethodSessionImpl Method updateCursorAnchorInfo(android.view.inputmethod.CursorAnchorInfo)
+NO DOC BLOCK: android.view.inputmethod.InputMethodManager Method updateCursorAnchorInfo(android.view.View, android.view.inputmethod.CursorAnchorInfo)
+NO DOC BLOCK: android.view.inputmethod.InputMethodSession Method updateCursorAnchorInfo(android.view.inputmethod.CursorAnchorInfo)
+NO DOC BLOCK: android.os.Vibrator Method vibrate(long, android.media.AudioAttributes)
+NO DOC BLOCK: android.os.Vibrator Method vibrate(long[], int)
+NO DOC BLOCK: android.os.Vibrator Method vibrate(long[], int, android.media.AudioAttributes)
+NO DOC BLOCK: android.service.dreams.DreamService Method wakeUp()
+NO DOC BLOCK: android.media.AudioTrack Method write(float[], int, int, int)
+NO DOC BLOCK: android.media.AudioTrack Method write(java.nio.ByteBuffer, int, int)
+NO DOC BLOCK: android.os.Parcel Method writePersistableBundle(android.os.PersistableBundle)
+NO DOC BLOCK: android.os.Parcel Method writeSize(android.util.Size)
+NO DOC BLOCK: android.os.Parcel Method writeSizeF(android.util.SizeF)
+NO DOC BLOCK: android.view.ViewPropertyAnimator Method z(float)
+NO DOC BLOCK: android.view.ViewPropertyAnimator Method zBy(float)
+NO DOC BLOCK: android.webkit.WebView Method zoomBy(float)
+NO DOC BLOCK: android.provider.Settings.Secure Field ACCESSIBILITY_DISPLAY_INVERSION_ENABLED
+NO DOC BLOCK: android.provider.ContactsContract.RawContactsColumns Field ACCOUNT_TYPE_AND_DATA_SET
+NO DOC BLOCK: android.content.Intent Field ACTION_APPLICATION_RESTRICTIONS_CHANGED
+NO DOC BLOCK: android.appwidget.AppWidgetManager Field ACTION_APPWIDGET_HOST_RESTORED
+NO DOC BLOCK: android.appwidget.AppWidgetManager Field ACTION_APPWIDGET_RESTORED
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo Field ACTION_ARGUMENT_SET_TEXT_CHARSEQUENCE
+NO DOC BLOCK: android.provider.Settings Field ACTION_CAST_SETTINGS
+NO DOC BLOCK: android.media.AudioManager Field ACTION_HDMI_AUDIO_PLUG
+NO DOC BLOCK: android.media.AudioManager Field ACTION_HEADSET_PLUG
+NO DOC BLOCK: android.provider.Settings Field ACTION_HOME_SETTINGS
+NO DOC BLOCK: android.app.admin.DeviceAdminReceiver Field ACTION_LOCK_TASK_ENTERING
+NO DOC BLOCK: android.app.admin.DeviceAdminReceiver Field ACTION_LOCK_TASK_EXITING
+NO DOC BLOCK: android.content.Intent Field ACTION_MANAGED_PROFILE_ADDED
+NO DOC BLOCK: android.content.Intent Field ACTION_MANAGED_PROFILE_REMOVED
+NO DOC BLOCK: android.app.AlarmManager Field ACTION_NEXT_ALARM_CLOCK_CHANGED
+NO DOC BLOCK: android.content.Intent Field ACTION_OPEN_DOCUMENT_TREE
+NO DOC BLOCK: android.os.PowerManager Field ACTION_POWER_SAVE_MODE_CHANGED
+NO DOC BLOCK: android.app.admin.DeviceAdminReceiver Field ACTION_PROFILE_PROVISIONING_COMPLETE
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field ACTION_PROVISION_MANAGED_PROFILE
+NO DOC BLOCK: android.provider.ContactsContract.QuickContact Field ACTION_QUICK_CONTACT
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo Field ACTION_SET_TEXT
+NO DOC BLOCK: android.provider.Settings Field ACTION_SHOW_REGULATORY_INFO
+NO DOC BLOCK: android.provider.Settings Field ACTION_USAGE_ACCESS_SETTINGS
+NO DOC BLOCK: android.provider.Settings Field ACTION_VOICE_INPUT_SETTINGS
+NO DOC BLOCK: android.R.attr Field actionBarPopupTheme
+NO DOC BLOCK: android.R.attr Field actionBarTheme
+NO DOC BLOCK: android.R.attr Field actionModeFindDrawable
+NO DOC BLOCK: android.R.attr Field actionModeShareDrawable
+NO DOC BLOCK: android.R.attr Field actionModeWebSearchDrawable
+NO DOC BLOCK: android.R.attr Field actionOverflowMenuStyle
+NO DOC BLOCK: android.app.ActivityManager.RecentTaskInfo Field affiliatedTaskId
+NO DOC BLOCK: android.net.wifi.WifiEnterpriseConfig.Eap Field AKA
+NO DOC BLOCK: android.media.MediaCodecList Field ALL_CODECS
+NO DOC BLOCK: android.R.attr Field ambientShadowAlpha
+NO DOC BLOCK: android.R.attr Field amPmBackgroundColor
+NO DOC BLOCK: android.R.attr Field amPmTextColor
+NO DOC BLOCK: android.content.ContentResolver Field ANY_CURSOR_ITEM_TYPE
+NO DOC BLOCK: android.content.Context Field APPWIDGET_SERVICE
+NO DOC BLOCK: android.provider.Telephony.ThreadsColumns Field ARCHIVED
+NO DOC BLOCK: android.app.Notification Field AUDIO_ATTRIBUTES_DEFAULT
+NO DOC BLOCK: android.media.AudioManager Field AUDIO_SESSION_ID_GENERATE
+NO DOC BLOCK: android.app.Notification Field audioAttributes
+NO DOC BLOCK: android.R.attr Field autoRemoveFromRecents
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field AVCLevel52
+NO DOC BLOCK: android.R.attr Field backgroundTint
+NO DOC BLOCK: android.R.attr Field backgroundTintMode
+NO DOC BLOCK: android.R.attr Field banner
+NO DOC BLOCK: android.os.BatteryManager Field BATTERY_PROPERTY_CAPACITY
+NO DOC BLOCK: android.os.BatteryManager Field BATTERY_PROPERTY_CHARGE_COUNTER
+NO DOC BLOCK: android.os.BatteryManager Field BATTERY_PROPERTY_CURRENT_AVERAGE
+NO DOC BLOCK: android.os.BatteryManager Field BATTERY_PROPERTY_CURRENT_NOW
+NO DOC BLOCK: android.os.BatteryManager Field BATTERY_PROPERTY_ENERGY_COUNTER
+NO DOC BLOCK: android.content.Context Field BATTERY_SERVICE
+NO DOC BLOCK: android.Manifest.permission Field BIND_DREAM_SERVICE
+NO DOC BLOCK: android.Manifest.permission Field BIND_TV_INPUT
+NO DOC BLOCK: android.Manifest.permission Field BIND_VOICE_INTERACTION
+NO DOC BLOCK: android.net.wifi.WpsInfo Field BSSID
+NO DOC BLOCK: android.media.MediaCodec Field BUFFER_FLAG_KEY_FRAME
+NO DOC BLOCK: android.R.attr Field buttonBarNegativeButtonStyle
+NO DOC BLOCK: android.R.attr Field buttonBarNeutralButtonStyle
+NO DOC BLOCK: android.R.attr Field buttonBarPositiveButtonStyle
+NO DOC BLOCK: android.R.attr Field buttonTint
+NO DOC BLOCK: android.R.attr Field buttonTintMode
+NO DOC BLOCK: android.provider.CallLog.Calls Field CACHED_FORMATTED_NUMBER
+NO DOC BLOCK: android.provider.CallLog.Calls Field CACHED_LOOKUP_URI
+NO DOC BLOCK: android.provider.CallLog.Calls Field CACHED_MATCHED_NUMBER
+NO DOC BLOCK: android.provider.CallLog.Calls Field CACHED_NORMALIZED_NUMBER
+NO DOC BLOCK: android.provider.CallLog.Calls Field CACHED_PHOTO_ID
+NO DOC BLOCK: android.R.attr Field calendarTextColor
+NO DOC BLOCK: android.content.Context Field CAMERA_SERVICE
+NO DOC BLOCK: android.app.Notification Field category
+NO DOC BLOCK: android.app.Notification Field CATEGORY_ALARM
+NO DOC BLOCK: android.app.Notification Field CATEGORY_CALL
+NO DOC BLOCK: android.app.Notification Field CATEGORY_EMAIL
+NO DOC BLOCK: android.app.Notification Field CATEGORY_ERROR
+NO DOC BLOCK: android.app.Notification Field CATEGORY_EVENT
+NO DOC BLOCK: android.content.Intent Field CATEGORY_LEANBACK_LAUNCHER
+NO DOC BLOCK: android.app.Notification Field CATEGORY_MESSAGE
+NO DOC BLOCK: android.app.Notification Field CATEGORY_PROGRESS
+NO DOC BLOCK: android.app.Notification Field CATEGORY_PROMO
+NO DOC BLOCK: android.app.Notification Field CATEGORY_RECOMMENDATION
+NO DOC BLOCK: android.app.Notification Field CATEGORY_SERVICE
+NO DOC BLOCK: android.app.Notification Field CATEGORY_SOCIAL
+NO DOC BLOCK: android.app.Notification Field CATEGORY_STATUS
+NO DOC BLOCK: android.app.Notification Field CATEGORY_SYSTEM
+NO DOC BLOCK: android.app.Notification Field CATEGORY_TRANSPORT
+NO DOC BLOCK: java.util.zip.ZipEntry Field CENATT
+NO DOC BLOCK: java.util.zip.ZipFile Field CENATT
+NO DOC BLOCK: java.util.zip.ZipInputStream Field CENATT
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field CENATT
+NO DOC BLOCK: java.util.zip.ZipEntry Field CENATX
+NO DOC BLOCK: java.util.zip.ZipFile Field CENATX
+NO DOC BLOCK: java.util.zip.ZipInputStream Field CENATX
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field CENATX
+NO DOC BLOCK: java.util.zip.ZipEntry Field CENCOM
+NO DOC BLOCK: java.util.zip.ZipFile Field CENCOM
+NO DOC BLOCK: java.util.zip.ZipInputStream Field CENCOM
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field CENCOM
+NO DOC BLOCK: java.util.zip.ZipEntry Field CENCRC
+NO DOC BLOCK: java.util.zip.ZipFile Field CENCRC
+NO DOC BLOCK: java.util.zip.ZipInputStream Field CENCRC
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field CENCRC
+NO DOC BLOCK: java.util.zip.ZipEntry Field CENDSK
+NO DOC BLOCK: java.util.zip.ZipFile Field CENDSK
+NO DOC BLOCK: java.util.zip.ZipInputStream Field CENDSK
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field CENDSK
+NO DOC BLOCK: java.util.zip.ZipEntry Field CENEXT
+NO DOC BLOCK: java.util.zip.ZipFile Field CENEXT
+NO DOC BLOCK: java.util.zip.ZipInputStream Field CENEXT
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field CENEXT
+NO DOC BLOCK: java.util.zip.ZipEntry Field CENFLG
+NO DOC BLOCK: java.util.zip.ZipFile Field CENFLG
+NO DOC BLOCK: java.util.zip.ZipInputStream Field CENFLG
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field CENFLG
+NO DOC BLOCK: java.util.zip.ZipEntry Field CENHDR
+NO DOC BLOCK: java.util.zip.ZipFile Field CENHDR
+NO DOC BLOCK: java.util.zip.ZipInputStream Field CENHDR
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field CENHDR
+NO DOC BLOCK: java.util.zip.ZipEntry Field CENHOW
+NO DOC BLOCK: java.util.zip.ZipFile Field CENHOW
+NO DOC BLOCK: java.util.zip.ZipInputStream Field CENHOW
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field CENHOW
+NO DOC BLOCK: java.util.zip.ZipEntry Field CENLEN
+NO DOC BLOCK: java.util.zip.ZipFile Field CENLEN
+NO DOC BLOCK: java.util.zip.ZipInputStream Field CENLEN
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field CENLEN
+NO DOC BLOCK: java.util.zip.ZipEntry Field CENNAM
+NO DOC BLOCK: java.util.zip.ZipFile Field CENNAM
+NO DOC BLOCK: java.util.zip.ZipInputStream Field CENNAM
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field CENNAM
+NO DOC BLOCK: java.util.zip.ZipEntry Field CENOFF
+NO DOC BLOCK: java.util.zip.ZipFile Field CENOFF
+NO DOC BLOCK: java.util.zip.ZipInputStream Field CENOFF
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field CENOFF
+NO DOC BLOCK: java.util.zip.ZipEntry Field CENSIG
+NO DOC BLOCK: java.util.zip.ZipFile Field CENSIG
+NO DOC BLOCK: java.util.zip.ZipInputStream Field CENSIG
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field CENSIG
+NO DOC BLOCK: java.util.zip.ZipEntry Field CENSIZ
+NO DOC BLOCK: java.util.zip.ZipFile Field CENSIZ
+NO DOC BLOCK: java.util.zip.ZipInputStream Field CENSIZ
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field CENSIZ
+NO DOC BLOCK: java.util.zip.ZipEntry Field CENTIM
+NO DOC BLOCK: java.util.zip.ZipFile Field CENTIM
+NO DOC BLOCK: java.util.zip.ZipInputStream Field CENTIM
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field CENTIM
+NO DOC BLOCK: java.util.zip.ZipEntry Field CENVEM
+NO DOC BLOCK: java.util.zip.ZipFile Field CENVEM
+NO DOC BLOCK: java.util.zip.ZipInputStream Field CENVEM
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field CENVEM
+NO DOC BLOCK: java.util.zip.ZipEntry Field CENVER
+NO DOC BLOCK: java.util.zip.ZipFile Field CENVER
+NO DOC BLOCK: java.util.zip.ZipInputStream Field CENVER
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field CENVER
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_OUT_SIDE_LEFT
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_OUT_SIDE_RIGHT
+NO DOC BLOCK: android.R.attr Field checkMarkTint
+NO DOC BLOCK: android.R.attr Field checkMarkTintMode
+NO DOC BLOCK: android.view.HapticFeedbackConstants Field CLOCK_TICK
+NO DOC BLOCK: android.R.attr Field closeIcon
+NO DOC BLOCK: android.app.Notification Field color
+NO DOC BLOCK: android.app.Notification Field COLOR_DEFAULT
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecCapabilities Field COLOR_FormatYUV420Flexible
+NO DOC BLOCK: android.R.attr Field colorAccent
+NO DOC BLOCK: android.R.attr Field colorButtonNormal
+NO DOC BLOCK: android.R.attr Field colorControlActivated
+NO DOC BLOCK: android.R.attr Field colorControlHighlight
+NO DOC BLOCK: android.R.attr Field colorControlNormal
+NO DOC BLOCK: android.R.attr Field colorEdgeEffect
+NO DOC BLOCK: android.R.attr Field colorPrimary
+NO DOC BLOCK: android.R.attr Field colorPrimaryDark
+NO DOC BLOCK: android.R.attr Field commitIcon
+NO DOC BLOCK: android.bluetooth.BluetoothGatt Field CONNECTION_PRIORITY_BALANCED
+NO DOC BLOCK: android.bluetooth.BluetoothGatt Field CONNECTION_PRIORITY_HIGH
+NO DOC BLOCK: android.bluetooth.BluetoothGatt Field CONNECTION_PRIORITY_LOW_POWER
+NO DOC BLOCK: android.provider.ContactsContract.Contacts Field CONTENT_FREQUENT_URI
+NO DOC BLOCK: android.provider.ContactsContract.Contacts Field CONTENT_MULTI_VCARD_URI
+NO DOC BLOCK: android.provider.CallLog.Calls Field CONTENT_URI_WITH_VOICEMAIL
+NO DOC BLOCK: android.R.attr Field contentAgeHint
+NO DOC BLOCK: android.R.attr Field contentInsetEnd
+NO DOC BLOCK: android.R.attr Field contentInsetLeft
+NO DOC BLOCK: android.R.attr Field contentInsetRight
+NO DOC BLOCK: android.R.attr Field contentInsetStart
+NO DOC BLOCK: android.R.attr Field controlX1
+NO DOC BLOCK: android.R.attr Field controlX2
+NO DOC BLOCK: android.R.attr Field controlY1
+NO DOC BLOCK: android.R.attr Field controlY2
+NO DOC BLOCK: android.R.attr Field country
+NO DOC BLOCK: android.provider.CallLog.Calls Field COUNTRY_ISO
+NO DOC BLOCK: android.renderscript.RenderScript Field CREATE_FLAG_LOW_LATENCY
+NO DOC BLOCK: android.renderscript.RenderScript Field CREATE_FLAG_LOW_POWER
+NO DOC BLOCK: android.renderscript.RenderScript Field CREATE_FLAG_NONE
+NO DOC BLOCK: android.provider.Telephony.BaseMmsColumns Field CREATOR
+NO DOC BLOCK: android.provider.Telephony.TextBasedSmsColumns Field CREATOR
+NO DOC BLOCK: android.view.inputmethod.InputConnection Field CURSOR_UPDATE_IMMEDIATE
+NO DOC BLOCK: android.view.inputmethod.InputConnection Field CURSOR_UPDATE_MONITOR
+NO DOC BLOCK: android.provider.CallLog.Calls Field DATA_USAGE
+NO DOC BLOCK: android.R.attr Field datePickerDialogTheme
+NO DOC BLOCK: android.R.attr Field datePickerMode
+NO DOC BLOCK: android.R.attr Field dayOfWeekBackground
+NO DOC BLOCK: android.R.attr Field dayOfWeekTextAppearance
+NO DOC BLOCK: android.provider.ContactsContract Field DEFERRED_SNIPPETING
+NO DOC BLOCK: android.provider.ContactsContract Field DEFERRED_SNIPPETING_QUERY
+NO DOC BLOCK: android.util.DisplayMetrics Field DENSITY_560
+NO DOC BLOCK: android.os.UserManager Field DISALLOW_ADD_USER
+NO DOC BLOCK: android.os.UserManager Field DISALLOW_ADJUST_VOLUME
+NO DOC BLOCK: android.os.UserManager Field DISALLOW_APPS_CONTROL
+NO DOC BLOCK: android.os.UserManager Field DISALLOW_CONFIG_CELL_BROADCASTS
+NO DOC BLOCK: android.os.UserManager Field DISALLOW_CONFIG_MOBILE_NETWORKS
+NO DOC BLOCK: android.os.UserManager Field DISALLOW_CONFIG_TETHERING
+NO DOC BLOCK: android.os.UserManager Field DISALLOW_CONFIG_VPN
+NO DOC BLOCK: android.os.UserManager Field DISALLOW_CREATE_WINDOWS
+NO DOC BLOCK: android.os.UserManager Field DISALLOW_CROSS_PROFILE_COPY_PASTE
+NO DOC BLOCK: android.os.UserManager Field DISALLOW_DEBUGGING_FEATURES
+NO DOC BLOCK: android.os.UserManager Field DISALLOW_FACTORY_RESET
+NO DOC BLOCK: android.os.UserManager Field DISALLOW_MOUNT_PHYSICAL_MEDIA
+NO DOC BLOCK: android.os.UserManager Field DISALLOW_OUTGOING_CALLS
+NO DOC BLOCK: android.os.UserManager Field DISALLOW_SMS
+NO DOC BLOCK: android.os.UserManager Field DISALLOW_UNMUTE_MICROPHONE
+NO DOC BLOCK: android.content.pm.ActivityInfo Field DOCUMENT_LAUNCH_ALWAYS
+NO DOC BLOCK: android.content.pm.ActivityInfo Field DOCUMENT_LAUNCH_INTO_EXISTING
+NO DOC BLOCK: android.content.pm.ActivityInfo Field DOCUMENT_LAUNCH_NEVER
+NO DOC BLOCK: android.content.pm.ActivityInfo Field DOCUMENT_LAUNCH_NONE
+NO DOC BLOCK: android.R.attr Field documentLaunchMode
+NO DOC BLOCK: android.content.pm.ActivityInfo Field documentLaunchMode
+NO DOC BLOCK: android.view.accessibility.CaptioningManager.CaptionStyle Field EDGE_TYPE_DEPRESSED
+NO DOC BLOCK: android.view.accessibility.CaptioningManager.CaptionStyle Field EDGE_TYPE_RAISED
+NO DOC BLOCK: android.view.accessibility.CaptioningManager.CaptionStyle Field EDGE_TYPE_UNSPECIFIED
+NO DOC BLOCK: android.R.attr Field elegantTextHeight
+NO DOC BLOCK: android.R.attr Field elevation
+NO DOC BLOCK: android.app.UiModeManager Field ENABLE_CAR_MODE_ALLOW_SLEEP
+NO DOC BLOCK: android.media.AudioFormat Field ENCODING_AC3
+NO DOC BLOCK: android.media.AudioFormat Field ENCODING_E_AC3
+NO DOC BLOCK: android.media.AudioFormat Field ENCODING_PCM_FLOAT
+NO DOC BLOCK: java.util.zip.ZipEntry Field ENDCOM
+NO DOC BLOCK: java.util.zip.ZipFile Field ENDCOM
+NO DOC BLOCK: java.util.zip.ZipInputStream Field ENDCOM
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field ENDCOM
+NO DOC BLOCK: java.util.zip.ZipEntry Field ENDHDR
+NO DOC BLOCK: java.util.zip.ZipFile Field ENDHDR
+NO DOC BLOCK: java.util.zip.ZipInputStream Field ENDHDR
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field ENDHDR
+NO DOC BLOCK: java.util.zip.ZipEntry Field ENDOFF
+NO DOC BLOCK: java.util.zip.ZipFile Field ENDOFF
+NO DOC BLOCK: java.util.zip.ZipInputStream Field ENDOFF
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field ENDOFF
+NO DOC BLOCK: java.util.zip.ZipEntry Field ENDSIG
+NO DOC BLOCK: java.util.zip.ZipFile Field ENDSIG
+NO DOC BLOCK: java.util.zip.ZipInputStream Field ENDSIG
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field ENDSIG
+NO DOC BLOCK: java.util.zip.ZipEntry Field ENDSIZ
+NO DOC BLOCK: java.util.zip.ZipFile Field ENDSIZ
+NO DOC BLOCK: java.util.zip.ZipInputStream Field ENDSIZ
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field ENDSIZ
+NO DOC BLOCK: java.util.zip.ZipEntry Field ENDSUB
+NO DOC BLOCK: java.util.zip.ZipFile Field ENDSUB
+NO DOC BLOCK: java.util.zip.ZipInputStream Field ENDSUB
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field ENDSUB
+NO DOC BLOCK: java.util.zip.ZipEntry Field ENDTOT
+NO DOC BLOCK: java.util.zip.ZipFile Field ENDTOT
+NO DOC BLOCK: java.util.zip.ZipInputStream Field ENDTOT
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field ENDTOT
+NO DOC BLOCK: android.os.UserManager Field ENSURE_VERIFY_APPS
+NO DOC BLOCK: android.provider.ContactsContract.PhoneLookup Field ENTERPRISE_CONTENT_FILTER_URI
+NO DOC BLOCK: android.provider.MediaStore.Audio.Media Field ENTRY_CONTENT_TYPE
+NO DOC BLOCK: android.media.AudioManager Field ERROR
+NO DOC BLOCK: android.media.AudioManager Field ERROR_DEAD_OBJECT
+NO DOC BLOCK: android.media.MediaCodec.CryptoException Field ERROR_INSUFFICIENT_OUTPUT_PROTECTION
+NO DOC BLOCK: android.speech.tts.TextToSpeech Field ERROR_INVALID_REQUEST
+NO DOC BLOCK: android.speech.tts.TextToSpeech Field ERROR_NETWORK
+NO DOC BLOCK: android.speech.tts.TextToSpeech Field ERROR_NETWORK_TIMEOUT
+NO DOC BLOCK: android.speech.tts.TextToSpeech Field ERROR_NOT_INSTALLED_YET
+NO DOC BLOCK: android.speech.tts.TextToSpeech Field ERROR_OUTPUT
+NO DOC BLOCK: android.speech.tts.TextToSpeech Field ERROR_SERVICE
+NO DOC BLOCK: android.speech.tts.TextToSpeech Field ERROR_SYNTHESIS
+NO DOC BLOCK: android.R.attr Field excludeClass
+NO DOC BLOCK: android.R.attr Field excludeId
+NO DOC BLOCK: android.R.attr Field excludeName
+NO DOC BLOCK: java.util.zip.ZipEntry Field EXTCRC
+NO DOC BLOCK: java.util.zip.ZipFile Field EXTCRC
+NO DOC BLOCK: java.util.zip.ZipInputStream Field EXTCRC
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field EXTCRC
+NO DOC BLOCK: java.util.zip.ZipEntry Field EXTHDR
+NO DOC BLOCK: java.util.zip.ZipFile Field EXTHDR
+NO DOC BLOCK: java.util.zip.ZipInputStream Field EXTHDR
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field EXTHDR
+NO DOC BLOCK: java.util.zip.ZipEntry Field EXTLEN
+NO DOC BLOCK: java.util.zip.ZipFile Field EXTLEN
+NO DOC BLOCK: java.util.zip.ZipInputStream Field EXTLEN
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field EXTLEN
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Contactables Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Email Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Event Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.GroupMembership Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Identity Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Im Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Nickname Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Note Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Organization Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Phone Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Photo Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Relation Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.SipAddress Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.StructuredName Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.StructuredPostal Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Website Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.Contacts Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.Data Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Contactables Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Email Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Event Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.GroupMembership Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Identity Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Im Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Nickname Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Note Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Organization Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Phone Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Photo Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Relation Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.SipAddress Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.StructuredName Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.StructuredPostal Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Website Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.Contacts Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.Data Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Contactables Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Email Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Event Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.GroupMembership Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Identity Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Im Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Nickname Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Note Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Organization Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Phone Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Photo Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Relation Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.SipAddress Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.StructuredName Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.StructuredPostal Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Website Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.Contacts Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.Data Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.appwidget.AppWidgetManager Field EXTRA_APPWIDGET_OLD_IDS
+NO DOC BLOCK: android.appwidget.AppWidgetManager Field EXTRA_APPWIDGET_PROVIDER_PROFILE
+NO DOC BLOCK: android.content.Intent Field EXTRA_ASSIST_INPUT_HINT_KEYBOARD
+NO DOC BLOCK: android.media.AudioManager Field EXTRA_AUDIO_PLUG_STATE
+NO DOC BLOCK: android.app.Notification Field EXTRA_BACKGROUND_IMAGE_URI
+NO DOC BLOCK: android.app.Notification Field EXTRA_BIG_TEXT
+NO DOC BLOCK: android.provider.CallLog.Calls Field EXTRA_CALL_TYPE_FILTER
+NO DOC BLOCK: android.app.Notification Field EXTRA_COMPACT_ACTIONS
+NO DOC BLOCK: android.media.AudioManager Field EXTRA_ENCODINGS
+NO DOC BLOCK: android.provider.ContactsContract.QuickContact Field EXTRA_EXCLUDE_MIMES
+NO DOC BLOCK: android.appwidget.AppWidgetManager Field EXTRA_HOST_ID
+NO DOC BLOCK: android.app.admin.DeviceAdminReceiver Field EXTRA_LOCK_TASK_PACKAGE
+NO DOC BLOCK: android.media.AudioManager Field EXTRA_MAX_CHANNEL_COUNT
+NO DOC BLOCK: android.provider.MediaStore Field EXTRA_MEDIA_GENRE
+NO DOC BLOCK: android.provider.MediaStore Field EXTRA_MEDIA_PLAYLIST
+NO DOC BLOCK: android.provider.MediaStore Field EXTRA_MEDIA_RADIO_CHANNEL
+NO DOC BLOCK: android.app.Notification Field EXTRA_MEDIA_SESSION
+NO DOC BLOCK: android.telephony.SmsManager Field EXTRA_MMS_DATA
+NO DOC BLOCK: android.printservice.PrintService Field EXTRA_PRINTER_INFO
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_EMAIL_ADDRESS
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_LOCAL_TIME
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_LOCALE
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_TIME_ZONE
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_WIFI_HIDDEN
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_WIFI_PAC_URL
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_WIFI_PASSWORD
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_WIFI_PROXY_BYPASS
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_WIFI_PROXY_HOST
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_WIFI_PROXY_PORT
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_WIFI_SECURITY_TYPE
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_WIFI_SSID
+NO DOC BLOCK: android.net.Proxy Field EXTRA_PROXY_INFO
+NO DOC BLOCK: android.content.Intent Field EXTRA_REPLACEMENT_EXTRAS
+NO DOC BLOCK: android.content.ContentResolver Field EXTRA_SIZE
+NO DOC BLOCK: android.app.Notification Field EXTRA_TEMPLATE
+NO DOC BLOCK: android.content.Intent Field EXTRA_USER
+NO DOC BLOCK: java.util.zip.ZipEntry Field EXTSIG
+NO DOC BLOCK: java.util.zip.ZipFile Field EXTSIG
+NO DOC BLOCK: java.util.zip.ZipInputStream Field EXTSIG
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field EXTSIG
+NO DOC BLOCK: java.util.zip.ZipEntry Field EXTSIZ
+NO DOC BLOCK: java.util.zip.ZipFile Field EXTSIZ
+NO DOC BLOCK: java.util.zip.ZipInputStream Field EXTSIZ
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field EXTSIZ
+NO DOC BLOCK: android.R.interpolator Field fast_out_linear_in
+NO DOC BLOCK: android.R.interpolator Field fast_out_slow_in
+NO DOC BLOCK: android.R.attr Field fastScrollStyle
+NO DOC BLOCK: android.view.Window Field FEATURE_ACTIVITY_TRANSITIONS
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_AUDIO_OUTPUT
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_CAMERA_CAPABILITY_RAW
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_CAMERA_LEVEL_FULL
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_CONNECTION_SERVICE
+NO DOC BLOCK: android.view.Window Field FEATURE_CONTENT_TRANSITIONS
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_GAMEPAD
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_LEANBACK
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_LIVE_TV
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_MANAGED_USERS
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_OPENGLES_EXTENSION_PACK
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_SECURELY_REMOVES_USERS
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecCapabilities Field FEATURE_SecurePlayback
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_SENSOR_AMBIENT_TEMPERATURE
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_SENSOR_HEART_RATE_ECG
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_SENSOR_RELATIVE_HUMIDITY
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecCapabilities Field FEATURE_TunneledPlayback
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_VERIFIED_BOOT
+NO DOC BLOCK: android.content.pm.PackageInfo Field featureGroups
+NO DOC BLOCK: android.provider.CallLog.Calls Field FEATURES
+NO DOC BLOCK: android.provider.CallLog.Calls Field FEATURES_VIDEO
+NO DOC BLOCK: android.R.attr Field fillAlpha
+NO DOC BLOCK: android.R.attr Field fillColor
+NO DOC BLOCK: android.content.Intent Field FLAG_ACTIVITY_NEW_DOCUMENT
+NO DOC BLOCK: android.content.Intent Field FLAG_ACTIVITY_RETAIN_IN_RECENTS
+NO DOC BLOCK: android.content.pm.ActivityInfo Field FLAG_AUTO_REMOVE_FROM_RECENTS
+NO DOC BLOCK: android.view.WindowManager.LayoutParams Field FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS
+NO DOC BLOCK: android.content.pm.ApplicationInfo Field FLAG_FULL_BACKUP_ONLY
+NO DOC BLOCK: android.content.Intent Field FLAG_GRANT_PREFIX_URI_PERMISSION
+NO DOC BLOCK: android.content.pm.ApplicationInfo Field FLAG_IS_GAME
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field FLAG_MANAGED_CAN_ACCESS_PARENT
+NO DOC BLOCK: android.content.pm.ApplicationInfo Field FLAG_MULTIARCH
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field FLAG_PARENT_CAN_ACCESS_MANAGED
+NO DOC BLOCK: android.content.pm.ActivityInfo Field FLAG_RELINQUISH_TASK_IDENTITY
+NO DOC BLOCK: android.content.pm.ActivityInfo Field FLAG_RESUME_WHILE_PAUSING
+NO DOC BLOCK: android.accessibilityservice.AccessibilityServiceInfo Field FLAG_RETRIEVE_INTERACTIVE_WINDOWS
+NO DOC BLOCK: android.provider.DocumentsContract.Root Field FLAG_SUPPORTS_IS_CHILD
+NO DOC BLOCK: android.provider.DocumentsContract.Document Field FLAG_SUPPORTS_RENAME
+NO DOC BLOCK: android.R.attr Field fontFeatureSettings
+NO DOC BLOCK: android.R.attr Field foregroundTint
+NO DOC BLOCK: android.R.attr Field foregroundTintMode
+NO DOC BLOCK: android.net.wifi.WifiConfiguration Field FQDN
+NO DOC BLOCK: android.R.attr Field fragmentAllowEnterTransitionOverlap
+NO DOC BLOCK: android.R.attr Field fragmentAllowReturnTransitionOverlap
+NO DOC BLOCK: android.R.attr Field fragmentEnterTransition
+NO DOC BLOCK: android.R.attr Field fragmentExitTransition
+NO DOC BLOCK: android.R.attr Field fragmentReenterTransition
+NO DOC BLOCK: android.R.attr Field fragmentReturnTransition
+NO DOC BLOCK: android.R.attr Field fragmentSharedElementEnterTransition
+NO DOC BLOCK: android.R.attr Field fragmentSharedElementReturnTransition
+NO DOC BLOCK: android.net.wifi.WifiInfo Field FREQUENCY_UNITS
+NO DOC BLOCK: android.R.attr Field fromId
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.StructuredName Field FULL_NAME_STYLE
+NO DOC BLOCK: android.R.attr Field fullBackupOnly
+NO DOC BLOCK: android.bluetooth.BluetoothGatt Field GATT_CONNECTION_CONGESTED
+NO DOC BLOCK: android.provider.CallLog.Calls Field GEOCODED_LOCATION
+NO DOC BLOCK: android.accessibilityservice.AccessibilityService Field GLOBAL_ACTION_POWER_DIALOG
+NO DOC BLOCK: android.R.attr Field goIcon
+NO DOC BLOCK: android.R.attr Field headerAmPmTextAppearance
+NO DOC BLOCK: android.R.attr Field headerDayOfMonthTextAppearance
+NO DOC BLOCK: android.R.attr Field headerMonthTextAppearance
+NO DOC BLOCK: android.R.attr Field headerTimeTextAppearance
+NO DOC BLOCK: android.R.attr Field headerYearTextAppearance
+NO DOC BLOCK: android.app.Notification Field headsUpContentView
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCHighTierLevel1
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCHighTierLevel2
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCHighTierLevel21
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCHighTierLevel3
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCHighTierLevel31
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCHighTierLevel4
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCHighTierLevel41
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCHighTierLevel5
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCHighTierLevel51
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCHighTierLevel52
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCHighTierLevel6
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCHighTierLevel61
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCHighTierLevel62
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCMainTierLevel1
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCMainTierLevel2
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCMainTierLevel21
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCMainTierLevel3
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCMainTierLevel31
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCMainTierLevel4
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCMainTierLevel41
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCMainTierLevel5
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCMainTierLevel51
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCMainTierLevel52
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCMainTierLevel6
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCMainTierLevel61
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCMainTierLevel62
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCProfileMain
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field HEVCProfileMain10
+NO DOC BLOCK: android.R.attr Field hideOnContentScroll
+NO DOC BLOCK: android.service.notification.NotificationListenerService Field HINT_HOST_DISABLE_EFFECTS
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeProvider Field HOST_VIEW_ID
+NO DOC BLOCK: android.app.ActivityManager.RunningAppProcessInfo Field IMPORTANCE_GONE
+NO DOC BLOCK: android.provider.ContactsContract.ContactsColumns Field IN_DEFAULT_DIRECTORY
+NO DOC BLOCK: android.R.attr Field indeterminateTint
+NO DOC BLOCK: android.R.attr Field indeterminateTintMode
+NO DOC BLOCK: android.R.attr Field inset
+NO DOC BLOCK: android.content.pm.PackageInfo Field INSTALL_LOCATION_AUTO
+NO DOC BLOCK: android.content.pm.PackageInfo Field INSTALL_LOCATION_INTERNAL_ONLY
+NO DOC BLOCK: android.content.pm.PackageInfo Field INSTALL_LOCATION_PREFER_EXTERNAL
+NO DOC BLOCK: android.content.pm.PackageInfo Field installLocation
+NO DOC BLOCK: android.app.Notification Field INTENT_CATEGORY_NOTIFICATION_PREFERENCES
+NO DOC BLOCK: android.service.notification.NotificationListenerService Field INTERRUPTION_FILTER_ALL
+NO DOC BLOCK: android.service.notification.NotificationListenerService Field INTERRUPTION_FILTER_NONE
+NO DOC BLOCK: android.service.notification.NotificationListenerService Field INTERRUPTION_FILTER_PRIORITY
+NO DOC BLOCK: android.R.attr Field isGame
+NO DOC BLOCK: android.content.Context Field JOB_SCHEDULER_SERVICE
+NO DOC BLOCK: android.media.MediaFormat Field KEY_AAC_DRC_ATTENUATION_FACTOR
+NO DOC BLOCK: android.media.MediaFormat Field KEY_AAC_DRC_BOOST_FACTOR
+NO DOC BLOCK: android.media.MediaFormat Field KEY_AAC_DRC_HEAVY_COMPRESSION
+NO DOC BLOCK: android.media.MediaFormat Field KEY_AAC_DRC_TARGET_REFERENCE_LEVEL
+NO DOC BLOCK: android.media.MediaFormat Field KEY_AAC_ENCODED_TARGET_LEVEL
+NO DOC BLOCK: android.media.MediaFormat Field KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT
+NO DOC BLOCK: android.media.MediaFormat Field KEY_AAC_SBR_MODE
+NO DOC BLOCK: android.media.MediaFormat Field KEY_AUDIO_SESSION_ID
+NO DOC BLOCK: android.media.MediaFormat Field KEY_BITRATE_MODE
+NO DOC BLOCK: android.media.MediaFormat Field KEY_CAPTURE_RATE
+NO DOC BLOCK: android.media.MediaFormat Field KEY_COMPLEXITY
+NO DOC BLOCK: android.speech.tts.TextToSpeech.Engine Field KEY_FEATURE_NETWORK_RETRIES_COUNT
+NO DOC BLOCK: android.speech.tts.TextToSpeech.Engine Field KEY_FEATURE_NETWORK_TIMEOUT_MS
+NO DOC BLOCK: android.speech.tts.TextToSpeech.Engine Field KEY_FEATURE_NOT_INSTALLED
+NO DOC BLOCK: android.speech.tts.TextToSpeech.Engine Field KEY_PARAM_SESSION_ID
+NO DOC BLOCK: android.media.MediaFormat Field KEY_PROFILE
+NO DOC BLOCK: android.media.MediaFormat Field KEY_TEMPORAL_LAYERING
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_11
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_12
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_HELP
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_LAST_CHANNEL
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_MEDIA_TOP_MENU
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_PAIRING
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_ANTENNA_CABLE
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_AUDIO_DESCRIPTION
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_CONTENTS_MENU
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_DATA_SERVICE
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_INPUT_COMPONENT_1
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_INPUT_COMPONENT_2
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_INPUT_COMPOSITE_1
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_INPUT_COMPOSITE_2
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_INPUT_HDMI_1
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_INPUT_HDMI_2
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_INPUT_HDMI_3
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_INPUT_HDMI_4
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_INPUT_VGA_1
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_MEDIA_CONTEXT_MENU
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_NETWORK
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_NUMBER_ENTRY
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_RADIO_SERVICE
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_SATELLITE
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_SATELLITE_BS
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_SATELLITE_CS
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_SATELLITE_SERVICE
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_TELETEXT
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_TERRESTRIAL_ANALOG
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_TERRESTRIAL_DIGITAL
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_TIMER_PROGRAMMING
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_ZOOM_MODE
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_VOICE_ASSIST
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field KEYGUARD_DISABLE_FINGERPRINT
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field KEYGUARD_DISABLE_SECURE_NOTIFICATIONS
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field KEYGUARD_DISABLE_TRUST_AGENTS
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS
+NO DOC BLOCK: android.os.Build.VERSION_CODES Field L
+NO DOC BLOCK: android.content.Context Field LAUNCHER_APPS_SERVICE
+NO DOC BLOCK: android.R.attr Field launchTaskBehindSourceAnimation
+NO DOC BLOCK: android.R.attr Field launchTaskBehindTargetAnimation
+NO DOC BLOCK: android.R.attr Field layout_columnWeight
+NO DOC BLOCK: android.R.attr Field layout_rowWeight
+NO DOC BLOCK: android.R.attr Field letterSpacing
+NO DOC BLOCK: android.R.interpolator Field linear_out_slow_in
+NO DOC BLOCK: java.util.zip.ZipEntry Field LOCCRC
+NO DOC BLOCK: java.util.zip.ZipFile Field LOCCRC
+NO DOC BLOCK: java.util.zip.ZipInputStream Field LOCCRC
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field LOCCRC
+NO DOC BLOCK: java.util.zip.ZipEntry Field LOCEXT
+NO DOC BLOCK: java.util.zip.ZipFile Field LOCEXT
+NO DOC BLOCK: java.util.zip.ZipInputStream Field LOCEXT
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field LOCEXT
+NO DOC BLOCK: java.util.zip.ZipEntry Field LOCFLG
+NO DOC BLOCK: java.util.zip.ZipFile Field LOCFLG
+NO DOC BLOCK: java.util.zip.ZipInputStream Field LOCFLG
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field LOCFLG
+NO DOC BLOCK: java.util.zip.ZipEntry Field LOCHDR
+NO DOC BLOCK: java.util.zip.ZipFile Field LOCHDR
+NO DOC BLOCK: java.util.zip.ZipInputStream Field LOCHDR
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field LOCHDR
+NO DOC BLOCK: java.util.zip.ZipEntry Field LOCHOW
+NO DOC BLOCK: java.util.zip.ZipFile Field LOCHOW
+NO DOC BLOCK: java.util.zip.ZipInputStream Field LOCHOW
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field LOCHOW
+NO DOC BLOCK: java.util.zip.ZipEntry Field LOCLEN
+NO DOC BLOCK: java.util.zip.ZipFile Field LOCLEN
+NO DOC BLOCK: java.util.zip.ZipInputStream Field LOCLEN
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field LOCLEN
+NO DOC BLOCK: java.util.zip.ZipEntry Field LOCNAM
+NO DOC BLOCK: java.util.zip.ZipFile Field LOCNAM
+NO DOC BLOCK: java.util.zip.ZipInputStream Field LOCNAM
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field LOCNAM
+NO DOC BLOCK: java.util.zip.ZipEntry Field LOCSIG
+NO DOC BLOCK: java.util.zip.ZipFile Field LOCSIG
+NO DOC BLOCK: java.util.zip.ZipInputStream Field LOCSIG
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field LOCSIG
+NO DOC BLOCK: java.util.zip.ZipEntry Field LOCSIZ
+NO DOC BLOCK: java.util.zip.ZipFile Field LOCSIZ
+NO DOC BLOCK: java.util.zip.ZipInputStream Field LOCSIZ
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field LOCSIZ
+NO DOC BLOCK: java.util.zip.ZipEntry Field LOCTIM
+NO DOC BLOCK: java.util.zip.ZipFile Field LOCTIM
+NO DOC BLOCK: java.util.zip.ZipInputStream Field LOCTIM
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field LOCTIM
+NO DOC BLOCK: java.util.zip.ZipEntry Field LOCVER
+NO DOC BLOCK: java.util.zip.ZipFile Field LOCVER
+NO DOC BLOCK: java.util.zip.ZipInputStream Field LOCVER
+NO DOC BLOCK: java.util.zip.ZipOutputStream Field LOCVER
+NO DOC BLOCK: android.os.Build.VERSION_CODES Field LOLLIPOP
+NO DOC BLOCK: android.R.id Field mask
+NO DOC BLOCK: android.transition.Transition Field MATCH_ID
+NO DOC BLOCK: android.transition.Transition Field MATCH_INSTANCE
+NO DOC BLOCK: android.transition.Transition Field MATCH_ITEM_ID
+NO DOC BLOCK: android.transition.Transition Field MATCH_NAME
+NO DOC BLOCK: android.R.attr Field matchOrder
+NO DOC BLOCK: android.R.attr Field maximumAngle
+NO DOC BLOCK: android.R.attr Field maxRecents
+NO DOC BLOCK: android.content.pm.ActivityInfo Field maxRecents
+NO DOC BLOCK: android.content.Context Field MEDIA_PROJECTION_SERVICE
+NO DOC BLOCK: android.content.Context Field MEDIA_SESSION_SERVICE
+NO DOC BLOCK: android.media.MediaPlayer.TrackInfo Field MEDIA_TRACK_TYPE_SUBTITLE
+NO DOC BLOCK: android.provider.Telephony.BaseMmsColumns Field MESSAGE_BOX_FAILED
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field MIME_TYPE_PROVISIONING_NFC
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_AAC
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_AC3
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_AMR_NB
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_AMR_WB
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_FLAC
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_G711_ALAW
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_G711_MLAW
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_MPEG
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_MSGSM
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_OPUS
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_QCELP
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_RAW
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_VORBIS
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_TEXT_CEA_608
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_TEXT_VTT
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_VIDEO_AVC
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_VIDEO_H263
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_VIDEO_HEVC
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_VIDEO_MPEG2
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_VIDEO_MPEG4
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_VIDEO_RAW
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_VIDEO_VP8
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_VIDEO_VP9
+NO DOC BLOCK: android.R.attr Field minimumHorizontalAngle
+NO DOC BLOCK: android.R.attr Field minimumVerticalAngle
+NO DOC BLOCK: android.webkit.WebSettings Field MIXED_CONTENT_ALWAYS_ALLOW
+NO DOC BLOCK: android.webkit.WebSettings Field MIXED_CONTENT_COMPATIBILITY_MODE
+NO DOC BLOCK: android.webkit.WebSettings Field MIXED_CONTENT_NEVER_ALLOW
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_ALIAS_ENABLED
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_ALIAS_MAX_CHARS
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_ALIAS_MIN_CHARS
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_ALLOW_ATTACH_AUDIO
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_APPEND_TRANSACTION_ID
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_EMAIL_GATEWAY_NUMBER
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_GROUP_MMS_ENABLED
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_HTTP_PARAMS
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_HTTP_SOCKET_TIMEOUT
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_MAX_IMAGE_HEIGHT
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_MAX_IMAGE_WIDTH
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_MAX_MESSAGE_SIZE
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_MMS_ENABLED
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_MMS_READ_REPORT_ENABLED
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_MULTIPART_SMS_ENABLED
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_NAI_SUFFIX
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_RECIPIENT_LIMIT
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_SUBJECT_MAX_LENGTH
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_UA_PROF_TAG_NAME
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_UA_PROF_URL
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_USER_AGENT
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_ERROR_CONFIGURATION_ERROR
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_ERROR_HTTP_FAILURE
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_ERROR_INVALID_APN
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_ERROR_IO_ERROR
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_ERROR_RETRY
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_ERROR_UNABLE_CONNECT_MMS
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_ERROR_UNSPECIFIED
+NO DOC BLOCK: android.app.AppOpsManager Field MODE_DEFAULT
+NO DOC BLOCK: android.transition.Visibility Field MODE_IN
+NO DOC BLOCK: android.transition.Visibility Field MODE_OUT
+NO DOC BLOCK: android.R.attr Field multiArch
+NO DOC BLOCK: android.media.MediaMuxer.OutputFormat Field MUXER_OUTPUT_WEBM
+NO DOC BLOCK: android.provider.ContactsContract.ContactsColumns Field NAME_RAW_CONTACT_ID
+NO DOC BLOCK: android.view.Window Field NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME
+NO DOC BLOCK: android.R.id Field navigationBarBackground
+NO DOC BLOCK: android.R.attr Field navigationBarColor
+NO DOC BLOCK: android.R.attr Field navigationContentDescription
+NO DOC BLOCK: android.R.attr Field navigationIcon
+NO DOC BLOCK: android.R.attr Field nestedScrollingEnabled
+NO DOC BLOCK: android.R.attr Field numbersBackgroundColor
+NO DOC BLOCK: android.R.attr Field numbersSelectorColor
+NO DOC BLOCK: android.R.attr Field numbersTextColor
+NO DOC BLOCK: android.app.AppOpsManager Field OPSTR_GET_USAGE_STATS
+NO DOC BLOCK: android.R.attr Field outlineProvider
+NO DOC BLOCK: android.R.attr Field overlapAnchor
+NO DOC BLOCK: android.graphics.drawable.LayerDrawable Field PADDING_MODE_NEST
+NO DOC BLOCK: android.graphics.drawable.LayerDrawable Field PADDING_MODE_STACK
+NO DOC BLOCK: android.R.attr Field paddingMode
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field PASSWORD_QUALITY_NUMERIC_COMPLEX
+NO DOC BLOCK: android.R.attr Field pathData
+NO DOC BLOCK: android.R.attr Field patternPathData
+NO DOC BLOCK: android.content.pm.ActivityInfo Field PERSIST_ACROSS_REBOOTS
+NO DOC BLOCK: android.content.pm.ActivityInfo Field PERSIST_NEVER
+NO DOC BLOCK: android.content.pm.ActivityInfo Field PERSIST_ROOT_ONLY
+NO DOC BLOCK: android.R.attr Field persistableMode
+NO DOC BLOCK: android.content.pm.ActivityInfo Field persistableMode
+NO DOC BLOCK: android.provider.CallLog.Calls Field PHONE_ACCOUNT_COMPONENT_NAME
+NO DOC BLOCK: android.provider.CallLog.Calls Field PHONE_ACCOUNT_ID
+NO DOC BLOCK: android.provider.ContactsContract.ContactOptionsColumns Field PINNED
+NO DOC BLOCK: android.R.attr Field popupElevation
+NO DOC BLOCK: android.R.attr Field popupTheme
+NO DOC BLOCK: android.view.WindowManager.LayoutParams Field preferredRefreshRate
+NO DOC BLOCK: java.util.Locale Field PRIVATE_USE_EXTENSION
+NO DOC BLOCK: android.R.attr Field progressBackgroundTint
+NO DOC BLOCK: android.R.attr Field progressBackgroundTintMode
+NO DOC BLOCK: android.R.attr Field progressTint
+NO DOC BLOCK: android.R.attr Field progressTintMode
+NO DOC BLOCK: android.R.attr Field propertyXName
+NO DOC BLOCK: android.R.attr Field propertyYName
+NO DOC BLOCK: android.content.pm.PermissionInfo Field PROTECTION_FLAG_APPOP
+NO DOC BLOCK: android.os.PowerManager Field PROXIMITY_SCREEN_OFF_WAKE_LOCK
+NO DOC BLOCK: android.app.Notification Field publicVersion
+NO DOC BLOCK: android.media.CamcorderProfile Field QUALITY_2160P
+NO DOC BLOCK: android.media.CamcorderProfile Field QUALITY_HIGH_SPEED_1080P
+NO DOC BLOCK: android.media.CamcorderProfile Field QUALITY_HIGH_SPEED_2160P
+NO DOC BLOCK: android.media.CamcorderProfile Field QUALITY_HIGH_SPEED_480P
+NO DOC BLOCK: android.media.CamcorderProfile Field QUALITY_HIGH_SPEED_720P
+NO DOC BLOCK: android.media.CamcorderProfile Field QUALITY_HIGH_SPEED_HIGH
+NO DOC BLOCK: android.media.CamcorderProfile Field QUALITY_HIGH_SPEED_LOW
+NO DOC BLOCK: android.media.CamcorderProfile Field QUALITY_TIME_LAPSE_2160P
+NO DOC BLOCK: android.provider.ContactsContract.PhoneLookup Field QUERY_PARAMETER_SIP_ADDRESS
+NO DOC BLOCK: android.R.attr Field queryBackground
+NO DOC BLOCK: android.media.Rating Field RATING_NONE
+NO DOC BLOCK: android.graphics.ImageFormat Field RAW10
+NO DOC BLOCK: android.graphics.ImageFormat Field RAW_SENSOR
+NO DOC BLOCK: android.Manifest.permission Field READ_VOICEMAIL
+NO DOC BLOCK: android.R.attr Field recognitionService
+NO DOC BLOCK: android.media.MediaCodecList Field REGULAR_CODECS
+NO DOC BLOCK: android.os.PowerManager Field RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY
+NO DOC BLOCK: android.R.attr Field relinquishTaskIdentity
+NO DOC BLOCK: android.provider.ContactsContract Field REMOVE_DUPLICATE_ENTRIES
+NO DOC BLOCK: android.R.attr Field reparent
+NO DOC BLOCK: android.R.attr Field reparentWithOverlay
+NO DOC BLOCK: android.hardware.Sensor Field REPORTING_MODE_CONTINUOUS
+NO DOC BLOCK: android.hardware.Sensor Field REPORTING_MODE_ON_CHANGE
+NO DOC BLOCK: android.hardware.Sensor Field REPORTING_MODE_ONE_SHOT
+NO DOC BLOCK: android.hardware.Sensor Field REPORTING_MODE_SPECIAL_TRIGGER
+NO DOC BLOCK: android.provider.ContactsContract.DataColumns Field RES_PACKAGE
+NO DOC BLOCK: android.provider.ContactsContract.GroupsColumns Field RES_PACKAGE
+NO DOC BLOCK: android.content.Context Field RESTRICTIONS_SERVICE
+NO DOC BLOCK: android.R.attr Field restrictionType
+NO DOC BLOCK: android.R.attr Field resumeWhilePausing
+NO DOC BLOCK: android.R.attr Field reversible
+NO DOC BLOCK: android.view.View Field SCROLL_AXIS_HORIZONTAL
+NO DOC BLOCK: android.view.View Field SCROLL_AXIS_NONE
+NO DOC BLOCK: android.view.View Field SCROLL_AXIS_VERTICAL
+NO DOC BLOCK: android.R.attr Field searchIcon
+NO DOC BLOCK: android.R.attr Field searchViewStyle
+NO DOC BLOCK: android.R.attr Field secondaryProgressTint
+NO DOC BLOCK: android.R.attr Field secondaryProgressTintMode
+NO DOC BLOCK: android.R.attr Field selectableItemBackgroundBorderless
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo.CollectionInfo Field SELECTION_MODE_MULTIPLE
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo.CollectionInfo Field SELECTION_MODE_NONE
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo.CollectionInfo Field SELECTION_MODE_SINGLE
+NO DOC BLOCK: android.os.Message Field sendingUid
+NO DOC BLOCK: android.R.attr Field sessionService
+NO DOC BLOCK: android.R.attr Field setupActivity
+NO DOC BLOCK: android.R.attr Field showText
+NO DOC BLOCK: android.net.wifi.WifiEnterpriseConfig.Eap Field SIM
+NO DOC BLOCK: android.provider.Settings.Secure Field SKIP_FIRST_USE_HINTS
+NO DOC BLOCK: android.R.attr Field slideEdge
+NO DOC BLOCK: android.view.InputDevice Field SOURCE_HDMI
+NO DOC BLOCK: android.content.pm.PackageInfo Field splitNames
+NO DOC BLOCK: android.content.pm.ApplicationInfo Field splitPublicSourceDirs
+NO DOC BLOCK: android.content.pm.InstrumentationInfo Field splitPublicSourceDirs
+NO DOC BLOCK: android.content.pm.ApplicationInfo Field splitSourceDirs
+NO DOC BLOCK: android.content.pm.InstrumentationInfo Field splitSourceDirs
+NO DOC BLOCK: android.R.attr Field splitTrack
+NO DOC BLOCK: android.R.attr Field spotShadowAlpha
+NO DOC BLOCK: android.R.attr Field stackViewStyle
+NO DOC BLOCK: android.view.Display Field STATE_DOZE
+NO DOC BLOCK: android.view.Display Field STATE_DOZE_SUSPEND
+NO DOC BLOCK: android.R.attr Field stateListAnimator
+NO DOC BLOCK: android.view.Window Field STATUS_BAR_BACKGROUND_TRANSITION_NAME
+NO DOC BLOCK: android.R.id Field statusBarBackground
+NO DOC BLOCK: android.R.attr Field statusBarColor
+NO DOC BLOCK: android.speech.tts.TextToSpeech Field STOPPED
+NO DOC BLOCK: android.provider.ContactsContract Field STREQUENT_PHONE_ONLY
+NO DOC BLOCK: android.R.attr Field strokeAlpha
+NO DOC BLOCK: android.R.attr Field strokeColor
+NO DOC BLOCK: android.R.attr Field strokeLineCap
+NO DOC BLOCK: android.R.attr Field strokeLineJoin
+NO DOC BLOCK: android.R.attr Field strokeMiterLimit
+NO DOC BLOCK: android.R.attr Field strokeWidth
+NO DOC BLOCK: android.R.attr Field submitBackground
+NO DOC BLOCK: android.R.attr Field subtitleTextAppearance
+NO DOC BLOCK: android.app.SearchManager Field SUGGEST_COLUMN_AUDIO_CHANNEL_CONFIG
+NO DOC BLOCK: android.app.SearchManager Field SUGGEST_COLUMN_CONTENT_TYPE
+NO DOC BLOCK: android.app.SearchManager Field SUGGEST_COLUMN_DURATION
+NO DOC BLOCK: android.app.SearchManager Field SUGGEST_COLUMN_IS_LIVE
+NO DOC BLOCK: android.app.SearchManager Field SUGGEST_COLUMN_PRODUCTION_YEAR
+NO DOC BLOCK: android.app.SearchManager Field SUGGEST_COLUMN_PURCHASE_PRICE
+NO DOC BLOCK: android.app.SearchManager Field SUGGEST_COLUMN_RATING_SCORE
+NO DOC BLOCK: android.app.SearchManager Field SUGGEST_COLUMN_RATING_STYLE
+NO DOC BLOCK: android.app.SearchManager Field SUGGEST_COLUMN_RENTAL_PRICE
+NO DOC BLOCK: android.app.SearchManager Field SUGGEST_COLUMN_RESULT_CARD_IMAGE
+NO DOC BLOCK: android.app.SearchManager Field SUGGEST_COLUMN_VIDEO_HEIGHT
+NO DOC BLOCK: android.app.SearchManager Field SUGGEST_COLUMN_VIDEO_WIDTH
+NO DOC BLOCK: android.R.attr Field suggestionRowLayout
+NO DOC BLOCK: android.os.Build Field SUPPORTED_32_BIT_ABIS
+NO DOC BLOCK: android.os.Build Field SUPPORTED_64_BIT_ABIS
+NO DOC BLOCK: android.os.Build Field SUPPORTED_ABIS
+NO DOC BLOCK: android.media.MediaRecorder.VideoSource Field SURFACE
+NO DOC BLOCK: android.R.attr Field switchStyle
+NO DOC BLOCK: android.R.attr Field targetName
+NO DOC BLOCK: android.app.ActivityManager.RecentTaskInfo Field taskDescription
+NO DOC BLOCK: android.content.Context Field TELECOM_SERVICE
+NO DOC BLOCK: android.R.style Field TextAppearance_Material
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Body1
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Body2
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Button
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Caption
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_DialogWindowTitle
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Display1
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Display2
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Display3
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Display4
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Headline
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Inverse
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Large
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Large_Inverse
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Medium
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Medium_Inverse
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Menu
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Notification
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Notification_Emphasis
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Notification_Info
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Notification_Line2
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Notification_Time
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Notification_Title
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_SearchResult_Subtitle
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_SearchResult_Title
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Small
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Small_Inverse
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Subhead
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Title
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_ActionBar_Menu
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_ActionBar_Subtitle
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_ActionBar_Title
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_ActionBar_Title_Inverse
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_ActionMode_Subtitle
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_ActionMode_Title
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_ActionMode_Title_Inverse
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_Button
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_DropDownHint
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_DropDownItem
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_EditText
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_IconMenu_Item
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_PopupMenu
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_PopupMenu_Large
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_PopupMenu_Small
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_TabWidget
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_TextView
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_TextView_PopupMenu
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_TextView_SpinnerItem
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_Toolbar_Subtitle
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_Toolbar_Title
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_WindowTitle
+NO DOC BLOCK: android.R.attr Field textAppearanceListItemSecondary
+NO DOC BLOCK: android.R.style Field Theme_DeviceDefault_Settings
+NO DOC BLOCK: android.R.style Field Theme_Material
+NO DOC BLOCK: android.R.style Field Theme_Material_Dialog
+NO DOC BLOCK: android.R.style Field Theme_Material_Dialog_Alert
+NO DOC BLOCK: android.R.style Field Theme_Material_Dialog_MinWidth
+NO DOC BLOCK: android.R.style Field Theme_Material_Dialog_NoActionBar
+NO DOC BLOCK: android.R.style Field Theme_Material_Dialog_NoActionBar_MinWidth
+NO DOC BLOCK: android.R.style Field Theme_Material_Dialog_Presentation
+NO DOC BLOCK: android.R.style Field Theme_Material_DialogWhenLarge
+NO DOC BLOCK: android.R.style Field Theme_Material_DialogWhenLarge_NoActionBar
+NO DOC BLOCK: android.R.style Field Theme_Material_InputMethod
+NO DOC BLOCK: android.R.style Field Theme_Material_Light
+NO DOC BLOCK: android.R.style Field Theme_Material_Light_DarkActionBar
+NO DOC BLOCK: android.R.style Field Theme_Material_Light_Dialog
+NO DOC BLOCK: android.R.style Field Theme_Material_Light_Dialog_Alert
+NO DOC BLOCK: android.R.style Field Theme_Material_Light_Dialog_MinWidth
+NO DOC BLOCK: android.R.style Field Theme_Material_Light_Dialog_NoActionBar
+NO DOC BLOCK: android.R.style Field Theme_Material_Light_Dialog_NoActionBar_MinWidth
+NO DOC BLOCK: android.R.style Field Theme_Material_Light_Dialog_Presentation
+NO DOC BLOCK: android.R.style Field Theme_Material_Light_DialogWhenLarge
+NO DOC BLOCK: android.R.style Field Theme_Material_Light_DialogWhenLarge_NoActionBar
+NO DOC BLOCK: android.R.style Field Theme_Material_Light_NoActionBar
+NO DOC BLOCK: android.R.style Field Theme_Material_Light_NoActionBar_Fullscreen
+NO DOC BLOCK: android.R.style Field Theme_Material_Light_NoActionBar_Overscan
+NO DOC BLOCK: android.R.style Field Theme_Material_Light_NoActionBar_TranslucentDecor
+NO DOC BLOCK: android.R.style Field Theme_Material_Light_Panel
+NO DOC BLOCK: android.R.style Field Theme_Material_Light_Voice
+NO DOC BLOCK: android.R.style Field Theme_Material_NoActionBar
+NO DOC BLOCK: android.R.style Field Theme_Material_NoActionBar_Fullscreen
+NO DOC BLOCK: android.R.style Field Theme_Material_NoActionBar_Overscan
+NO DOC BLOCK: android.R.style Field Theme_Material_NoActionBar_TranslucentDecor
+NO DOC BLOCK: android.R.style Field Theme_Material_Panel
+NO DOC BLOCK: android.R.style Field Theme_Material_Settings
+NO DOC BLOCK: android.R.style Field Theme_Material_Voice
+NO DOC BLOCK: android.R.style Field Theme_Material_Wallpaper
+NO DOC BLOCK: android.R.style Field Theme_Material_Wallpaper_NoTitleBar
+NO DOC BLOCK: android.R.style Field ThemeOverlay
+NO DOC BLOCK: android.R.style Field ThemeOverlay_Material
+NO DOC BLOCK: android.R.style Field ThemeOverlay_Material_ActionBar
+NO DOC BLOCK: android.R.style Field ThemeOverlay_Material_Dark
+NO DOC BLOCK: android.R.style Field ThemeOverlay_Material_Dark_ActionBar
+NO DOC BLOCK: android.R.style Field ThemeOverlay_Material_Light
+NO DOC BLOCK: android.R.attr Field thumbTint
+NO DOC BLOCK: android.R.attr Field thumbTintMode
+NO DOC BLOCK: android.R.attr Field tileModeX
+NO DOC BLOCK: android.R.attr Field tileModeY
+NO DOC BLOCK: android.R.attr Field timePickerDialogTheme
+NO DOC BLOCK: android.R.attr Field timePickerMode
+NO DOC BLOCK: android.R.attr Field timePickerStyle
+NO DOC BLOCK: android.R.attr Field tintMode
+NO DOC BLOCK: android.provider.ContactsContract.GroupsColumns Field TITLE_RES
+NO DOC BLOCK: android.R.attr Field titleTextAppearance
+NO DOC BLOCK: android.R.attr Field toId
+NO DOC BLOCK: android.R.attr Field toolbarStyle
+NO DOC BLOCK: android.R.attr Field touchscreenBlocksFocus
+NO DOC BLOCK: android.provider.CallLog.Calls Field TRANSCRIPTION
+NO DOC BLOCK: android.provider.VoicemailContract.Voicemails Field TRANSCRIPTION
+NO DOC BLOCK: android.R.attr Field transitionGroup
+NO DOC BLOCK: android.R.attr Field transitionName
+NO DOC BLOCK: android.R.attr Field transitionVisibilityMode
+NO DOC BLOCK: android.R.attr Field translateX
+NO DOC BLOCK: android.R.attr Field translateY
+NO DOC BLOCK: android.view.View Field TRANSLATION_Z
+NO DOC BLOCK: android.R.attr Field translationZ
+NO DOC BLOCK: android.R.attr Field trimPathEnd
+NO DOC BLOCK: android.R.attr Field trimPathOffset
+NO DOC BLOCK: android.R.attr Field trimPathStart
+NO DOC BLOCK: android.content.Context Field TV_INPUT_SERVICE
+NO DOC BLOCK: android.content.RestrictionEntry Field TYPE_INTEGER
+NO DOC BLOCK: android.content.RestrictionEntry Field TYPE_STRING
+NO DOC BLOCK: android.net.ConnectivityManager Field TYPE_VPN
+NO DOC BLOCK: android.view.accessibility.AccessibilityEvent Field TYPE_WINDOWS_CHANGED
+NO DOC BLOCK: java.util.Locale Field UNICODE_LOCALE_EXTENSION
+NO DOC BLOCK: android.R.attr Field viewportHeight
+NO DOC BLOCK: android.R.attr Field viewportWidth
+NO DOC BLOCK: android.hardware.display.DisplayManager Field VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR
+NO DOC BLOCK: android.media.audiofx.Virtualizer Field VIRTUALIZATION_MODE_AUTO
+NO DOC BLOCK: android.media.audiofx.Virtualizer Field VIRTUALIZATION_MODE_BINAURAL
+NO DOC BLOCK: android.media.audiofx.Virtualizer Field VIRTUALIZATION_MODE_OFF
+NO DOC BLOCK: android.media.audiofx.Virtualizer Field VIRTUALIZATION_MODE_TRANSAURAL
+NO DOC BLOCK: android.app.Notification Field visibility
+NO DOC BLOCK: android.app.Notification Field VISIBILITY_PRIVATE
+NO DOC BLOCK: android.app.Notification Field VISIBILITY_PUBLIC
+NO DOC BLOCK: android.app.Notification Field VISIBILITY_SECRET
+NO DOC BLOCK: android.R.attr Field voiceIcon
+NO DOC BLOCK: android.provider.CallLog.Calls Field VOICEMAIL_TYPE
+NO DOC BLOCK: android.provider.CallLog.Calls Field VOICEMAIL_URI
+NO DOC BLOCK: android.media.MediaRecorder.AudioEncoder Field VORBIS
+NO DOC BLOCK: android.media.MediaRecorder.VideoEncoder Field VP8
+NO DOC BLOCK: android.media.MediaRecorder.OutputFormat Field WEBM
+NO DOC BLOCK: android.appwidget.AppWidgetProviderInfo Field WIDGET_CATEGORY_SEARCHBOX
+NO DOC BLOCK: android.R.style Field Widget_DeviceDefault_FastScroll
+NO DOC BLOCK: android.R.style Field Widget_DeviceDefault_Light_FastScroll
+NO DOC BLOCK: android.R.style Field Widget_DeviceDefault_Light_StackView
+NO DOC BLOCK: android.R.style Field Widget_DeviceDefault_StackView
+NO DOC BLOCK: android.R.style Field Widget_FastScroll
+NO DOC BLOCK: android.R.style Field Widget_Material
+NO DOC BLOCK: android.R.style Field Widget_Material_ActionBar
+NO DOC BLOCK: android.R.style Field Widget_Material_ActionBar_Solid
+NO DOC BLOCK: android.R.style Field Widget_Material_ActionBar_TabBar
+NO DOC BLOCK: android.R.style Field Widget_Material_ActionBar_TabText
+NO DOC BLOCK: android.R.style Field Widget_Material_ActionBar_TabView
+NO DOC BLOCK: android.R.style Field Widget_Material_ActionButton
+NO DOC BLOCK: android.R.style Field Widget_Material_ActionButton_CloseMode
+NO DOC BLOCK: android.R.style Field Widget_Material_ActionButton_Overflow
+NO DOC BLOCK: android.R.style Field Widget_Material_ActionMode
+NO DOC BLOCK: android.R.style Field Widget_Material_AutoCompleteTextView
+NO DOC BLOCK: android.R.style Field Widget_Material_Button
+NO DOC BLOCK: android.R.style Field Widget_Material_Button_Borderless
+NO DOC BLOCK: android.R.style Field Widget_Material_Button_Borderless_Colored
+NO DOC BLOCK: android.R.style Field Widget_Material_Button_Borderless_Small
+NO DOC BLOCK: android.R.style Field Widget_Material_Button_Inset
+NO DOC BLOCK: android.R.style Field Widget_Material_Button_Small
+NO DOC BLOCK: android.R.style Field Widget_Material_Button_Toggle
+NO DOC BLOCK: android.R.style Field Widget_Material_ButtonBar
+NO DOC BLOCK: android.R.style Field Widget_Material_ButtonBar_AlertDialog
+NO DOC BLOCK: android.R.style Field Widget_Material_CalendarView
+NO DOC BLOCK: android.R.style Field Widget_Material_CheckedTextView
+NO DOC BLOCK: android.R.style Field Widget_Material_CompoundButton_CheckBox
+NO DOC BLOCK: android.R.style Field Widget_Material_CompoundButton_RadioButton
+NO DOC BLOCK: android.R.style Field Widget_Material_CompoundButton_Star
+NO DOC BLOCK: android.R.style Field Widget_Material_DatePicker
+NO DOC BLOCK: android.R.style Field Widget_Material_DropDownItem
+NO DOC BLOCK: android.R.style Field Widget_Material_DropDownItem_Spinner
+NO DOC BLOCK: android.R.style Field Widget_Material_EditText
+NO DOC BLOCK: android.R.style Field Widget_Material_ExpandableListView
+NO DOC BLOCK: android.R.style Field Widget_Material_FastScroll
+NO DOC BLOCK: android.R.style Field Widget_Material_GridView
+NO DOC BLOCK: android.R.style Field Widget_Material_HorizontalScrollView
+NO DOC BLOCK: android.R.style Field Widget_Material_ImageButton
+NO DOC BLOCK: android.R.style Field Widget_Material_Light
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ActionBar
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ActionBar_Solid
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ActionBar_TabBar
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ActionBar_TabText
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ActionBar_TabView
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ActionButton
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ActionButton_CloseMode
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ActionButton_Overflow
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ActionMode
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_AutoCompleteTextView
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_Button
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_Button_Borderless
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_Button_Borderless_Colored
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_Button_Borderless_Small
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_Button_Inset
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_Button_Small
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_Button_Toggle
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ButtonBar
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ButtonBar_AlertDialog
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_CalendarView
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_CheckedTextView
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_CompoundButton_CheckBox
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_CompoundButton_RadioButton
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_CompoundButton_Star
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_DatePicker
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_DropDownItem
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_DropDownItem_Spinner
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_EditText
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ExpandableListView
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_FastScroll
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_GridView
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_HorizontalScrollView
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ImageButton
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ListPopupWindow
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ListView
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ListView_DropDown
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_MediaRouteButton
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_PopupMenu
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_PopupMenu_Overflow
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_PopupWindow
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ProgressBar
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ProgressBar_Horizontal
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ProgressBar_Inverse
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ProgressBar_Large
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ProgressBar_Large_Inverse
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ProgressBar_Small
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ProgressBar_Small_Inverse
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ProgressBar_Small_Title
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_RatingBar
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_RatingBar_Indicator
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_RatingBar_Small
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_ScrollView
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_SearchView
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_SeekBar
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_SegmentedButton
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_Spinner
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_Spinner_Underlined
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_StackView
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_Tab
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_TabWidget
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_TextView
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_TextView_SpinnerItem
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_TimePicker
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_WebTextView
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_WebView
+NO DOC BLOCK: android.R.style Field Widget_Material_ListPopupWindow
+NO DOC BLOCK: android.R.style Field Widget_Material_ListView
+NO DOC BLOCK: android.R.style Field Widget_Material_ListView_DropDown
+NO DOC BLOCK: android.R.style Field Widget_Material_MediaRouteButton
+NO DOC BLOCK: android.R.style Field Widget_Material_PopupMenu
+NO DOC BLOCK: android.R.style Field Widget_Material_PopupMenu_Overflow
+NO DOC BLOCK: android.R.style Field Widget_Material_PopupWindow
+NO DOC BLOCK: android.R.style Field Widget_Material_ProgressBar
+NO DOC BLOCK: android.R.style Field Widget_Material_ProgressBar_Horizontal
+NO DOC BLOCK: android.R.style Field Widget_Material_ProgressBar_Large
+NO DOC BLOCK: android.R.style Field Widget_Material_ProgressBar_Small
+NO DOC BLOCK: android.R.style Field Widget_Material_ProgressBar_Small_Title
+NO DOC BLOCK: android.R.style Field Widget_Material_RatingBar
+NO DOC BLOCK: android.R.style Field Widget_Material_RatingBar_Indicator
+NO DOC BLOCK: android.R.style Field Widget_Material_RatingBar_Small
+NO DOC BLOCK: android.R.style Field Widget_Material_ScrollView
+NO DOC BLOCK: android.R.style Field Widget_Material_SearchView
+NO DOC BLOCK: android.R.style Field Widget_Material_SeekBar
+NO DOC BLOCK: android.R.style Field Widget_Material_SegmentedButton
+NO DOC BLOCK: android.R.style Field Widget_Material_Spinner
+NO DOC BLOCK: android.R.style Field Widget_Material_Spinner_Underlined
+NO DOC BLOCK: android.R.style Field Widget_Material_StackView
+NO DOC BLOCK: android.R.style Field Widget_Material_Tab
+NO DOC BLOCK: android.R.style Field Widget_Material_TabWidget
+NO DOC BLOCK: android.R.style Field Widget_Material_TextView
+NO DOC BLOCK: android.R.style Field Widget_Material_TextView_SpinnerItem
+NO DOC BLOCK: android.R.style Field Widget_Material_TimePicker
+NO DOC BLOCK: android.R.style Field Widget_Material_Toolbar
+NO DOC BLOCK: android.R.style Field Widget_Material_Toolbar_Button_Navigation
+NO DOC BLOCK: android.R.style Field Widget_Material_WebTextView
+NO DOC BLOCK: android.R.style Field Widget_Material_WebView
+NO DOC BLOCK: android.R.style Field Widget_StackView
+NO DOC BLOCK: android.R.style Field Widget_Toolbar
+NO DOC BLOCK: android.R.style Field Widget_Toolbar_Button_Navigation
+NO DOC BLOCK: android.R.attr Field windowActivityTransitions
+NO DOC BLOCK: android.R.attr Field windowAllowEnterTransitionOverlap
+NO DOC BLOCK: android.R.attr Field windowAllowReturnTransitionOverlap
+NO DOC BLOCK: android.R.attr Field windowClipToOutline
+NO DOC BLOCK: android.view.accessibility.CaptioningManager.CaptionStyle Field windowColor
+NO DOC BLOCK: android.R.attr Field windowContentTransitionManager
+NO DOC BLOCK: android.R.attr Field windowContentTransitions
+NO DOC BLOCK: android.R.attr Field windowDrawsSystemBarBackgrounds
+NO DOC BLOCK: android.R.attr Field windowElevation
+NO DOC BLOCK: android.R.attr Field windowEnterTransition
+NO DOC BLOCK: android.R.attr Field windowExitTransition
+NO DOC BLOCK: android.R.attr Field windowReenterTransition
+NO DOC BLOCK: android.R.attr Field windowReturnTransition
+NO DOC BLOCK: android.R.attr Field windowSharedElementEnterTransition
+NO DOC BLOCK: android.R.attr Field windowSharedElementExitTransition
+NO DOC BLOCK: android.R.attr Field windowSharedElementReenterTransition
+NO DOC BLOCK: android.R.attr Field windowSharedElementReturnTransition
+NO DOC BLOCK: android.R.attr Field windowSharedElementsUseOverlay
+NO DOC BLOCK: android.R.attr Field windowTransitionBackgroundFadeDuration
+NO DOC BLOCK: android.net.wifi.WifiManager Field WPS_AUTH_FAILURE
+NO DOC BLOCK: android.net.wifi.WifiManager Field WPS_OVERLAP_ERROR
+NO DOC BLOCK: android.net.wifi.WifiManager Field WPS_TIMED_OUT
+NO DOC BLOCK: android.net.wifi.WifiManager Field WPS_TKIP_ONLY_PROHIBITED
+NO DOC BLOCK: android.net.wifi.WifiManager Field WPS_WEP_PROHIBITED
+NO DOC BLOCK: android.media.AudioTrack Field WRITE_BLOCKING
+NO DOC BLOCK: android.media.AudioTrack Field WRITE_NON_BLOCKING
+NO DOC BLOCK: android.Manifest.permission Field WRITE_VOICEMAIL
+NO DOC BLOCK: android.R.attr Field yearListItemTextAppearance
+NO DOC BLOCK: android.R.attr Field yearListSelectorColor
+NO DOC BLOCK: android.view.View Field Z
diff --git a/docs/html/sdk/api_diff/21/stylesheet-jdiff.css b/docs/html/sdk/api_diff/21/stylesheet-jdiff.css
new file mode 100644
index 0000000..edafaa3
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/stylesheet-jdiff.css
@@ -0,0 +1,44 @@
+
+/* (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;}
+.indexBox {
+  border: 1px solid red;
+  margin:1em 0 0 0;}
+.letterIndexHead {
+  font-size: 1.5em;font-weight:9;
+  margin:0 0 0em 0;
+  border: 1px solid red;}
diff --git a/docs/html/sdk/api_diff/21/user_comments_for_20_to_21.xml b/docs/html/sdk/api_diff/21/user_comments_for_20_to_21.xml
new file mode 100644
index 0000000..5091ffd
--- /dev/null
+++ b/docs/html/sdk/api_diff/21/user_comments_for_20_to_21.xml
@@ -0,0 +1,16975 @@
+<?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="20_to_21"
+  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.BIND_DREAM_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.Manifest.permission.BIND_TV_INPUT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.Manifest.permission.BIND_VOICE_INTERACTION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.Manifest.permission.GET_TASKS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.Manifest.permission.READ_SOCIAL_STREAM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.Manifest.permission.READ_VOICEMAIL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.Manifest.permission.WRITE_SOCIAL_STREAM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.Manifest.permission.WRITE_VOICEMAIL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.actionBarPopupTheme"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.actionBarTheme"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.actionModeFindDrawable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.actionModeShareDrawable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.actionModeWebSearchDrawable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.actionOverflowMenuStyle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.amPmBackgroundColor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.amPmTextColor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.ambientShadowAlpha"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.autoRemoveFromRecents"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.backgroundTint"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.backgroundTintMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.banner"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.buttonBarNegativeButtonStyle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.buttonBarNeutralButtonStyle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.buttonBarPositiveButtonStyle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.buttonTint"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.buttonTintMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.calendarTextColor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.checkMarkTint"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.checkMarkTintMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.closeIcon"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.colorAccent"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.colorButtonNormal"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.colorControlActivated"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.colorControlHighlight"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.colorControlNormal"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.colorEdgeEffect"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.colorPrimary"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.colorPrimaryDark"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.commitIcon"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.contentAgeHint"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.contentInsetEnd"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.contentInsetLeft"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.contentInsetRight"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.contentInsetStart"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.controlX1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.controlX2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.controlY1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.controlY2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.country"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.datePickerDialogTheme"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.datePickerMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.dayOfWeekBackground"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.dayOfWeekTextAppearance"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.documentLaunchMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.elegantTextHeight"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.elevation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.excludeClass"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.excludeId"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.excludeName"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fastScrollStyle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fillAlpha"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fillColor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fontFeatureSettings"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.foregroundTint"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.foregroundTintMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fragmentAllowEnterTransitionOverlap"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fragmentAllowReturnTransitionOverlap"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fragmentEnterTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fragmentExitTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fragmentReenterTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fragmentReturnTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fragmentSharedElementEnterTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fragmentSharedElementReturnTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fromId"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fullBackupOnly"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.goIcon"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.headerAmPmTextAppearance"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.headerDayOfMonthTextAppearance"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.headerMonthTextAppearance"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.headerTimeTextAppearance"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.headerYearTextAppearance"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.hideOnContentScroll"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.indeterminateTint"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.indeterminateTintMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.inset"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.isGame"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.launchTaskBehindSourceAnimation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.launchTaskBehindTargetAnimation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.layout_columnWeight"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.layout_rowWeight"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.letterSpacing"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.matchOrder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.maxRecents"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.maximumAngle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.minimumHorizontalAngle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.minimumVerticalAngle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.multiArch"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.navigationBarColor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.navigationContentDescription"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.navigationIcon"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.nestedScrollingEnabled"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.numbersBackgroundColor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.numbersSelectorColor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.numbersTextColor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.outlineProvider"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.overlapAnchor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.paddingMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.pathData"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.patternPathData"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.persistableMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.popupElevation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.popupTheme"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.progressBackgroundTint"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.progressBackgroundTintMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.progressTint"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.progressTintMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.propertyXName"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.propertyYName"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.queryBackground"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.recognitionService"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.relinquishTaskIdentity"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.reparent"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.reparentWithOverlay"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.restrictionType"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.resumeWhilePausing"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.reversible"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.searchIcon"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.searchViewStyle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.secondaryProgressTint"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.secondaryProgressTintMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.selectableItemBackgroundBorderless"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.sessionService"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.setupActivity"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.showText"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.slideEdge"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.splitTrack"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.spotShadowAlpha"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.stackViewStyle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.stateListAnimator"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.statusBarColor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.strokeAlpha"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.strokeColor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.strokeLineCap"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.strokeLineJoin"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.strokeMiterLimit"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.strokeWidth"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.submitBackground"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.subtitleTextAppearance"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.suggestionRowLayout"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.switchStyle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.targetName"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.textAppearanceListItemSecondary"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.thumbTint"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.thumbTintMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.tileModeX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.tileModeY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.timePickerDialogTheme"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.timePickerMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.timePickerStyle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.tintMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.titleTextAppearance"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.toId"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.toolbarStyle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.touchscreenBlocksFocus"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.transitionGroup"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.transitionName"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.transitionVisibilityMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.translateX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.translateY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.translationZ"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.trimPathEnd"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.trimPathOffset"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.trimPathStart"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.viewportHeight"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.viewportWidth"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.voiceIcon"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowActivityTransitions"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowAllowEnterTransitionOverlap"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowAllowReturnTransitionOverlap"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowClipToOutline"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowContentTransitionManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowContentTransitions"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowDrawsSystemBarBackgrounds"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowElevation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowEnterTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowExitTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowReenterTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowReturnTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowSharedElementEnterTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowSharedElementExitTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowSharedElementReenterTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowSharedElementReturnTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowSharedElementsUseOverlay"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowTransitionBackgroundFadeDuration"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.yearListItemTextAppearance"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.yearListSelectorColor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.mask"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.navigationBarBackground"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.statusBarBackground"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.interpolator"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.interpolator.fast_out_linear_in"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.interpolator.fast_out_slow_in"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.interpolator.linear_out_slow_in"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_DeviceDefault_Widget_ActionBar_Subtitle_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_DeviceDefault_Widget_ActionBar_Title_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_DeviceDefault_Widget_ActionMode_Subtitle_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_DeviceDefault_Widget_ActionMode_Title_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Body1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Body2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Button"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Caption"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_DialogWindowTitle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Display1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Display2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Display3"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Display4"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Headline"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Large"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Large_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Medium"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Medium_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Menu"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Notification"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Notification_Emphasis"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Notification_Info"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Notification_Line2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Notification_Time"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Notification_Title"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_SearchResult_Subtitle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_SearchResult_Title"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Small"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Small_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Subhead"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Title"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_ActionBar_Menu"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_ActionBar_Subtitle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_ActionBar_Title"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_ActionBar_Title_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_ActionMode_Subtitle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_ActionMode_Title"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_ActionMode_Title_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_Button"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_DropDownHint"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_DropDownItem"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_EditText"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_IconMenu_Item"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_PopupMenu"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_PopupMenu_Large"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_PopupMenu_Small"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_TabWidget"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_TextView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_TextView_PopupMenu"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_TextView_SpinnerItem"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_Toolbar_Subtitle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_Toolbar_Title"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_WindowTitle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.ThemeOverlay"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.ThemeOverlay_Material"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.ThemeOverlay_Material_ActionBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.ThemeOverlay_Material_Dark"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.ThemeOverlay_Material_Dark_ActionBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.ThemeOverlay_Material_Light"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_DeviceDefault_Settings"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Dialog"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_DialogWhenLarge"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_DialogWhenLarge_NoActionBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Dialog_Alert"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Dialog_MinWidth"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Dialog_NoActionBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Dialog_NoActionBar_MinWidth"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Dialog_Presentation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_InputMethod"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_DarkActionBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_Dialog"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_DialogWhenLarge"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_DialogWhenLarge_NoActionBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_Dialog_Alert"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_Dialog_MinWidth"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_Dialog_NoActionBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_Dialog_NoActionBar_MinWidth"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_Dialog_Presentation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_NoActionBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_NoActionBar_Fullscreen"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_NoActionBar_Overscan"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_NoActionBar_TranslucentDecor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_Panel"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_Voice"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_NoActionBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_NoActionBar_Fullscreen"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_NoActionBar_Overscan"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_NoActionBar_TranslucentDecor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Panel"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Settings"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Voice"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Wallpaper"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Wallpaper_NoTitleBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_DeviceDefault_FastScroll"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_DeviceDefault_Light_ActionBar_Solid_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_DeviceDefault_Light_ActionBar_TabBar_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_DeviceDefault_Light_ActionBar_TabText_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_DeviceDefault_Light_ActionBar_TabView_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_DeviceDefault_Light_ActionMode_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_DeviceDefault_Light_FastScroll"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_DeviceDefault_Light_StackView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_DeviceDefault_StackView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_FastScroll"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ActionBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ActionBar_Solid"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ActionBar_TabBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ActionBar_TabText"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ActionBar_TabView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ActionButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ActionButton_CloseMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ActionButton_Overflow"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ActionMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_AutoCompleteTextView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Button"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ButtonBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ButtonBar_AlertDialog"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Button_Borderless"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Button_Borderless_Colored"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Button_Borderless_Small"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Button_Inset"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Button_Small"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Button_Toggle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_CalendarView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_CheckedTextView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_CompoundButton_CheckBox"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_CompoundButton_RadioButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_CompoundButton_Star"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_DatePicker"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_DropDownItem"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_DropDownItem_Spinner"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_EditText"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ExpandableListView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_FastScroll"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_GridView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_HorizontalScrollView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ImageButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ActionBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ActionBar_Solid"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ActionBar_TabBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ActionBar_TabText"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ActionBar_TabView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ActionButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ActionButton_CloseMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ActionButton_Overflow"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ActionMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_AutoCompleteTextView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_Button"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ButtonBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ButtonBar_AlertDialog"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_Button_Borderless"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_Button_Borderless_Colored"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_Button_Borderless_Small"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_Button_Inset"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_Button_Small"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_Button_Toggle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_CalendarView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_CheckedTextView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_CompoundButton_CheckBox"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_CompoundButton_RadioButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_CompoundButton_Star"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_DatePicker"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_DropDownItem"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_DropDownItem_Spinner"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_EditText"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ExpandableListView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_FastScroll"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_GridView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_HorizontalScrollView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ImageButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ListPopupWindow"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ListView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ListView_DropDown"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_MediaRouteButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_PopupMenu"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_PopupMenu_Overflow"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_PopupWindow"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ProgressBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ProgressBar_Horizontal"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ProgressBar_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ProgressBar_Large"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ProgressBar_Large_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ProgressBar_Small"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ProgressBar_Small_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ProgressBar_Small_Title"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_RatingBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_RatingBar_Indicator"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_RatingBar_Small"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ScrollView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_SearchView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_SeekBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_SegmentedButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_Spinner"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_Spinner_Underlined"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_StackView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_Tab"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_TabWidget"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_TextView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_TextView_SpinnerItem"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_TimePicker"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_WebTextView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_WebView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ListPopupWindow"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ListView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ListView_DropDown"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_MediaRouteButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_PopupMenu"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_PopupMenu_Overflow"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_PopupWindow"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ProgressBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ProgressBar_Horizontal"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ProgressBar_Large"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ProgressBar_Small"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ProgressBar_Small_Title"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_RatingBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_RatingBar_Indicator"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_RatingBar_Small"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ScrollView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_SearchView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_SeekBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_SegmentedButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Spinner"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Spinner_Underlined"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_StackView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Tab"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_TabWidget"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_TextView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_TextView_SpinnerItem"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_TimePicker"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Toolbar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Toolbar_Button_Navigation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_WebTextView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_WebView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_StackView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Toolbar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Toolbar_Button_Navigation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.transition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.accessibilityservice"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.accessibilityservice.AccessibilityService"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.accessibilityservice.AccessibilityService.GLOBAL_ACTION_POWER_DIALOG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.accessibilityservice.AccessibilityService.findFocus_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.accessibilityservice.AccessibilityService.getWindows_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.accessibilityservice.AccessibilityServiceInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.accessibilityservice.AccessibilityServiceInfo.FLAG_RETRIEVE_INTERACTIVE_WINDOWS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.accounts"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.accounts.AccountManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.accounts.AccountManager.getPreviousName_added(android.accounts.Account)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.accounts.AccountManager.renameAccount_added(android.accounts.Account, java.lang.String, android.accounts.AccountManagerCallback&lt;android.accounts.Account&gt;, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.AnimatorInflater"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.AnimatorInflater.loadStateListAnimator_added(android.content.Context, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.BidirectionalTypeConverter"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.FloatArrayEvaluator"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.IntArrayEvaluator"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.ObjectAnimator"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.ObjectAnimator.ofArgb_added(T, android.util.Property&lt;T, java.lang.Integer&gt;, int...)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.ObjectAnimator.ofArgb_added(java.lang.Object, java.lang.String, int...)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.ObjectAnimator.ofFloat_added(T, android.util.Property&lt;T, java.lang.Float&gt;, android.util.Property&lt;T, java.lang.Float&gt;, android.graphics.Path)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.ObjectAnimator.ofFloat_added(java.lang.Object, java.lang.String, java.lang.String, android.graphics.Path)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.ObjectAnimator.ofInt_added(T, android.util.Property&lt;T, java.lang.Integer&gt;, android.util.Property&lt;T, java.lang.Integer&gt;, android.graphics.Path)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.ObjectAnimator.ofInt_added(java.lang.Object, java.lang.String, java.lang.String, android.graphics.Path)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.ObjectAnimator.ofMultiFloat_added(java.lang.Object, java.lang.String, android.animation.TypeConverter&lt;T, float[]&gt;, android.animation.TypeEvaluator&lt;T&gt;, T...)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.ObjectAnimator.ofMultiFloat_added(java.lang.Object, java.lang.String, android.graphics.Path)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.ObjectAnimator.ofMultiFloat_added(java.lang.Object, java.lang.String, float[][])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.ObjectAnimator.ofMultiInt_added(java.lang.Object, java.lang.String, android.animation.TypeConverter&lt;T, int[]&gt;, android.animation.TypeEvaluator&lt;T&gt;, T...)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.ObjectAnimator.ofMultiInt_added(java.lang.Object, java.lang.String, android.graphics.Path)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.ObjectAnimator.ofMultiInt_added(java.lang.Object, java.lang.String, int[][])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.ObjectAnimator.ofObject_added(T, android.util.Property&lt;T, P&gt;, android.animation.TypeConverter&lt;V, P&gt;, android.animation.TypeEvaluator&lt;V&gt;, V...)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.ObjectAnimator.ofObject_added(T, android.util.Property&lt;T, V&gt;, android.animation.TypeConverter&lt;android.graphics.PointF, V&gt;, android.graphics.Path)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.ObjectAnimator.ofObject_added(java.lang.Object, java.lang.String, android.animation.TypeConverter&lt;android.graphics.PointF, ?&gt;, android.graphics.Path)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.PointFEvaluator"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.PropertyValuesHolder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, android.animation.TypeConverter&lt;T, float[]&gt;, android.animation.TypeEvaluator&lt;T&gt;, android.animation.Keyframe...)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, android.animation.TypeConverter&lt;V, float[]&gt;, android.animation.TypeEvaluator&lt;V&gt;, V...)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, android.graphics.Path)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, float[][])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, android.animation.TypeConverter&lt;T, int[]&gt;, android.animation.TypeEvaluator&lt;T&gt;, android.animation.Keyframe...)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, android.animation.TypeConverter&lt;V, int[]&gt;, android.animation.TypeEvaluator&lt;V&gt;, V...)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, android.graphics.Path)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, int[][])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.PropertyValuesHolder.ofObject_added(android.util.Property&lt;?, V&gt;, android.animation.TypeConverter&lt;T, V&gt;, android.animation.TypeEvaluator&lt;T&gt;, T...)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.PropertyValuesHolder.ofObject_added(android.util.Property&lt;?, V&gt;, android.animation.TypeConverter&lt;android.graphics.PointF, V&gt;, android.graphics.Path)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.PropertyValuesHolder.ofObject_added(java.lang.String, android.animation.TypeConverter&lt;android.graphics.PointF, ?&gt;, android.graphics.Path)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.PropertyValuesHolder.setConverter_added(android.animation.TypeConverter)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.RectEvaluator"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.RectEvaluator.ctor_added(android.graphics.Rect)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.StateListAnimator"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.TypeConverter"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.ValueAnimator"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.animation.ValueAnimator.ofArgb_added(int...)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.NAVIGATION_MODE_LIST"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.NAVIGATION_MODE_STANDARD"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.NAVIGATION_MODE_TABS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.OnNavigationListener"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.Tab"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.TabListener"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab, int, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.getElevation_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.getHideOffset_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.getNavigationItemCount_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.getNavigationMode_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.getSelectedNavigationIndex_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.getSelectedTab_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.getTabAt_changed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.getTabCount_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.isHideOnContentScrollEnabled_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.newTab_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.removeAllTabs_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.removeTabAt_changed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.removeTab_changed(android.app.ActionBar.Tab)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.selectTab_changed(android.app.ActionBar.Tab)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.setElevation_added(float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.setHideOffset_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.setHideOnContentScrollEnabled_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.setListNavigationCallbacks_changed(android.widget.SpinnerAdapter, android.app.ActionBar.OnNavigationListener)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.setNavigationMode_changed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.setSelectedNavigationItem_changed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.finishAfterTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.finishAndRemoveTask_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.getContentScene_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.getContentTransitionManager_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.getMediaController_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.onActivityReenter_added(int, android.content.Intent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.onCreate_added(android.os.Bundle, android.os.PersistableBundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.onEnterAnimationComplete_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.onPostCreate_added(android.os.Bundle, android.os.PersistableBundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.onRestoreInstanceState_added(android.os.Bundle, android.os.PersistableBundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.onSaveInstanceState_added(android.os.Bundle, android.os.PersistableBundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.onVisibleBehindCanceled_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.postponeEnterTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.releaseInstance_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.requestVisibleBehind_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.setActionBar_added(android.widget.Toolbar)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.setContentTransitionManager_added(android.transition.TransitionManager)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.setEnterSharedElementCallback_added(android.app.SharedElementCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.setExitSharedElementCallback_added(android.app.SharedElementCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.setMediaController_added(android.media.session.MediaController)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.setTaskDescription_added(android.app.ActivityManager.TaskDescription)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.setTitleColor_changed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.startLockTask_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.startPostponedEnterTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.stopLockTask_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.AppTask"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.RecentTaskInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.RecentTaskInfo.affiliatedTaskId"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.RecentTaskInfo.taskDescription"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.RunningAppProcessInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.RunningAppProcessInfo.IMPORTANCE_GONE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.TaskDescription"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.addAppTask_added(android.app.Activity, android.content.Intent, android.app.ActivityManager.TaskDescription, android.graphics.Bitmap)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.getAppTaskThumbnailSize_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.getAppTasks_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.getRecentTasks_changed(int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.getRunningTasks_changed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.isInLockTaskMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityOptions"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityOptions.makeSceneTransitionAnimation_added(android.app.Activity, android.util.Pair&lt;android.view.View, java.lang.String&gt;...)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityOptions.makeSceneTransitionAnimation_added(android.app.Activity, android.view.View, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityOptions.makeTaskLaunchBehind_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.AlarmManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.AlarmManager.ACTION_NEXT_ALARM_CLOCK_CHANGED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.AlarmManager.AlarmClockInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.AlarmManager.getNextAlarmClock_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.AlarmManager.setAlarmClock_added(android.app.AlarmManager.AlarmClockInfo, android.app.PendingIntent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.AlertDialog.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.AlertDialog.Builder.setView_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.AppOpsManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.AppOpsManager.MODE_DEFAULT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.AppOpsManager.OPSTR_GET_USAGE_STATS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Dialog"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Dialog.create_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.getAllowEnterTransitionOverlap_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.getAllowReturnTransitionOverlap_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.getEnterTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.getExitTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.getReenterTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.getReturnTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.getSharedElementEnterTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.getSharedElementReturnTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.setAllowEnterTransitionOverlap_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.setAllowReturnTransitionOverlap_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.setEnterSharedElementCallback_added(android.app.SharedElementCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.setEnterTransition_added(android.transition.Transition)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.setExitSharedElementCallback_added(android.app.SharedElementCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.setExitTransition_added(android.transition.Transition)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.setReenterTransition_added(android.transition.Transition)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.setReturnTransition_added(android.transition.Transition)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.setSharedElementEnterTransition_added(android.transition.Transition)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.setSharedElementReturnTransition_added(android.transition.Transition)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.FragmentBreadCrumbs"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.FragmentTransaction"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.FragmentTransaction.addSharedElement_added(android.view.View, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Instrumentation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Instrumentation.callActivityOnCreate_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Instrumentation.callActivityOnPostCreate_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Instrumentation.callActivityOnRestoreInstanceState_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Instrumentation.callActivityOnSaveInstanceState_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.KeyguardManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.KeyguardManager.createConfirmDeviceCredentialIntent_added(java.lang.CharSequence, java.lang.CharSequence)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.MediaRouteButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.MediaRouteButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.AUDIO_ATTRIBUTES_DEFAULT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.Builder.addPerson_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.Builder.setCategory_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.Builder.setColor_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.Builder.setPublicVersion_added(android.app.Notification)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.Builder.setSound_added(android.net.Uri, android.media.AudioAttributes)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.Builder.setSound_added(android.net.Uri, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.Builder.setSound_removed(android.net.Uri, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.Builder.setTicker_changed(java.lang.CharSequence, android.widget.RemoteViews)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.Builder.setVisibility_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.CATEGORY_ALARM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.CATEGORY_CALL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.CATEGORY_EMAIL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.CATEGORY_ERROR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.CATEGORY_EVENT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.CATEGORY_MESSAGE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.CATEGORY_PROGRESS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.CATEGORY_PROMO"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.CATEGORY_RECOMMENDATION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.CATEGORY_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.CATEGORY_SOCIAL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.CATEGORY_STATUS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.CATEGORY_SYSTEM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.CATEGORY_TRANSPORT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.COLOR_DEFAULT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.EXTRA_BACKGROUND_IMAGE_URI"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.EXTRA_BIG_TEXT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.EXTRA_COMPACT_ACTIONS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.EXTRA_MEDIA_SESSION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.EXTRA_TEMPLATE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.INTENT_CATEGORY_NOTIFICATION_PREFERENCES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.MediaStyle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.STREAM_DEFAULT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.VISIBILITY_PRIVATE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.VISIBILITY_PUBLIC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.VISIBILITY_SECRET"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.audioAttributes"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.audioStreamType"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.category"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.color"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.headsUpContentView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.publicVersion"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.tickerView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.visibility"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.SearchManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.SearchManager.SUGGEST_COLUMN_AUDIO_CHANNEL_CONFIG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.SearchManager.SUGGEST_COLUMN_CONTENT_TYPE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.SearchManager.SUGGEST_COLUMN_DURATION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.SearchManager.SUGGEST_COLUMN_IS_LIVE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.SearchManager.SUGGEST_COLUMN_PRODUCTION_YEAR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.SearchManager.SUGGEST_COLUMN_PURCHASE_PRICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.SearchManager.SUGGEST_COLUMN_RATING_SCORE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.SearchManager.SUGGEST_COLUMN_RATING_STYLE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.SearchManager.SUGGEST_COLUMN_RENTAL_PRICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.SearchManager.SUGGEST_COLUMN_RESULT_CARD_IMAGE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.SearchManager.SUGGEST_COLUMN_VIDEO_HEIGHT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.SearchManager.SUGGEST_COLUMN_VIDEO_WIDTH"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.SharedElementCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.UiAutomation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.UiAutomation.clearWindowAnimationFrameStats_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.UiAutomation.clearWindowContentFrameStats_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.UiAutomation.executeShellCommand_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.UiAutomation.findFocus_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.UiAutomation.getWindowAnimationFrameStats_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.UiAutomation.getWindowContentFrameStats_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.UiAutomation.getWindows_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.UiModeManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.UiModeManager.ENABLE_CAR_MODE_ALLOW_SLEEP"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DeviceAdminReceiver"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DeviceAdminReceiver.ACTION_LOCK_TASK_ENTERING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DeviceAdminReceiver.ACTION_LOCK_TASK_EXITING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DeviceAdminReceiver.ACTION_PROFILE_PROVISIONING_COMPLETE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DeviceAdminReceiver.EXTRA_LOCK_TASK_PACKAGE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DeviceAdminReceiver.onLockTaskModeEntering_added(android.content.Context, android.content.Intent, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DeviceAdminReceiver.onLockTaskModeExiting_added(android.content.Context, android.content.Intent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DeviceAdminReceiver.onProfileProvisioningComplete_added(android.content.Context, android.content.Intent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.ACTION_PROVISION_MANAGED_PROFILE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_EMAIL_ADDRESS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_LOCALE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_LOCAL_TIME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_TIME_ZONE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_HIDDEN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PAC_URL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PASSWORD"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_BYPASS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_HOST"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_PORT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_SECURITY_TYPE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_SSID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.FLAG_MANAGED_CAN_ACCESS_PARENT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.FLAG_PARENT_CAN_ACCESS_MANAGED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_FINGERPRINT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_SECURE_NOTIFICATIONS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_TRUST_AGENTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.MIME_TYPE_PROVISIONING_NFC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.PASSWORD_QUALITY_NUMERIC_COMPLEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.addCrossProfileIntentFilter_added(android.content.ComponentName, android.content.IntentFilter, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.addCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.addPersistentPreferredActivity_added(android.content.ComponentName, android.content.IntentFilter, android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.addUserRestriction_added(android.content.ComponentName, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.clearCrossProfileIntentFilters_added(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.clearDeviceOwnerApp_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.clearPackagePersistentPreferredActivities_added(android.content.ComponentName, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.clearUserRestriction_added(android.content.ComponentName, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.createAndInitializeUser_added(android.content.ComponentName, java.lang.String, java.lang.String, android.content.ComponentName, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.createUser_added(android.content.ComponentName, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.enableSystemApp_added(android.content.ComponentName, android.content.Intent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.enableSystemApp_added(android.content.ComponentName, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.getAccountTypesWithManagementDisabled_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.getApplicationRestrictions_added(android.content.ComponentName, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.getAutoTimeRequired_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.getCrossProfileCallerIdDisabled_added(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.getCrossProfileWidgetProviders_added(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.getInstalledCaCerts_added(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.getPermittedAccessibilityServices_added(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.getPermittedInputMethods_added(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.getScreenCaptureDisabled_added(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.hasCaCertInstalled_added(android.content.ComponentName, byte[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.installCaCert_added(android.content.ComponentName, byte[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.installKeyPair_added(android.content.ComponentName, java.security.PrivateKey, java.security.cert.Certificate, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.isApplicationHidden_added(android.content.ComponentName, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.isLockTaskPermitted_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.isMasterVolumeMuted_added(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.isProfileOwnerApp_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.isUninstallBlocked_added(android.content.ComponentName, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.removeCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.removeUser_added(android.content.ComponentName, android.os.UserHandle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setAccountManagementDisabled_added(android.content.ComponentName, java.lang.String, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setApplicationHidden_added(android.content.ComponentName, java.lang.String, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setApplicationRestrictions_added(android.content.ComponentName, java.lang.String, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setAutoTimeRequired_added(android.content.ComponentName, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setCrossProfileCallerIdDisabled_added(android.content.ComponentName, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setGlobalSetting_added(android.content.ComponentName, java.lang.String, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setLockTaskPackages_added(android.content.ComponentName, java.lang.String[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setMasterVolumeMuted_added(android.content.ComponentName, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setPermittedAccessibilityServices_added(android.content.ComponentName, java.util.List&lt;java.lang.String&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setPermittedInputMethods_added(android.content.ComponentName, java.util.List&lt;java.lang.String&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setProfileEnabled_added(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setProfileName_added(android.content.ComponentName, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setRecommendedGlobalProxy_added(android.content.ComponentName, android.net.ProxyInfo)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setRestrictionsProvider_added(android.content.ComponentName, android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setScreenCaptureDisabled_added(android.content.ComponentName, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setSecureSetting_added(android.content.ComponentName, java.lang.String, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setUninstallBlocked_added(android.content.ComponentName, java.lang.String, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.switchUser_added(android.content.ComponentName, android.os.UserHandle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.uninstallAllUserCaCerts_added(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.uninstallCaCert_added(android.content.ComponentName, byte[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.backup"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.backup.BackupAgent"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.backup.BackupAgent.onRestoreFinished_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.job"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.usage"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetHost"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetHost.startAppWidgetConfigureActivityForResult_added(android.app.Activity, int, int, int, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetManager.ACTION_APPWIDGET_HOST_RESTORED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetManager.ACTION_APPWIDGET_RESTORED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetManager.EXTRA_APPWIDGET_OLD_IDS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetManager.EXTRA_HOST_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetManager.bindAppWidgetIdIfAllowed_added(int, android.os.UserHandle, android.content.ComponentName, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetManager.getInstalledProvidersForProfile_added(android.os.UserHandle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetProvider"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetProvider.onRestored_added(android.content.Context, int[], int[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetProviderInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetProviderInfo.getProfile_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetProviderInfo.label"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetProviderInfo.loadIcon_added(android.content.Context, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetProviderInfo.loadLabel_added(android.content.pm.PackageManager)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetProviderInfo.loadPreviewImage_added(android.content.Context, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothAdapter"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothAdapter.getBluetoothLeAdvertiser_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothAdapter.getBluetoothLeScanner_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothAdapter.isMultipleAdvertisementSupported_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothAdapter.isOffloadedFilteringSupported_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothAdapter.isOffloadedScanBatchingSupported_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothAdapter.startLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothAdapter.startLeScan_changed(java.util.UUID[], android.bluetooth.BluetoothAdapter.LeScanCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothAdapter.stopLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothGatt"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_BALANCED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_HIGH"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_LOW_POWER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothGatt.GATT_CONNECTION_CONGESTED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothGatt.requestConnectionPriority_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothGatt.requestMtu_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothGattCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothGattCallback.onMtuChanged_added(android.bluetooth.BluetoothGatt, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothGattServerCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothGattServerCallback.onNotificationSent_added(android.bluetooth.BluetoothDevice, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.ContentResolver"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.ContentResolver.ANY_CURSOR_ITEM_TYPE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.ContentResolver.EXTRA_SIZE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.ContentResolver.cancelSync_added(android.content.SyncRequest)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.APPWIDGET_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.BATTERY_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.CAMERA_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.JOB_SCHEDULER_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.LAUNCHER_APPS_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.MEDIA_PROJECTION_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.MEDIA_SESSION_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.RESTRICTIONS_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.TELECOM_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.TV_INPUT_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.getCodeCacheDir_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.getDrawable_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.getExternalMediaDirs_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.getNoBackupFilesDir_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.removeStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.removeStickyBroadcast_changed(android.content.Intent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.sendStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.sendStickyBroadcast_changed(android.content.Intent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.sendStickyOrderedBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.sendStickyOrderedBroadcast_changed(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"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.ContextWrapper.getCodeCacheDir_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.ContextWrapper.getExternalMediaDirs_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.ContextWrapper.getNoBackupFilesDir_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Intent"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Intent.ACTION_APPLICATION_RESTRICTIONS_CHANGED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Intent.ACTION_MANAGED_PROFILE_ADDED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Intent.ACTION_MANAGED_PROFILE_REMOVED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Intent.ACTION_OPEN_DOCUMENT_TREE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Intent.CATEGORY_LEANBACK_LAUNCHER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Intent.EXTRA_REPLACEMENT_EXTRAS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Intent.EXTRA_USER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Intent.FLAG_ACTIVITY_NEW_DOCUMENT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Intent.FLAG_GRANT_PREFIX_URI_PERMISSION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.RestrictionEntry"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.RestrictionEntry.TYPE_INTEGER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.RestrictionEntry.TYPE_STRING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.RestrictionEntry.ctor_added(int, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.RestrictionEntry.ctor_added(java.lang.String, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.RestrictionEntry.getIntValue_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.RestrictionEntry.setIntValue_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.RestrictionsManager"/>
+  <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.DOCUMENT_LAUNCH_ALWAYS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ActivityInfo.DOCUMENT_LAUNCH_INTO_EXISTING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ActivityInfo.DOCUMENT_LAUNCH_NEVER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ActivityInfo.DOCUMENT_LAUNCH_NONE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ActivityInfo.FLAG_AUTO_REMOVE_FROM_RECENTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ActivityInfo.FLAG_RESUME_WHILE_PAUSING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ActivityInfo.PERSIST_ACROSS_REBOOTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ActivityInfo.PERSIST_NEVER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ActivityInfo.PERSIST_ROOT_ONLY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ActivityInfo.documentLaunchMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ActivityInfo.maxRecents"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ActivityInfo.persistableMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ApplicationInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ApplicationInfo.FLAG_FULL_BACKUP_ONLY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ApplicationInfo.FLAG_IS_GAME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ApplicationInfo.FLAG_MULTIARCH"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ApplicationInfo.splitPublicSourceDirs"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ApplicationInfo.splitSourceDirs"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.FeatureGroupInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.InstrumentationInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.InstrumentationInfo.splitPublicSourceDirs"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.InstrumentationInfo.splitSourceDirs"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.LauncherActivityInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.LauncherApps"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.LauncherApps.Callback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageInfo.INSTALL_LOCATION_AUTO"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageInfo.INSTALL_LOCATION_PREFER_EXTERNAL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageInfo.featureGroups"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageInfo.installLocation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageInfo.splitNames"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageInstaller"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageInstaller.Session"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageInstaller.SessionCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageInstaller.SessionInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageInstaller.SessionParams"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_AUDIO_OUTPUT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_RAW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_CAMERA_LEVEL_FULL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_CONNECTION_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_GAMEPAD"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_LEANBACK"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_LIVE_TV"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_MANAGED_USERS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_OPENGLES_EXTENSION_PACK"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_SECURELY_REMOVES_USERS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_SENSOR_AMBIENT_TEMPERATURE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_SENSOR_HEART_RATE_ECG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_SENSOR_RELATIVE_HUMIDITY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_TELEVISION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_VERIFIED_BOOT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.getLeanbackLaunchIntentForPackage_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.getPackageInstaller_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PermissionInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PermissionInfo.PROTECTION_FLAG_APPOP"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.res"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.res.AssetManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.res.AssetManager.AssetInputStream"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.res.AssetManager.AssetInputStream.getAssetInt_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.res.ColorStateList"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.res.ColorStateList.isOpaque_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.res.Resources"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.res.Resources.Theme"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.res.Resources.Theme.getDrawable_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.res.Resources.Theme.getResources_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.res.Resources.getDrawableForDensity_added(int, int, android.content.res.Resources.Theme)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.res.Resources.getDrawable_added(int, android.content.res.Resources.Theme)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.res.TypedArray"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.res.TypedArray.getChangingConfigurations_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.res.TypedArray.getType_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.gesture"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.gesture.GestureOverlayView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.gesture.GestureOverlayView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.BitmapFactory.Options"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.BitmapFactory.Options.inInputShareable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.BitmapFactory.Options.inPurgeable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Canvas"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Canvas.clipRegion_changed(android.graphics.Region)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Canvas.clipRegion_changed(android.graphics.Region, android.graphics.Region.Op)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Canvas.drawArc_added(float, float, float, float, float, float, boolean, android.graphics.Paint)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Canvas.drawBitmap_changed(int[], int, int, float, float, int, int, boolean, android.graphics.Paint)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Canvas.drawBitmap_changed(int[], int, int, int, int, int, int, boolean, android.graphics.Paint)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Canvas.drawOval_added(float, float, float, float, android.graphics.Paint)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Canvas.drawRoundRect_added(float, float, float, float, float, float, android.graphics.Paint)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Canvas.saveLayerAlpha_added(android.graphics.RectF, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Canvas.saveLayerAlpha_added(float, float, float, float, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Canvas.saveLayer_added(android.graphics.RectF, android.graphics.Paint)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Canvas.saveLayer_added(float, float, float, float, android.graphics.Paint)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.ImageFormat"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.ImageFormat.RAW10"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.ImageFormat.RAW_SENSOR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.LayerRasterizer"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Matrix"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Matrix.isAffine_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Outline"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Paint"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Paint.getFontFeatureSettings_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Paint.getLetterSpacing_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Paint.getRasterizer_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Paint.isElegantTextHeight_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Paint.setElegantTextHeight_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Paint.setFontFeatureSettings_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Paint.setLetterSpacing_added(float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Paint.setRasterizer_changed(android.graphics.Rasterizer)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Path"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Path.addArc_added(float, float, float, float, float, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Path.addOval_added(float, float, float, float, android.graphics.Path.Direction)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Path.addRoundRect_added(float, float, float, float, float, float, android.graphics.Path.Direction)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Path.addRoundRect_added(float, float, float, float, float[], android.graphics.Path.Direction)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Path.arcTo_added(float, float, float, float, float, float, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Path.isConvex_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Rasterizer"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.SurfaceTexture"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.SurfaceTexture.setOnFrameAvailableListener_added(android.graphics.SurfaceTexture.OnFrameAvailableListener, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.AnimatedStateListDrawable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.AnimatedVectorDrawable"/>
+  <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.canApplyTheme_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.Drawable.ConstantState.newDrawable_added(android.content.res.Resources, android.content.res.Resources.Theme)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.Drawable.applyTheme_added(android.content.res.Resources.Theme)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.Drawable.canApplyTheme_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.Drawable.createFromXmlInner_added(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.util.AttributeSet, android.content.res.Resources.Theme)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.Drawable.createFromXml_added(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.content.res.Resources.Theme)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.Drawable.getColorFilter_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.Drawable.getDirtyBounds_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.Drawable.getOutline_added(android.graphics.Outline)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.Drawable.inflate_added(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.util.AttributeSet, android.content.res.Resources.Theme)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.Drawable.setHotspotBounds_added(int, int, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.Drawable.setHotspot_added(float, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.Drawable.setTintList_added(android.content.res.ColorStateList)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.Drawable.setTintMode_added(android.graphics.PorterDuff.Mode)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.Drawable.setTint_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.GradientDrawable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.GradientDrawable.getGradientRadius_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.GradientDrawable.setColor_added(android.content.res.ColorStateList)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.GradientDrawable.setStroke_added(int, android.content.res.ColorStateList)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.GradientDrawable.setStroke_added(int, android.content.res.ColorStateList, float, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.LayerDrawable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.LayerDrawable.PADDING_MODE_NEST"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.LayerDrawable.PADDING_MODE_STACK"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.LayerDrawable.getPaddingMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.LayerDrawable.setPaddingMode_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.RippleDrawable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.RotateDrawable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.RotateDrawable.getFromDegrees_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.RotateDrawable.getPivotX_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.RotateDrawable.getPivotY_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.RotateDrawable.getToDegrees_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.RotateDrawable.isPivotXRelative_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.RotateDrawable.isPivotYRelative_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.RotateDrawable.setDrawable_added(android.graphics.drawable.Drawable)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.RotateDrawable.setFromDegrees_added(float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.RotateDrawable.setPivotXRelative_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.RotateDrawable.setPivotX_added(float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.RotateDrawable.setPivotYRelative_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.RotateDrawable.setPivotY_added(float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.RotateDrawable.setToDegrees_added(float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.VectorDrawable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.shapes"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.shapes.Shape"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.shapes.Shape.getOutline_added(android.graphics.Outline)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.pdf"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.pdf.PdfRenderer"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.pdf.PdfRenderer.Page"/>
+  <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.Area"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Camera.AutoFocusCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Camera.AutoFocusMoveCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Camera.CameraInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Camera.ErrorCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Camera.Face"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Camera.FaceDetectionListener"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Camera.OnZoomChangeListener"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Camera.Parameters"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Camera.PictureCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Camera.PreviewCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Camera.ShutterCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Camera.Size"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Sensor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Sensor.REPORTING_MODE_CONTINUOUS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Sensor.REPORTING_MODE_ONE_SHOT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Sensor.REPORTING_MODE_ON_CHANGE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Sensor.REPORTING_MODE_SPECIAL_TRIGGER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Sensor.getMaxDelay_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Sensor.getReportingMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Sensor.isWakeUpSensor_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.SensorManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.SensorManager.getDefaultSensor_added(int, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.params"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.display"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.display.DisplayManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.display.DisplayManager.createVirtualDisplay_added(java.lang.String, int, int, int, android.view.Surface, int, android.hardware.display.VirtualDisplay.Callback, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.display.VirtualDisplay"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.display.VirtualDisplay.Callback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.display.VirtualDisplay.resize_added(int, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.location"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.usb"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.usb.UsbConfiguration"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.usb.UsbDevice"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.usb.UsbDevice.getConfigurationCount_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.usb.UsbDevice.getConfiguration_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.usb.UsbDevice.getManufacturerName_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.usb.UsbDevice.getProductName_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.usb.UsbDevice.getSerialNumber_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.usb.UsbDeviceConnection"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.usb.UsbDeviceConnection.setConfiguration_added(android.hardware.usb.UsbConfiguration)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.usb.UsbDeviceConnection.setInterface_added(android.hardware.usb.UsbInterface)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.usb.UsbInterface"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.usb.UsbInterface.getAlternateSetting_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.usb.UsbInterface.getName_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.inputmethodservice"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.inputmethodservice.ExtractEditText"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.inputmethodservice.ExtractEditText.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.inputmethodservice.InputMethodService"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.inputmethodservice.InputMethodService.InputMethodSessionImpl"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.inputmethodservice.InputMethodService.InputMethodSessionImpl.updateCursorAnchorInfo_added(android.view.inputmethod.CursorAnchorInfo)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.inputmethodservice.InputMethodService.enableHardwareAcceleration_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.inputmethodservice.InputMethodService.getInputMethodWindowRecommendedHeight_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.inputmethodservice.InputMethodService.onUpdateCursorAnchorInfo_added(android.view.inputmethod.CursorAnchorInfo)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.inputmethodservice.InputMethodService.onUpdateCursor_changed(android.graphics.Rect)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.inputmethodservice.KeyboardView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.inputmethodservice.KeyboardView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.location"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.location.SettingInjectorService"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.location.SettingInjectorService.onGetSummary_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioAttributes"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioAttributes.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioFormat"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioFormat.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioFormat.CHANNEL_OUT_SIDE_LEFT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioFormat.CHANNEL_OUT_SIDE_RIGHT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioFormat.ENCODING_AC3"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioFormat.ENCODING_E_AC3"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioFormat.ENCODING_PCM_FLOAT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioFormat.ctor_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioFormat.getChannelMask_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioFormat.getEncoding_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioFormat.getSampleRate_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.ACTION_HDMI_AUDIO_PLUG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.ACTION_HEADSET_PLUG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.AUDIO_SESSION_ID_GENERATE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.ERROR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.ERROR_DEAD_OBJECT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.EXTRA_AUDIO_PLUG_STATE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.EXTRA_ENCODINGS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.EXTRA_MAX_CHANNEL_COUNT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.generateAudioSessionId_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.isVolumeFixed_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.app.PendingIntent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.registerRemoteControlClient_changed(android.media.RemoteControlClient)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.registerRemoteController_changed(android.media.RemoteController)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.app.PendingIntent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.unregisterRemoteControlClient_changed(android.media.RemoteControlClient)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.unregisterRemoteController_changed(android.media.RemoteController)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioTrack"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioTrack.WRITE_BLOCKING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioTrack.WRITE_NON_BLOCKING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioTrack.ctor_added(android.media.AudioAttributes, android.media.AudioFormat, int, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioTrack.setStereoVolume_changed(float, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioTrack.setVolume_added(float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioTrack.write_added(float[], int, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioTrack.write_added(java.nio.ByteBuffer, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.CamcorderProfile"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.CamcorderProfile.QUALITY_2160P"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.CamcorderProfile.QUALITY_HIGH_SPEED_1080P"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.CamcorderProfile.QUALITY_HIGH_SPEED_2160P"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.CamcorderProfile.QUALITY_HIGH_SPEED_480P"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.CamcorderProfile.QUALITY_HIGH_SPEED_720P"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.CamcorderProfile.QUALITY_HIGH_SPEED_HIGH"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.CamcorderProfile.QUALITY_HIGH_SPEED_LOW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.CamcorderProfile.QUALITY_TIME_LAPSE_2160P"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.Image"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.Image.getCropRect_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.Image.setCropRect_added(android.graphics.Rect)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.BUFFER_FLAG_KEY_FRAME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.BUFFER_FLAG_SYNC_FRAME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.Callback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.CodecException"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.CryptoException"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.CryptoException.ERROR_INSUFFICIENT_OUTPUT_PROTECTION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.INFO_OUTPUT_BUFFERS_CHANGED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.createByCodecName_changed(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.createDecoderByType_changed(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.createEncoderByType_changed(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.getInputBuffer_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.getInputBuffers_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.getInputFormat_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.getInputImage_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.getOutputBuffer_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.getOutputBuffers_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.getOutputFormat_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.getOutputImage_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.releaseOutputBuffer_added(int, long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.reset_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.setCallback_added(android.media.MediaCodec.Callback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.AudioCapabilities"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecCapabilities"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecCapabilities.COLOR_FormatYUV420Flexible"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecCapabilities.FEATURE_SecurePlayback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecCapabilities.FEATURE_TunneledPlayback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecCapabilities.createFromProfileLevel_added(java.lang.String, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecCapabilities.getAudioCapabilities_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecCapabilities.getDefaultFormat_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecCapabilities.getEncoderCapabilities_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecCapabilities.getMimeType_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecCapabilities.getVideoCapabilities_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecCapabilities.isFeatureRequired_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecCapabilities.isFormatSupported_added(android.media.MediaFormat)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.AVCLevel52"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel21"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel3"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel31"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel4"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel41"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel5"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel51"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel52"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel6"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel61"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCHighTierLevel62"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel21"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel3"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel31"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel4"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel41"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel5"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel51"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel52"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel6"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel61"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCMainTierLevel62"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCProfileMain"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.HEVCProfileMain10"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.EncoderCapabilities"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.VideoCapabilities"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecList"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecList.ALL_CODECS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecList.REGULAR_CODECS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecList.ctor_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecList.findDecoderForFormat_added(android.media.MediaFormat)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecList.findEncoderForFormat_added(android.media.MediaFormat)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecList.getCodecCount_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecList.getCodecInfoAt_changed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecList.getCodecInfos_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaDescription"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaDescription.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaDrm"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaDrm.MediaDrmStateException"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaDrm.openSession_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_AAC_DRC_ATTENUATION_FACTOR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_AAC_DRC_BOOST_FACTOR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_AAC_DRC_HEAVY_COMPRESSION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_AAC_DRC_TARGET_REFERENCE_LEVEL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_AAC_ENCODED_TARGET_LEVEL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_AAC_SBR_MODE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_AUDIO_SESSION_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_BITRATE_MODE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_CAPTURE_RATE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_COMPLEXITY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_PROFILE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_TEMPORAL_LAYERING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_AAC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_AC3"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_AMR_NB"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_AMR_WB"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_FLAC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_G711_ALAW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_G711_MLAW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_MPEG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_MSGSM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_OPUS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_QCELP"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_RAW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_VORBIS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_TEXT_CEA_608"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_TEXT_VTT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_VIDEO_AVC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_VIDEO_H263"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_VIDEO_HEVC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_VIDEO_MPEG2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_VIDEO_MPEG4"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_VIDEO_RAW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_VIDEO_VP8"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_VIDEO_VP9"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.getFeatureEnabled_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.setFeatureEnabled_added(java.lang.String, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaMetadata"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaMetadata.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaMetadataEditor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaMuxer.OutputFormat"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaMuxer.OutputFormat.MUXER_OUTPUT_WEBM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaPlayer"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaPlayer.TrackInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaPlayer.TrackInfo.MEDIA_TRACK_TYPE_SUBTITLE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaPlayer.create_added(android.content.Context, android.net.Uri, android.view.SurfaceHolder, android.media.AudioAttributes, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaPlayer.create_added(android.content.Context, int, android.media.AudioAttributes, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaPlayer.getSelectedTrack_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaPlayer.setAudioAttributes_added(android.media.AudioAttributes)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaRecorder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaRecorder.AudioEncoder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaRecorder.AudioEncoder.VORBIS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaRecorder.OutputFormat"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaRecorder.OutputFormat.WEBM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaRecorder.VideoEncoder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaRecorder.VideoEncoder.VP8"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaRecorder.VideoSource"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaRecorder.VideoSource.SURFACE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaRecorder.getSurface_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaRecorder.setCamera_changed(android.hardware.Camera)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.Rating"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.Rating.RATING_NONE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.RemoteControlClient"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.RemoteControlClient.MetadataEditor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.RemoteControlClient.getMediaSession_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.RemoteController"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.Ringtone"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.Ringtone.getAudioAttributes_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.Ringtone.getStreamType_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.Ringtone.setAudioAttributes_added(android.media.AudioAttributes)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.Ringtone.setStreamType_changed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.SoundPool"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.SoundPool.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.SoundPool.ctor_changed(int, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.VolumeProvider"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.audiofx"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.audiofx.Virtualizer"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_AUTO"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_BINAURAL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_OFF"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_TRANSAURAL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.audiofx.Virtualizer.canVirtualize_added(int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.audiofx.Virtualizer.forceVirtualizationMode_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.audiofx.Virtualizer.getSpeakerAngles_added(int, int, int[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.audiofx.Virtualizer.getVirtualizationMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.browse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.projection"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.NetworkCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.OnNetworkActiveListener"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.TYPE_VPN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.addDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.getAllNetworks_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.getLinkProperties_added(android.net.Network)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.getNetworkCapabilities_added(android.net.Network)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.getNetworkInfo_added(android.net.Network)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.getNetworkPreference_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.getProcessDefaultNetwork_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.isDefaultNetworkActive_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.registerNetworkCallback_added(android.net.NetworkRequest, android.net.ConnectivityManager.NetworkCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.removeDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.reportBadNetwork_added(android.net.Network)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.requestNetwork_added(android.net.NetworkRequest, android.net.ConnectivityManager.NetworkCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.requestRouteToHost_changed(int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.setNetworkPreference_changed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.setProcessDefaultNetwork_added(android.net.Network)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.startUsingNetworkFeature_changed(int, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.stopUsingNetworkFeature_changed(int, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.unregisterNetworkCallback_added(android.net.ConnectivityManager.NetworkCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.IpPrefix"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.LinkAddress"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.LinkProperties"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.Network"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.NetworkCapabilities"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.NetworkRequest"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.NetworkRequest.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.Proxy"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.Proxy.EXTRA_PROXY_INFO"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ProxyInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.PskKeyManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.RouteInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.VpnService.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.VpnService.Builder.addAllowedApplication_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.VpnService.Builder.addDisallowedApplication_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.VpnService.Builder.allowBypass_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.VpnService.Builder.allowFamily_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.VpnService.Builder.setBlocking_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.http"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.http.X509TrustManagerExtensions"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.http.X509TrustManagerExtensions.isUserAddedCertificate_added(java.security.cert.X509Certificate)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.nsd"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.nsd.NsdServiceInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.nsd.NsdServiceInfo.getAttributes_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.nsd.NsdServiceInfo.removeAttribute_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.nsd.NsdServiceInfo.setAttribute_added(java.lang.String, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiConfiguration"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiConfiguration.FQDN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiEnterpriseConfig.Eap"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiEnterpriseConfig.Eap.AKA"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiEnterpriseConfig.Eap.SIM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiInfo.FREQUENCY_UNITS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiInfo.getFrequency_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.WPS_AUTH_FAILURE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.WPS_OVERLAP_ERROR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.WPS_TIMED_OUT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.WPS_TKIP_ONLY_PROHIBITED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.WPS_WEP_PROHIBITED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.WpsCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.cancelWps_added(android.net.wifi.WifiManager.WpsCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.is5GHzBandSupported_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.isDeviceToApRttSupported_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.isEnhancedPowerReportingSupported_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.isP2pSupported_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.isPreferredNetworkOffloadSupported_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.isTdlsSupported_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.startWps_added(android.net.wifi.WpsInfo, android.net.wifi.WifiManager.WpsCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WpsInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WpsInfo.BSSID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.nfc"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.nfc.NdefRecord"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.nfc.NdefRecord.createTextRecord_added(java.lang.String, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.nfc.NfcAdapter"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.nfc.NfcAdapter.invokeBeam_added(android.app.Activity)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.nfc.cardemulation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.nfc.cardemulation.CardEmulation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.nfc.cardemulation.CardEmulation.categoryAllowsForegroundPreference_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.nfc.cardemulation.CardEmulation.getAidsForService_added(android.content.ComponentName, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.nfc.cardemulation.CardEmulation.registerAidsForService_added(android.content.ComponentName, java.lang.String, java.util.List&lt;java.lang.String&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.nfc.cardemulation.CardEmulation.removeAidsForService_added(android.content.ComponentName, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.nfc.cardemulation.CardEmulation.setPreferredService_added(android.app.Activity, android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.nfc.cardemulation.CardEmulation.supportsAidPrefixRegistration_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.nfc.cardemulation.CardEmulation.unsetPreferredService_added(android.app.Activity)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.opengl"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.opengl.EGLObjectHandle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.opengl.EGLObjectHandle.ctor_added(long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.opengl.EGLObjectHandle.ctor_changed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.opengl.EGLObjectHandle.getHandle_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.opengl.EGLObjectHandle.getNativeHandle_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.opengl.GLES20"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.opengl.GLES20.glGetActiveAttrib_removed(int, int, int, java.nio.IntBuffer, java.nio.IntBuffer, java.nio.IntBuffer, byte)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.opengl.GLES20.glGetActiveUniform_removed(int, int, int, java.nio.IntBuffer, java.nio.IntBuffer, java.nio.IntBuffer, byte)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.opengl.GLES20.glGetShaderSource_removed(int, int, java.nio.IntBuffer, byte)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.opengl.GLES31"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.opengl.GLES31Ext"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.opengl.GLES31Ext.DebugProcKHR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BaseBundle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BaseBundle.clear_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BaseBundle.containsKey_changed(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BaseBundle.getDoubleArray_changed(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BaseBundle.getIntArray_changed(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BaseBundle.getLongArray_changed(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BaseBundle.getStringArray_changed(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BaseBundle.get_changed(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BaseBundle.isEmpty_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BaseBundle.keySet_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BaseBundle.putDoubleArray_changed(java.lang.String, double[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BaseBundle.putDouble_changed(java.lang.String, double)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BaseBundle.putIntArray_changed(java.lang.String, int[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BaseBundle.putInt_changed(java.lang.String, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BaseBundle.putLongArray_changed(java.lang.String, long[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BaseBundle.putLong_changed(java.lang.String, long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BaseBundle.putStringArray_changed(java.lang.String, java.lang.String[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BaseBundle.putString_changed(java.lang.String, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BaseBundle.remove_changed(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BaseBundle.size_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BatteryManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BatteryManager.BATTERY_PROPERTY_CAPACITY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BatteryManager.BATTERY_PROPERTY_CHARGE_COUNTER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BatteryManager.BATTERY_PROPERTY_CURRENT_AVERAGE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BatteryManager.BATTERY_PROPERTY_CURRENT_NOW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BatteryManager.BATTERY_PROPERTY_ENERGY_COUNTER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BatteryManager.getIntProperty_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.BatteryManager.getLongProperty_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Build"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Build.CPU_ABI"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Build.CPU_ABI2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Build.SUPPORTED_32_BIT_ABIS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Build.SUPPORTED_64_BIT_ABIS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Build.SUPPORTED_ABIS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Build.VERSION_CODES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Build.VERSION_CODES.L"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Build.VERSION_CODES.LOLLIPOP"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Bundle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Bundle.ctor_added(android.os.PersistableBundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Bundle.getDouble_removed(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Bundle.getDouble_removed(java.lang.String, double)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Bundle.getInt_removed(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Bundle.getInt_removed(java.lang.String, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Bundle.getLong_removed(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Bundle.getLong_removed(java.lang.String, long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Bundle.getSizeF_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Bundle.getSize_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Bundle.getString_removed(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Bundle.getString_removed(java.lang.String, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Bundle.putSizeF_added(java.lang.String, android.util.SizeF)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Bundle.putSize_added(java.lang.String, android.util.Size)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Debug"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Debug.startMethodTracingSampling_added(java.lang.String, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Environment"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Environment.getExternalStorageState_added(java.io.File)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Environment.getStorageState_changed(java.io.File)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Environment.isExternalStorageEmulated_added(java.io.File)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Environment.isExternalStorageRemovable_added(java.io.File)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Message"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Message.sendingUid"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Parcel"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Parcel.obtain_removed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Parcel.readPersistableBundle_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Parcel.readPersistableBundle_added(java.lang.ClassLoader)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Parcel.readSizeF_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Parcel.readSize_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Parcel.writePersistableBundle_added(android.os.PersistableBundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Parcel.writeSizeF_added(android.util.SizeF)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Parcel.writeSize_added(android.util.Size)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.PersistableBundle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.PowerManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.PowerManager.ACTION_POWER_SAVE_MODE_CHANGED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.PowerManager.PROXIMITY_SCREEN_OFF_WAKE_LOCK"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.PowerManager.RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.PowerManager.WakeLock"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.PowerManager.WakeLock.release_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.PowerManager.goToSleep_removed(long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.PowerManager.isPowerSaveMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.PowerManager.isWakeLockLevelSupported_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.PowerManager.userActivity_removed(long, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.PowerManager.wakeUp_removed(long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.DISALLOW_ADD_USER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.DISALLOW_ADJUST_VOLUME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.DISALLOW_APPS_CONTROL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.DISALLOW_CONFIG_CELL_BROADCASTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.DISALLOW_CONFIG_TETHERING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.DISALLOW_CONFIG_VPN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.DISALLOW_CREATE_WINDOWS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.DISALLOW_CROSS_PROFILE_COPY_PASTE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.DISALLOW_DEBUGGING_FEATURES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.DISALLOW_FACTORY_RESET"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.DISALLOW_MOUNT_PHYSICAL_MEDIA"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.DISALLOW_OUTGOING_CALLS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.DISALLOW_SMS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.DISALLOW_UNMUTE_MICROPHONE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.ENSURE_VERIFY_APPS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.getUserProfiles_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.hasUserRestriction_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.setUserRestriction_changed(java.lang.String, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.setUserRestrictions_changed(android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.setUserRestrictions_changed(android.os.Bundle, android.os.UserHandle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Vibrator"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Vibrator.vibrate_added(long, android.media.AudioAttributes)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Vibrator.vibrate_added(long[], int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Vibrator.vibrate_added(long[], int, android.media.AudioAttributes)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Vibrator.vibrate_changed(long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Vibrator.vibrate_removed(long[], int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.CheckBoxPreference"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.CheckBoxPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.DialogPreference"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.DialogPreference.ctor_added(android.content.Context)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.DialogPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.EditTextPreference"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.EditTextPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.ListPreference"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.ListPreference.ctor_added(android.content.Context, android.util.AttributeSet, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.ListPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.MultiSelectListPreference"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.MultiSelectListPreference.ctor_added(android.content.Context, android.util.AttributeSet, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.MultiSelectListPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.Preference"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.Preference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.PreferenceCategory"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.PreferenceCategory.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.PreferenceGroup"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.PreferenceGroup.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.RingtonePreference"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.RingtonePreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.SwitchPreference"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.SwitchPreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.TwoStatePreference"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.preference.TwoStatePreference.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.printservice"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.printservice.PrintService"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.printservice.PrintService.EXTRA_PRINTER_INFO"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls.CACHED_FORMATTED_NUMBER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls.CACHED_LOOKUP_URI"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls.CACHED_MATCHED_NUMBER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls.CACHED_NORMALIZED_NUMBER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls.CACHED_PHOTO_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls.CONTENT_URI_WITH_VOICEMAIL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls.COUNTRY_ISO"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls.DATA_USAGE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls.EXTRA_CALL_TYPE_FILTER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls.FEATURES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls.FEATURES_VIDEO"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls.GEOCODED_LOCATION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls.PHONE_ACCOUNT_COMPONENT_NAME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls.PHONE_ACCOUNT_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls.TRANSCRIPTION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls.VOICEMAIL_TYPE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls.VOICEMAIL_URI"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Callable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Contactables"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Email"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Event"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Event.getTypeLabel_added(android.content.res.Resources, int, java.lang.CharSequence)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.GroupMembership"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Identity"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Im"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Nickname"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Note"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Organization"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Phone"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Photo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Relation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.SipAddress"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.StructuredName"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.StructuredName.FULL_NAME_STYLE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.StructuredPostal"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Website"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.ContactOptionsColumns"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.ContactOptionsColumns.PINNED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Contacts"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Contacts.CONTENT_FREQUENT_URI"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Contacts.CONTENT_MULTI_VCARD_URI"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Contacts.Entity"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Contacts.StreamItems"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Contacts.StreamItems.CONTENT_DIRECTORY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Contacts.isEnterpriseContactId_added(long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.ContactsColumns"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.ContactsColumns.IN_DEFAULT_DIRECTORY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.ContactsColumns.NAME_RAW_CONTACT_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.DEFERRED_SNIPPETING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.DEFERRED_SNIPPETING_QUERY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Data"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.DataColumns"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.DataColumns.RES_PACKAGE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.GroupsColumns"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.GroupsColumns.RES_PACKAGE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.GroupsColumns.TITLE_RES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.PhoneLookup"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.PhoneLookup.ENTERPRISE_CONTENT_FILTER_URI"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.PhoneLookup.QUERY_PARAMETER_SIP_ADDRESS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.PinnedPositions"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.QuickContact"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.QuickContact.ACTION_QUICK_CONTACT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.QuickContact.EXTRA_EXCLUDE_MIMES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.REMOVE_DUPLICATE_ENTRIES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.RawContacts.StreamItems"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.RawContacts.StreamItems.CONTENT_DIRECTORY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.RawContactsColumns"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.RawContactsColumns.ACCOUNT_TYPE_AND_DATA_SET"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.STREQUENT_PHONE_ONLY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.SearchSnippets"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemPhotos"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemPhotos.PHOTO"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemPhotosColumns"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemPhotosColumns.PHOTO_FILE_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemPhotosColumns.PHOTO_URI"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemPhotosColumns.SORT_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemPhotosColumns.STREAM_ITEM_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemPhotosColumns.SYNC1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemPhotosColumns.SYNC2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemPhotosColumns.SYNC3"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemPhotosColumns.SYNC4"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItems"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItems.CONTENT_ITEM_TYPE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItems.CONTENT_LIMIT_URI"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItems.CONTENT_PHOTO_URI"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItems.CONTENT_TYPE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItems.CONTENT_URI"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItems.MAX_ITEMS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItems.StreamItemPhotos"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_DIRECTORY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_ITEM_TYPE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_TYPE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.ACCOUNT_NAME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.ACCOUNT_TYPE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.COMMENTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.CONTACT_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.CONTACT_LOOKUP_KEY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.DATA_SET"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.RAW_CONTACT_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.RAW_CONTACT_SOURCE_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.RES_ICON"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.RES_LABEL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.RES_PACKAGE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.SYNC1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.SYNC2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.SYNC3"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.SYNC4"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.TEXT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.TIMESTAMP"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.DocumentsContract"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.DocumentsContract.Document"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.DocumentsContract.Document.FLAG_SUPPORTS_RENAME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.DocumentsContract.Root"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.DocumentsContract.Root.FLAG_SUPPORTS_IS_CHILD"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.DocumentsContract.buildChildDocumentsUriUsingTree_added(android.net.Uri, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.DocumentsContract.buildDocumentUriUsingTree_added(android.net.Uri, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.DocumentsContract.buildTreeDocumentUri_added(java.lang.String, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.DocumentsContract.createDocument_added(android.content.ContentResolver, android.net.Uri, java.lang.String, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.DocumentsContract.getTreeDocumentId_added(android.net.Uri)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.DocumentsContract.renameDocument_added(android.content.ContentResolver, android.net.Uri, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.DocumentsProvider"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.DocumentsProvider.isChildDocument_added(java.lang.String, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.DocumentsProvider.openAssetFile_added(android.net.Uri, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.DocumentsProvider.openAssetFile_added(android.net.Uri, java.lang.String, android.os.CancellationSignal)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.DocumentsProvider.renameDocument_added(java.lang.String, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.DocumentsProvider.revokeDocumentPermission_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.MediaStore"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.MediaStore.Audio.Media"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.MediaStore.Audio.Media.ENTRY_CONTENT_TYPE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.MediaStore.Audio.Radio"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.MediaStore.EXTRA_MEDIA_GENRE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.MediaStore.EXTRA_MEDIA_PLAYLIST"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.MediaStore.EXTRA_MEDIA_RADIO_CHANNEL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Settings"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Settings.ACTION_CAST_SETTINGS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Settings.ACTION_HOME_SETTINGS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Settings.ACTION_SHOW_REGULATORY_INFO"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Settings.ACTION_USAGE_ACCESS_SETTINGS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Settings.ACTION_VOICE_INPUT_SETTINGS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Settings.Global"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Settings.Global.INSTALL_NON_MARKET_APPS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Settings.Secure"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Settings.Secure.ACCESSIBILITY_DISPLAY_INVERSION_ENABLED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Settings.Secure.INSTALL_NON_MARKET_APPS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Settings.Secure.SKIP_FIRST_USE_HINTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Settings.System"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Settings.System.NEXT_ALARM_FORMATTED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Telephony.BaseMmsColumns"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Telephony.BaseMmsColumns.CREATOR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Telephony.BaseMmsColumns.MESSAGE_BOX_FAILED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Telephony.TextBasedSmsColumns"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Telephony.TextBasedSmsColumns.CREATOR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Telephony.ThreadsColumns"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Telephony.ThreadsColumns.ARCHIVED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.VoicemailContract.Voicemails"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.VoicemailContract.Voicemails.TRANSCRIPTION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.Allocation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.Allocation.copy1DRangeFromUnchecked_added(int, int, java.lang.Object)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.Allocation.copy1DRangeFrom_added(int, int, java.lang.Object)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.Allocation.copy2DRangeFrom_added(int, int, int, int, java.lang.Object)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.Allocation.copyFromUnchecked_added(java.lang.Object)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.Allocation.copyFrom_added(java.lang.Object)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.Allocation.copyTo_added(java.lang.Object)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.RenderScript"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.RenderScript.CREATE_FLAG_LOW_LATENCY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.RenderScript.CREATE_FLAG_LOW_POWER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.RenderScript.CREATE_FLAG_NONE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.RenderScript.create_added(android.content.Context, android.renderscript.RenderScript.ContextType, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptC.ctor_added(android.renderscript.RenderScript, java.lang.String, byte[], byte[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptC.ctor_added(long, android.renderscript.RenderScript)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsic3DLUT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsic3DLUT.forEach_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicBlend"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicBlend.forEachAdd_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicBlend.forEachClear_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicBlend.forEachDstAtop_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicBlend.forEachDstIn_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicBlend.forEachDstOut_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicBlend.forEachDstOver_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicBlend.forEachDst_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicBlend.forEachMultiply_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicBlend.forEachSrcAtop_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicBlend.forEachSrcIn_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicBlend.forEachSrcOut_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicBlend.forEachSrcOver_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicBlend.forEachSrc_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicBlend.forEachSubtract_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicBlend.forEachXor_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicBlur"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicBlur.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicColorMatrix"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicColorMatrix.forEach_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicConvolve3x3"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicConvolve3x3.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicConvolve5x5"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicConvolve5x5.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicHistogram"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicHistogram.forEach_Dot_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicHistogram.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicLUT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptIntrinsicLUT.forEach_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.Type"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.Type.createXYZ_added(android.renderscript.RenderScript, android.renderscript.Element, int, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.Type.createXY_added(android.renderscript.RenderScript, android.renderscript.Element, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.Type.createX_added(android.renderscript.RenderScript, android.renderscript.Element, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.dreams"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.dreams.DreamService"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.dreams.DreamService.onWakeUp_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.dreams.DreamService.wakeUp_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.media"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.HINT_HOST_DISABLE_EFFECTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_ALL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_NONE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_PRIORITY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.Ranking"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.RankingMap"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.cancelNotification_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.cancelNotification_added(java.lang.String, java.lang.String, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.cancelNotification_removed(java.lang.String, java.lang.String, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.cancelNotifications_added(java.lang.String[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.getActiveNotifications_added(java.lang.String[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.getCurrentInterruptionFilter_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.getCurrentListenerHints_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.getCurrentRanking_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.onInterruptionFilterChanged_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.onListenerConnected_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.onListenerHintsChanged_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.onNotificationPosted_added(android.service.notification.StatusBarNotification, android.service.notification.NotificationListenerService.RankingMap)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.onNotificationPosted_changed(android.service.notification.StatusBarNotification)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.onNotificationRankingUpdate_added(android.service.notification.NotificationListenerService.RankingMap)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.onNotificationRemoved_added(android.service.notification.StatusBarNotification, android.service.notification.NotificationListenerService.RankingMap)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.onNotificationRemoved_changed(android.service.notification.StatusBarNotification)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.requestInterruptionFilter_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.requestListenerHints_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.StatusBarNotification"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.StatusBarNotification.getGroupKey_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.StatusBarNotification.getUserId_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.StatusBarNotification.getUser_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.restrictions"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.wallpaper"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.wallpaper.WallpaperService.Engine"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.wallpaper.WallpaperService.Engine.onApplyWindowInsets_added(android.view.WindowInsets)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.SynthesisCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.SynthesisCallback.error_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.SynthesisCallback.hasFinished_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.SynthesisCallback.hasStarted_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.SynthesisRequest"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.SynthesisRequest.ctor_added(java.lang.CharSequence, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.SynthesisRequest.getCharSequenceText_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.SynthesisRequest.getText_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.SynthesisRequest.getVoiceName_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.ERROR_INVALID_REQUEST"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.ERROR_NETWORK"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.ERROR_NETWORK_TIMEOUT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.ERROR_NOT_INSTALLED_YET"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.ERROR_OUTPUT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.ERROR_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.ERROR_SYNTHESIS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.Engine"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_EMBEDDED_SYNTHESIS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_RETRIES_COUNT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_SYNTHESIS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_TIMEOUT_MS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NOT_INSTALLED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.Engine.KEY_PARAM_SESSION_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.STOPPED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.io.File)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.addEarcon_removed(java.lang.String, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.io.File)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.lang.String, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.areDefaultsEnforced_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.getAvailableLanguages_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.getDefaultLanguage_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.getDefaultVoice_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.getFeatures_changed(java.util.Locale)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.getLanguage_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.getVoice_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.getVoices_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.playEarcon_added(java.lang.String, int, android.os.Bundle, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.playEarcon_changed(java.lang.String, int, java.util.HashMap&lt;java.lang.String, java.lang.String&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.playSilence_changed(long, int, java.util.HashMap&lt;java.lang.String, java.lang.String&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.playSilentUtterance_added(long, int, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.setAudioAttributes_added(android.media.AudioAttributes)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.setVoice_added(android.speech.tts.Voice)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.speak_added(java.lang.CharSequence, int, android.os.Bundle, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.speak_changed(java.lang.String, int, java.util.HashMap&lt;java.lang.String, java.lang.String&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.synthesizeToFile_added(java.lang.CharSequence, android.os.Bundle, java.io.File, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.synthesizeToFile_changed(java.lang.String, java.util.HashMap&lt;java.lang.String, java.lang.String&gt;, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeechService"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeechService.onGetDefaultVoiceNameFor_added(java.lang.String, java.lang.String, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeechService.onGetVoices_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeechService.onIsValidVoiceName_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeechService.onLoadVoice_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.UtteranceProgressListener"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.UtteranceProgressListener.onError_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.UtteranceProgressListener.onError_added(java.lang.String, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.UtteranceProgressListener.onError_removed(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.Voice"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.system"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telecom"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.IccOpenLogicalChannelResponse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.PhoneNumberFormattingTextWatcher"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.PhoneNumberFormattingTextWatcher.ctor_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.PhoneNumberUtils"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.PhoneNumberUtils.formatJapaneseNumber_changed(android.text.Editable)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.PhoneNumberUtils.formatNanpNumber_changed(android.text.Editable)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.PhoneNumberUtils.formatNumberToE164_added(java.lang.String, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.PhoneNumberUtils.formatNumber_added(android.text.Editable, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.PhoneNumberUtils.formatNumber_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.PhoneNumberUtils.formatNumber_added(java.lang.String, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.PhoneNumberUtils.formatNumber_added(java.lang.String, java.lang.String, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.PhoneNumberUtils.formatNumber_removed(android.text.Editable, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.PhoneNumberUtils.formatNumber_removed(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.PhoneNumberUtils.getFormatTypeForLocale_changed(java.util.Locale)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.PhoneNumberUtils.isLocalEmergencyNumber_added(android.content.Context, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.PhoneNumberUtils.isVoiceMailNumber_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.PhoneNumberUtils.normalizeNumber_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.PhoneNumberUtils.replaceUnicodeDigits_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.EXTRA_MMS_DATA"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_ALIAS_ENABLED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_ALIAS_MAX_CHARS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_ALIAS_MIN_CHARS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_ALLOW_ATTACH_AUDIO"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_APPEND_TRANSACTION_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_EMAIL_GATEWAY_NUMBER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_GROUP_MMS_ENABLED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_HTTP_PARAMS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_HTTP_SOCKET_TIMEOUT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_MAX_IMAGE_HEIGHT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_MAX_IMAGE_WIDTH"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_MAX_MESSAGE_SIZE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_MMS_ENABLED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_MMS_READ_REPORT_ENABLED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_MULTIPART_SMS_ENABLED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_NAI_SUFFIX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_RECIPIENT_LIMIT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_SUBJECT_MAX_LENGTH"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_UA_PROF_TAG_NAME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_UA_PROF_URL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_USER_AGENT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_ERROR_CONFIGURATION_ERROR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_ERROR_HTTP_FAILURE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_ERROR_INVALID_APN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_ERROR_IO_ERROR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_ERROR_RETRY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_ERROR_UNABLE_CONNECT_MMS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_ERROR_UNSPECIFIED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.downloadMultimediaMessage_added(android.content.Context, java.lang.String, android.net.Uri, android.os.Bundle, android.app.PendingIntent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.getCarrierConfigValues_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.sendMultimediaMessage_added(android.content.Context, android.net.Uri, java.lang.String, android.os.Bundle, android.app.PendingIntent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.TelephonyManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.TelephonyManager.iccCloseLogicalChannel_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.TelephonyManager.iccExchangeSimIO_added(int, int, int, int, int, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.TelephonyManager.iccOpenLogicalChannel_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.TelephonyManager.iccTransmitApduBasicChannel_added(int, int, int, int, int, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.TelephonyManager.iccTransmitApduLogicalChannel_added(int, int, int, int, int, int, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.TelephonyManager.isSmsCapable_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.TelephonyManager.sendEnvelopeWithStatus_added(java.lang.String)"/>
+  <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.getCodeCacheDir_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.test.mock.MockContext.getExternalMediaDirs_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.test.mock.MockContext.getNoBackupFilesDir_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.test.mock.MockPackageManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.test.mock.MockPackageManager.getLeanbackLaunchIntentForPackage_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.test.mock.MockPackageManager.getPackageInstaller_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.test.mock.MockPackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.test.mock.MockPackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.test.mock.MockPackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.InputFilter.LengthFilter"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.InputFilter.LengthFilter.getMax_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.SpannableStringBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.SpannableStringBuilder.append_added(java.lang.CharSequence, java.lang.Object, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.CardinalBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.DateBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.DecimalBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.DigitsBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.ElectronicBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.FractionBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.MeasureBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.MoneyBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.OrdinalBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.SemioticClassBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.TelephoneBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.TextBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.TimeBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.VerbatimBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.ArcMotion"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.AutoTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.AutoTransition.ctor_added(android.content.Context, android.util.AttributeSet)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.ChangeBounds"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.ChangeBounds.ctor_added(android.content.Context, android.util.AttributeSet)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.ChangeBounds.setReparent_changed(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.ChangeClipBounds"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.ChangeImageTransform"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.ChangeTransform"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.CircularPropagation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Explode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Fade"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Fade.ctor_added(android.content.Context, android.util.AttributeSet)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.PathMotion"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.PatternPathMotion"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Scene"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Scene.ctor_added(android.view.ViewGroup, android.view.View)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Scene.ctor_changed(android.view.ViewGroup, android.view.ViewGroup)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.SidePropagation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Slide"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.EpicenterCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.MATCH_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.MATCH_INSTANCE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.MATCH_ITEM_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.MATCH_NAME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.addTarget_added(java.lang.Class)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.addTarget_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.canRemoveViews_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.ctor_added(android.content.Context, android.util.AttributeSet)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.excludeTarget_added(java.lang.String, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.getEpicenterCallback_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.getEpicenter_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.getPathMotion_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.getPropagation_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.getTargetNames_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.getTargetTypes_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.removeTarget_added(java.lang.Class)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.removeTarget_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.setEpicenterCallback_added(android.transition.Transition.EpicenterCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.setMatchOrder_added(int...)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.setPathMotion_added(android.transition.PathMotion)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.setPropagation_added(android.transition.TransitionPropagation)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.TransitionPropagation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.TransitionSet"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.TransitionSet.ctor_added(android.content.Context, android.util.AttributeSet)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.TransitionSet.getTransitionAt_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.TransitionSet.getTransitionCount_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Visibility"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Visibility.MODE_IN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Visibility.MODE_OUT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Visibility.ctor_added(android.content.Context, android.util.AttributeSet)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Visibility.getMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Visibility.onAppear_added(android.view.ViewGroup, android.view.View, android.transition.TransitionValues, android.transition.TransitionValues)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Visibility.onDisappear_added(android.view.ViewGroup, android.view.View, android.transition.TransitionValues, android.transition.TransitionValues)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Visibility.setMode_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.VisibilityPropagation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.ArrayMap"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.ArrayMap.indexOfKey_added(java.lang.Object)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.DisplayMetrics"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.DisplayMetrics.DENSITY_560"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.LruCache"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.LruCache.resize_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.MutableBoolean"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.MutableByte"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.MutableChar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.MutableDouble"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.MutableFloat"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.MutableInt"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.MutableLong"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.MutableShort"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.Patterns"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.Patterns.TOP_LEVEL_DOMAIN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.Patterns.TOP_LEVEL_DOMAIN_STR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.Patterns.TOP_LEVEL_DOMAIN_STR_FOR_WEB_URL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.Range"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.Rational"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.Size"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.SizeF"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Display"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Display.STATE_DOZE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Display.STATE_DOZE_SUSPEND"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Display.STATE_DOZING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Display.getAppVsyncOffsetNanos_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Display.getPresentationDeadlineNanos_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Display.getSupportedRefreshRates_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.FrameStats"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.HapticFeedbackConstants"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.HapticFeedbackConstants.CLOCK_TICK"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.InputDevice"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.InputDevice.SOURCE_HDMI"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.InputDevice.supportsSource_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_11"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_12"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_HELP"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_LAST_CHANNEL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_MEDIA_TOP_MENU"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_PAIRING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_ANTENNA_CABLE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_CONTENTS_MENU"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_DATA_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_INPUT_COMPONENT_1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_INPUT_COMPONENT_2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_INPUT_COMPOSITE_1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_INPUT_COMPOSITE_2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_3"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_4"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_INPUT_VGA_1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_MEDIA_CONTEXT_MENU"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_NETWORK"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_NUMBER_ENTRY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_RADIO_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_SATELLITE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_SATELLITE_BS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_SATELLITE_CS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_SATELLITE_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_TELETEXT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_TERRESTRIAL_ANALOG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_TERRESTRIAL_DIGITAL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_TIMER_PROGRAMMING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_ZOOM_MODE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_VOICE_ASSIST"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.MotionEvent"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.MotionEvent.isButtonPressed_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.SurfaceView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.SurfaceView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.TextureView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.TextureView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.SCROLL_AXIS_HORIZONTAL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.SCROLL_AXIS_NONE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.SCROLL_AXIS_VERTICAL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.TRANSLATION_Z"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.Z"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.computeSystemWindowInsets_added(android.view.WindowInsets, android.graphics.Rect)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.dispatchNestedFling_added(float, float, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.dispatchNestedPreFling_added(float, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.dispatchNestedPreScroll_added(int, int, int[], int[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.dispatchNestedScroll_added(int, int, int, int, int[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.drawableHotspotChanged_added(float, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.getBackgroundTintList_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.getBackgroundTintMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.getClipToOutline_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.getElevation_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.getOutlineProvider_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.getStateListAnimator_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.getTransitionName_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.getTranslationZ_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.getZ_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.hasNestedScrollingParent_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.initializeFadingEdge_removed(android.content.res.TypedArray)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.initializeScrollbars_removed(android.content.res.TypedArray)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.invalidateOutline_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.isAccessibilityFocused_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.isImportantForAccessibility_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.isNestedScrollingEnabled_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.requestUnbufferedDispatch_added(android.view.MotionEvent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.setBackgroundTintList_added(android.content.res.ColorStateList)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.setBackgroundTintMode_added(android.graphics.PorterDuff.Mode)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.setClipToOutline_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.setElevation_added(float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.setNestedScrollingEnabled_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.setOutlineProvider_added(android.view.ViewOutlineProvider)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.setStateListAnimator_added(android.animation.StateListAnimator)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.setTransitionName_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.setTranslationZ_added(float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.setZ_added(float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.startNestedScroll_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.stopNestedScroll_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewAnimationUtils"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewGroup"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewGroup.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewGroup.getClipToPadding_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewGroup.getNestedScrollAxes_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewGroup.getTouchscreenBlocksFocus_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewGroup.isTransitionGroup_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewGroup.onNestedFling_added(android.view.View, float, float, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewGroup.onNestedPreFling_added(android.view.View, float, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewGroup.onNestedPreScroll_added(android.view.View, int, int, int[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewGroup.onNestedScrollAccepted_added(android.view.View, android.view.View, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewGroup.onNestedScroll_added(android.view.View, int, int, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewGroup.onStartNestedScroll_added(android.view.View, android.view.View, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewGroup.onStopNestedScroll_added(android.view.View)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewGroup.setTouchscreenBlocksFocus_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewGroup.setTransitionGroup_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewOutlineProvider"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewParent"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewParent.onNestedFling_added(android.view.View, float, float, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewParent.onNestedPreFling_added(android.view.View, float, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewParent.onNestedPreScroll_added(android.view.View, int, int, int[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewParent.onNestedScrollAccepted_added(android.view.View, android.view.View, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewParent.onNestedScroll_added(android.view.View, int, int, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewParent.onStartNestedScroll_added(android.view.View, android.view.View, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewParent.onStopNestedScroll_added(android.view.View)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewPropertyAnimator"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewPropertyAnimator.translationZBy_added(float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewPropertyAnimator.translationZ_added(float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewPropertyAnimator.zBy_added(float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewPropertyAnimator.z_added(float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewStub"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewStub.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.FEATURE_ACTIVITY_TRANSITIONS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.FEATURE_CONTENT_TRANSITIONS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.STATUS_BAR_BACKGROUND_TRANSITION_NAME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getAllowEnterTransitionOverlap_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getAllowReturnTransitionOverlap_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getContentScene_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getEnterTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getExitTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getMediaController_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getNavigationBarColor_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getReenterTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getReturnTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getSharedElementEnterTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getSharedElementExitTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getSharedElementReenterTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getSharedElementReturnTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getSharedElementsUseOverlay_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getStatusBarColor_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getTransitionBackgroundFadeDuration_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getTransitionManager_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setAllowEnterTransitionOverlap_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setAllowReturnTransitionOverlap_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setEnterTransition_added(android.transition.Transition)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setExitTransition_added(android.transition.Transition)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setMediaController_added(android.media.session.MediaController)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setNavigationBarColor_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setReenterTransition_added(android.transition.Transition)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setReturnTransition_added(android.transition.Transition)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setSharedElementEnterTransition_added(android.transition.Transition)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setSharedElementExitTransition_added(android.transition.Transition)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setSharedElementReenterTransition_added(android.transition.Transition)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setSharedElementReturnTransition_added(android.transition.Transition)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setSharedElementsUseOverlay_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setStatusBarColor_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setTitleColor_changed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setTransitionBackgroundFadeDuration_added(long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setTransitionManager_added(android.transition.TransitionManager)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowAnimationFrameStats"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowContentFrameStats"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowInsets"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowInsets.consumeStableInsets_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowInsets.getStableInsetBottom_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowInsets.getStableInsetLeft_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowInsets.getStableInsetRight_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowInsets.getStableInsetTop_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowInsets.hasStableInsets_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowInsets.isConsumed_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowInsets.replaceSystemWindowInsets_added(android.graphics.Rect)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowManager.LayoutParams"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowManager.LayoutParams.TYPE_KEYGUARD"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowManager.LayoutParams.preferredRefreshRate"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityEvent"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityEvent.TYPE_WINDOWS_CHANGED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.ACTION_ARGUMENT_SET_TEXT_CHARSEQUENCE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.ACTION_SET_TEXT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.SELECTION_MODE_MULTIPLE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.SELECTION_MODE_NONE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.SELECTION_MODE_SINGLE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.getSelectionMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.obtain_added(int, int, boolean, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.isSelected_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.obtain_added(int, int, int, int, boolean, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.addAction_added(android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.addAction_changed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.getActionList_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.getActions_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.getError_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.getMaxTextLength_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.getWindow_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.removeAction_added(android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.removeAction_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.removeChild_added(android.view.View)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.removeChild_added(android.view.View, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.setError_added(java.lang.CharSequence)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.setMaxTextLength_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeProvider"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeProvider.HOST_VIEW_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityWindowInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.CaptioningManager.CaptionStyle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.CaptioningManager.CaptionStyle.EDGE_TYPE_DEPRESSED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.CaptioningManager.CaptionStyle.EDGE_TYPE_RAISED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.CaptioningManager.CaptionStyle.EDGE_TYPE_UNSPECIFIED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.CaptioningManager.CaptionStyle.hasBackgroundColor_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.CaptioningManager.CaptionStyle.hasEdgeColor_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.CaptioningManager.CaptionStyle.hasEdgeType_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.CaptioningManager.CaptionStyle.hasForegroundColor_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.CaptioningManager.CaptionStyle.hasWindowColor_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.CaptioningManager.CaptionStyle.windowColor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.animation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.animation.PathInterpolator"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.BaseInputConnection"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.BaseInputConnection.requestCursorUpdates_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.CursorAnchorInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.CursorAnchorInfo.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.InputConnection"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.InputConnection.CURSOR_UPDATE_IMMEDIATE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.InputConnection.CURSOR_UPDATE_MONITOR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.InputConnection.requestCursorUpdates_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.InputConnectionWrapper"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.InputConnectionWrapper.requestCursorUpdates_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.InputMethodManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.InputMethodManager.isWatchingCursor_changed(android.view.View)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.InputMethodManager.updateCursorAnchorInfo_added(android.view.View, android.view.inputmethod.CursorAnchorInfo)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.InputMethodManager.updateCursor_changed(android.view.View, int, int, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.InputMethodSession"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.InputMethodSession.updateCursorAnchorInfo_added(android.view.inputmethod.CursorAnchorInfo)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.textservice"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.textservice.TextInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.textservice.TextInfo.ctor_added(java.lang.CharSequence, int, int, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.textservice.TextInfo.getCharSequence_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.ClientCertRequest"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieManager.acceptThirdPartyCookies_added(android.webkit.WebView)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieManager.flush_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieManager.removeAllCookie_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieManager.removeAllCookies_added(android.webkit.ValueCallback&lt;java.lang.Boolean&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieManager.removeExpiredCookie_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieManager.removeSessionCookie_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieManager.removeSessionCookies_added(android.webkit.ValueCallback&lt;java.lang.Boolean&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieManager.setAcceptThirdPartyCookies_added(android.webkit.WebView, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieManager.setCookie_added(java.lang.String, java.lang.String, android.webkit.ValueCallback&lt;java.lang.Boolean&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieSyncManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieSyncManager.LOGTAG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieSyncManager.mDataBase"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieSyncManager.mHandler"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieSyncManager.syncFromRamToFlash_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.PermissionRequest"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebChromeClient"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebChromeClient.FileChooserParams"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebChromeClient.onPermissionRequestCanceled_added(android.webkit.PermissionRequest)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebChromeClient.onPermissionRequest_added(android.webkit.PermissionRequest)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebChromeClient.onShowFileChooser_added(android.webkit.WebView, android.webkit.ValueCallback&lt;android.net.Uri[]&gt;, android.webkit.WebChromeClient.FileChooserParams)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebResourceRequest"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebResourceResponse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebResourceResponse.ctor_added(java.lang.String, java.lang.String, int, java.lang.String, java.util.Map&lt;java.lang.String, java.lang.String&gt;, java.io.InputStream)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebResourceResponse.getReasonPhrase_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebResourceResponse.getResponseHeaders_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebResourceResponse.getStatusCode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebResourceResponse.setResponseHeaders_added(java.util.Map&lt;java.lang.String, java.lang.String&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebResourceResponse.setStatusCodeAndReasonPhrase_added(int, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebSettings"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebSettings.MIXED_CONTENT_ALWAYS_ALLOW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebSettings.MIXED_CONTENT_COMPATIBILITY_MODE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebSettings.MIXED_CONTENT_NEVER_ALLOW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebSettings.getMixedContentMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebSettings.setMixedContentMode_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebSyncManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebView.clearClientCertPreferences_added(java.lang.Runnable)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebView.createPrintDocumentAdapter_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebView.createPrintDocumentAdapter_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebView.createPrintDocumentAdapter_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebView.enableSlowWholeDocumentDraw_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebView.zoomBy_added(float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebViewClient"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebViewClient.onReceivedClientCertRequest_added(android.webkit.WebView, android.webkit.ClientCertRequest)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebViewClient.onUnhandledInputEvent_added(android.webkit.WebView, android.view.InputEvent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebViewClient.onUnhandledKeyEvent_changed(android.webkit.WebView, android.view.KeyEvent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, android.webkit.WebResourceRequest)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebViewClient.shouldInterceptRequest_removed(android.webkit.WebView, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsListView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsListView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsListView.fling_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsListView.setFastScrollStyle_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsListView.setSelectionFromTop_added(int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsListView.setSelectionFromTop_changed(int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsSeekBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsSeekBar.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsSeekBar.getSplitTrack_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsSeekBar.getThumbTintList_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsSeekBar.getThumbTintMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsSeekBar.setSplitTrack_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsSeekBar.setThumbTintList_added(android.content.res.ColorStateList)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsSeekBar.setThumbTintMode_added(android.graphics.PorterDuff.Mode)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsSpinner"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsSpinner.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsoluteLayout"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsoluteLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ActionMenuView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ActionMenuView.LayoutParams"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ActionMenuView.OnMenuItemClickListener"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AdapterView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AdapterView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AdapterViewAnimator"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AdapterViewAnimator.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AdapterViewFlipper"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AdapterViewFlipper.ctor_added(android.content.Context, android.util.AttributeSet, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AdapterViewFlipper.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AnalogClock"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AnalogClock.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AutoCompleteTextView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AutoCompleteTextView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Button"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Button.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CalendarView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CalendarView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CheckBox"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CheckBox.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CheckedTextView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CheckedTextView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CheckedTextView.getCheckMarkTintList_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CheckedTextView.getCheckMarkTintMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CheckedTextView.setCheckMarkTintList_added(android.content.res.ColorStateList)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CheckedTextView.setCheckMarkTintMode_added(android.graphics.PorterDuff.Mode)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Chronometer"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Chronometer.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CompoundButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CompoundButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CompoundButton.getButtonTintList_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CompoundButton.getButtonTintMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CompoundButton.setButtonTintList_added(android.content.res.ColorStateList)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CompoundButton.setButtonTintMode_added(android.graphics.PorterDuff.Mode)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.DatePicker"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.DatePicker.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.DatePicker.getFirstDayOfWeek_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.DatePicker.setFirstDayOfWeek_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.EdgeEffect"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.EdgeEffect.getColor_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.EdgeEffect.getMaxHeight_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.EdgeEffect.onPull_added(float, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.EdgeEffect.setColor_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.EditText"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.EditText.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ExpandableListView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ExpandableListView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.FrameLayout"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.FrameLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.FrameLayout.getForegroundTintList_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.FrameLayout.getForegroundTintMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.FrameLayout.setForegroundTintList_added(android.content.res.ColorStateList)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.FrameLayout.setForegroundTintMode_added(android.graphics.PorterDuff.Mode)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Gallery"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Gallery.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.GridLayout"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.GridLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.GridLayout.spec_added(int, android.widget.GridLayout.Alignment, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.GridLayout.spec_added(int, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.GridLayout.spec_added(int, int, android.widget.GridLayout.Alignment, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.GridLayout.spec_added(int, int, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.GridView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.GridView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.HorizontalScrollView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.HorizontalScrollView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ImageButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ImageButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ImageView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ImageView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ImageView.getImageTintList_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ImageView.getImageTintMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ImageView.setImageTintList_added(android.content.res.ColorStateList)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ImageView.setImageTintMode_added(android.graphics.PorterDuff.Mode)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.LinearLayout"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.LinearLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ListView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ListView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.MultiAutoCompleteTextView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.MultiAutoCompleteTextView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.NumberPicker"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.NumberPicker.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.PopupWindow"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.PopupWindow.getElevation_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.PopupWindow.setElevation_added(float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.getIndeterminateTintList_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.getIndeterminateTintMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.getProgressBackgroundTintList_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.getProgressBackgroundTintMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.getProgressTintList_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.getProgressTintMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.getSecondaryProgressTintList_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.getSecondaryProgressTintMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.setIndeterminateDrawableTiled_added(android.graphics.drawable.Drawable)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.setIndeterminateTintList_added(android.content.res.ColorStateList)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.setIndeterminateTintMode_added(android.graphics.PorterDuff.Mode)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.setProgressBackgroundTintList_added(android.content.res.ColorStateList)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.setProgressBackgroundTintMode_added(android.graphics.PorterDuff.Mode)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.setProgressDrawableTiled_added(android.graphics.drawable.Drawable)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.setProgressTintList_added(android.content.res.ColorStateList)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.setProgressTintMode_added(android.graphics.PorterDuff.Mode)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.setSecondaryProgressTintList_added(android.content.res.ColorStateList)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.setSecondaryProgressTintMode_added(android.graphics.PorterDuff.Mode)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.QuickContactBadge"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.QuickContactBadge.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.QuickContactBadge.setOverlay_added(android.graphics.drawable.Drawable)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.RadioButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.RadioButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.RatingBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.RatingBar.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.RelativeLayout"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.RelativeLayout.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ScrollView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ScrollView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.SearchView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.SearchView.ctor_added(android.content.Context, android.util.AttributeSet, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.SearchView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.SeekBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.SeekBar.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.SlidingDrawer"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.SlidingDrawer.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Space"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Space.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Spinner"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Spinner.ctor_added(android.content.Context, android.util.AttributeSet, int, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.StackView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.StackView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Switch"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Switch.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Switch.getShowText_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Switch.getSplitTrack_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Switch.setShowText_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Switch.setSplitTrack_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TabHost"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TabHost.ctor_added(android.content.Context, android.util.AttributeSet, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TabHost.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TabWidget"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TabWidget.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TextClock"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TextClock.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TextView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TextView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TextView.getFontFeatureSettings_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TextView.getLetterSpacing_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TextView.getShowSoftInputOnFocus_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TextView.getTextColor_removed(android.content.Context, android.content.res.TypedArray, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TextView.getTextColors_removed(android.content.Context, android.content.res.TypedArray)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TextView.setElegantTextHeight_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TextView.setFontFeatureSettings_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TextView.setLetterSpacing_added(float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TextView.setShowSoftInputOnFocus_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TimePicker"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TimePicker.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ToggleButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ToggleButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Toolbar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Toolbar.LayoutParams"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Toolbar.OnMenuItemClickListener"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TwoLineListItem"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TwoLineListItem.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.VideoView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.VideoView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.VideoView.setVideoURI_added(android.net.Uri, java.util.Map&lt;java.lang.String, java.lang.String&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ZoomButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ZoomButton.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.IllformedLocaleException"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.PRIVATE_USE_EXTENSION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.UNICODE_LOCALE_EXTENSION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.forLanguageTag_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.getDisplayScript_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.getDisplayScript_added(java.util.Locale)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.getExtensionKeys_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.getExtension_added(char)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.getScript_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.getUnicodeLocaleAttributes_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.getUnicodeLocaleKeys_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.getUnicodeLocaleType_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.toLanguageTag_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.ConcurrentLinkedDeque"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.ForkJoinPool"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.ForkJoinPool.ForkJoinWorkerThreadFactory"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.ForkJoinPool.ManagedBlocker"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.ForkJoinTask"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.ForkJoinWorkerThread"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.LinkedTransferQueue"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.Phaser"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.RecursiveAction"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.RecursiveTask"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.ScheduledThreadPoolExecutor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.ScheduledThreadPoolExecutor.getRemoveOnCancelPolicy_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.ScheduledThreadPoolExecutor.setRemoveOnCancelPolicy_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.ThreadLocalRandom"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.TransferQueue"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.locks"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.locks.AbstractQueuedLongSynchronizer"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.locks.AbstractQueuedLongSynchronizer.hasQueuedPredecessors_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.locks.AbstractQueuedSynchronizer"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.locks.AbstractQueuedSynchronizer.hasQueuedPredecessors_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.CENATT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.CENATX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.CENCOM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.CENCRC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.CENDSK"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.CENEXT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.CENFLG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.CENHDR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.CENHOW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.CENLEN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.CENNAM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.CENOFF"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.CENSIG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.CENSIZ"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.CENTIM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.CENVEM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.CENVER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.ENDCOM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.ENDHDR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.ENDOFF"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.ENDSIG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.ENDSIZ"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.ENDSUB"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.ENDTOT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.EXTCRC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.EXTHDR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.EXTLEN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.EXTSIG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.EXTSIZ"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.LOCCRC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.LOCEXT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.LOCFLG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.LOCHDR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.LOCHOW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.LOCLEN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.LOCNAM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.LOCSIG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.LOCSIZ"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.LOCTIM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipEntry.LOCVER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.CENATT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.CENATX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.CENCOM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.CENCRC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.CENDSK"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.CENEXT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.CENFLG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.CENHDR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.CENHOW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.CENLEN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.CENNAM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.CENOFF"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.CENSIG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.CENSIZ"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.CENTIM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.CENVEM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.CENVER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.ENDCOM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.ENDHDR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.ENDOFF"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.ENDSIG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.ENDSIZ"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.ENDSUB"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.ENDTOT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.EXTCRC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.EXTHDR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.EXTLEN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.EXTSIG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.EXTSIZ"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.LOCCRC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.LOCEXT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.LOCFLG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.LOCHDR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.LOCHOW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.LOCLEN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.LOCNAM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.LOCSIG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.LOCSIZ"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.LOCTIM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipFile.LOCVER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.CENATT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.CENATX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.CENCOM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.CENCRC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.CENDSK"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.CENEXT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.CENFLG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.CENHDR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.CENHOW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.CENLEN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.CENNAM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.CENOFF"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.CENSIG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.CENSIZ"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.CENTIM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.CENVEM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.CENVER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.ENDCOM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.ENDHDR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.ENDOFF"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.ENDSIG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.ENDSIZ"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.ENDSUB"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.ENDTOT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.EXTCRC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.EXTHDR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.EXTLEN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.EXTSIG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.EXTSIZ"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.LOCCRC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.LOCEXT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.LOCFLG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.LOCHDR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.LOCHOW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.LOCLEN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.LOCNAM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.LOCSIG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.LOCSIZ"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.LOCTIM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipInputStream.LOCVER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.CENATT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.CENATX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.CENCOM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.CENCRC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.CENDSK"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.CENEXT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.CENFLG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.CENHDR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.CENHOW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.CENLEN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.CENNAM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.CENOFF"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.CENSIG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.CENSIZ"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.CENTIM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.CENVEM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.CENVER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.ENDCOM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.ENDHDR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.ENDOFF"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.ENDSIG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.ENDSIZ"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.ENDSUB"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.ENDTOT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.EXTCRC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.EXTHDR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.EXTLEN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.EXTSIG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.EXTSIZ"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.LOCCRC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.LOCEXT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.LOCFLG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.LOCHDR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.LOCHOW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.LOCLEN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.LOCNAM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.LOCSIG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.LOCSIZ"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.LOCTIM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.zip.ZipOutputStream.LOCVER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+
+</comments>
diff --git a/docs/html/sdk/api_diff/preview-21/changes.html b/docs/html/sdk/api_diff/preview-21/changes.html
new file mode 100644
index 0000000..bebf5d8
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes.html
@@ -0,0 +1,45 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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 15 14:58:23 PDT 2014 -->
+<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 l-preview and 21
+</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,**" framespacing="1" frameborder="yes" border="1" bordercolor="#e9e9e9"> 
+<frameset rows="174,**" framespacing="1" frameborder="yes"  border="1" bordercolor="#e9e9e9">
+    <frame src="changes/jdiff_topleftframe.html" scrolling="no" name="topleftframe" frameborder="1">
+    <frame src="changes/alldiffs_index_all.html" scrolling="auto" name="bottomleftframe" frameborder="1">
+  </frameset>
+  <frame src="changes/changes-summary.html" scrolling="auto" name="rightframe" frameborder="1">
+</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/preview-21/changes/alldiffs_index_additions.html b/docs/html/sdk/api_diff/preview-21/changes/alldiffs_index_additions.html
new file mode 100644
index 0000000..2a41570
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/alldiffs_index_additions.html
@@ -0,0 +1,4841 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<!-- Method acceptThirdPartyCookies -->
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#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.CookieManager.html#android.webkit.CookieManager.acceptThirdPartyCookies_added(android.webkit.WebView)" class="hiddenlink" target="rightframe"><b>acceptThirdPartyCookies</b>
+(<code>WebView</code>)</A></nobr><br>
+<!-- Field ACCOUNT_TYPE_AND_DATA_SET -->
+<nobr><A HREF="android.provider.ContactsContract.RawContactsColumns.html#android.provider.ContactsContract.RawContactsColumns.ACCOUNT_TYPE_AND_DATA_SET" class="hiddenlink" target="rightframe">ACCOUNT_TYPE_AND_DATA_SET</A>
+</nobr><br>
+<!-- Field ACTION_BLOCKED_RATINGS_CHANGED -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.ACTION_BLOCKED_RATINGS_CHANGED" class="hiddenlink" target="rightframe">ACTION_BLOCKED_RATINGS_CHANGED</A>
+</nobr><br>
+<!-- Field ACTION_CAST_SETTINGS -->
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_CAST_SETTINGS" class="hiddenlink" target="rightframe">ACTION_CAST_SETTINGS</A>
+</nobr><br>
+<!-- Field ACTION_HDMI_AUDIO_PLUG -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ACTION_HDMI_AUDIO_PLUG" class="hiddenlink" target="rightframe">ACTION_HDMI_AUDIO_PLUG</A>
+</nobr><br>
+<!-- Field ACTION_HEADSET_PLUG -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ACTION_HEADSET_PLUG" class="hiddenlink" target="rightframe">ACTION_HEADSET_PLUG</A>
+</nobr><br>
+<!-- Field ACTION_HOME_SETTINGS -->
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_HOME_SETTINGS" class="hiddenlink" target="rightframe">ACTION_HOME_SETTINGS</A>
+</nobr><br>
+<!-- Field ACTION_LOCK_TASK_ENTERING -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.ACTION_LOCK_TASK_ENTERING" class="hiddenlink" target="rightframe">ACTION_LOCK_TASK_ENTERING</A>
+</nobr><br>
+<!-- Field ACTION_LOCK_TASK_EXITING -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.ACTION_LOCK_TASK_EXITING" class="hiddenlink" target="rightframe">ACTION_LOCK_TASK_EXITING</A>
+</nobr><br>
+<!-- Field ACTION_NEXT_ALARM_CLOCK_CHANGED -->
+<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.ACTION_NEXT_ALARM_CLOCK_CHANGED" class="hiddenlink" target="rightframe">ACTION_NEXT_ALARM_CLOCK_CHANGED</A>
+</nobr><br>
+<!-- Field ACTION_PARENTAL_CONTROLS_ENABLED_CHANGED -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.ACTION_PARENTAL_CONTROLS_ENABLED_CHANGED" class="hiddenlink" target="rightframe">ACTION_PARENTAL_CONTROLS_ENABLED_CHANGED</A>
+</nobr><br>
+<!-- Field ACTION_PLAY_FROM_MEDIA_ID -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.ACTION_PLAY_FROM_MEDIA_ID" class="hiddenlink" target="rightframe">ACTION_PLAY_FROM_MEDIA_ID</A>
+</nobr><br>
+<!-- Field ACTION_PLAY_FROM_SEARCH -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.ACTION_PLAY_FROM_SEARCH" class="hiddenlink" target="rightframe">ACTION_PLAY_FROM_SEARCH</A>
+</nobr><br>
+<!-- Field ACTION_QUERY_CONTENT_RATING_SYSTEMS -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.ACTION_QUERY_CONTENT_RATING_SYSTEMS" class="hiddenlink" target="rightframe">ACTION_QUERY_CONTENT_RATING_SYSTEMS</A>
+</nobr><br>
+<!-- Field ACTION_QUICK_CONTACT -->
+<nobr><A HREF="android.provider.ContactsContract.QuickContact.html#android.provider.ContactsContract.QuickContact.ACTION_QUICK_CONTACT" class="hiddenlink" target="rightframe">ACTION_QUICK_CONTACT</A>
+</nobr><br>
+<!-- Field ACTION_SHOW_REGULATORY_INFO -->
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_SHOW_REGULATORY_INFO" class="hiddenlink" target="rightframe">ACTION_SHOW_REGULATORY_INFO</A>
+</nobr><br>
+<!-- Field ACTION_SKIP_TO_QUEUE_ITEM -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.ACTION_SKIP_TO_QUEUE_ITEM" class="hiddenlink" target="rightframe">ACTION_SKIP_TO_QUEUE_ITEM</A>
+</nobr><br>
+<!-- Field ACTION_USAGE_ACCESS_SETTINGS -->
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_USAGE_ACCESS_SETTINGS" class="hiddenlink" target="rightframe">ACTION_USAGE_ACCESS_SETTINGS</A>
+</nobr><br>
+<!-- Field ACTION_VOICE_INPUT_SETTINGS -->
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_VOICE_INPUT_SETTINGS" class="hiddenlink" target="rightframe">ACTION_VOICE_INPUT_SETTINGS</A>
+</nobr><br>
+<!-- Field actionBarPopupTheme -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionBarPopupTheme" class="hiddenlink" target="rightframe">actionBarPopupTheme</A>
+</nobr><br>
+<!-- Field actionModeFindDrawable -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionModeFindDrawable" class="hiddenlink" target="rightframe">actionModeFindDrawable</A>
+</nobr><br>
+<!-- Field actionModeShareDrawable -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionModeShareDrawable" class="hiddenlink" target="rightframe">actionModeShareDrawable</A>
+</nobr><br>
+<!-- Field actionModeWebSearchDrawable -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionModeWebSearchDrawable" class="hiddenlink" target="rightframe">actionModeWebSearchDrawable</A>
+</nobr><br>
+<!-- Method addAllowedApplication -->
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.addAllowedApplication_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>addAllowedApplication</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method addAppTask -->
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.addAppTask_added(android.app.Activity, android.content.Intent, android.app.ActivityManager.TaskDescription, android.graphics.Bitmap)" class="hiddenlink" target="rightframe"><b>addAppTask</b>
+(<code>Activity, Intent, TaskDescription, Bitmap</code>)</A></nobr><br>
+<!-- Method addArc -->
+<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addArc_added(float, float, float, float, float, float)" class="hiddenlink" target="rightframe"><b>addArc</b>
+(<code>float, float, float, float, float, float</code>)</A></nobr><br>
+<!-- Method addCharacterBounds -->
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.Builder.html#android.view.inputmethod.CursorAnchorInfo.Builder.addCharacterBounds_added(int, float, float, float, float, int)" class="hiddenlink" target="rightframe"><b>addCharacterBounds</b>
+(<code>int, float, float, float, float, int</code>)</A></nobr><br>
+<!-- Method addCrossProfileIntentFilter -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addCrossProfileIntentFilter_added(android.content.ComponentName, android.content.IntentFilter, int)" class="hiddenlink" target="rightframe"><b>addCrossProfileIntentFilter</b>
+(<code>ComponentName, IntentFilter, int</code>)</A></nobr><br>
+<!-- Method addCrossProfileWidgetProvider -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>addCrossProfileWidgetProvider</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method addDefaultNetworkActiveListener -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.addDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><b>addDefaultNetworkActiveListener</b>
+(<code>OnNetworkActiveListener</code>)</A></nobr><br>
+<!-- Method addDisallowedApplication -->
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.addDisallowedApplication_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>addDisallowedApplication</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method addEarcon -->
+<i>addEarcon</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.io.File)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, File</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method addEarcon -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, String</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method addOnActiveSessionsChangedListener -->
+<i>addOnActiveSessionsChangedListener</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSessionManager.html#android.media.session.MediaSessionManager.addOnActiveSessionsChangedListener_added(android.media.session.MediaSessionManager.OnActiveSessionsChangedListener, android.content.ComponentName)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>OnActiveSessionsChangedListener, ComponentName</code>)</b>&nbsp;in&nbsp;android.media.session.MediaSessionManager
+</A></nobr><br>
+<!-- Method addOnActiveSessionsChangedListener -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSessionManager.html#android.media.session.MediaSessionManager.addOnActiveSessionsChangedListener_added(android.media.session.MediaSessionManager.OnActiveSessionsChangedListener, android.content.ComponentName, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>OnActiveSessionsChangedListener, ComponentName, Handler</code>)</b>&nbsp;in&nbsp;android.media.session.MediaSessionManager
+</A></nobr><br>
+<!-- Method addRoundRect -->
+<i>addRoundRect</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addRoundRect_added(float, float, float, float, float, float, android.graphics.Path.Direction)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float, float, float, float, float, float, Direction</code>)</b>&nbsp;in&nbsp;android.graphics.Path
+</A></nobr><br>
+<!-- Method addRoundRect -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addRoundRect_added(float, float, float, float, float[], android.graphics.Path.Direction)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float, float, float, float, float[], Direction</code>)</b>&nbsp;in&nbsp;android.graphics.Path
+</A></nobr><br>
+<!-- Method addSharedElement -->
+<nobr><A HREF="android.app.FragmentTransaction.html#android.app.FragmentTransaction.addSharedElement_added(android.view.View, java.lang.String)" class="hiddenlink" target="rightframe"><b>addSharedElement</b>
+(<code>View, String</code>)</A></nobr><br>
+<!-- Method addSpeech -->
+<i>addSpeech</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.io.File)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, File</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method addSpeech -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, String, int</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method adjustVolume -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.adjustVolume_added(int, int)" class="hiddenlink" target="rightframe"><b>adjustVolume</b>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Field ADVERTISE_FAILED_DATA_TOO_LARGE -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_DATA_TOO_LARGE" class="hiddenlink" target="rightframe">ADVERTISE_FAILED_DATA_TOO_LARGE</A>
+</nobr><br>
+<!-- Field ADVERTISE_FAILED_FEATURE_UNSUPPORTED -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_FEATURE_UNSUPPORTED" class="hiddenlink" target="rightframe">ADVERTISE_FAILED_FEATURE_UNSUPPORTED</A>
+</nobr><br>
+<!-- Field ADVERTISE_FAILED_INTERNAL_ERROR -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_INTERNAL_ERROR" class="hiddenlink" target="rightframe">ADVERTISE_FAILED_INTERNAL_ERROR</A>
+</nobr><br>
+<!-- Class AdvertiseData -->
+<A HREF="pkg_android.bluetooth.le.html#AdvertiseData" class="hiddenlink" target="rightframe"><b>AdvertiseData</b></A><br>
+<!-- Class AdvertiseData.Builder -->
+<A HREF="pkg_android.bluetooth.le.html#AdvertiseData.Builder" class="hiddenlink" target="rightframe"><b>AdvertiseData.Builder</b></A><br>
+<!-- Field affiliatedTaskId -->
+<nobr><A HREF="android.app.ActivityManager.RecentTaskInfo.html#android.app.ActivityManager.RecentTaskInfo.affiliatedTaskId" class="hiddenlink" target="rightframe">affiliatedTaskId</A>
+</nobr><br>
+<!-- Class AlarmManager.AlarmClockInfo -->
+<A HREF="pkg_android.app.html#AlarmManager.AlarmClockInfo" class="hiddenlink" target="rightframe"><b>AlarmManager.AlarmClockInfo</b></A><br>
+<!-- Field ALL_CODECS -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.ALL_CODECS" class="hiddenlink" target="rightframe">ALL_CODECS</A>
+</nobr><br>
+<!-- Method allowBypass -->
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.allowBypass_added()" class="hiddenlink" target="rightframe"><b>allowBypass</b>
+()</A></nobr><br>
+<!-- Method allowFamily -->
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.allowFamily_added(int)" class="hiddenlink" target="rightframe"><b>allowFamily</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Class AlwaysOnHotwordDetector -->
+<A HREF="pkg_android.service.voice.html#AlwaysOnHotwordDetector" class="hiddenlink" target="rightframe"><b>AlwaysOnHotwordDetector</b></A><br>
+<!-- Class AlwaysOnHotwordDetector.Callback -->
+<A HREF="pkg_android.service.voice.html#AlwaysOnHotwordDetector.Callback" class="hiddenlink" target="rightframe"><b>AlwaysOnHotwordDetector.Callback</b></A><br>
+<!-- Class AlwaysOnHotwordDetector.EventPayload -->
+<A HREF="pkg_android.service.voice.html#AlwaysOnHotwordDetector.EventPayload" class="hiddenlink" target="rightframe"><b>AlwaysOnHotwordDetector.EventPayload</b></A><br>
+<!-- Field ambientShadowAlpha -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.ambientShadowAlpha" class="hiddenlink" target="rightframe">ambientShadowAlpha</A>
+</nobr><br>
+<!-- Field amPmBackgroundColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.amPmBackgroundColor" class="hiddenlink" target="rightframe">amPmBackgroundColor</A>
+</nobr><br>
+<!-- Field amPmTextColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.amPmTextColor" class="hiddenlink" target="rightframe">amPmTextColor</A>
+</nobr><br>
+<!-- Package android.app.usage -->
+<A HREF="changes-summary.html#android.app.usage" class="hiddenlink" target="rightframe"><b>android.app.usage</b></A><br>
+<!-- Package android.media.browse -->
+<A HREF="changes-summary.html#android.media.browse" class="hiddenlink" target="rightframe"><b>android.media.browse</b></A><br>
+<!-- Package android.media.projection -->
+<A HREF="changes-summary.html#android.media.projection" class="hiddenlink" target="rightframe"><b>android.media.projection</b></A><br>
+<!-- Package android.service.media -->
+<A HREF="changes-summary.html#android.service.media" class="hiddenlink" target="rightframe"><b>android.service.media</b></A><br>
+<!-- Package android.service.restrictions -->
+<A HREF="changes-summary.html#android.service.restrictions" class="hiddenlink" target="rightframe"><b>android.service.restrictions</b></A><br>
+<!-- Package android.telecom -->
+<A HREF="changes-summary.html#android.telecom" class="hiddenlink" target="rightframe"><b>android.telecom</b></A><br>
+<!-- Class AnimatedVectorDrawable -->
+<A HREF="pkg_android.graphics.drawable.html#AnimatedVectorDrawable" class="hiddenlink" target="rightframe"><b>AnimatedVectorDrawable</b></A><br>
+<!-- Method append -->
+<nobr><A HREF="android.text.SpannableStringBuilder.html#android.text.SpannableStringBuilder.append_added(java.lang.CharSequence, java.lang.Object, int)" class="hiddenlink" target="rightframe"><b>append</b>
+(<code>CharSequence, Object, int</code>)</A></nobr><br>
+<!-- Field APPWIDGET_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.APPWIDGET_SERVICE" class="hiddenlink" target="rightframe">APPWIDGET_SERVICE</A>
+</nobr><br>
+<!-- Field ARCHIVED -->
+<nobr><A HREF="android.provider.Telephony.ThreadsColumns.html#android.provider.Telephony.ThreadsColumns.ARCHIVED" class="hiddenlink" target="rightframe">ARCHIVED</A>
+</nobr><br>
+<!-- Class ArcMotion -->
+<A HREF="pkg_android.transition.html#ArcMotion" class="hiddenlink" target="rightframe"><b>ArcMotion</b></A><br>
+<!-- Method arcTo -->
+<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.arcTo_added(float, float, float, float, float, float, boolean)" class="hiddenlink" target="rightframe"><b>arcTo</b>
+(<code>float, float, float, float, float, float, boolean</code>)</A></nobr><br>
+<!-- Field AUDIO_ATTRIBUTES_DEFAULT -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.AUDIO_ATTRIBUTES_DEFAULT" class="hiddenlink" target="rightframe">AUDIO_ATTRIBUTES_DEFAULT</A>
+</nobr><br>
+<!-- Field AUDIO_SESSION_ID_GENERATE -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.AUDIO_SESSION_ID_GENERATE" class="hiddenlink" target="rightframe">AUDIO_SESSION_ID_GENERATE</A>
+</nobr><br>
+<!-- Class AudioAttributes -->
+<A HREF="pkg_android.media.html#AudioAttributes" class="hiddenlink" target="rightframe"><b>AudioAttributes</b></A><br>
+<!-- Field audioAttributes -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.audioAttributes" class="hiddenlink" target="rightframe">audioAttributes</A>
+</nobr><br>
+<!-- Class AudioAttributes.Builder -->
+<A HREF="pkg_android.media.html#AudioAttributes.Builder" class="hiddenlink" target="rightframe"><b>AudioAttributes.Builder</b></A><br>
+<!-- Class AudioFormat.Builder -->
+<A HREF="pkg_android.media.html#AudioFormat.Builder" class="hiddenlink" target="rightframe"><b>AudioFormat.Builder</b></A><br>
+<!-- Constructor AudioTrack -->
+<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.ctor_added(android.media.AudioAttributes, android.media.AudioFormat, int, int, int)" class="hiddenlink" target="rightframe"><b>AudioTrack</b>
+(<code>AudioAttributes, AudioFormat, int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor AutoTransition -->
+<nobr><A HREF="android.transition.AutoTransition.html#android.transition.AutoTransition.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>AutoTransition</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field AVCLevel52 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.AVCLevel52" class="hiddenlink" target="rightframe">AVCLevel52</A>
+</nobr><br>
+<!-- Field backgroundTint -->
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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="#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.backgroundTint" class="hiddenlink" target="rightframe">backgroundTint</A>
+</nobr><br>
+<!-- Field backgroundTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.backgroundTintMode" class="hiddenlink" target="rightframe">backgroundTintMode</A>
+</nobr><br>
+<!-- Field BACKOFF_POLICY_EXPONENTIAL -->
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.BACKOFF_POLICY_EXPONENTIAL" class="hiddenlink" target="rightframe">BACKOFF_POLICY_EXPONENTIAL</A>
+</nobr><br>
+<!-- Field BACKOFF_POLICY_LINEAR -->
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.BACKOFF_POLICY_LINEAR" class="hiddenlink" target="rightframe">BACKOFF_POLICY_LINEAR</A>
+</nobr><br>
+<!-- Field BIND_DREAM_SERVICE -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.BIND_DREAM_SERVICE" class="hiddenlink" target="rightframe">BIND_DREAM_SERVICE</A>
+</nobr><br>
+<!-- Method bindAppWidgetIdIfAllowed -->
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.bindAppWidgetIdIfAllowed_added(int, android.os.UserHandle, android.content.ComponentName, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>bindAppWidgetIdIfAllowed</b>
+(<code>int, UserHandle, ComponentName, Bundle</code>)</A></nobr><br>
+<!-- Method bindSocket -->
+<nobr><A HREF="android.net.Network.html#android.net.Network.bindSocket_added(java.net.Socket)" class="hiddenlink" target="rightframe"><b>bindSocket</b>
+(<code>Socket</code>)</A></nobr><br>
+<!-- Class BlackLevelPattern -->
+<A HREF="pkg_android.hardware.camera2.params.html#BlackLevelPattern" class="hiddenlink" target="rightframe"><b>BlackLevelPattern</b></A><br>
+<!-- Field BSSID -->
+<nobr><A HREF="android.net.wifi.WpsInfo.html#android.net.wifi.WpsInfo.BSSID" class="hiddenlink" target="rightframe">BSSID</A>
+</nobr><br>
+<!-- Field BUFFER_FLAG_KEY_FRAME -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.BUFFER_FLAG_KEY_FRAME" class="hiddenlink" target="rightframe">BUFFER_FLAG_KEY_FRAME</A>
+</nobr><br>
+<!-- Method buildChannelsUriForInput -->
+<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildChannelsUriForInput_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>buildChannelsUriForInput</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method buildChannelUriForPassthroughInput -->
+<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildChannelUriForPassthroughInput_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>buildChannelUriForPassthroughInput</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method buildInputId -->
+<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildInputId_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>buildInputId</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method buildProgramsUriForChannel -->
+<i>buildProgramsUriForChannel</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildProgramsUriForChannel_added(long)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long</code>)</b>&nbsp;in&nbsp;android.media.tv.TvContract
+</A></nobr><br>
+<!-- Method buildProgramsUriForChannel -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildProgramsUriForChannel_added(long, long, long)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long, long, long</code>)</b>&nbsp;in&nbsp;android.media.tv.TvContract
+</A></nobr><br>
+<!-- Field buttonBarNegativeButtonStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonBarNegativeButtonStyle" class="hiddenlink" target="rightframe">buttonBarNegativeButtonStyle</A>
+</nobr><br>
+<!-- Field buttonBarNeutralButtonStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonBarNeutralButtonStyle" class="hiddenlink" target="rightframe">buttonBarNeutralButtonStyle</A>
+</nobr><br>
+<!-- Field buttonBarPositiveButtonStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonBarPositiveButtonStyle" class="hiddenlink" target="rightframe">buttonBarPositiveButtonStyle</A>
+</nobr><br>
+<!-- Field buttonTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonTint" class="hiddenlink" target="rightframe">buttonTint</A>
+</nobr><br>
+<!-- Field buttonTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonTintMode" class="hiddenlink" target="rightframe">buttonTintMode</A>
+</nobr><br>
+<!-- Field calendarTextColor -->
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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="#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.calendarTextColor" class="hiddenlink" target="rightframe">calendarTextColor</A>
+</nobr><br>
+<!-- Field CALLBACK_TYPE_ALL_MATCHES -->
+<nobr><A HREF="android.bluetooth.le.ScanSettings.html#android.bluetooth.le.ScanSettings.CALLBACK_TYPE_ALL_MATCHES" class="hiddenlink" target="rightframe">CALLBACK_TYPE_ALL_MATCHES</A>
+</nobr><br>
+<!-- Class CameraCaptureSession.CaptureCallback -->
+<A HREF="pkg_android.hardware.camera2.html#CameraCaptureSession.CaptureCallback" class="hiddenlink" target="rightframe"><b>CameraCaptureSession.CaptureCallback</b></A><br>
+<!-- Class CameraCaptureSession.StateCallback -->
+<A HREF="pkg_android.hardware.camera2.html#CameraCaptureSession.StateCallback" class="hiddenlink" target="rightframe"><b>CameraCaptureSession.StateCallback</b></A><br>
+<!-- Class CameraDevice.StateCallback -->
+<A HREF="pkg_android.hardware.camera2.html#CameraDevice.StateCallback" class="hiddenlink" target="rightframe"><b>CameraDevice.StateCallback</b></A><br>
+<!-- Class CameraManager.AvailabilityCallback -->
+<A HREF="pkg_android.hardware.camera2.html#CameraManager.AvailabilityCallback" class="hiddenlink" target="rightframe"><b>CameraManager.AvailabilityCallback</b></A><br>
+<!-- Method cancelWps -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.cancelWps_added(android.net.wifi.WifiManager.WpsCallback)" class="hiddenlink" target="rightframe"><b>cancelWps</b>
+(<code>WpsCallback</code>)</A></nobr><br>
+<!-- Method canVirtualize -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.canVirtualize_added(int, int)" class="hiddenlink" target="rightframe"><b>canVirtualize</b>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Constructor ChangeBounds -->
+<nobr><A HREF="android.transition.ChangeBounds.html#android.transition.ChangeBounds.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>ChangeBounds</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor ChangeClipBounds -->
+<nobr><A HREF="android.transition.ChangeClipBounds.html#android.transition.ChangeClipBounds.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>ChangeClipBounds</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class ChangeImageTransform -->
+<A HREF="pkg_android.transition.html#ChangeImageTransform" class="hiddenlink" target="rightframe"><b>ChangeImageTransform</b></A><br>
+<!-- Constructor ChangeTransform -->
+<nobr><A HREF="android.transition.ChangeTransform.html#android.transition.ChangeTransform.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>ChangeTransform</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field CHANNEL_OUT_SIDE_LEFT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_SIDE_LEFT" class="hiddenlink" target="rightframe">CHANNEL_OUT_SIDE_LEFT</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_SIDE_RIGHT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_SIDE_RIGHT" class="hiddenlink" target="rightframe">CHANNEL_OUT_SIDE_RIGHT</A>
+</nobr><br>
+<!-- Field checkMarkTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.checkMarkTint" class="hiddenlink" target="rightframe">checkMarkTint</A>
+</nobr><br>
+<!-- Field checkMarkTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.checkMarkTintMode" class="hiddenlink" target="rightframe">checkMarkTintMode</A>
+</nobr><br>
+<!-- Method clamp -->
+<nobr><A HREF="android.util.Range.html#android.util.Range.clamp_added(T)" class="hiddenlink" target="rightframe"><b>clamp</b>
+(<code>T</code>)</A></nobr><br>
+<!-- Method clearCrossProfileIntentFilters -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearCrossProfileIntentFilters_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>clearCrossProfileIntentFilters</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method clearDeviceOwnerApp -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearDeviceOwnerApp_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>clearDeviceOwnerApp</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Field closeIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.closeIcon" class="hiddenlink" target="rightframe">closeIcon</A>
+</nobr><br>
+<!-- Field COLOR_CORRECTION_ABERRATION_MODE -->
+<i>COLOR_CORRECTION_ABERRATION_MODE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.hardware.camera2.CaptureRequest.html#android.hardware.camera2.CaptureRequest.COLOR_CORRECTION_ABERRATION_MODE" class="hiddenlink" target="rightframe">android.hardware.camera2.CaptureRequest</A>
+</nobr><br>
+<!-- Field COLOR_CORRECTION_ABERRATION_MODE -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.hardware.camera2.CaptureResult.html#android.hardware.camera2.CaptureResult.COLOR_CORRECTION_ABERRATION_MODE" class="hiddenlink" target="rightframe">android.hardware.camera2.CaptureResult</A>
+</nobr><br>
+<!-- Field COLOR_CORRECTION_ABERRATION_MODE_FAST -->
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.COLOR_CORRECTION_ABERRATION_MODE_FAST" class="hiddenlink" target="rightframe">COLOR_CORRECTION_ABERRATION_MODE_FAST</A>
+</nobr><br>
+<!-- Field COLOR_CORRECTION_ABERRATION_MODE_HIGH_QUALITY -->
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.COLOR_CORRECTION_ABERRATION_MODE_HIGH_QUALITY" class="hiddenlink" target="rightframe">COLOR_CORRECTION_ABERRATION_MODE_HIGH_QUALITY</A>
+</nobr><br>
+<!-- Field COLOR_CORRECTION_ABERRATION_MODE_OFF -->
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.COLOR_CORRECTION_ABERRATION_MODE_OFF" class="hiddenlink" target="rightframe">COLOR_CORRECTION_ABERRATION_MODE_OFF</A>
+</nobr><br>
+<!-- Field COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES -->
+<nobr><A HREF="android.hardware.camera2.CameraCharacteristics.html#android.hardware.camera2.CameraCharacteristics.COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES" class="hiddenlink" target="rightframe">COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES</A>
+</nobr><br>
+<!-- Field COLOR_FormatYUV420Flexible -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.COLOR_FormatYUV420Flexible" class="hiddenlink" target="rightframe">COLOR_FormatYUV420Flexible</A>
+</nobr><br>
+<!-- Field colorEdgeEffect -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorEdgeEffect" class="hiddenlink" target="rightframe">colorEdgeEffect</A>
+</nobr><br>
+<!-- Field COLUMN_CONTENT_RATING -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.html#android.media.tv.TvContract.Programs.COLUMN_CONTENT_RATING" class="hiddenlink" target="rightframe">COLUMN_CONTENT_RATING</A>
+</nobr><br>
+<!-- Field COLUMN_EPISODE_NUMBER -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.html#android.media.tv.TvContract.Programs.COLUMN_EPISODE_NUMBER" class="hiddenlink" target="rightframe">COLUMN_EPISODE_NUMBER</A>
+</nobr><br>
+<!-- Field COLUMN_EPISODE_TITLE -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.html#android.media.tv.TvContract.Programs.COLUMN_EPISODE_TITLE" class="hiddenlink" target="rightframe">COLUMN_EPISODE_TITLE</A>
+</nobr><br>
+<!-- Field COLUMN_INPUT_ID -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.COLUMN_INPUT_ID" class="hiddenlink" target="rightframe">COLUMN_INPUT_ID</A>
+</nobr><br>
+<!-- Field COLUMN_NETWORK_AFFILIATION -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.COLUMN_NETWORK_AFFILIATION" class="hiddenlink" target="rightframe">COLUMN_NETWORK_AFFILIATION</A>
+</nobr><br>
+<!-- Field COLUMN_SEASON_NUMBER -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.html#android.media.tv.TvContract.Programs.COLUMN_SEASON_NUMBER" class="hiddenlink" target="rightframe">COLUMN_SEASON_NUMBER</A>
+</nobr><br>
+<!-- Field COLUMN_VIDEO_FORMAT -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.COLUMN_VIDEO_FORMAT" class="hiddenlink" target="rightframe">COLUMN_VIDEO_FORMAT</A>
+</nobr><br>
+<!-- Field COLUMN_VIDEO_HEIGHT -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.html#android.media.tv.TvContract.Programs.COLUMN_VIDEO_HEIGHT" class="hiddenlink" target="rightframe">COLUMN_VIDEO_HEIGHT</A>
+</nobr><br>
+<!-- Field COLUMN_VIDEO_WIDTH -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.html#android.media.tv.TvContract.Programs.COLUMN_VIDEO_WIDTH" class="hiddenlink" target="rightframe">COLUMN_VIDEO_WIDTH</A>
+</nobr><br>
+<!-- Field commitIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.commitIcon" class="hiddenlink" target="rightframe">commitIcon</A>
+</nobr><br>
+<!-- Method computeSystemWindowInsets -->
+<nobr><A HREF="android.view.View.html#android.view.View.computeSystemWindowInsets_added(android.view.WindowInsets, android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>computeSystemWindowInsets</b>
+(<code>WindowInsets, Rect</code>)</A></nobr><br>
+<!-- Class ConcurrentLinkedDeque -->
+<A HREF="pkg_java.util.concurrent.html#ConcurrentLinkedDeque" class="hiddenlink" target="rightframe"><b>ConcurrentLinkedDeque</b></A><br>
+<!-- Field CONNECTION_PRIORITY_BALANCED -->
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_BALANCED" class="hiddenlink" target="rightframe">CONNECTION_PRIORITY_BALANCED</A>
+</nobr><br>
+<!-- Field CONNECTION_PRIORITY_HIGH -->
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_HIGH" class="hiddenlink" target="rightframe">CONNECTION_PRIORITY_HIGH</A>
+</nobr><br>
+<!-- Field CONNECTION_PRIORITY_LOW_POWER -->
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_LOW_POWER" class="hiddenlink" target="rightframe">CONNECTION_PRIORITY_LOW_POWER</A>
+</nobr><br>
+<!-- Method consumeStableInsets -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.consumeStableInsets_added()" class="hiddenlink" target="rightframe"><b>consumeStableInsets</b>
+()</A></nobr><br>
+<!-- Class ContactsContract.PinnedPositions -->
+<A HREF="pkg_android.provider.html#ContactsContract.PinnedPositions" class="hiddenlink" target="rightframe"><b>ContactsContract.PinnedPositions</b></A><br>
+<!-- Class ContactsContract.SearchSnippets -->
+<A HREF="pkg_android.provider.html#ContactsContract.SearchSnippets" class="hiddenlink" target="rightframe"><b>ContactsContract.SearchSnippets</b></A><br>
+<!-- Method contains -->
+<i>contains</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.contains_added(T)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+<!-- Method contains -->
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.contains_added(android.util.Range<T>)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Range&lt;T&gt;</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+<!-- Field CONTENT_FREQUENT_URI -->
+<nobr><A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.CONTENT_FREQUENT_URI" class="hiddenlink" target="rightframe">CONTENT_FREQUENT_URI</A>
+</nobr><br>
+<!-- Field contentAgeHint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentAgeHint" class="hiddenlink" target="rightframe">contentAgeHint</A>
+</nobr><br>
+<!-- Field CONTROL_SCENE_MODE_HIGH_SPEED_VIDEO -->
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.CONTROL_SCENE_MODE_HIGH_SPEED_VIDEO" class="hiddenlink" target="rightframe">CONTROL_SCENE_MODE_HIGH_SPEED_VIDEO</A>
+</nobr><br>
+<!-- Field country -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.country" class="hiddenlink" target="rightframe">country</A>
+</nobr><br>
+<!-- Method create -->
+<i>create</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.create_added(android.content.Context, android.net.Uri, android.view.SurfaceHolder, android.media.AudioAttributes, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context, Uri, SurfaceHolder, AudioAttributes, int</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+<!-- Method create -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.create_added(android.content.Context, int, android.media.AudioAttributes, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context, int, AudioAttributes, int</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+<!-- Method createAlwaysOnHotwordDetector -->
+<nobr><A HREF="android.service.voice.VoiceInteractionService.html#android.service.voice.VoiceInteractionService.createAlwaysOnHotwordDetector_added(java.lang.String, java.util.Locale, android.service.voice.AlwaysOnHotwordDetector.Callback)" class="hiddenlink" target="rightframe"><b>createAlwaysOnHotwordDetector</b>
+(<code>String, Locale, Callback</code>)</A></nobr><br>
+<!-- Method createAndInitializeUser -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.createAndInitializeUser_added(android.content.ComponentName, java.lang.String, java.lang.String, android.content.ComponentName, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>createAndInitializeUser</b>
+(<code>ComponentName, String, String, ComponentName, Bundle</code>)</A></nobr><br>
+<!-- Method createConfirmDeviceCredentialIntent -->
+<nobr><A HREF="android.app.KeyguardManager.html#android.app.KeyguardManager.createConfirmDeviceCredentialIntent_added(java.lang.CharSequence, java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>createConfirmDeviceCredentialIntent</b>
+(<code>CharSequence, CharSequence</code>)</A></nobr><br>
+<!-- Method createFromProfileLevel -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.createFromProfileLevel_added(java.lang.String, int, int)" class="hiddenlink" target="rightframe"><b>createFromProfileLevel</b>
+(<code>String, int, int</code>)</A></nobr><br>
+<!-- Method createSettingsIntent -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.createSettingsIntent_added()" class="hiddenlink" target="rightframe"><b>createSettingsIntent</b>
+()</A></nobr><br>
+<!-- Method createSetupIntent -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.createSetupIntent_added()" class="hiddenlink" target="rightframe"><b>createSetupIntent</b>
+()</A></nobr><br>
+<!-- Method createVirtualDisplay -->
+<nobr><A HREF="android.hardware.display.DisplayManager.html#android.hardware.display.DisplayManager.createVirtualDisplay_added(java.lang.String, int, int, int, android.view.Surface, int, android.hardware.display.VirtualDisplay.Callback, android.os.Handler)" class="hiddenlink" target="rightframe"><b>createVirtualDisplay</b>
+(<code>String, int, int, int, Surface, int, Callback, Handler</code>)</A></nobr><br>
+<!-- Field CREATOR -->
+<i>CREATOR</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.CREATOR" class="hiddenlink" target="rightframe">android.media.tv.TvInputInfo</A>
+</nobr><br>
+<!-- Field CREATOR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.net.LinkAddress.html#android.net.LinkAddress.CREATOR" class="hiddenlink" target="rightframe">android.net.LinkAddress</A>
+</nobr><br>
+<!-- Field CREATOR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.net.ProxyInfo.html#android.net.ProxyInfo.CREATOR" class="hiddenlink" target="rightframe">android.net.ProxyInfo</A>
+</nobr><br>
+<!-- Field CREATOR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.Telephony.BaseMmsColumns.html#android.provider.Telephony.BaseMmsColumns.CREATOR" class="hiddenlink" target="rightframe">android.provider.Telephony.BaseMmsColumns</A>
+</nobr><br>
+<!-- Field CREATOR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.Telephony.TextBasedSmsColumns.html#android.provider.Telephony.TextBasedSmsColumns.CREATOR" class="hiddenlink" target="rightframe">android.provider.Telephony.TextBasedSmsColumns</A>
+</nobr><br>
+<!-- Field CURSOR_UPDATE_IMMEDIATE -->
+<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.CURSOR_UPDATE_IMMEDIATE" class="hiddenlink" target="rightframe">CURSOR_UPDATE_IMMEDIATE</A>
+</nobr><br>
+<!-- Field CURSOR_UPDATE_MONITOR -->
+<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.CURSOR_UPDATE_MONITOR" class="hiddenlink" target="rightframe">CURSOR_UPDATE_MONITOR</A>
+</nobr><br>
+<!-- Field DATA_USAGE -->
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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="#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.CallLog.Calls.html#android.provider.CallLog.Calls.DATA_USAGE" class="hiddenlink" target="rightframe">DATA_USAGE</A>
+</nobr><br>
+<!-- Field datePickerDialogTheme -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.datePickerDialogTheme" class="hiddenlink" target="rightframe">datePickerDialogTheme</A>
+</nobr><br>
+<!-- Field datePickerMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.datePickerMode" class="hiddenlink" target="rightframe">datePickerMode</A>
+</nobr><br>
+<!-- Field dayOfWeekBackground -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.dayOfWeekBackground" class="hiddenlink" target="rightframe">dayOfWeekBackground</A>
+</nobr><br>
+<!-- Field dayOfWeekTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.dayOfWeekTextAppearance" class="hiddenlink" target="rightframe">dayOfWeekTextAppearance</A>
+</nobr><br>
+<!-- Field DEFAULT_INITIAL_BACKOFF_MILLIS -->
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.DEFAULT_INITIAL_BACKOFF_MILLIS" class="hiddenlink" target="rightframe">DEFAULT_INITIAL_BACKOFF_MILLIS</A>
+</nobr><br>
+<!-- Field DEFERRED_SNIPPETING -->
+<nobr><A HREF="android.provider.ContactsContract.html#android.provider.ContactsContract.DEFERRED_SNIPPETING" class="hiddenlink" target="rightframe">DEFERRED_SNIPPETING</A>
+</nobr><br>
+<!-- Field DEFERRED_SNIPPETING_QUERY -->
+<nobr><A HREF="android.provider.ContactsContract.html#android.provider.ContactsContract.DEFERRED_SNIPPETING_QUERY" class="hiddenlink" target="rightframe">DEFERRED_SNIPPETING_QUERY</A>
+</nobr><br>
+<!-- Field DENSITY_560 -->
+<nobr><A HREF="android.util.DisplayMetrics.html#android.util.DisplayMetrics.DENSITY_560" class="hiddenlink" target="rightframe">DENSITY_560</A>
+</nobr><br>
+<!-- Field DISALLOW_APPS_CONTROL -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_APPS_CONTROL" class="hiddenlink" target="rightframe">DISALLOW_APPS_CONTROL</A>
+</nobr><br>
+<!-- Field DISALLOW_CREATE_WINDOWS -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CREATE_WINDOWS" class="hiddenlink" target="rightframe">DISALLOW_CREATE_WINDOWS</A>
+</nobr><br>
+<!-- Field DISALLOW_CROSS_PROFILE_COPY_PASTE -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CROSS_PROFILE_COPY_PASTE" class="hiddenlink" target="rightframe">DISALLOW_CROSS_PROFILE_COPY_PASTE</A>
+</nobr><br>
+<!-- Field DISALLOW_OUTGOING_CALLS -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_OUTGOING_CALLS" class="hiddenlink" target="rightframe">DISALLOW_OUTGOING_CALLS</A>
+</nobr><br>
+<!-- Field DISALLOW_SMS -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_SMS" class="hiddenlink" target="rightframe">DISALLOW_SMS</A>
+</nobr><br>
+<!-- Method dispatchNestedPreFling -->
+<nobr><A HREF="android.view.View.html#android.view.View.dispatchNestedPreFling_added(float, float)" class="hiddenlink" target="rightframe"><b>dispatchNestedPreFling</b>
+(<code>float, float</code>)</A></nobr><br>
+<!-- Method downloadMultimediaMessage -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.downloadMultimediaMessage_added(android.content.Context, java.lang.String, android.net.Uri, android.os.Bundle, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>downloadMultimediaMessage</b>
+(<code>Context, String, Uri, Bundle, PendingIntent</code>)</A></nobr><br>
+<!-- Method drawableHotspotChanged -->
+<nobr><A HREF="android.view.View.html#android.view.View.drawableHotspotChanged_added(float, float)" class="hiddenlink" target="rightframe"><b>drawableHotspotChanged</b>
+(<code>float, float</code>)</A></nobr><br>
+<!-- Method drawArc -->
+<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawArc_added(float, float, float, float, float, float, boolean, android.graphics.Paint)" class="hiddenlink" target="rightframe"><b>drawArc</b>
+(<code>float, float, float, float, float, float, boolean, Paint</code>)</A></nobr><br>
+<!-- Method drawOval -->
+<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawOval_added(float, float, float, float, android.graphics.Paint)" class="hiddenlink" target="rightframe"><b>drawOval</b>
+(<code>float, float, float, float, Paint</code>)</A></nobr><br>
+<!-- Field ENABLE_CAR_MODE_ALLOW_SLEEP -->
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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="#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.app.UiModeManager.html#android.app.UiModeManager.ENABLE_CAR_MODE_ALLOW_SLEEP" class="hiddenlink" target="rightframe">ENABLE_CAR_MODE_ALLOW_SLEEP</A>
+</nobr><br>
+<!-- Method enableSlowWholeDocumentDraw -->
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.enableSlowWholeDocumentDraw_added()" class="hiddenlink" target="rightframe"><b>enableSlowWholeDocumentDraw</b>
+()</A></nobr><br>
+<!-- Field ENCODING_AC3 -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ENCODING_AC3" class="hiddenlink" target="rightframe">ENCODING_AC3</A>
+</nobr><br>
+<!-- Field ENCODING_E_AC3 -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ENCODING_E_AC3" class="hiddenlink" target="rightframe">ENCODING_E_AC3</A>
+</nobr><br>
+<!-- Field ENTERPRISE_CONTENT_FILTER_URI -->
+<nobr><A HREF="android.provider.ContactsContract.PhoneLookup.html#android.provider.ContactsContract.PhoneLookup.ENTERPRISE_CONTENT_FILTER_URI" class="hiddenlink" target="rightframe">ENTERPRISE_CONTENT_FILTER_URI</A>
+</nobr><br>
+<!-- Method error -->
+<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.error_added(int)" class="hiddenlink" target="rightframe"><b>error</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Field ERROR -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ERROR" class="hiddenlink" target="rightframe">ERROR</A>
+</nobr><br>
+<!-- Field ERROR_DEAD_OBJECT -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ERROR_DEAD_OBJECT" class="hiddenlink" target="rightframe">ERROR_DEAD_OBJECT</A>
+</nobr><br>
+<!-- Field ERROR_INSUFFICIENT_OUTPUT_PROTECTION -->
+<nobr><A HREF="android.media.MediaCodec.CryptoException.html#android.media.MediaCodec.CryptoException.ERROR_INSUFFICIENT_OUTPUT_PROTECTION" class="hiddenlink" target="rightframe">ERROR_INSUFFICIENT_OUTPUT_PROTECTION</A>
+</nobr><br>
+<!-- Field ERROR_INVALID_REQUEST -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_INVALID_REQUEST" class="hiddenlink" target="rightframe">ERROR_INVALID_REQUEST</A>
+</nobr><br>
+<!-- Field ERROR_NETWORK -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_NETWORK" class="hiddenlink" target="rightframe">ERROR_NETWORK</A>
+</nobr><br>
+<!-- Field ERROR_NETWORK_TIMEOUT -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_NETWORK_TIMEOUT" class="hiddenlink" target="rightframe">ERROR_NETWORK_TIMEOUT</A>
+</nobr><br>
+<!-- Field ERROR_NOT_INSTALLED_YET -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_NOT_INSTALLED_YET" class="hiddenlink" target="rightframe">ERROR_NOT_INSTALLED_YET</A>
+</nobr><br>
+<!-- Field ERROR_OUTPUT -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_OUTPUT" class="hiddenlink" target="rightframe">ERROR_OUTPUT</A>
+</nobr><br>
+<!-- Field ERROR_SERVICE -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_SERVICE" class="hiddenlink" target="rightframe">ERROR_SERVICE</A>
+</nobr><br>
+<!-- Field ERROR_SYNTHESIS -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_SYNTHESIS" class="hiddenlink" target="rightframe">ERROR_SYNTHESIS</A>
+</nobr><br>
+<!-- Field excludeName -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeName" class="hiddenlink" target="rightframe">excludeName</A>
+</nobr><br>
+<!-- Constructor Explode -->
+<nobr><A HREF="android.transition.Explode.html#android.transition.Explode.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Explode</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field explode -->
+<nobr><A HREF="android.R.transition.html#android.R.transition.explode" class="hiddenlink" target="rightframe">explode</A>
+</nobr><br>
+<!-- Method extend -->
+<i>extend</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.extend_added(T)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+<!-- Method extend -->
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.extend_added(T, T)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, T</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+<!-- Method extend -->
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.extend_added(android.util.Range<T>)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Range&lt;T&gt;</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<i>EXTRA_ADDRESS_BOOK_INDEX</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Callable.html#android.provider.ContactsContract.CommonDataKinds.Callable.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Callable</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html#android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Contactables</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html#android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Email</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Event</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html#android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.GroupMembership</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html#android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Identity</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html#android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Im</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html#android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Nickname</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html#android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Note</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html#android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Organization</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html#android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Phone</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html#android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Photo</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html#android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Relation</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html#android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.SipAddress</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredName</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html#android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html#android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Website</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Data.html#android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Data</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<i>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Callable.html#android.provider.ContactsContract.CommonDataKinds.Callable.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Callable</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html#android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Contactables</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html#android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Email</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Event</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html#android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.GroupMembership</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html#android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Identity</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html#android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Im</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html#android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Nickname</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html#android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Note</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html#android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Organization</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html#android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Phone</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html#android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Photo</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html#android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Relation</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html#android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.SipAddress</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredName</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html#android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html#android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Website</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Data.html#android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Data</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<i>EXTRA_ADDRESS_BOOK_INDEX_TITLES</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Callable.html#android.provider.ContactsContract.CommonDataKinds.Callable.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Callable</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html#android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Contactables</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html#android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Email</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Event</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html#android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.GroupMembership</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html#android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Identity</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html#android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Im</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html#android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Nickname</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html#android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Note</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html#android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Organization</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html#android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Phone</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html#android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Photo</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html#android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Relation</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html#android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.SipAddress</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredName</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html#android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html#android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Website</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Data.html#android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Data</A>
+</nobr><br>
+<!-- Field EXTRA_APPWIDGET_PROVIDER_PROFILE -->
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE" class="hiddenlink" target="rightframe">EXTRA_APPWIDGET_PROVIDER_PROFILE</A>
+</nobr><br>
+<!-- Field EXTRA_ASSIST_INPUT_HINT_KEYBOARD -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD" class="hiddenlink" target="rightframe">EXTRA_ASSIST_INPUT_HINT_KEYBOARD</A>
+</nobr><br>
+<!-- Field EXTRA_AUDIO_PLUG_STATE -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.EXTRA_AUDIO_PLUG_STATE" class="hiddenlink" target="rightframe">EXTRA_AUDIO_PLUG_STATE</A>
+</nobr><br>
+<!-- Field EXTRA_BIG_TEXT -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_BIG_TEXT" class="hiddenlink" target="rightframe">EXTRA_BIG_TEXT</A>
+</nobr><br>
+<!-- Field EXTRA_CALL_TYPE_FILTER -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.EXTRA_CALL_TYPE_FILTER" class="hiddenlink" target="rightframe">EXTRA_CALL_TYPE_FILTER</A>
+</nobr><br>
+<!-- Field EXTRA_COMPACT_ACTIONS -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_COMPACT_ACTIONS" class="hiddenlink" target="rightframe">EXTRA_COMPACT_ACTIONS</A>
+</nobr><br>
+<!-- Field EXTRA_ENCODINGS -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.EXTRA_ENCODINGS" class="hiddenlink" target="rightframe">EXTRA_ENCODINGS</A>
+</nobr><br>
+<!-- Field EXTRA_EXCLUDE_MIMES -->
+<nobr><A HREF="android.provider.ContactsContract.QuickContact.html#android.provider.ContactsContract.QuickContact.EXTRA_EXCLUDE_MIMES" class="hiddenlink" target="rightframe">EXTRA_EXCLUDE_MIMES</A>
+</nobr><br>
+<!-- Field EXTRA_INPUT_ID -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.EXTRA_INPUT_ID" class="hiddenlink" target="rightframe">EXTRA_INPUT_ID</A>
+</nobr><br>
+<!-- Field EXTRA_LOCK_TASK_PACKAGE -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.EXTRA_LOCK_TASK_PACKAGE" class="hiddenlink" target="rightframe">EXTRA_LOCK_TASK_PACKAGE</A>
+</nobr><br>
+<!-- Field EXTRA_MAX_CHANNEL_COUNT -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.EXTRA_MAX_CHANNEL_COUNT" class="hiddenlink" target="rightframe">EXTRA_MAX_CHANNEL_COUNT</A>
+</nobr><br>
+<!-- Field EXTRA_MMS_DATA -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.EXTRA_MMS_DATA" class="hiddenlink" target="rightframe">EXTRA_MMS_DATA</A>
+</nobr><br>
+<!-- Field EXTRA_PRINTER_INFO -->
+<nobr><A HREF="android.printservice.PrintService.html#android.printservice.PrintService.EXTRA_PRINTER_INFO" class="hiddenlink" target="rightframe">EXTRA_PRINTER_INFO</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_EMAIL_ADDRESS -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_EMAIL_ADDRESS" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_EMAIL_ADDRESS</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_LOCAL_TIME -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_LOCAL_TIME" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_LOCAL_TIME</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_LOCALE -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_LOCALE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_LOCALE</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_TIME_ZONE -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_TIME_ZONE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_TIME_ZONE</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_HIDDEN -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_HIDDEN" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_HIDDEN</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_PAC_URL -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PAC_URL" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PAC_URL</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_PASSWORD -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PASSWORD" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PASSWORD</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_PROXY_BYPASS -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_BYPASS" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PROXY_BYPASS</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_PROXY_HOST -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_HOST" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PROXY_HOST</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_PROXY_PORT -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_PORT" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PROXY_PORT</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_SECURITY_TYPE -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_SECURITY_TYPE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_SECURITY_TYPE</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_SSID -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_SSID" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_SSID</A>
+</nobr><br>
+<!-- Field EXTRA_REPLACEMENT_EXTRAS -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_REPLACEMENT_EXTRAS" class="hiddenlink" target="rightframe">EXTRA_REPLACEMENT_EXTRAS</A>
+</nobr><br>
+<!-- Field EXTRA_SIZE -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.EXTRA_SIZE" class="hiddenlink" target="rightframe">EXTRA_SIZE</A>
+</nobr><br>
+<!-- Constructor Fade -->
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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="#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.transition.Fade.html#android.transition.Fade.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Fade</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field fade -->
+<nobr><A HREF="android.R.transition.html#android.R.transition.fade" class="hiddenlink" target="rightframe">fade</A>
+</nobr><br>
+<!-- Field FEATURE_ACTIVITY_TRANSITIONS -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.FEATURE_ACTIVITY_TRANSITIONS" class="hiddenlink" target="rightframe">FEATURE_ACTIVITY_TRANSITIONS</A>
+</nobr><br>
+<!-- Field FEATURE_AUDIO_OUTPUT -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_AUDIO_OUTPUT" class="hiddenlink" target="rightframe">FEATURE_AUDIO_OUTPUT</A>
+</nobr><br>
+<!-- Field FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING" class="hiddenlink" target="rightframe">FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING</A>
+</nobr><br>
+<!-- Field FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR" class="hiddenlink" target="rightframe">FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR</A>
+</nobr><br>
+<!-- Field FEATURE_CAMERA_CAPABILITY_RAW -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_RAW" class="hiddenlink" target="rightframe">FEATURE_CAMERA_CAPABILITY_RAW</A>
+</nobr><br>
+<!-- Field FEATURE_CAMERA_LEVEL_FULL -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_LEVEL_FULL" class="hiddenlink" target="rightframe">FEATURE_CAMERA_LEVEL_FULL</A>
+</nobr><br>
+<!-- Field FEATURE_CONNECTION_SERVICE -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CONNECTION_SERVICE" class="hiddenlink" target="rightframe">FEATURE_CONNECTION_SERVICE</A>
+</nobr><br>
+<!-- Field FEATURE_GAMEPAD -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_GAMEPAD" class="hiddenlink" target="rightframe">FEATURE_GAMEPAD</A>
+</nobr><br>
+<!-- Field FEATURE_LIVE_TV -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_LIVE_TV" class="hiddenlink" target="rightframe">FEATURE_LIVE_TV</A>
+</nobr><br>
+<!-- Field FEATURE_MANAGED_USERS -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_MANAGED_USERS" class="hiddenlink" target="rightframe">FEATURE_MANAGED_USERS</A>
+</nobr><br>
+<!-- Field FEATURE_OPENGLES_EXTENSION_PACK -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_OPENGLES_EXTENSION_PACK" class="hiddenlink" target="rightframe">FEATURE_OPENGLES_EXTENSION_PACK</A>
+</nobr><br>
+<!-- Field FEATURE_SECURELY_REMOVES_USERS -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SECURELY_REMOVES_USERS" class="hiddenlink" target="rightframe">FEATURE_SECURELY_REMOVES_USERS</A>
+</nobr><br>
+<!-- Field FEATURE_SecurePlayback -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.FEATURE_SecurePlayback" class="hiddenlink" target="rightframe">FEATURE_SecurePlayback</A>
+</nobr><br>
+<!-- Field FEATURE_SENSOR_AMBIENT_TEMPERATURE -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SENSOR_AMBIENT_TEMPERATURE" class="hiddenlink" target="rightframe">FEATURE_SENSOR_AMBIENT_TEMPERATURE</A>
+</nobr><br>
+<!-- Field FEATURE_SENSOR_HEART_RATE_ECG -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SENSOR_HEART_RATE_ECG" class="hiddenlink" target="rightframe">FEATURE_SENSOR_HEART_RATE_ECG</A>
+</nobr><br>
+<!-- Field FEATURE_SENSOR_RELATIVE_HUMIDITY -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SENSOR_RELATIVE_HUMIDITY" class="hiddenlink" target="rightframe">FEATURE_SENSOR_RELATIVE_HUMIDITY</A>
+</nobr><br>
+<!-- Field FEATURE_TunneledPlayback -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.FEATURE_TunneledPlayback" class="hiddenlink" target="rightframe">FEATURE_TunneledPlayback</A>
+</nobr><br>
+<!-- Field FEATURE_VERIFIED_BOOT -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_VERIFIED_BOOT" class="hiddenlink" target="rightframe">FEATURE_VERIFIED_BOOT</A>
+</nobr><br>
+<!-- Class FeatureGroupInfo -->
+<A HREF="pkg_android.content.pm.html#FeatureGroupInfo" class="hiddenlink" target="rightframe"><b>FeatureGroupInfo</b></A><br>
+<!-- Field featureGroups -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.featureGroups" class="hiddenlink" target="rightframe">featureGroups</A>
+</nobr><br>
+<!-- Field FEATURES -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.FEATURES" class="hiddenlink" target="rightframe">FEATURES</A>
+</nobr><br>
+<!-- Field FEATURES_VIDEO -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.FEATURES_VIDEO" class="hiddenlink" target="rightframe">FEATURES_VIDEO</A>
+</nobr><br>
+<!-- Field fillAlpha -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fillAlpha" class="hiddenlink" target="rightframe">fillAlpha</A>
+</nobr><br>
+<!-- Field fillColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fillColor" class="hiddenlink" target="rightframe">fillColor</A>
+</nobr><br>
+<!-- Method findDecoderForFormat -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.findDecoderForFormat_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>findDecoderForFormat</b>
+(<code>MediaFormat</code>)</A></nobr><br>
+<!-- Method findEncoderForFormat -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.findEncoderForFormat_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>findEncoderForFormat</b>
+(<code>MediaFormat</code>)</A></nobr><br>
+<!-- Field FLAG_ACTIVITY_RETAIN_IN_RECENTS -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS" class="hiddenlink" target="rightframe">FLAG_ACTIVITY_RETAIN_IN_RECENTS</A>
+</nobr><br>
+<!-- Field FLAG_FULL_BACKUP_ONLY -->
+<nobr><A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.FLAG_FULL_BACKUP_ONLY" class="hiddenlink" target="rightframe">FLAG_FULL_BACKUP_ONLY</A>
+</nobr><br>
+<!-- Field FLAG_HAS_INVISIBLE_REGION -->
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.FLAG_HAS_INVISIBLE_REGION" class="hiddenlink" target="rightframe">FLAG_HAS_INVISIBLE_REGION</A>
+</nobr><br>
+<!-- Field FLAG_HAS_VISIBLE_REGION -->
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.FLAG_HAS_VISIBLE_REGION" class="hiddenlink" target="rightframe">FLAG_HAS_VISIBLE_REGION</A>
+</nobr><br>
+<!-- Field FLAG_IS_RTL -->
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.FLAG_IS_RTL" class="hiddenlink" target="rightframe">FLAG_IS_RTL</A>
+</nobr><br>
+<!-- Field FLAG_MANAGED_CAN_ACCESS_PARENT -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.FLAG_MANAGED_CAN_ACCESS_PARENT" class="hiddenlink" target="rightframe">FLAG_MANAGED_CAN_ACCESS_PARENT</A>
+</nobr><br>
+<!-- Field FLAG_MULTIARCH -->
+<nobr><A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.FLAG_MULTIARCH" class="hiddenlink" target="rightframe">FLAG_MULTIARCH</A>
+</nobr><br>
+<!-- Field FLAG_PARENT_CAN_ACCESS_MANAGED -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.FLAG_PARENT_CAN_ACCESS_MANAGED" class="hiddenlink" target="rightframe">FLAG_PARENT_CAN_ACCESS_MANAGED</A>
+</nobr><br>
+<!-- Field FLAG_RELINQUISH_TASK_IDENTITY -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY" class="hiddenlink" target="rightframe">FLAG_RELINQUISH_TASK_IDENTITY</A>
+</nobr><br>
+<!-- Field FLAG_RESUME_WHILE_PAUSING -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_RESUME_WHILE_PAUSING" class="hiddenlink" target="rightframe">FLAG_RESUME_WHILE_PAUSING</A>
+</nobr><br>
+<!-- Method fling -->
+<nobr><A HREF="android.widget.AbsListView.html#android.widget.AbsListView.fling_added(int)" class="hiddenlink" target="rightframe"><b>fling</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method flush -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.flush_added()" class="hiddenlink" target="rightframe"><b>flush</b>
+()</A></nobr><br>
+<!-- Method flushPendingScanResults -->
+<nobr><A HREF="android.bluetooth.le.BluetoothLeScanner.html#android.bluetooth.le.BluetoothLeScanner.flushPendingScanResults_added(android.bluetooth.le.ScanCallback)" class="hiddenlink" target="rightframe"><b>flushPendingScanResults</b>
+(<code>ScanCallback</code>)</A></nobr><br>
+<!-- Field fontFeatureSettings -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fontFeatureSettings" class="hiddenlink" target="rightframe">fontFeatureSettings</A>
+</nobr><br>
+<!-- Method forceVirtualizationMode -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.forceVirtualizationMode_added(int)" class="hiddenlink" target="rightframe"><b>forceVirtualizationMode</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Field foregroundTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.foregroundTint" class="hiddenlink" target="rightframe">foregroundTint</A>
+</nobr><br>
+<!-- Field foregroundTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.foregroundTintMode" class="hiddenlink" target="rightframe">foregroundTintMode</A>
+</nobr><br>
+<!-- Class ForkJoinPool -->
+<A HREF="pkg_java.util.concurrent.html#ForkJoinPool" class="hiddenlink" target="rightframe"><b>ForkJoinPool</b></A><br>
+<!-- Class ForkJoinPool.ForkJoinWorkerThreadFactory -->
+<A HREF="pkg_java.util.concurrent.html#ForkJoinPool.ForkJoinWorkerThreadFactory" class="hiddenlink" target="rightframe"><b><i>ForkJoinPool.ForkJoinWorkerThreadFactory</i></b></A><br>
+<!-- Class ForkJoinPool.ManagedBlocker -->
+<A HREF="pkg_java.util.concurrent.html#ForkJoinPool.ManagedBlocker" class="hiddenlink" target="rightframe"><b><i>ForkJoinPool.ManagedBlocker</i></b></A><br>
+<!-- Class ForkJoinTask -->
+<A HREF="pkg_java.util.concurrent.html#ForkJoinTask" class="hiddenlink" target="rightframe"><b>ForkJoinTask</b></A><br>
+<!-- Class ForkJoinWorkerThread -->
+<A HREF="pkg_java.util.concurrent.html#ForkJoinWorkerThread" class="hiddenlink" target="rightframe"><b>ForkJoinWorkerThread</b></A><br>
+<!-- Method forLanguageTag -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.forLanguageTag_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>forLanguageTag</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Field FQDN -->
+<nobr><A HREF="android.net.wifi.WifiConfiguration.html#android.net.wifi.WifiConfiguration.FQDN" class="hiddenlink" target="rightframe">FQDN</A>
+</nobr><br>
+<!-- Field fragmentAllowEnterTransitionOverlap -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentAllowEnterTransitionOverlap" class="hiddenlink" target="rightframe">fragmentAllowEnterTransitionOverlap</A>
+</nobr><br>
+<!-- Field fragmentAllowReturnTransitionOverlap -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentAllowReturnTransitionOverlap" class="hiddenlink" target="rightframe">fragmentAllowReturnTransitionOverlap</A>
+</nobr><br>
+<!-- Field fragmentEnterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentEnterTransition" class="hiddenlink" target="rightframe">fragmentEnterTransition</A>
+</nobr><br>
+<!-- Field fragmentExitTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentExitTransition" class="hiddenlink" target="rightframe">fragmentExitTransition</A>
+</nobr><br>
+<!-- Field fragmentReenterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentReenterTransition" class="hiddenlink" target="rightframe">fragmentReenterTransition</A>
+</nobr><br>
+<!-- Field fragmentReturnTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentReturnTransition" class="hiddenlink" target="rightframe">fragmentReturnTransition</A>
+</nobr><br>
+<!-- Field fragmentSharedElementEnterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentSharedElementEnterTransition" class="hiddenlink" target="rightframe">fragmentSharedElementEnterTransition</A>
+</nobr><br>
+<!-- Field fragmentSharedElementReturnTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentSharedElementReturnTransition" class="hiddenlink" target="rightframe">fragmentSharedElementReturnTransition</A>
+</nobr><br>
+<!-- Field fullBackupOnly -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fullBackupOnly" class="hiddenlink" target="rightframe">fullBackupOnly</A>
+</nobr><br>
+<!-- Field GATT_CONNECTION_CONGESTED -->
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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="#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.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.GATT_CONNECTION_CONGESTED" class="hiddenlink" target="rightframe">GATT_CONNECTION_CONGESTED</A>
+</nobr><br>
+<!-- Method generateAudioSessionId -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.generateAudioSessionId_added()" class="hiddenlink" target="rightframe"><b>generateAudioSessionId</b>
+()</A></nobr><br>
+<!-- Method getActiveNotifications -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getActiveNotifications_added(java.lang.String[])" class="hiddenlink" target="rightframe"><b>getActiveNotifications</b>
+(<code>String[]</code>)</A></nobr><br>
+<!-- Method getActiveQueueItemId -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getActiveQueueItemId_added()" class="hiddenlink" target="rightframe"><b>getActiveQueueItemId</b>
+()</A></nobr><br>
+<!-- Method getActiveSessions -->
+<nobr><A HREF="android.media.session.MediaSessionManager.html#android.media.session.MediaSessionManager.getActiveSessions_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getActiveSessions</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getAllNetworks -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getAllNetworks_added()" class="hiddenlink" target="rightframe"><b>getAllNetworks</b>
+()</A></nobr><br>
+<!-- Method getAllowEnterTransitionOverlap -->
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getAllowEnterTransitionOverlap_added()" class="hiddenlink" target="rightframe"><b>getAllowEnterTransitionOverlap</b>
+()</A></nobr><br>
+<!-- Method getAllowReturnTransitionOverlap -->
+<i>getAllowReturnTransitionOverlap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getAllowReturnTransitionOverlap_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method getAllowReturnTransitionOverlap -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getAllowReturnTransitionOverlap_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getAlpha -->
+<nobr><A HREF="android.graphics.Outline.html#android.graphics.Outline.getAlpha_added()" class="hiddenlink" target="rightframe"><b>getAlpha</b>
+()</A></nobr><br>
+<!-- Method getAppTaskThumbnailSize -->
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getAppTaskThumbnailSize_added()" class="hiddenlink" target="rightframe"><b>getAppTaskThumbnailSize</b>
+()</A></nobr><br>
+<!-- Method getAppVsyncOffsetNanos -->
+<nobr><A HREF="android.view.Display.html#android.view.Display.getAppVsyncOffsetNanos_added()" class="hiddenlink" target="rightframe"><b>getAppVsyncOffsetNanos</b>
+()</A></nobr><br>
+<!-- Method getAudioAttributes -->
+<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.getAudioAttributes_added()" class="hiddenlink" target="rightframe"><b>getAudioAttributes</b>
+()</A></nobr><br>
+<!-- Method getAudioCapabilities -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getAudioCapabilities_added()" class="hiddenlink" target="rightframe"><b>getAudioCapabilities</b>
+()</A></nobr><br>
+<!-- Method getAutoTimeRequired -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getAutoTimeRequired_added()" class="hiddenlink" target="rightframe"><b>getAutoTimeRequired</b>
+()</A></nobr><br>
+<!-- Method getAvailableLanguages -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getAvailableLanguages_added()" class="hiddenlink" target="rightframe"><b>getAvailableLanguages</b>
+()</A></nobr><br>
+<!-- Method getBackgroundTintList -->
+<nobr><A HREF="android.view.View.html#android.view.View.getBackgroundTintList_added()" class="hiddenlink" target="rightframe"><b>getBackgroundTintList</b>
+()</A></nobr><br>
+<!-- Method getBackgroundTintMode -->
+<nobr><A HREF="android.view.View.html#android.view.View.getBackgroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getBackgroundTintMode</b>
+()</A></nobr><br>
+<!-- Method getBufferedPosition -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getBufferedPosition_added()" class="hiddenlink" target="rightframe"><b>getBufferedPosition</b>
+()</A></nobr><br>
+<!-- Method getButtonTintList -->
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.getButtonTintList_added()" class="hiddenlink" target="rightframe"><b>getButtonTintList</b>
+()</A></nobr><br>
+<!-- Method getButtonTintMode -->
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.getButtonTintMode_added()" class="hiddenlink" target="rightframe"><b>getButtonTintMode</b>
+()</A></nobr><br>
+<!-- Method getBytes -->
+<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getBytes_added()" class="hiddenlink" target="rightframe"><b>getBytes</b>
+()</A></nobr><br>
+<!-- Method getCarrierConfigValues -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.getCarrierConfigValues_added()" class="hiddenlink" target="rightframe"><b>getCarrierConfigValues</b>
+()</A></nobr><br>
+<!-- Method getChangingConfigurations -->
+<nobr><A HREF="android.content.res.TypedArray.html#android.content.res.TypedArray.getChangingConfigurations_added()" class="hiddenlink" target="rightframe"><b>getChangingConfigurations</b>
+()</A></nobr><br>
+<!-- Method getChannelMask -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getChannelMask_added()" class="hiddenlink" target="rightframe"><b>getChannelMask</b>
+()</A></nobr><br>
+<!-- Method getCharacterBounds -->
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.getCharacterBounds_added(int)" class="hiddenlink" target="rightframe"><b>getCharacterBounds</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getCharacterBoundsFlags -->
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.getCharacterBoundsFlags_added(int)" class="hiddenlink" target="rightframe"><b>getCharacterBoundsFlags</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getCharSequence -->
+<nobr><A HREF="android.view.textservice.TextInfo.html#android.view.textservice.TextInfo.getCharSequence_added()" class="hiddenlink" target="rightframe"><b>getCharSequence</b>
+()</A></nobr><br>
+<!-- Method getCharSequenceText -->
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getCharSequenceText_added()" class="hiddenlink" target="rightframe"><b>getCharSequenceText</b>
+()</A></nobr><br>
+<!-- Method getCheckMarkTintList -->
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.getCheckMarkTintList_added()" class="hiddenlink" target="rightframe"><b>getCheckMarkTintList</b>
+()</A></nobr><br>
+<!-- Method getCheckMarkTintMode -->
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.getCheckMarkTintMode_added()" class="hiddenlink" target="rightframe"><b>getCheckMarkTintMode</b>
+()</A></nobr><br>
+<!-- Method getClipToPadding -->
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.getClipToPadding_added()" class="hiddenlink" target="rightframe"><b>getClipToPadding</b>
+()</A></nobr><br>
+<!-- Method getCodeCacheDir -->
+<i>getCodeCacheDir</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.Context.html#android.content.Context.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.Context
+</A></nobr><br>
+<!-- Method getCodeCacheDir -->
+&nbsp;&nbsp;<nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.ContextWrapper
+</A></nobr><br>
+<!-- Method getCodeCacheDir -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockContext
+</A></nobr><br>
+<!-- Method getCodecInfos -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecInfos_added()" class="hiddenlink" target="rightframe"><b>getCodecInfos</b>
+()</A></nobr><br>
+<!-- Method getColor -->
+<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.getColor_added()" class="hiddenlink" target="rightframe"><b>getColor</b>
+()</A></nobr><br>
+<!-- Method getController -->
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.getController_added()" class="hiddenlink" target="rightframe"><b>getController</b>
+()</A></nobr><br>
+<!-- Method getCropRect -->
+<nobr><A HREF="android.media.Image.html#android.media.Image.getCropRect_added()" class="hiddenlink" target="rightframe"><b>getCropRect</b>
+()</A></nobr><br>
+<!-- Method getCrossProfileCallerIdDisabled -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getCrossProfileCallerIdDisabled_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getCrossProfileCallerIdDisabled</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getCrossProfileWidgetProviders -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getCrossProfileWidgetProviders_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getCrossProfileWidgetProviders</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getCurrentInterruptionFilter -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getCurrentInterruptionFilter_added()" class="hiddenlink" target="rightframe"><b>getCurrentInterruptionFilter</b>
+()</A></nobr><br>
+<!-- Method getCurrentListenerHints -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getCurrentListenerHints_added()" class="hiddenlink" target="rightframe"><b>getCurrentListenerHints</b>
+()</A></nobr><br>
+<!-- Method getCustomActions -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getCustomActions_added()" class="hiddenlink" target="rightframe"><b>getCustomActions</b>
+()</A></nobr><br>
+<!-- Method getDefaultFormat -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getDefaultFormat_added()" class="hiddenlink" target="rightframe"><b>getDefaultFormat</b>
+()</A></nobr><br>
+<!-- Method getDefaultSensor -->
+<nobr><A HREF="android.hardware.SensorManager.html#android.hardware.SensorManager.getDefaultSensor_added(int, boolean)" class="hiddenlink" target="rightframe"><b>getDefaultSensor</b>
+(<code>int, boolean</code>)</A></nobr><br>
+<!-- Method getDefaultVoice -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getDefaultVoice_added()" class="hiddenlink" target="rightframe"><b>getDefaultVoice</b>
+()</A></nobr><br>
+<!-- Method getDescription -->
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.getDescription_added()" class="hiddenlink" target="rightframe"><b>getDescription</b>
+()</A></nobr><br>
+<!-- Method getDeviceName -->
+<i>getDeviceName</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.html#android.bluetooth.le.ScanFilter.getDeviceName_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter
+</A></nobr><br>
+<!-- Method getDeviceName -->
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getDeviceName_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.bluetooth.le.ScanRecord
+</A></nobr><br>
+<!-- Method getDisplayScript -->
+<i>getDisplayScript</i><br>
+&nbsp;&nbsp;<nobr><A HREF="java.util.Locale.html#java.util.Locale.getDisplayScript_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;java.util.Locale
+</A></nobr><br>
+<!-- Method getDisplayScript -->
+&nbsp;&nbsp;<nobr><A HREF="java.util.Locale.html#java.util.Locale.getDisplayScript_added(java.util.Locale)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Locale</code>)</b>&nbsp;in&nbsp;java.util.Locale
+</A></nobr><br>
+<!-- Method getElevation -->
+<i>getElevation</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getElevation_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+<!-- Method getElevation -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.PopupWindow.html#android.widget.PopupWindow.getElevation_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.PopupWindow
+</A></nobr><br>
+<!-- Method getEncoderCapabilities -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getEncoderCapabilities_added()" class="hiddenlink" target="rightframe"><b>getEncoderCapabilities</b>
+()</A></nobr><br>
+<!-- Method getEncoding -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getEncoding_added()" class="hiddenlink" target="rightframe"><b>getEncoding</b>
+()</A></nobr><br>
+<!-- Method getEnterTransition -->
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getEnterTransition_added()" class="hiddenlink" target="rightframe"><b>getEnterTransition</b>
+()</A></nobr><br>
+<!-- Method getError -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getError_added()" class="hiddenlink" target="rightframe"><b>getError</b>
+()</A></nobr><br>
+<!-- Method getExitTransition -->
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getExitTransition_added()" class="hiddenlink" target="rightframe"><b>getExitTransition</b>
+()</A></nobr><br>
+<!-- Method getExtension -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getExtension_added(char)" class="hiddenlink" target="rightframe"><b>getExtension</b>
+(<code>char</code>)</A></nobr><br>
+<!-- Method getExtensionKeys -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getExtensionKeys_added()" class="hiddenlink" target="rightframe"><b>getExtensionKeys</b>
+()</A></nobr><br>
+<!-- Method getExtras -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getExtras_added()" class="hiddenlink" target="rightframe"><b>getExtras</b>
+()</A></nobr><br>
+<!-- Method getFeatureEnabled -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.getFeatureEnabled_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getFeatureEnabled</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getFirstDayOfWeek -->
+<nobr><A HREF="android.widget.DatePicker.html#android.widget.DatePicker.getFirstDayOfWeek_added()" class="hiddenlink" target="rightframe"><b>getFirstDayOfWeek</b>
+()</A></nobr><br>
+<!-- Method getFlags -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getFlags_added()" class="hiddenlink" target="rightframe"><b>getFlags</b>
+()</A></nobr><br>
+<!-- Method getFontFeatureSettings -->
+<i>getFontFeatureSettings</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.getFontFeatureSettings_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+<!-- Method getFontFeatureSettings -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getFontFeatureSettings_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<!-- Method getForegroundTintList -->
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.getForegroundTintList_added()" class="hiddenlink" target="rightframe"><b>getForegroundTintList</b>
+()</A></nobr><br>
+<!-- Method getForegroundTintMode -->
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.getForegroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getForegroundTintMode</b>
+()</A></nobr><br>
+<!-- Method getGroupKey -->
+<nobr><A HREF="android.service.notification.StatusBarNotification.html#android.service.notification.StatusBarNotification.getGroupKey_added()" class="hiddenlink" target="rightframe"><b>getGroupKey</b>
+()</A></nobr><br>
+<!-- Method getHighSpeedVideoFpsRanges -->
+<nobr><A HREF="android.hardware.camera2.params.StreamConfigurationMap.html#android.hardware.camera2.params.StreamConfigurationMap.getHighSpeedVideoFpsRanges_added()" class="hiddenlink" target="rightframe"><b>getHighSpeedVideoFpsRanges</b>
+()</A></nobr><br>
+<!-- Method getHighSpeedVideoFpsRangesFor -->
+<nobr><A HREF="android.hardware.camera2.params.StreamConfigurationMap.html#android.hardware.camera2.params.StreamConfigurationMap.getHighSpeedVideoFpsRangesFor_added(android.util.Size)" class="hiddenlink" target="rightframe"><b>getHighSpeedVideoFpsRangesFor</b>
+(<code>Size</code>)</A></nobr><br>
+<!-- Method getHighSpeedVideoSizes -->
+<nobr><A HREF="android.hardware.camera2.params.StreamConfigurationMap.html#android.hardware.camera2.params.StreamConfigurationMap.getHighSpeedVideoSizes_added()" class="hiddenlink" target="rightframe"><b>getHighSpeedVideoSizes</b>
+()</A></nobr><br>
+<!-- Method getHighSpeedVideoSizesFor -->
+<nobr><A HREF="android.hardware.camera2.params.StreamConfigurationMap.html#android.hardware.camera2.params.StreamConfigurationMap.getHighSpeedVideoSizesFor_added(android.util.Range<java.lang.Integer>)" class="hiddenlink" target="rightframe"><b>getHighSpeedVideoSizesFor</b>
+(<code>Range&lt;Integer&gt;</code>)</A></nobr><br>
+<!-- Method getImageTintList -->
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.getImageTintList_added()" class="hiddenlink" target="rightframe"><b>getImageTintList</b>
+()</A></nobr><br>
+<!-- Method getImageTintMode -->
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.getImageTintMode_added()" class="hiddenlink" target="rightframe"><b>getImageTintMode</b>
+()</A></nobr><br>
+<!-- Method getIndeterminateTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getIndeterminateTintList_added()" class="hiddenlink" target="rightframe"><b>getIndeterminateTintList</b>
+()</A></nobr><br>
+<!-- Method getIndeterminateTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getIndeterminateTintMode_added()" class="hiddenlink" target="rightframe"><b>getIndeterminateTintMode</b>
+()</A></nobr><br>
+<!-- Method getInputBuffer -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputBuffer_added(int)" class="hiddenlink" target="rightframe"><b>getInputBuffer</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getInputFormat -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputFormat_added()" class="hiddenlink" target="rightframe"><b>getInputFormat</b>
+()</A></nobr><br>
+<!-- Method getInputImage -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputImage_added(int)" class="hiddenlink" target="rightframe"><b>getInputImage</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getInputState -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.getInputState_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getInputState</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getInsertionMarkerFlags -->
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.getInsertionMarkerFlags_added()" class="hiddenlink" target="rightframe"><b>getInsertionMarkerFlags</b>
+()</A></nobr><br>
+<!-- Method getInstalledCaCerts -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getInstalledCaCerts_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getInstalledCaCerts</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getInstalledProvidersForProfile -->
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.getInstalledProvidersForProfile_added(android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>getInstalledProvidersForProfile</b>
+(<code>UserHandle</code>)</A></nobr><br>
+<!-- Method getIntValue -->
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.getIntValue_added()" class="hiddenlink" target="rightframe"><b>getIntValue</b>
+()</A></nobr><br>
+<!-- Method getLastPositionUpdateTime -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getLastPositionUpdateTime_added()" class="hiddenlink" target="rightframe"><b>getLastPositionUpdateTime</b>
+()</A></nobr><br>
+<!-- Method getLetterSpacing -->
+<i>getLetterSpacing</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.getLetterSpacing_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+<!-- Method getLetterSpacing -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getLetterSpacing_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<!-- Method getManufacturerSpecificData -->
+<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getManufacturerSpecificData_added(int)" class="hiddenlink" target="rightframe"><b>getManufacturerSpecificData</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getMax -->
+<nobr><A HREF="android.text.InputFilter.LengthFilter.html#android.text.InputFilter.LengthFilter.getMax_added()" class="hiddenlink" target="rightframe"><b>getMax</b>
+()</A></nobr><br>
+<!-- Method getMaxDelay -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.getMaxDelay_added()" class="hiddenlink" target="rightframe"><b>getMaxDelay</b>
+()</A></nobr><br>
+<!-- Method getMaxTextLength -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getMaxTextLength_added()" class="hiddenlink" target="rightframe"><b>getMaxTextLength</b>
+()</A></nobr><br>
+<!-- Method getMediaController -->
+<i>getMediaController</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.getMediaController_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+<!-- Method getMediaController -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getMediaController_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getMimeType -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getMimeType_added()" class="hiddenlink" target="rightframe"><b>getMimeType</b>
+()</A></nobr><br>
+<!-- Method getMode -->
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.getMode_added()" class="hiddenlink" target="rightframe"><b>getMode</b>
+()</A></nobr><br>
+<!-- Method getNavigationContentDescription -->
+<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.getNavigationContentDescription_added()" class="hiddenlink" target="rightframe"><b>getNavigationContentDescription</b>
+()</A></nobr><br>
+<!-- Method getNetworkInfo -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getNetworkInfo_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>getNetworkInfo</b>
+(<code>Network</code>)</A></nobr><br>
+<!-- Method getNetworkType -->
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.getNetworkType_added()" class="hiddenlink" target="rightframe"><b>getNetworkType</b>
+()</A></nobr><br>
+<!-- Method getNextAlarmClock -->
+<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.getNextAlarmClock_added()" class="hiddenlink" target="rightframe"><b>getNextAlarmClock</b>
+()</A></nobr><br>
+<!-- Method getNoBackupFilesDir -->
+<i>getNoBackupFilesDir</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.Context.html#android.content.Context.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.Context
+</A></nobr><br>
+<!-- Method getNoBackupFilesDir -->
+&nbsp;&nbsp;<nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.ContextWrapper
+</A></nobr><br>
+<!-- Method getNoBackupFilesDir -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockContext
+</A></nobr><br>
+<!-- Method getOutlineProvider -->
+<nobr><A HREF="android.view.View.html#android.view.View.getOutlineProvider_added()" class="hiddenlink" target="rightframe"><b>getOutlineProvider</b>
+()</A></nobr><br>
+<!-- Method getOutputBuffer -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputBuffer_added(int)" class="hiddenlink" target="rightframe"><b>getOutputBuffer</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getOutputFormat -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputFormat_added(int)" class="hiddenlink" target="rightframe"><b>getOutputFormat</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getOutputImage -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputImage_added(int)" class="hiddenlink" target="rightframe"><b>getOutputImage</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getPackageInstaller -->
+<i>getPackageInstaller</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getPackageInstaller_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method getPackageInstaller -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getPackageInstaller_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Method getPackageName -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getPackageName_added()" class="hiddenlink" target="rightframe"><b>getPackageName</b>
+()</A></nobr><br>
+<!-- Method getParentId -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.getParentId_added()" class="hiddenlink" target="rightframe"><b>getParentId</b>
+()</A></nobr><br>
+<!-- Method getPathMotion -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getPathMotion_added()" class="hiddenlink" target="rightframe"><b>getPathMotion</b>
+()</A></nobr><br>
+<!-- Method getPermittedAccessibilityServices -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getPermittedAccessibilityServices_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getPermittedAccessibilityServices</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getPermittedInputMethods -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getPermittedInputMethods_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getPermittedInputMethods</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getPlaybackInfo -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getPlaybackInfo_added()" class="hiddenlink" target="rightframe"><b>getPlaybackInfo</b>
+()</A></nobr><br>
+<!-- Method getPlaybackSpeed -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getPlaybackSpeed_added()" class="hiddenlink" target="rightframe"><b>getPlaybackSpeed</b>
+()</A></nobr><br>
+<!-- Method getPopupTheme -->
+<i>getPopupTheme</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.ActionMenuView.html#android.widget.ActionMenuView.getPopupTheme_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.ActionMenuView
+</A></nobr><br>
+<!-- Method getPopupTheme -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.getPopupTheme_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.Toolbar
+</A></nobr><br>
+<!-- Method getPresentationDeadlineNanos -->
+<nobr><A HREF="android.view.Display.html#android.view.Display.getPresentationDeadlineNanos_added()" class="hiddenlink" target="rightframe"><b>getPresentationDeadlineNanos</b>
+()</A></nobr><br>
+<!-- Method getPreviousName -->
+<nobr><A HREF="android.accounts.AccountManager.html#android.accounts.AccountManager.getPreviousName_added(android.accounts.Account)" class="hiddenlink" target="rightframe"><b>getPreviousName</b>
+(<code>Account</code>)</A></nobr><br>
+<!-- Method getProfile -->
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.getProfile_added()" class="hiddenlink" target="rightframe"><b>getProfile</b>
+()</A></nobr><br>
+<!-- Method getProgressBackgroundTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressBackgroundTintList_added()" class="hiddenlink" target="rightframe"><b>getProgressBackgroundTintList</b>
+()</A></nobr><br>
+<!-- Method getProgressBackgroundTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressBackgroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getProgressBackgroundTintMode</b>
+()</A></nobr><br>
+<!-- Method getProgressTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressTintList_added()" class="hiddenlink" target="rightframe"><b>getProgressTintList</b>
+()</A></nobr><br>
+<!-- Method getProgressTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressTintMode_added()" class="hiddenlink" target="rightframe"><b>getProgressTintMode</b>
+()</A></nobr><br>
+<!-- Method getQueue -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getQueue_added()" class="hiddenlink" target="rightframe"><b>getQueue</b>
+()</A></nobr><br>
+<!-- Method getQueueTitle -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getQueueTitle_added()" class="hiddenlink" target="rightframe"><b>getQueueTitle</b>
+()</A></nobr><br>
+<!-- Method getReasonPhrase -->
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getReasonPhrase_added()" class="hiddenlink" target="rightframe"><b>getReasonPhrase</b>
+()</A></nobr><br>
+<!-- Method getReenterTransition -->
+<i>getReenterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getReenterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method getReenterTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getReenterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getRemoveOnCancelPolicy -->
+<nobr><A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html#java.util.concurrent.ScheduledThreadPoolExecutor.getRemoveOnCancelPolicy_added()" class="hiddenlink" target="rightframe"><b>getRemoveOnCancelPolicy</b>
+()</A></nobr><br>
+<!-- Method getReparent -->
+<nobr><A HREF="android.transition.ChangeTransform.html#android.transition.ChangeTransform.getReparent_added()" class="hiddenlink" target="rightframe"><b>getReparent</b>
+()</A></nobr><br>
+<!-- Method getReparentWithOverlay -->
+<nobr><A HREF="android.transition.ChangeTransform.html#android.transition.ChangeTransform.getReparentWithOverlay_added()" class="hiddenlink" target="rightframe"><b>getReparentWithOverlay</b>
+()</A></nobr><br>
+<!-- Method getReportDelayMillis -->
+<nobr><A HREF="android.bluetooth.le.ScanSettings.html#android.bluetooth.le.ScanSettings.getReportDelayMillis_added()" class="hiddenlink" target="rightframe"><b>getReportDelayMillis</b>
+()</A></nobr><br>
+<!-- Method getReportingMode -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.getReportingMode_added()" class="hiddenlink" target="rightframe"><b>getReportingMode</b>
+()</A></nobr><br>
+<!-- Method getResponseHeaders -->
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getResponseHeaders_added()" class="hiddenlink" target="rightframe"><b>getResponseHeaders</b>
+()</A></nobr><br>
+<!-- Method getReturnTransition -->
+<i>getReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method getReturnTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getSampleRate -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getSampleRate_added()" class="hiddenlink" target="rightframe"><b>getSampleRate</b>
+()</A></nobr><br>
+<!-- Method getScreenCaptureDisabled -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getScreenCaptureDisabled_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getScreenCaptureDisabled</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getScript -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getScript_added()" class="hiddenlink" target="rightframe"><b>getScript</b>
+()</A></nobr><br>
+<!-- Method getSecondaryProgressTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getSecondaryProgressTintList_added()" class="hiddenlink" target="rightframe"><b>getSecondaryProgressTintList</b>
+()</A></nobr><br>
+<!-- Method getSecondaryProgressTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getSecondaryProgressTintMode_added()" class="hiddenlink" target="rightframe"><b>getSecondaryProgressTintMode</b>
+()</A></nobr><br>
+<!-- Method getSelectedTrack -->
+<i>getSelectedTrack</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.getSelectedTrack_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+<!-- Method getSelectedTrack -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.getSelectedTrack_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.media.tv.TvView
+</A></nobr><br>
+<!-- Method getServiceData -->
+<i>getServiceData</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getServiceData_added(android.os.ParcelUuid)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ParcelUuid</code>)</b>&nbsp;in&nbsp;android.bluetooth.le.ScanRecord
+</A></nobr><br>
+<!-- Method getServiceData -->
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getServiceData_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.bluetooth.le.ScanRecord
+</A></nobr><br>
+<!-- Method getServiceDataUuid -->
+<nobr><A HREF="android.bluetooth.le.ScanFilter.html#android.bluetooth.le.ScanFilter.getServiceDataUuid_added()" class="hiddenlink" target="rightframe"><b>getServiceDataUuid</b>
+()</A></nobr><br>
+<!-- Method getSessionActivity -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getSessionActivity_added()" class="hiddenlink" target="rightframe"><b>getSessionActivity</b>
+()</A></nobr><br>
+<!-- Method getSessionToken -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getSessionToken_added()" class="hiddenlink" target="rightframe"><b>getSessionToken</b>
+()</A></nobr><br>
+<!-- Method getSharedElementEnterTransition -->
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getSharedElementEnterTransition_added()" class="hiddenlink" target="rightframe"><b>getSharedElementEnterTransition</b>
+()</A></nobr><br>
+<!-- Method getSharedElementReenterTransition -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementReenterTransition_added()" class="hiddenlink" target="rightframe"><b>getSharedElementReenterTransition</b>
+()</A></nobr><br>
+<!-- Method getSharedElementReturnTransition -->
+<i>getSharedElementReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getSharedElementReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method getSharedElementReturnTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getSharedElementsUseOverlay -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementsUseOverlay_added()" class="hiddenlink" target="rightframe"><b>getSharedElementsUseOverlay</b>
+()</A></nobr><br>
+<!-- Method getShowSoftInputOnFocus -->
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getShowSoftInputOnFocus_added()" class="hiddenlink" target="rightframe"><b>getShowSoftInputOnFocus</b>
+()</A></nobr><br>
+<!-- Method getShowText -->
+<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.getShowText_added()" class="hiddenlink" target="rightframe"><b>getShowText</b>
+()</A></nobr><br>
+<!-- Method getSize -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getSize_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getSize</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getSizeF -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getSizeF_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getSizeF</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getSlideEdge -->
+<nobr><A HREF="android.transition.Slide.html#android.transition.Slide.getSlideEdge_added()" class="hiddenlink" target="rightframe"><b>getSlideEdge</b>
+()</A></nobr><br>
+<!-- Method getSpeakerAngles -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.getSpeakerAngles_added(int, int, int[])" class="hiddenlink" target="rightframe"><b>getSpeakerAngles</b>
+(<code>int, int, int[]</code>)</A></nobr><br>
+<!-- Method getStableInsetBottom -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetBottom_added()" class="hiddenlink" target="rightframe"><b>getStableInsetBottom</b>
+()</A></nobr><br>
+<!-- Method getStableInsetLeft -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetLeft_added()" class="hiddenlink" target="rightframe"><b>getStableInsetLeft</b>
+()</A></nobr><br>
+<!-- Method getStableInsetRight -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetRight_added()" class="hiddenlink" target="rightframe"><b>getStableInsetRight</b>
+()</A></nobr><br>
+<!-- Method getStableInsetTop -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetTop_added()" class="hiddenlink" target="rightframe"><b>getStableInsetTop</b>
+()</A></nobr><br>
+<!-- Method getStatusCode -->
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getStatusCode_added()" class="hiddenlink" target="rightframe"><b>getStatusCode</b>
+()</A></nobr><br>
+<!-- Method getSupportedRefreshRates -->
+<nobr><A HREF="android.view.Display.html#android.view.Display.getSupportedRefreshRates_added()" class="hiddenlink" target="rightframe"><b>getSupportedRefreshRates</b>
+()</A></nobr><br>
+<!-- Method getTargetNames -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getTargetNames_added()" class="hiddenlink" target="rightframe"><b>getTargetNames</b>
+()</A></nobr><br>
+<!-- Method getText -->
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.getText_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getText</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getThumbTintList -->
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.getThumbTintList_added()" class="hiddenlink" target="rightframe"><b>getThumbTintList</b>
+()</A></nobr><br>
+<!-- Method getThumbTintMode -->
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.getThumbTintMode_added()" class="hiddenlink" target="rightframe"><b>getThumbTintMode</b>
+()</A></nobr><br>
+<!-- Method getTimeout -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html#android.bluetooth.le.AdvertiseSettings.getTimeout_added()" class="hiddenlink" target="rightframe"><b>getTimeout</b>
+()</A></nobr><br>
+<!-- Method getTouchscreenBlocksFocus -->
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.getTouchscreenBlocksFocus_added()" class="hiddenlink" target="rightframe"><b>getTouchscreenBlocksFocus</b>
+()</A></nobr><br>
+<!-- Method getTracks -->
+<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.getTracks_added(int)" class="hiddenlink" target="rightframe"><b>getTracks</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getTransitionAt -->
+<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.getTransitionAt_added(int)" class="hiddenlink" target="rightframe"><b>getTransitionAt</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getTransitionBackgroundFadeDuration -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.getTransitionBackgroundFadeDuration_added()" class="hiddenlink" target="rightframe"><b>getTransitionBackgroundFadeDuration</b>
+()</A></nobr><br>
+<!-- Method getTransitionCount -->
+<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.getTransitionCount_added()" class="hiddenlink" target="rightframe"><b>getTransitionCount</b>
+()</A></nobr><br>
+<!-- Method getTransitionName -->
+<nobr><A HREF="android.view.View.html#android.view.View.getTransitionName_added()" class="hiddenlink" target="rightframe"><b>getTransitionName</b>
+()</A></nobr><br>
+<!-- Method getTvInputInfo -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.getTvInputInfo_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getTvInputInfo</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getTypeLabel -->
+<nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.getTypeLabel_added(android.content.res.Resources, int, java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>getTypeLabel</b>
+(<code>Resources, int, CharSequence</code>)</A></nobr><br>
+<!-- Method getUnicodeLocaleAttributes -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleAttributes_added()" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleAttributes</b>
+()</A></nobr><br>
+<!-- Method getUnicodeLocaleKeys -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleKeys_added()" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleKeys</b>
+()</A></nobr><br>
+<!-- Method getUnicodeLocaleType -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleType_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleType</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getUserBadgedDrawableForDensity -->
+<i>getUserBadgedDrawableForDensity</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle, Rect, int</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method getUserBadgedDrawableForDensity -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle, Rect, int</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Method getUserBadgedIcon -->
+<i>getUserBadgedIcon</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method getUserBadgedIcon -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Method getUserBadgedLabel -->
+<i>getUserBadgedLabel</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, UserHandle</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method getUserBadgedLabel -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, UserHandle</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Method getVideoCapabilities -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getVideoCapabilities_added()" class="hiddenlink" target="rightframe"><b>getVideoCapabilities</b>
+()</A></nobr><br>
+<!-- Method getVideoResolution -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.getVideoResolution_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getVideoResolution</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getVirtualizationMode -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.getVirtualizationMode_added()" class="hiddenlink" target="rightframe"><b>getVirtualizationMode</b>
+()</A></nobr><br>
+<!-- Method getVoice -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getVoice_added()" class="hiddenlink" target="rightframe"><b>getVoice</b>
+()</A></nobr><br>
+<!-- Method getVoiceName -->
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getVoiceName_added()" class="hiddenlink" target="rightframe"><b>getVoiceName</b>
+()</A></nobr><br>
+<!-- Method getVoices -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getVoices_added()" class="hiddenlink" target="rightframe"><b>getVoices</b>
+()</A></nobr><br>
+<!-- Field GLOBAL_ACTION_POWER_DIALOG -->
+<nobr><A HREF="android.accessibilityservice.AccessibilityService.html#android.accessibilityservice.AccessibilityService.GLOBAL_ACTION_POWER_DIALOG" class="hiddenlink" target="rightframe">GLOBAL_ACTION_POWER_DIALOG</A>
+</nobr><br>
+<!-- Field goIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.goIcon" class="hiddenlink" target="rightframe">goIcon</A>
+</nobr><br>
+<!-- Method hasCaCertInstalled -->
+<A NAME="H"></A>
+<br><font size="+2">H</font>&nbsp;
+<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="#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.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.hasCaCertInstalled_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>hasCaCertInstalled</b>
+(<code>ComponentName, byte[]</code>)</A></nobr><br>
+<!-- Method hasFinished -->
+<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.hasFinished_added()" class="hiddenlink" target="rightframe"><b>hasFinished</b>
+()</A></nobr><br>
+<!-- Method hasQueuedPredecessors -->
+<i>hasQueuedPredecessors</i><br>
+&nbsp;&nbsp;<nobr><A HREF="java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html#java.util.concurrent.locks.AbstractQueuedLongSynchronizer.hasQueuedPredecessors_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;java.util.concurrent.locks.AbstractQueuedLongSynchronizer
+</A></nobr><br>
+<!-- Method hasQueuedPredecessors -->
+&nbsp;&nbsp;<nobr><A HREF="java.util.concurrent.locks.AbstractQueuedSynchronizer.html#java.util.concurrent.locks.AbstractQueuedSynchronizer.hasQueuedPredecessors_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;java.util.concurrent.locks.AbstractQueuedSynchronizer
+</A></nobr><br>
+<!-- Method hasStableInsets -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.hasStableInsets_added()" class="hiddenlink" target="rightframe"><b>hasStableInsets</b>
+()</A></nobr><br>
+<!-- Method hasStarted -->
+<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.hasStarted_added()" class="hiddenlink" target="rightframe"><b>hasStarted</b>
+()</A></nobr><br>
+<!-- Method hasUserRestriction -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.hasUserRestriction_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>hasUserRestriction</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Field headerAmPmTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerAmPmTextAppearance" class="hiddenlink" target="rightframe">headerAmPmTextAppearance</A>
+</nobr><br>
+<!-- Field headerDayOfMonthTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerDayOfMonthTextAppearance" class="hiddenlink" target="rightframe">headerDayOfMonthTextAppearance</A>
+</nobr><br>
+<!-- Field headerMonthTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerMonthTextAppearance" class="hiddenlink" target="rightframe">headerMonthTextAppearance</A>
+</nobr><br>
+<!-- Field headerTimeTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerTimeTextAppearance" class="hiddenlink" target="rightframe">headerTimeTextAppearance</A>
+</nobr><br>
+<!-- Field headerYearTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerYearTextAppearance" class="hiddenlink" target="rightframe">headerYearTextAppearance</A>
+</nobr><br>
+<!-- Field headsUpContentView -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.headsUpContentView" class="hiddenlink" target="rightframe">headsUpContentView</A>
+</nobr><br>
+<!-- Field HINT_HOST_DISABLE_EFFECTS -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.HINT_HOST_DISABLE_EFFECTS" class="hiddenlink" target="rightframe">HINT_HOST_DISABLE_EFFECTS</A>
+</nobr><br>
+<!-- Method iccCloseLogicalChannel -->
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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="#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.TelephonyManager.html#android.telephony.TelephonyManager.iccCloseLogicalChannel_added(int)" class="hiddenlink" target="rightframe"><b>iccCloseLogicalChannel</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method iccExchangeSimIO -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccExchangeSimIO_added(int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccExchangeSimIO</b>
+(<code>int, int, int, int, int, String</code>)</A></nobr><br>
+<!-- Method iccOpenLogicalChannel -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccOpenLogicalChannel_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>iccOpenLogicalChannel</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Class IccOpenLogicalChannelResponse -->
+<A HREF="pkg_android.telephony.html#IccOpenLogicalChannelResponse" class="hiddenlink" target="rightframe"><b>IccOpenLogicalChannelResponse</b></A><br>
+<!-- Method iccTransmitApduBasicChannel -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccTransmitApduBasicChannel_added(int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccTransmitApduBasicChannel</b>
+(<code>int, int, int, int, int, String</code>)</A></nobr><br>
+<!-- Method iccTransmitApduLogicalChannel -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccTransmitApduLogicalChannel_added(int, int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccTransmitApduLogicalChannel</b>
+(<code>int, int, int, int, int, int, String</code>)</A></nobr><br>
+<!-- Class IllformedLocaleException -->
+<A HREF="pkg_java.util.html#IllformedLocaleException" class="hiddenlink" target="rightframe"><b>IllformedLocaleException</b></A><br>
+<!-- Field IMPORTANCE_GONE -->
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.IMPORTANCE_GONE" class="hiddenlink" target="rightframe">IMPORTANCE_GONE</A>
+</nobr><br>
+<!-- Field indeterminateTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.indeterminateTint" class="hiddenlink" target="rightframe">indeterminateTint</A>
+</nobr><br>
+<!-- Field indeterminateTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.indeterminateTintMode" class="hiddenlink" target="rightframe">indeterminateTintMode</A>
+</nobr><br>
+<!-- Method indexOfKey -->
+<nobr><A HREF="android.util.ArrayMap.html#android.util.ArrayMap.indexOfKey_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>indexOfKey</b>
+(<code>Object</code>)</A></nobr><br>
+<!-- Field INFO_SUPPORTED_HARDWARE_LEVEL_LEGACY -->
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.INFO_SUPPORTED_HARDWARE_LEVEL_LEGACY" class="hiddenlink" target="rightframe">INFO_SUPPORTED_HARDWARE_LEVEL_LEGACY</A>
+</nobr><br>
+<!-- Field INPUT_STATE_CONNECTED -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.INPUT_STATE_CONNECTED" class="hiddenlink" target="rightframe">INPUT_STATE_CONNECTED</A>
+</nobr><br>
+<!-- Field INPUT_STATE_CONNECTED_STANDBY -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.INPUT_STATE_CONNECTED_STANDBY" class="hiddenlink" target="rightframe">INPUT_STATE_CONNECTED_STANDBY</A>
+</nobr><br>
+<!-- Field INPUT_STATE_DISCONNECTED -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.INPUT_STATE_DISCONNECTED" class="hiddenlink" target="rightframe">INPUT_STATE_DISCONNECTED</A>
+</nobr><br>
+<!-- Field inset -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.inset" class="hiddenlink" target="rightframe">inset</A>
+</nobr><br>
+<!-- Field INSTALL_LOCATION_AUTO -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.INSTALL_LOCATION_AUTO" class="hiddenlink" target="rightframe">INSTALL_LOCATION_AUTO</A>
+</nobr><br>
+<!-- Field INSTALL_LOCATION_INTERNAL_ONLY -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY" class="hiddenlink" target="rightframe">INSTALL_LOCATION_INTERNAL_ONLY</A>
+</nobr><br>
+<!-- Field INSTALL_LOCATION_PREFER_EXTERNAL -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.INSTALL_LOCATION_PREFER_EXTERNAL" class="hiddenlink" target="rightframe">INSTALL_LOCATION_PREFER_EXTERNAL</A>
+</nobr><br>
+<!-- Method installCaCert -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.installCaCert_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>installCaCert</b>
+(<code>ComponentName, byte[]</code>)</A></nobr><br>
+<!-- Method installKeyPair -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.installKeyPair_added(android.content.ComponentName, java.security.PrivateKey, java.security.cert.Certificate, java.lang.String)" class="hiddenlink" target="rightframe"><b>installKeyPair</b>
+(<code>ComponentName, PrivateKey, Certificate, String</code>)</A></nobr><br>
+<!-- Field installLocation -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.installLocation" class="hiddenlink" target="rightframe">installLocation</A>
+</nobr><br>
+<!-- Field INTERRUPTION_FILTER_ALL -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_ALL" class="hiddenlink" target="rightframe">INTERRUPTION_FILTER_ALL</A>
+</nobr><br>
+<!-- Field INTERRUPTION_FILTER_NONE -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_NONE" class="hiddenlink" target="rightframe">INTERRUPTION_FILTER_NONE</A>
+</nobr><br>
+<!-- Field INTERRUPTION_FILTER_PRIORITY -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_PRIORITY" class="hiddenlink" target="rightframe">INTERRUPTION_FILTER_PRIORITY</A>
+</nobr><br>
+<!-- Method intersect -->
+<i>intersect</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.intersect_added(T, T)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, T</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+<!-- Method intersect -->
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.intersect_added(android.util.Range<T>)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Range&lt;T&gt;</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+<!-- Method invalidateOutline -->
+<nobr><A HREF="android.view.View.html#android.view.View.invalidateOutline_added()" class="hiddenlink" target="rightframe"><b>invalidateOutline</b>
+()</A></nobr><br>
+<!-- Method is5GHzBandSupported -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.is5GHzBandSupported_added()" class="hiddenlink" target="rightframe"><b>is5GHzBandSupported</b>
+()</A></nobr><br>
+<!-- Method isAccessibilityFocused -->
+<nobr><A HREF="android.view.accessibility.AccessibilityWindowInfo.html#android.view.accessibility.AccessibilityWindowInfo.isAccessibilityFocused_added()" class="hiddenlink" target="rightframe"><b>isAccessibilityFocused</b>
+()</A></nobr><br>
+<!-- Method isActiveService -->
+<nobr><A HREF="android.service.voice.VoiceInteractionService.html#android.service.voice.VoiceInteractionService.isActiveService_added(android.content.Context, android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>isActiveService</b>
+(<code>Context, ComponentName</code>)</A></nobr><br>
+<!-- Method isActivityEnabled -->
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.isActivityEnabled_added(android.content.ComponentName, android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>isActivityEnabled</b>
+(<code>ComponentName, UserHandle</code>)</A></nobr><br>
+<!-- Method isApplicationHidden -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isApplicationHidden_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>isApplicationHidden</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method isButtonPressed -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.isButtonPressed_added(int)" class="hiddenlink" target="rightframe"><b>isButtonPressed</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method isConnectable -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html#android.bluetooth.le.AdvertiseSettings.isConnectable_added()" class="hiddenlink" target="rightframe"><b>isConnectable</b>
+()</A></nobr><br>
+<!-- Method isConsumed -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.isConsumed_added()" class="hiddenlink" target="rightframe"><b>isConsumed</b>
+()</A></nobr><br>
+<!-- Method isDeviceToApRttSupported -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isDeviceToApRttSupported_added()" class="hiddenlink" target="rightframe"><b>isDeviceToApRttSupported</b>
+()</A></nobr><br>
+<!-- Method isEnhancedPowerReportingSupported -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isEnhancedPowerReportingSupported_added()" class="hiddenlink" target="rightframe"><b>isEnhancedPowerReportingSupported</b>
+()</A></nobr><br>
+<!-- Method isEnterpriseContactId -->
+<nobr><A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.isEnterpriseContactId_added(long)" class="hiddenlink" target="rightframe"><b>isEnterpriseContactId</b>
+(<code>long</code>)</A></nobr><br>
+<!-- Method isFeatureRequired -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.isFeatureRequired_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>isFeatureRequired</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method isFormatSupported -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.isFormatSupported_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>isFormatSupported</b>
+(<code>MediaFormat</code>)</A></nobr><br>
+<!-- Method isInLockTaskMode -->
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.isInLockTaskMode_added()" class="hiddenlink" target="rightframe"><b>isInLockTaskMode</b>
+()</A></nobr><br>
+<!-- Method isMasterVolumeMuted -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isMasterVolumeMuted_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>isMasterVolumeMuted</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method isMultipleAdvertisementSupported -->
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isMultipleAdvertisementSupported_added()" class="hiddenlink" target="rightframe"><b>isMultipleAdvertisementSupported</b>
+()</A></nobr><br>
+<!-- Method isOffloadedFilteringSupported -->
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isOffloadedFilteringSupported_added()" class="hiddenlink" target="rightframe"><b>isOffloadedFilteringSupported</b>
+()</A></nobr><br>
+<!-- Method isOffloadedScanBatchingSupported -->
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isOffloadedScanBatchingSupported_added()" class="hiddenlink" target="rightframe"><b>isOffloadedScanBatchingSupported</b>
+()</A></nobr><br>
+<!-- Method isOverrideDeadlineExpired -->
+<nobr><A HREF="android.app.job.JobParameters.html#android.app.job.JobParameters.isOverrideDeadlineExpired_added()" class="hiddenlink" target="rightframe"><b>isOverrideDeadlineExpired</b>
+()</A></nobr><br>
+<!-- Method isP2pSupported -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isP2pSupported_added()" class="hiddenlink" target="rightframe"><b>isP2pSupported</b>
+()</A></nobr><br>
+<!-- Method isPackageEnabled -->
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.isPackageEnabled_added(java.lang.String, android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>isPackageEnabled</b>
+(<code>String, UserHandle</code>)</A></nobr><br>
+<!-- Method isParentalControlsEnabled -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.isParentalControlsEnabled_added()" class="hiddenlink" target="rightframe"><b>isParentalControlsEnabled</b>
+()</A></nobr><br>
+<!-- Method isPassthroughInput -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.isPassthroughInput_added()" class="hiddenlink" target="rightframe"><b>isPassthroughInput</b>
+()</A></nobr><br>
+<!-- Method isPersisted -->
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.isPersisted_added()" class="hiddenlink" target="rightframe"><b>isPersisted</b>
+()</A></nobr><br>
+<!-- Method isPreferredNetworkOffloadSupported -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isPreferredNetworkOffloadSupported_added()" class="hiddenlink" target="rightframe"><b>isPreferredNetworkOffloadSupported</b>
+()</A></nobr><br>
+<!-- Method isRatingBlocked -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.isRatingBlocked_added(android.media.tv.TvContentRating)" class="hiddenlink" target="rightframe"><b>isRatingBlocked</b>
+(<code>TvContentRating</code>)</A></nobr><br>
+<!-- Method isSmsCapable -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.isSmsCapable_added()" class="hiddenlink" target="rightframe"><b>isSmsCapable</b>
+()</A></nobr><br>
+<!-- Method isTdlsSupported -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isTdlsSupported_added()" class="hiddenlink" target="rightframe"><b>isTdlsSupported</b>
+()</A></nobr><br>
+<!-- Method isUninstallBlocked -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isUninstallBlocked_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>isUninstallBlocked</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method isVolumeFixed -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.isVolumeFixed_added()" class="hiddenlink" target="rightframe"><b>isVolumeFixed</b>
+()</A></nobr><br>
+<!-- Method isWakeLockLevelSupported -->
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.isWakeLockLevelSupported_added(int)" class="hiddenlink" target="rightframe"><b>isWakeLockLevelSupported</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method isWakeUpSensor -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.isWakeUpSensor_added()" class="hiddenlink" target="rightframe"><b>isWakeUpSensor</b>
+()</A></nobr><br>
+<!-- Field KEY_AAC_DRC_ATTENUATION_FACTOR -->
+<A NAME="K"></A>
+<br><font size="+2">K</font>&nbsp;
+<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="#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.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_ATTENUATION_FACTOR" class="hiddenlink" target="rightframe">KEY_AAC_DRC_ATTENUATION_FACTOR</A>
+</nobr><br>
+<!-- Field KEY_AAC_DRC_BOOST_FACTOR -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_BOOST_FACTOR" class="hiddenlink" target="rightframe">KEY_AAC_DRC_BOOST_FACTOR</A>
+</nobr><br>
+<!-- Field KEY_AAC_DRC_HEAVY_COMPRESSION -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_HEAVY_COMPRESSION" class="hiddenlink" target="rightframe">KEY_AAC_DRC_HEAVY_COMPRESSION</A>
+</nobr><br>
+<!-- Field KEY_AAC_DRC_TARGET_REFERENCE_LEVEL -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_TARGET_REFERENCE_LEVEL" class="hiddenlink" target="rightframe">KEY_AAC_DRC_TARGET_REFERENCE_LEVEL</A>
+</nobr><br>
+<!-- Field KEY_AAC_ENCODED_TARGET_LEVEL -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_ENCODED_TARGET_LEVEL" class="hiddenlink" target="rightframe">KEY_AAC_ENCODED_TARGET_LEVEL</A>
+</nobr><br>
+<!-- Field KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT" class="hiddenlink" target="rightframe">KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT</A>
+</nobr><br>
+<!-- Field KEY_AAC_SBR_MODE -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_SBR_MODE" class="hiddenlink" target="rightframe">KEY_AAC_SBR_MODE</A>
+</nobr><br>
+<!-- Field KEY_AUDIO_SESSION_ID -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AUDIO_SESSION_ID" class="hiddenlink" target="rightframe">KEY_AUDIO_SESSION_ID</A>
+</nobr><br>
+<!-- Field KEY_BITRATE_MODE -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_BITRATE_MODE" class="hiddenlink" target="rightframe">KEY_BITRATE_MODE</A>
+</nobr><br>
+<!-- Field KEY_CAPTURE_RATE -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_CAPTURE_RATE" class="hiddenlink" target="rightframe">KEY_CAPTURE_RATE</A>
+</nobr><br>
+<!-- Field KEY_COMPLEXITY -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_COMPLEXITY" class="hiddenlink" target="rightframe">KEY_COMPLEXITY</A>
+</nobr><br>
+<!-- Field KEY_FEATURE_NETWORK_RETRIES_COUNT -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_RETRIES_COUNT" class="hiddenlink" target="rightframe">KEY_FEATURE_NETWORK_RETRIES_COUNT</A>
+</nobr><br>
+<!-- Field KEY_FEATURE_NETWORK_TIMEOUT_MS -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_TIMEOUT_MS" class="hiddenlink" target="rightframe">KEY_FEATURE_NETWORK_TIMEOUT_MS</A>
+</nobr><br>
+<!-- Field KEY_FEATURE_NOT_INSTALLED -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NOT_INSTALLED" class="hiddenlink" target="rightframe">KEY_FEATURE_NOT_INSTALLED</A>
+</nobr><br>
+<!-- Field KEY_PARAM_SESSION_ID -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_PARAM_SESSION_ID" class="hiddenlink" target="rightframe">KEY_PARAM_SESSION_ID</A>
+</nobr><br>
+<!-- Field KEY_PROFILE -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_PROFILE" class="hiddenlink" target="rightframe">KEY_PROFILE</A>
+</nobr><br>
+<!-- Field KEY_TEMPORAL_LAYERING -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_TEMPORAL_LAYERING" class="hiddenlink" target="rightframe">KEY_TEMPORAL_LAYERING</A>
+</nobr><br>
+<!-- Field KEYCODE_HELP -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_HELP" class="hiddenlink" target="rightframe">KEYCODE_HELP</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_ANTENNA_CABLE -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_ANTENNA_CABLE" class="hiddenlink" target="rightframe">KEYCODE_TV_ANTENNA_CABLE</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_AUDIO_DESCRIPTION -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION" class="hiddenlink" target="rightframe">KEYCODE_TV_AUDIO_DESCRIPTION</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN" class="hiddenlink" target="rightframe">KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP" class="hiddenlink" target="rightframe">KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_CONTENTS_MENU -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_CONTENTS_MENU" class="hiddenlink" target="rightframe">KEYCODE_TV_CONTENTS_MENU</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_COMPONENT_1 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPONENT_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPONENT_1</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_COMPONENT_2 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPONENT_2" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPONENT_2</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_COMPOSITE_1 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPOSITE_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPOSITE_1</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_COMPOSITE_2 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPOSITE_2" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPOSITE_2</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_HDMI_1 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_1</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_HDMI_2 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_2" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_2</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_HDMI_3 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_3" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_3</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_HDMI_4 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_4" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_4</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_VGA_1 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_VGA_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_VGA_1</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_MEDIA_CONTEXT_MENU -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_MEDIA_CONTEXT_MENU" class="hiddenlink" target="rightframe">KEYCODE_TV_MEDIA_CONTEXT_MENU</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_NETWORK -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_NETWORK" class="hiddenlink" target="rightframe">KEYCODE_TV_NETWORK</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_NUMBER_ENTRY -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_NUMBER_ENTRY" class="hiddenlink" target="rightframe">KEYCODE_TV_NUMBER_ENTRY</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_RADIO_SERVICE -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_RADIO_SERVICE" class="hiddenlink" target="rightframe">KEYCODE_TV_RADIO_SERVICE</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_SATELLITE -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_SATELLITE_BS -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE_BS" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE_BS</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_SATELLITE_CS -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE_CS" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE_CS</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_SATELLITE_SERVICE -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE_SERVICE" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE_SERVICE</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_TELETEXT -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TELETEXT" class="hiddenlink" target="rightframe">KEYCODE_TV_TELETEXT</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_TERRESTRIAL_ANALOG -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TERRESTRIAL_ANALOG" class="hiddenlink" target="rightframe">KEYCODE_TV_TERRESTRIAL_ANALOG</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_TERRESTRIAL_DIGITAL -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TERRESTRIAL_DIGITAL" class="hiddenlink" target="rightframe">KEYCODE_TV_TERRESTRIAL_DIGITAL</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_TIMER_PROGRAMMING -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TIMER_PROGRAMMING" class="hiddenlink" target="rightframe">KEYCODE_TV_TIMER_PROGRAMMING</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_ZOOM_MODE -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_ZOOM_MODE" class="hiddenlink" target="rightframe">KEYCODE_TV_ZOOM_MODE</A>
+</nobr><br>
+<!-- Field KEYCODE_VOICE_ASSIST -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_VOICE_ASSIST" class="hiddenlink" target="rightframe">KEYCODE_VOICE_ASSIST</A>
+</nobr><br>
+<!-- Field KEYGUARD_DISABLE_FINGERPRINT -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_FINGERPRINT" class="hiddenlink" target="rightframe">KEYGUARD_DISABLE_FINGERPRINT</A>
+</nobr><br>
+<!-- Class LauncherApps.Callback -->
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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="#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#LauncherApps.Callback" class="hiddenlink" target="rightframe"><b>LauncherApps.Callback</b></A><br>
+<!-- Field launchTaskBehindSourceAnimation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.launchTaskBehindSourceAnimation" class="hiddenlink" target="rightframe">launchTaskBehindSourceAnimation</A>
+</nobr><br>
+<!-- Field launchTaskBehindTargetAnimation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.launchTaskBehindTargetAnimation" class="hiddenlink" target="rightframe">launchTaskBehindTargetAnimation</A>
+</nobr><br>
+<!-- Field layout_columnWeight -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.layout_columnWeight" class="hiddenlink" target="rightframe">layout_columnWeight</A>
+</nobr><br>
+<!-- Field layout_rowWeight -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.layout_rowWeight" class="hiddenlink" target="rightframe">layout_rowWeight</A>
+</nobr><br>
+<!-- Field letterSpacing -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.letterSpacing" class="hiddenlink" target="rightframe">letterSpacing</A>
+</nobr><br>
+<!-- Class LinkedTransferQueue -->
+<A HREF="pkg_java.util.concurrent.html#LinkedTransferQueue" class="hiddenlink" target="rightframe"><b>LinkedTransferQueue</b></A><br>
+<!-- Method loadIcon -->
+<i>loadIcon</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadIcon_added(android.content.Context, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context, int</code>)</b>&nbsp;in&nbsp;android.appwidget.AppWidgetProviderInfo
+</A></nobr><br>
+<!-- Method loadIcon -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.loadIcon_added(android.content.Context)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context</code>)</b>&nbsp;in&nbsp;android.media.tv.TvInputInfo
+</A></nobr><br>
+<!-- Method loadLabel -->
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadLabel_added(android.content.pm.PackageManager)" class="hiddenlink" target="rightframe"><b>loadLabel</b>
+(<code>PackageManager</code>)</A></nobr><br>
+<!-- Method loadPreviewImage -->
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadPreviewImage_added(android.content.Context, int)" class="hiddenlink" target="rightframe"><b>loadPreviewImage</b>
+(<code>Context, int</code>)</A></nobr><br>
+<!-- Class Locale.Builder -->
+<A HREF="pkg_java.util.html#Locale.Builder" class="hiddenlink" target="rightframe"><b>Locale.Builder</b></A><br>
+<!-- Field LOLLIPOP -->
+<nobr><A HREF="android.os.Build.VERSION_CODES.html#android.os.Build.VERSION_CODES.LOLLIPOP" class="hiddenlink" target="rightframe">LOLLIPOP</A>
+</nobr><br>
+<!-- Method makeTaskLaunchBehind -->
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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="#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.app.ActivityOptions.html#android.app.ActivityOptions.makeTaskLaunchBehind_added()" class="hiddenlink" target="rightframe"><b>makeTaskLaunchBehind</b>
+()</A></nobr><br>
+<!-- Field MATCH_NAME -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.MATCH_NAME" class="hiddenlink" target="rightframe">MATCH_NAME</A>
+</nobr><br>
+<!-- Method matchesInterruptionFilter -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.Ranking.html#android.service.notification.NotificationListenerService.Ranking.matchesInterruptionFilter_added()" class="hiddenlink" target="rightframe"><b>matchesInterruptionFilter</b>
+()</A></nobr><br>
+<!-- Field MAX_BACKOFF_DELAY_MILLIS -->
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.MAX_BACKOFF_DELAY_MILLIS" class="hiddenlink" target="rightframe">MAX_BACKOFF_DELAY_MILLIS</A>
+</nobr><br>
+<!-- Field MAX_THUMBNAIL_DIMENSION -->
+<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.MAX_THUMBNAIL_DIMENSION" class="hiddenlink" target="rightframe">MAX_THUMBNAIL_DIMENSION</A>
+</nobr><br>
+<!-- Field maximumAngle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.maximumAngle" class="hiddenlink" target="rightframe">maximumAngle</A>
+</nobr><br>
+<!-- Field MEDIA_PROJECTION_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.MEDIA_PROJECTION_SERVICE" class="hiddenlink" target="rightframe">MEDIA_PROJECTION_SERVICE</A>
+</nobr><br>
+<!-- Field MEDIA_TRACK_TYPE_SUBTITLE -->
+<nobr><A HREF="android.media.MediaPlayer.TrackInfo.html#android.media.MediaPlayer.TrackInfo.MEDIA_TRACK_TYPE_SUBTITLE" class="hiddenlink" target="rightframe">MEDIA_TRACK_TYPE_SUBTITLE</A>
+</nobr><br>
+<!-- Class MediaCodec.Callback -->
+<A HREF="pkg_android.media.html#MediaCodec.Callback" class="hiddenlink" target="rightframe"><b>MediaCodec.Callback</b></A><br>
+<!-- Class MediaCodec.CodecException -->
+<A HREF="pkg_android.media.html#MediaCodec.CodecException" class="hiddenlink" target="rightframe"><b>MediaCodec.CodecException</b></A><br>
+<!-- Class MediaCodecInfo.AudioCapabilities -->
+<A HREF="pkg_android.media.html#MediaCodecInfo.AudioCapabilities" class="hiddenlink" target="rightframe"><b>MediaCodecInfo.AudioCapabilities</b></A><br>
+<!-- Class MediaCodecInfo.EncoderCapabilities -->
+<A HREF="pkg_android.media.html#MediaCodecInfo.EncoderCapabilities" class="hiddenlink" target="rightframe"><b>MediaCodecInfo.EncoderCapabilities</b></A><br>
+<!-- Class MediaCodecInfo.VideoCapabilities -->
+<A HREF="pkg_android.media.html#MediaCodecInfo.VideoCapabilities" class="hiddenlink" target="rightframe"><b>MediaCodecInfo.VideoCapabilities</b></A><br>
+<!-- Constructor MediaCodecList -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.ctor_added(int)" class="hiddenlink" target="rightframe"><b>MediaCodecList</b>
+(<code>int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor MediaController -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.ctor_added(android.content.Context, android.media.session.MediaSession.Token)" class="hiddenlink" target="rightframe"><b>MediaController</b>
+(<code>Context, Token</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class MediaController.PlaybackInfo -->
+<A HREF="pkg_android.media.session.html#MediaController.PlaybackInfo" class="hiddenlink" target="rightframe"><b>MediaController.PlaybackInfo</b></A><br>
+<!-- Class MediaDescription -->
+<A HREF="pkg_android.media.html#MediaDescription" class="hiddenlink" target="rightframe"><b>MediaDescription</b></A><br>
+<!-- Class MediaDescription.Builder -->
+<A HREF="pkg_android.media.html#MediaDescription.Builder" class="hiddenlink" target="rightframe"><b>MediaDescription.Builder</b></A><br>
+<!-- Class MediaDrm.MediaDrmStateException -->
+<A HREF="pkg_android.media.html#MediaDrm.MediaDrmStateException" class="hiddenlink" target="rightframe"><b>MediaDrm.MediaDrmStateException</b></A><br>
+<!-- Constructor MediaSession -->
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.ctor_added(android.content.Context, java.lang.String)" class="hiddenlink" target="rightframe"><b>MediaSession</b>
+(<code>Context, String</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class MediaSession.QueueItem -->
+<A HREF="pkg_android.media.session.html#MediaSession.QueueItem" class="hiddenlink" target="rightframe"><b>MediaSession.QueueItem</b></A><br>
+<!-- Class MediaSession.Token -->
+<A HREF="pkg_android.media.session.html#MediaSession.Token" class="hiddenlink" target="rightframe"><b>MediaSession.Token</b></A><br>
+<!-- Class MediaSessionManager.OnActiveSessionsChangedListener -->
+<A HREF="pkg_android.media.session.html#MediaSessionManager.OnActiveSessionsChangedListener" class="hiddenlink" target="rightframe"><b><i>MediaSessionManager.OnActiveSessionsChangedListener</i></b></A><br>
+<!-- Field MESSAGE_BOX_FAILED -->
+<nobr><A HREF="android.provider.Telephony.BaseMmsColumns.html#android.provider.Telephony.BaseMmsColumns.MESSAGE_BOX_FAILED" class="hiddenlink" target="rightframe">MESSAGE_BOX_FAILED</A>
+</nobr><br>
+<!-- Field META_DATA_CONTENT_RATING_SYSTEMS -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.META_DATA_CONTENT_RATING_SYSTEMS" class="hiddenlink" target="rightframe">META_DATA_CONTENT_RATING_SYSTEMS</A>
+</nobr><br>
+<!-- Field METADATA_KEY_DISPLAY_DESCRIPTION -->
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.METADATA_KEY_DISPLAY_DESCRIPTION" class="hiddenlink" target="rightframe">METADATA_KEY_DISPLAY_DESCRIPTION</A>
+</nobr><br>
+<!-- Field METADATA_KEY_DISPLAY_ICON -->
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.METADATA_KEY_DISPLAY_ICON" class="hiddenlink" target="rightframe">METADATA_KEY_DISPLAY_ICON</A>
+</nobr><br>
+<!-- Field METADATA_KEY_DISPLAY_ICON_URI -->
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.METADATA_KEY_DISPLAY_ICON_URI" class="hiddenlink" target="rightframe">METADATA_KEY_DISPLAY_ICON_URI</A>
+</nobr><br>
+<!-- Field METADATA_KEY_DISPLAY_SUBTITLE -->
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.METADATA_KEY_DISPLAY_SUBTITLE" class="hiddenlink" target="rightframe">METADATA_KEY_DISPLAY_SUBTITLE</A>
+</nobr><br>
+<!-- Field METADATA_KEY_DISPLAY_TITLE -->
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.METADATA_KEY_DISPLAY_TITLE" class="hiddenlink" target="rightframe">METADATA_KEY_DISPLAY_TITLE</A>
+</nobr><br>
+<!-- Field METADATA_KEY_MEDIA_ID -->
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.METADATA_KEY_MEDIA_ID" class="hiddenlink" target="rightframe">METADATA_KEY_MEDIA_ID</A>
+</nobr><br>
+<!-- Field MIME_TYPE_PROVISIONING_NFC -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.MIME_TYPE_PROVISIONING_NFC" class="hiddenlink" target="rightframe">MIME_TYPE_PROVISIONING_NFC</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_AAC -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AAC" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AAC</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_AC3 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AC3" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AC3</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_AMR_NB -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AMR_NB" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AMR_NB</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_AMR_WB -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AMR_WB" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AMR_WB</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_FLAC -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_FLAC" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_FLAC</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_G711_ALAW -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_G711_ALAW" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_G711_ALAW</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_G711_MLAW -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_G711_MLAW" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_G711_MLAW</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_MPEG -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_MPEG" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_MPEG</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_MSGSM -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_MSGSM" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_MSGSM</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_OPUS -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_OPUS" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_OPUS</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_QCELP -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_QCELP" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_QCELP</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_RAW -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_RAW" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_RAW</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_VORBIS -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_VORBIS" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_VORBIS</A>
+</nobr><br>
+<!-- Field MIMETYPE_TEXT_CEA_608 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_TEXT_CEA_608" class="hiddenlink" target="rightframe">MIMETYPE_TEXT_CEA_608</A>
+</nobr><br>
+<!-- Field MIMETYPE_TEXT_VTT -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_TEXT_VTT" class="hiddenlink" target="rightframe">MIMETYPE_TEXT_VTT</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_AVC -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_AVC" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_AVC</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_H263 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_H263" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_H263</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_HEVC -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_HEVC" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_HEVC</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_MPEG2 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_MPEG2" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_MPEG2</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_MPEG4 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_MPEG4" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_MPEG4</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_RAW -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_RAW" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_RAW</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_VP8 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_VP8" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_VP8</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_VP9 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_VP9" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_VP9</A>
+</nobr><br>
+<!-- Field minimumHorizontalAngle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.minimumHorizontalAngle" class="hiddenlink" target="rightframe">minimumHorizontalAngle</A>
+</nobr><br>
+<!-- Field minimumVerticalAngle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.minimumVerticalAngle" class="hiddenlink" target="rightframe">minimumVerticalAngle</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_ALIAS_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALIAS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_ALIAS_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_ALIAS_MAX_CHARS -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALIAS_MAX_CHARS" class="hiddenlink" target="rightframe">MMS_CONFIG_ALIAS_MAX_CHARS</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_ALIAS_MIN_CHARS -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALIAS_MIN_CHARS" class="hiddenlink" target="rightframe">MMS_CONFIG_ALIAS_MIN_CHARS</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_ALLOW_ATTACH_AUDIO -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALLOW_ATTACH_AUDIO" class="hiddenlink" target="rightframe">MMS_CONFIG_ALLOW_ATTACH_AUDIO</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_APPEND_TRANSACTION_ID -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_APPEND_TRANSACTION_ID" class="hiddenlink" target="rightframe">MMS_CONFIG_APPEND_TRANSACTION_ID</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_EMAIL_GATEWAY_NUMBER -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_EMAIL_GATEWAY_NUMBER" class="hiddenlink" target="rightframe">MMS_CONFIG_EMAIL_GATEWAY_NUMBER</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_GROUP_MMS_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_GROUP_MMS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_GROUP_MMS_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_HTTP_PARAMS -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_HTTP_PARAMS" class="hiddenlink" target="rightframe">MMS_CONFIG_HTTP_PARAMS</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_HTTP_SOCKET_TIMEOUT -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_HTTP_SOCKET_TIMEOUT" class="hiddenlink" target="rightframe">MMS_CONFIG_HTTP_SOCKET_TIMEOUT</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MAX_IMAGE_HEIGHT -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MAX_IMAGE_HEIGHT" class="hiddenlink" target="rightframe">MMS_CONFIG_MAX_IMAGE_HEIGHT</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MAX_IMAGE_WIDTH -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MAX_IMAGE_WIDTH" class="hiddenlink" target="rightframe">MMS_CONFIG_MAX_IMAGE_WIDTH</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MAX_MESSAGE_SIZE -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MAX_MESSAGE_SIZE" class="hiddenlink" target="rightframe">MMS_CONFIG_MAX_MESSAGE_SIZE</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE" class="hiddenlink" target="rightframe">MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MMS_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MMS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MMS_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MMS_READ_REPORT_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MMS_READ_REPORT_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MMS_READ_REPORT_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MULTIPART_SMS_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MULTIPART_SMS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MULTIPART_SMS_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_NAI_SUFFIX -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_NAI_SUFFIX" class="hiddenlink" target="rightframe">MMS_CONFIG_NAI_SUFFIX</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_RECIPIENT_LIMIT -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_RECIPIENT_LIMIT" class="hiddenlink" target="rightframe">MMS_CONFIG_RECIPIENT_LIMIT</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES" class="hiddenlink" target="rightframe">MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD" class="hiddenlink" target="rightframe">MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD" class="hiddenlink" target="rightframe">MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_SUBJECT_MAX_LENGTH -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SUBJECT_MAX_LENGTH" class="hiddenlink" target="rightframe">MMS_CONFIG_SUBJECT_MAX_LENGTH</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION" class="hiddenlink" target="rightframe">MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_UA_PROF_TAG_NAME -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_UA_PROF_TAG_NAME" class="hiddenlink" target="rightframe">MMS_CONFIG_UA_PROF_TAG_NAME</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_UA_PROF_URL -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_UA_PROF_URL" class="hiddenlink" target="rightframe">MMS_CONFIG_UA_PROF_URL</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_USER_AGENT -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_USER_AGENT" class="hiddenlink" target="rightframe">MMS_CONFIG_USER_AGENT</A>
+</nobr><br>
+<!-- Field MMS_ERROR_CONFIGURATION_ERROR -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_CONFIGURATION_ERROR" class="hiddenlink" target="rightframe">MMS_ERROR_CONFIGURATION_ERROR</A>
+</nobr><br>
+<!-- Field MMS_ERROR_HTTP_FAILURE -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_HTTP_FAILURE" class="hiddenlink" target="rightframe">MMS_ERROR_HTTP_FAILURE</A>
+</nobr><br>
+<!-- Field MMS_ERROR_INVALID_APN -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_INVALID_APN" class="hiddenlink" target="rightframe">MMS_ERROR_INVALID_APN</A>
+</nobr><br>
+<!-- Field MMS_ERROR_IO_ERROR -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_IO_ERROR" class="hiddenlink" target="rightframe">MMS_ERROR_IO_ERROR</A>
+</nobr><br>
+<!-- Field MMS_ERROR_RETRY -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_RETRY" class="hiddenlink" target="rightframe">MMS_ERROR_RETRY</A>
+</nobr><br>
+<!-- Field MMS_ERROR_UNABLE_CONNECT_MMS -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_UNABLE_CONNECT_MMS" class="hiddenlink" target="rightframe">MMS_ERROR_UNABLE_CONNECT_MMS</A>
+</nobr><br>
+<!-- Field MMS_ERROR_UNSPECIFIED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_UNSPECIFIED" class="hiddenlink" target="rightframe">MMS_ERROR_UNSPECIFIED</A>
+</nobr><br>
+<!-- Field MODE_DEFAULT -->
+<nobr><A HREF="android.app.AppOpsManager.html#android.app.AppOpsManager.MODE_DEFAULT" class="hiddenlink" target="rightframe">MODE_DEFAULT</A>
+</nobr><br>
+<!-- Field MODE_IN -->
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.MODE_IN" class="hiddenlink" target="rightframe">MODE_IN</A>
+</nobr><br>
+<!-- Field MODE_OUT -->
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.MODE_OUT" class="hiddenlink" target="rightframe">MODE_OUT</A>
+</nobr><br>
+<!-- Field move -->
+<nobr><A HREF="android.R.transition.html#android.R.transition.move" class="hiddenlink" target="rightframe">move</A>
+</nobr><br>
+<!-- Method moveToFront -->
+<nobr><A HREF="android.app.ActivityManager.AppTask.html#android.app.ActivityManager.AppTask.moveToFront_added()" class="hiddenlink" target="rightframe"><b>moveToFront</b>
+()</A></nobr><br>
+<!-- Field multiArch -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.multiArch" class="hiddenlink" target="rightframe">multiArch</A>
+</nobr><br>
+<!-- Field NAME_RAW_CONTACT_ID -->
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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="#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.ContactsContract.ContactsColumns.html#android.provider.ContactsContract.ContactsColumns.NAME_RAW_CONTACT_ID" class="hiddenlink" target="rightframe">NAME_RAW_CONTACT_ID</A>
+</nobr><br>
+<!-- Field NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME" class="hiddenlink" target="rightframe">NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME</A>
+</nobr><br>
+<!-- Field navigationBarBackground -->
+<nobr><A HREF="android.R.id.html#android.R.id.navigationBarBackground" class="hiddenlink" target="rightframe">navigationBarBackground</A>
+</nobr><br>
+<!-- Field navigationContentDescription -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.navigationContentDescription" class="hiddenlink" target="rightframe">navigationContentDescription</A>
+</nobr><br>
+<!-- Field navigationIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.navigationIcon" class="hiddenlink" target="rightframe">navigationIcon</A>
+</nobr><br>
+<!-- Field NET_CAPABILITY_NOT_VPN -->
+<nobr><A HREF="android.net.NetworkCapabilities.html#android.net.NetworkCapabilities.NET_CAPABILITY_NOT_VPN" class="hiddenlink" target="rightframe">NET_CAPABILITY_NOT_VPN</A>
+</nobr><br>
+<!-- Field NET_CAPABILITY_TRUSTED -->
+<nobr><A HREF="android.net.NetworkCapabilities.html#android.net.NetworkCapabilities.NET_CAPABILITY_TRUSTED" class="hiddenlink" target="rightframe">NET_CAPABILITY_TRUSTED</A>
+</nobr><br>
+<!-- Field NETWORK_TYPE_ANY -->
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.NETWORK_TYPE_ANY" class="hiddenlink" target="rightframe">NETWORK_TYPE_ANY</A>
+</nobr><br>
+<!-- Field NETWORK_TYPE_NONE -->
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.NETWORK_TYPE_NONE" class="hiddenlink" target="rightframe">NETWORK_TYPE_NONE</A>
+</nobr><br>
+<!-- Field NETWORK_TYPE_UNMETERED -->
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.NETWORK_TYPE_UNMETERED" class="hiddenlink" target="rightframe">NETWORK_TYPE_UNMETERED</A>
+</nobr><br>
+<!-- Constructor NotificationListenerService.Ranking -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.Ranking.html#android.service.notification.NotificationListenerService.Ranking.ctor_added()" class="hiddenlink" target="rightframe"><b>NotificationListenerService.Ranking</b>
+()</A></nobr>&nbsp;constructor<br>
+<!-- Method notifyChannelRetuned -->
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyChannelRetuned_added(android.net.Uri)" class="hiddenlink" target="rightframe"><b>notifyChannelRetuned</b>
+(<code>Uri</code>)</A></nobr><br>
+<!-- Method notifyContentAllowed -->
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyContentAllowed_added()" class="hiddenlink" target="rightframe"><b>notifyContentAllowed</b>
+()</A></nobr><br>
+<!-- Method notifyContentBlocked -->
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyContentBlocked_added(android.media.tv.TvContentRating)" class="hiddenlink" target="rightframe"><b>notifyContentBlocked</b>
+(<code>TvContentRating</code>)</A></nobr><br>
+<!-- Method notifyTracksChanged -->
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyTracksChanged_added(java.util.List<android.media.tv.TvTrackInfo>)" class="hiddenlink" target="rightframe"><b>notifyTracksChanged</b>
+(<code>List&lt;TvTrackInfo&gt;</code>)</A></nobr><br>
+<!-- Method notifyTrackSelected -->
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyTrackSelected_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>notifyTrackSelected</b>
+(<code>int, String</code>)</A></nobr><br>
+<!-- Method notifyVideoAvailable -->
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyVideoAvailable_added()" class="hiddenlink" target="rightframe"><b>notifyVideoAvailable</b>
+()</A></nobr><br>
+<!-- Method notifyVideoUnavailable -->
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyVideoUnavailable_added(int)" class="hiddenlink" target="rightframe"><b>notifyVideoUnavailable</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Field numbersBackgroundColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.numbersBackgroundColor" class="hiddenlink" target="rightframe">numbersBackgroundColor</A>
+</nobr><br>
+<!-- Field numbersSelectorColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.numbersSelectorColor" class="hiddenlink" target="rightframe">numbersSelectorColor</A>
+</nobr><br>
+<!-- Field numbersTextColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.numbersTextColor" class="hiddenlink" target="rightframe">numbersTextColor</A>
+</nobr><br>
+<!-- Method onApplyWindowInsets -->
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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="#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.service.wallpaper.WallpaperService.Engine.html#android.service.wallpaper.WallpaperService.Engine.onApplyWindowInsets_added(android.view.WindowInsets)" class="hiddenlink" target="rightframe"><b>onApplyWindowInsets</b>
+(<code>WindowInsets</code>)</A></nobr><br>
+<!-- Method onAudioInfoChanged -->
+<nobr><A HREF="android.media.session.MediaController.Callback.html#android.media.session.MediaController.Callback.onAudioInfoChanged_added(android.media.session.MediaController.PlaybackInfo)" class="hiddenlink" target="rightframe"><b>onAudioInfoChanged</b>
+(<code>PlaybackInfo</code>)</A></nobr><br>
+<!-- Method onBatchScanResults -->
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.onBatchScanResults_added(java.util.List<android.bluetooth.le.ScanResult>)" class="hiddenlink" target="rightframe"><b>onBatchScanResults</b>
+(<code>List&lt;ScanResult&gt;</code>)</A></nobr><br>
+<!-- Method onCommand -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onCommand_added(java.lang.String, android.os.Bundle, android.os.ResultReceiver)" class="hiddenlink" target="rightframe"><b>onCommand</b>
+(<code>String, Bundle, ResultReceiver</code>)</A></nobr><br>
+<!-- Method onCustomAction -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onCustomAction_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>onCustomAction</b>
+(<code>String, Bundle</code>)</A></nobr><br>
+<!-- Method onEnterAnimationComplete -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onEnterAnimationComplete_added()" class="hiddenlink" target="rightframe"><b>onEnterAnimationComplete</b>
+()</A></nobr><br>
+<!-- Method onError -->
+<i>onError</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_added(java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, int</code>)</b>&nbsp;in&nbsp;android.speech.tts.UtteranceProgressListener
+</A></nobr><br>
+<!-- Method onError -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.speech.tts.UtteranceProgressListener
+</A></nobr><br>
+<!-- Method onExtrasChanged -->
+<nobr><A HREF="android.media.session.MediaController.Callback.html#android.media.session.MediaController.Callback.onExtrasChanged_added(android.os.Bundle)" class="hiddenlink" target="rightframe"><b>onExtrasChanged</b>
+(<code>Bundle</code>)</A></nobr><br>
+<!-- Method onFastForward -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onFastForward_added()" class="hiddenlink" target="rightframe"><b>onFastForward</b>
+()</A></nobr><br>
+<!-- Method onGetDefaultVoiceNameFor -->
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onGetDefaultVoiceNameFor_added(java.lang.String, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>onGetDefaultVoiceNameFor</b>
+(<code>String, String, String</code>)</A></nobr><br>
+<!-- Method onGetVoices -->
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onGetVoices_added()" class="hiddenlink" target="rightframe"><b>onGetVoices</b>
+()</A></nobr><br>
+<!-- Method onInterruptionFilterChanged -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onInterruptionFilterChanged_added(int)" class="hiddenlink" target="rightframe"><b>onInterruptionFilterChanged</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method onIsValidVoiceName -->
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onIsValidVoiceName_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>onIsValidVoiceName</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method onListenerHintsChanged -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onListenerHintsChanged_added(int)" class="hiddenlink" target="rightframe"><b>onListenerHintsChanged</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method onLoadVoice -->
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onLoadVoice_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>onLoadVoice</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method onLockTaskModeEntering -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.onLockTaskModeEntering_added(android.content.Context, android.content.Intent, java.lang.String)" class="hiddenlink" target="rightframe"><b>onLockTaskModeEntering</b>
+(<code>Context, Intent, String</code>)</A></nobr><br>
+<!-- Method onLockTaskModeExiting -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.onLockTaskModeExiting_added(android.content.Context, android.content.Intent)" class="hiddenlink" target="rightframe"><b>onLockTaskModeExiting</b>
+(<code>Context, Intent</code>)</A></nobr><br>
+<!-- Method onMtuChanged -->
+<nobr><A HREF="android.bluetooth.BluetoothGattCallback.html#android.bluetooth.BluetoothGattCallback.onMtuChanged_added(android.bluetooth.BluetoothGatt, int, int)" class="hiddenlink" target="rightframe"><b>onMtuChanged</b>
+(<code>BluetoothGatt, int, int</code>)</A></nobr><br>
+<!-- Method onNestedPreFling -->
+<i>onNestedPreFling</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedPreFling_added(android.view.View, float, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, float, float</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+<!-- Method onNestedPreFling -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedPreFling_added(android.view.View, float, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, float, float</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<!-- Method onNotificationSent -->
+<nobr><A HREF="android.bluetooth.BluetoothGattServerCallback.html#android.bluetooth.BluetoothGattServerCallback.onNotificationSent_added(android.bluetooth.BluetoothDevice, int)" class="hiddenlink" target="rightframe"><b>onNotificationSent</b>
+(<code>BluetoothDevice, int</code>)</A></nobr><br>
+<!-- Method onPause -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onPause_added()" class="hiddenlink" target="rightframe"><b>onPause</b>
+()</A></nobr><br>
+<!-- Method onPlay -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onPlay_added()" class="hiddenlink" target="rightframe"><b>onPlay</b>
+()</A></nobr><br>
+<!-- Method onPlayFromMediaId -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onPlayFromMediaId_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>onPlayFromMediaId</b>
+(<code>String, Bundle</code>)</A></nobr><br>
+<!-- Method onPlayFromSearch -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onPlayFromSearch_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>onPlayFromSearch</b>
+(<code>String, Bundle</code>)</A></nobr><br>
+<!-- Method onQueueChanged -->
+<nobr><A HREF="android.media.session.MediaController.Callback.html#android.media.session.MediaController.Callback.onQueueChanged_added(java.util.List<android.media.session.MediaSession.QueueItem>)" class="hiddenlink" target="rightframe"><b>onQueueChanged</b>
+(<code>List&lt;QueueItem&gt;</code>)</A></nobr><br>
+<!-- Method onQueueTitleChanged -->
+<nobr><A HREF="android.media.session.MediaController.Callback.html#android.media.session.MediaController.Callback.onQueueTitleChanged_added(java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>onQueueTitleChanged</b>
+(<code>CharSequence</code>)</A></nobr><br>
+<!-- Method onReady -->
+<nobr><A HREF="android.service.voice.VoiceInteractionService.html#android.service.voice.VoiceInteractionService.onReady_added()" class="hiddenlink" target="rightframe"><b>onReady</b>
+()</A></nobr><br>
+<!-- Method onRestoreFinished -->
+<nobr><A HREF="android.app.backup.BackupAgent.html#android.app.backup.BackupAgent.onRestoreFinished_added()" class="hiddenlink" target="rightframe"><b>onRestoreFinished</b>
+()</A></nobr><br>
+<!-- Method onRewind -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onRewind_added()" class="hiddenlink" target="rightframe"><b>onRewind</b>
+()</A></nobr><br>
+<!-- Method onScanResult -->
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.onScanResult_added(int, android.bluetooth.le.ScanResult)" class="hiddenlink" target="rightframe"><b>onScanResult</b>
+(<code>int, ScanResult</code>)</A></nobr><br>
+<!-- Method onSeekTo -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onSeekTo_added(long)" class="hiddenlink" target="rightframe"><b>onSeekTo</b>
+(<code>long</code>)</A></nobr><br>
+<!-- Method onSelectTrack -->
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.onSelectTrack_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>onSelectTrack</b>
+(<code>int, String</code>)</A></nobr><br>
+<!-- Method onSessionDestroyed -->
+<nobr><A HREF="android.media.session.MediaController.Callback.html#android.media.session.MediaController.Callback.onSessionDestroyed_added()" class="hiddenlink" target="rightframe"><b>onSessionDestroyed</b>
+()</A></nobr><br>
+<!-- Method onSetCaptionEnabled -->
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.onSetCaptionEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>onSetCaptionEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method onSetRating -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onSetRating_added(android.media.Rating)" class="hiddenlink" target="rightframe"><b>onSetRating</b>
+(<code>Rating</code>)</A></nobr><br>
+<!-- Method onShowFileChooser -->
+<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onShowFileChooser_added(android.webkit.WebView, android.webkit.ValueCallback<android.net.Uri[]>, android.webkit.WebChromeClient.FileChooserParams)" class="hiddenlink" target="rightframe"><b>onShowFileChooser</b>
+(<code>WebView, ValueCallback&lt;Uri[]&gt;, FileChooserParams</code>)</A></nobr><br>
+<!-- Method onShutdown -->
+<nobr><A HREF="android.service.voice.VoiceInteractionService.html#android.service.voice.VoiceInteractionService.onShutdown_added()" class="hiddenlink" target="rightframe"><b>onShutdown</b>
+()</A></nobr><br>
+<!-- Method onSkipToNext -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onSkipToNext_added()" class="hiddenlink" target="rightframe"><b>onSkipToNext</b>
+()</A></nobr><br>
+<!-- Method onSkipToPrevious -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onSkipToPrevious_added()" class="hiddenlink" target="rightframe"><b>onSkipToPrevious</b>
+()</A></nobr><br>
+<!-- Method onSkipToQueueItem -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onSkipToQueueItem_added(long)" class="hiddenlink" target="rightframe"><b>onSkipToQueueItem</b>
+(<code>long</code>)</A></nobr><br>
+<!-- Method onStartFailure -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.onStartFailure_added(int)" class="hiddenlink" target="rightframe"><b>onStartFailure</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method onStartSuccess -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.onStartSuccess_added(android.bluetooth.le.AdvertiseSettings)" class="hiddenlink" target="rightframe"><b>onStartSuccess</b>
+(<code>AdvertiseSettings</code>)</A></nobr><br>
+<!-- Method onStop -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onStop_added()" class="hiddenlink" target="rightframe"><b>onStop</b>
+()</A></nobr><br>
+<!-- Method onSurfaceChanged -->
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.onSurfaceChanged_added(int, int, int)" class="hiddenlink" target="rightframe"><b>onSurfaceChanged</b>
+(<code>int, int, int</code>)</A></nobr><br>
+<!-- Method onUnblockContent -->
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.onUnblockContent_added(android.media.tv.TvContentRating)" class="hiddenlink" target="rightframe"><b>onUnblockContent</b>
+(<code>TvContentRating</code>)</A></nobr><br>
+<!-- Method onVisibleBehindCanceled -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onVisibleBehindCanceled_added()" class="hiddenlink" target="rightframe"><b>onVisibleBehindCanceled</b>
+()</A></nobr><br>
+<!-- Method onWakeUp -->
+<nobr><A HREF="android.service.dreams.DreamService.html#android.service.dreams.DreamService.onWakeUp_added()" class="hiddenlink" target="rightframe"><b>onWakeUp</b>
+()</A></nobr><br>
+<!-- Method openConnection -->
+<nobr><A HREF="android.net.Network.html#android.net.Network.openConnection_added(java.net.URL)" class="hiddenlink" target="rightframe"><b>openConnection</b>
+(<code>URL</code>)</A></nobr><br>
+<!-- Field OPSTR_GET_USAGE_STATS -->
+<nobr><A HREF="android.app.AppOpsManager.html#android.app.AppOpsManager.OPSTR_GET_USAGE_STATS" class="hiddenlink" target="rightframe">OPSTR_GET_USAGE_STATS</A>
+</nobr><br>
+<!-- Field outlineProvider -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.outlineProvider" class="hiddenlink" target="rightframe">outlineProvider</A>
+</nobr><br>
+<!-- Field overlapAnchor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.overlapAnchor" class="hiddenlink" target="rightframe">overlapAnchor</A>
+</nobr><br>
+<!-- Class PackageInstaller -->
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#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#PackageInstaller" class="hiddenlink" target="rightframe"><b>PackageInstaller</b></A><br>
+<!-- Class PackageInstaller.Session -->
+<A HREF="pkg_android.content.pm.html#PackageInstaller.Session" class="hiddenlink" target="rightframe"><b>PackageInstaller.Session</b></A><br>
+<!-- Class PackageInstaller.SessionCallback -->
+<A HREF="pkg_android.content.pm.html#PackageInstaller.SessionCallback" class="hiddenlink" target="rightframe"><b>PackageInstaller.SessionCallback</b></A><br>
+<!-- Class PackageInstaller.SessionInfo -->
+<A HREF="pkg_android.content.pm.html#PackageInstaller.SessionInfo" class="hiddenlink" target="rightframe"><b>PackageInstaller.SessionInfo</b></A><br>
+<!-- Class PackageInstaller.SessionParams -->
+<A HREF="pkg_android.content.pm.html#PackageInstaller.SessionParams" class="hiddenlink" target="rightframe"><b>PackageInstaller.SessionParams</b></A><br>
+<!-- Method parseRational -->
+<nobr><A HREF="android.util.Rational.html#android.util.Rational.parseRational_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>parseRational</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method parseSize -->
+<nobr><A HREF="android.util.Size.html#android.util.Size.parseSize_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>parseSize</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method parseSizeF -->
+<nobr><A HREF="android.util.SizeF.html#android.util.SizeF.parseSizeF_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>parseSizeF</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Field PASSWORD_QUALITY_NUMERIC_COMPLEX -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.PASSWORD_QUALITY_NUMERIC_COMPLEX" class="hiddenlink" target="rightframe">PASSWORD_QUALITY_NUMERIC_COMPLEX</A>
+</nobr><br>
+<!-- Class PathMotion -->
+<A HREF="pkg_android.transition.html#PathMotion" class="hiddenlink" target="rightframe"><b>PathMotion</b></A><br>
+<!-- Field patternPathData -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.patternPathData" class="hiddenlink" target="rightframe">patternPathData</A>
+</nobr><br>
+<!-- Class PatternPathMotion -->
+<A HREF="pkg_android.transition.html#PatternPathMotion" class="hiddenlink" target="rightframe"><b>PatternPathMotion</b></A><br>
+<!-- Constructor PermissionRequest -->
+<nobr><A HREF="android.webkit.PermissionRequest.html#android.webkit.PermissionRequest.ctor_added()" class="hiddenlink" target="rightframe"><b>PermissionRequest</b>
+()</A></nobr>&nbsp;constructor<br>
+<!-- Field PERSIST_ACROSS_REBOOTS -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.PERSIST_ACROSS_REBOOTS" class="hiddenlink" target="rightframe">PERSIST_ACROSS_REBOOTS</A>
+</nobr><br>
+<!-- Field PERSIST_NEVER -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.PERSIST_NEVER" class="hiddenlink" target="rightframe">PERSIST_NEVER</A>
+</nobr><br>
+<!-- Field PERSIST_ROOT_ONLY -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.PERSIST_ROOT_ONLY" class="hiddenlink" target="rightframe">PERSIST_ROOT_ONLY</A>
+</nobr><br>
+<!-- Field persistableMode -->
+<i>persistableMode</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.persistableMode" class="hiddenlink" target="rightframe">android.R.attr</A>
+</nobr><br>
+<!-- Field persistableMode -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.persistableMode" class="hiddenlink" target="rightframe">android.content.pm.ActivityInfo</A>
+</nobr><br>
+<!-- Class Phaser -->
+<A HREF="pkg_java.util.concurrent.html#Phaser" class="hiddenlink" target="rightframe"><b>Phaser</b></A><br>
+<!-- Field PHONE_ACCOUNT_COMPONENT_NAME -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.PHONE_ACCOUNT_COMPONENT_NAME" class="hiddenlink" target="rightframe">PHONE_ACCOUNT_COMPONENT_NAME</A>
+</nobr><br>
+<!-- Field PHONE_ACCOUNT_ID -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.PHONE_ACCOUNT_ID" class="hiddenlink" target="rightframe">PHONE_ACCOUNT_ID</A>
+</nobr><br>
+<!-- Field PINNED -->
+<nobr><A HREF="android.provider.ContactsContract.ContactOptionsColumns.html#android.provider.ContactsContract.ContactOptionsColumns.PINNED" class="hiddenlink" target="rightframe">PINNED</A>
+</nobr><br>
+<!-- Class PlaybackState.Builder -->
+<A HREF="pkg_android.media.session.html#PlaybackState.Builder" class="hiddenlink" target="rightframe"><b>PlaybackState.Builder</b></A><br>
+<!-- Class PlaybackState.CustomAction -->
+<A HREF="pkg_android.media.session.html#PlaybackState.CustomAction" class="hiddenlink" target="rightframe"><b>PlaybackState.CustomAction</b></A><br>
+<!-- Class PlaybackState.CustomAction.Builder -->
+<A HREF="pkg_android.media.session.html#PlaybackState.CustomAction.Builder" class="hiddenlink" target="rightframe"><b>PlaybackState.CustomAction.Builder</b></A><br>
+<!-- Method playEarcon -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playEarcon_added(java.lang.String, int, android.os.Bundle, java.lang.String)" class="hiddenlink" target="rightframe"><b>playEarcon</b>
+(<code>String, int, Bundle, String</code>)</A></nobr><br>
+<!-- Method playFromMediaId -->
+<nobr><A HREF="android.media.session.MediaController.TransportControls.html#android.media.session.MediaController.TransportControls.playFromMediaId_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>playFromMediaId</b>
+(<code>String, Bundle</code>)</A></nobr><br>
+<!-- Method playFromSearch -->
+<nobr><A HREF="android.media.session.MediaController.TransportControls.html#android.media.session.MediaController.TransportControls.playFromSearch_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>playFromSearch</b>
+(<code>String, Bundle</code>)</A></nobr><br>
+<!-- Method playSilentUtterance -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playSilentUtterance_added(long, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>playSilentUtterance</b>
+(<code>long, int, String</code>)</A></nobr><br>
+<!-- Field popupElevation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.popupElevation" class="hiddenlink" target="rightframe">popupElevation</A>
+</nobr><br>
+<!-- Field popupTheme -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.popupTheme" class="hiddenlink" target="rightframe">popupTheme</A>
+</nobr><br>
+<!-- Field PR_GET_DUMPABLE -->
+<nobr><A HREF="android.system.OsConstants.html#android.system.OsConstants.PR_GET_DUMPABLE" class="hiddenlink" target="rightframe">PR_GET_DUMPABLE</A>
+</nobr><br>
+<!-- Field PR_SET_DUMPABLE -->
+<nobr><A HREF="android.system.OsConstants.html#android.system.OsConstants.PR_SET_DUMPABLE" class="hiddenlink" target="rightframe">PR_SET_DUMPABLE</A>
+</nobr><br>
+<!-- Field preferredRefreshRate -->
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.preferredRefreshRate" class="hiddenlink" target="rightframe">preferredRefreshRate</A>
+</nobr><br>
+<!-- Field PRIVATE_USE_EXTENSION -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.PRIVATE_USE_EXTENSION" class="hiddenlink" target="rightframe">PRIVATE_USE_EXTENSION</A>
+</nobr><br>
+<!-- Field progressBackgroundTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressBackgroundTint" class="hiddenlink" target="rightframe">progressBackgroundTint</A>
+</nobr><br>
+<!-- Field progressBackgroundTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressBackgroundTintMode" class="hiddenlink" target="rightframe">progressBackgroundTintMode</A>
+</nobr><br>
+<!-- Field progressTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressTint" class="hiddenlink" target="rightframe">progressTint</A>
+</nobr><br>
+<!-- Field progressTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressTintMode" class="hiddenlink" target="rightframe">progressTintMode</A>
+</nobr><br>
+<!-- Field propertyXName -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.propertyXName" class="hiddenlink" target="rightframe">propertyXName</A>
+</nobr><br>
+<!-- Field propertyYName -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.propertyYName" class="hiddenlink" target="rightframe">propertyYName</A>
+</nobr><br>
+<!-- Field PROTECTION_FLAG_APPOP -->
+<nobr><A HREF="android.content.pm.PermissionInfo.html#android.content.pm.PermissionInfo.PROTECTION_FLAG_APPOP" class="hiddenlink" target="rightframe">PROTECTION_FLAG_APPOP</A>
+</nobr><br>
+<!-- Field PROXIMITY_SCREEN_OFF_WAKE_LOCK -->
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.PROXIMITY_SCREEN_OFF_WAKE_LOCK" class="hiddenlink" target="rightframe">PROXIMITY_SCREEN_OFF_WAKE_LOCK</A>
+</nobr><br>
+<!-- Class PskKeyManager -->
+<A HREF="pkg_android.net.html#PskKeyManager" class="hiddenlink" target="rightframe"><b>PskKeyManager</b></A><br>
+<!-- Method putSize -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putSize_added(java.lang.String, android.util.Size)" class="hiddenlink" target="rightframe"><b>putSize</b>
+(<code>String, Size</code>)</A></nobr><br>
+<!-- Method putSizeF -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putSizeF_added(java.lang.String, android.util.SizeF)" class="hiddenlink" target="rightframe"><b>putSizeF</b>
+(<code>String, SizeF</code>)</A></nobr><br>
+<!-- Method putText -->
+<nobr><A HREF="android.media.MediaMetadata.Builder.html#android.media.MediaMetadata.Builder.putText_added(java.lang.String, java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>putText</b>
+(<code>String, CharSequence</code>)</A></nobr><br>
+<!-- Field QUALITY_2160P -->
+<A NAME="Q"></A>
+<br><font size="+2">Q</font>&nbsp;
+<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="#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.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_2160P" class="hiddenlink" target="rightframe">QUALITY_2160P</A>
+</nobr><br>
+<!-- Field QUALITY_HIGH_SPEED_1080P -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_1080P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_1080P</A>
+</nobr><br>
+<!-- Field QUALITY_HIGH_SPEED_2160P -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_2160P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_2160P</A>
+</nobr><br>
+<!-- Field QUALITY_HIGH_SPEED_480P -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_480P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_480P</A>
+</nobr><br>
+<!-- Field QUALITY_HIGH_SPEED_720P -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_720P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_720P</A>
+</nobr><br>
+<!-- Field QUALITY_HIGH_SPEED_HIGH -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_HIGH" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_HIGH</A>
+</nobr><br>
+<!-- Field QUALITY_HIGH_SPEED_LOW -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_LOW" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_LOW</A>
+</nobr><br>
+<!-- Field QUALITY_TIME_LAPSE_2160P -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_TIME_LAPSE_2160P" class="hiddenlink" target="rightframe">QUALITY_TIME_LAPSE_2160P</A>
+</nobr><br>
+<!-- Field queryBackground -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.queryBackground" class="hiddenlink" target="rightframe">queryBackground</A>
+</nobr><br>
+<!-- Field RAW10 -->
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#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.ImageFormat.html#android.graphics.ImageFormat.RAW10" class="hiddenlink" target="rightframe">RAW10</A>
+</nobr><br>
+<!-- Field READ_VOICEMAIL -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.READ_VOICEMAIL" class="hiddenlink" target="rightframe">READ_VOICEMAIL</A>
+</nobr><br>
+<!-- Method readSize -->
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readSize_added()" class="hiddenlink" target="rightframe"><b>readSize</b>
+()</A></nobr><br>
+<!-- Method readSizeF -->
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readSizeF_added()" class="hiddenlink" target="rightframe"><b>readSizeF</b>
+()</A></nobr><br>
+<!-- Field recognitionService -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.recognitionService" class="hiddenlink" target="rightframe">recognitionService</A>
+</nobr><br>
+<!-- Class RecursiveAction -->
+<A HREF="pkg_java.util.concurrent.html#RecursiveAction" class="hiddenlink" target="rightframe"><b>RecursiveAction</b></A><br>
+<!-- Class RecursiveTask -->
+<A HREF="pkg_java.util.concurrent.html#RecursiveTask" class="hiddenlink" target="rightframe"><b>RecursiveTask</b></A><br>
+<!-- Method registerAvailabilityCallback -->
+<nobr><A HREF="android.hardware.camera2.CameraManager.html#android.hardware.camera2.CameraManager.registerAvailabilityCallback_added(android.hardware.camera2.CameraManager.AvailabilityCallback, android.os.Handler)" class="hiddenlink" target="rightframe"><b>registerAvailabilityCallback</b>
+(<code>AvailabilityCallback, Handler</code>)</A></nobr><br>
+<!-- Method registerCallback -->
+<i>registerCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.registerCallback_added(android.content.pm.LauncherApps.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback</code>)</b>&nbsp;in&nbsp;android.content.pm.LauncherApps
+</A></nobr><br>
+<!-- Method registerCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.registerCallback_added(android.content.pm.LauncherApps.Callback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback, Handler</code>)</b>&nbsp;in&nbsp;android.content.pm.LauncherApps
+</A></nobr><br>
+<!-- Method registerCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.registerCallback_added(android.media.session.MediaController.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback</code>)</b>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+<!-- Method registerCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.registerCallback_added(android.media.session.MediaController.Callback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback, Handler</code>)</b>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+<!-- Method registerCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.registerCallback_added(android.media.tv.TvInputManager.TvInputCallback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>TvInputCallback, Handler</code>)</b>&nbsp;in&nbsp;android.media.tv.TvInputManager
+</A></nobr><br>
+<!-- Field REGULAR_CODECS -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.REGULAR_CODECS" class="hiddenlink" target="rightframe">REGULAR_CODECS</A>
+</nobr><br>
+<!-- Method release -->
+<nobr><A HREF="android.os.PowerManager.WakeLock.html#android.os.PowerManager.WakeLock.release_added(int)" class="hiddenlink" target="rightframe"><b>release</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Field RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY -->
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY" class="hiddenlink" target="rightframe">RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY</A>
+</nobr><br>
+<!-- Method releaseInstance -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.releaseInstance_added()" class="hiddenlink" target="rightframe"><b>releaseInstance</b>
+()</A></nobr><br>
+<!-- Field relinquishTaskIdentity -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.relinquishTaskIdentity" class="hiddenlink" target="rightframe">relinquishTaskIdentity</A>
+</nobr><br>
+<!-- Method removeAllCookies -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeAllCookies_added(android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>removeAllCookies</b>
+(<code>ValueCallback&lt;Boolean&gt;</code>)</A></nobr><br>
+<!-- Method removeCrossProfileWidgetProvider -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.removeCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>removeCrossProfileWidgetProvider</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method removeDefaultNetworkActiveListener -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.removeDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><b>removeDefaultNetworkActiveListener</b>
+(<code>OnNetworkActiveListener</code>)</A></nobr><br>
+<!-- Method removeOnActiveSessionsChangedListener -->
+<nobr><A HREF="android.media.session.MediaSessionManager.html#android.media.session.MediaSessionManager.removeOnActiveSessionsChangedListener_added(android.media.session.MediaSessionManager.OnActiveSessionsChangedListener)" class="hiddenlink" target="rightframe"><b>removeOnActiveSessionsChangedListener</b>
+(<code>OnActiveSessionsChangedListener</code>)</A></nobr><br>
+<!-- Method removeSessionCookies -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeSessionCookies_added(android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>removeSessionCookies</b>
+(<code>ValueCallback&lt;Boolean&gt;</code>)</A></nobr><br>
+<!-- Method renameAccount -->
+<nobr><A HREF="android.accounts.AccountManager.html#android.accounts.AccountManager.renameAccount_added(android.accounts.Account, java.lang.String, android.accounts.AccountManagerCallback<android.accounts.Account>, android.os.Handler)" class="hiddenlink" target="rightframe"><b>renameAccount</b>
+(<code>Account, String, AccountManagerCallback&lt;Account&gt;, Handler</code>)</A></nobr><br>
+<!-- Field reparent -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.reparent" class="hiddenlink" target="rightframe">reparent</A>
+</nobr><br>
+<!-- Field reparentWithOverlay -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.reparentWithOverlay" class="hiddenlink" target="rightframe">reparentWithOverlay</A>
+</nobr><br>
+<!-- Method replaceSystemWindowInsets -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.replaceSystemWindowInsets_added(android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>replaceSystemWindowInsets</b>
+(<code>Rect</code>)</A></nobr><br>
+<!-- Field REPORTING_MODE_CONTINUOUS -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_CONTINUOUS" class="hiddenlink" target="rightframe">REPORTING_MODE_CONTINUOUS</A>
+</nobr><br>
+<!-- Field REPORTING_MODE_ON_CHANGE -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_ON_CHANGE" class="hiddenlink" target="rightframe">REPORTING_MODE_ON_CHANGE</A>
+</nobr><br>
+<!-- Field REPORTING_MODE_ONE_SHOT -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_ONE_SHOT" class="hiddenlink" target="rightframe">REPORTING_MODE_ONE_SHOT</A>
+</nobr><br>
+<!-- Field REPORTING_MODE_SPECIAL_TRIGGER -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_SPECIAL_TRIGGER" class="hiddenlink" target="rightframe">REPORTING_MODE_SPECIAL_TRIGGER</A>
+</nobr><br>
+<!-- Field REQUEST_AVAILABLE_CAPABILITIES_BACKWARD_COMPATIBLE -->
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_BACKWARD_COMPATIBLE" class="hiddenlink" target="rightframe">REQUEST_AVAILABLE_CAPABILITIES_BACKWARD_COMPATIBLE</A>
+</nobr><br>
+<!-- Field REQUEST_AVAILABLE_CAPABILITIES_RAW -->
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_RAW" class="hiddenlink" target="rightframe">REQUEST_AVAILABLE_CAPABILITIES_RAW</A>
+</nobr><br>
+<!-- Method requestConnectionPriority -->
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.requestConnectionPriority_added(int)" class="hiddenlink" target="rightframe"><b>requestConnectionPriority</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method requestCursorUpdates -->
+<i>requestCursorUpdates</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.BaseInputConnection.html#android.view.inputmethod.BaseInputConnection.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.BaseInputConnection
+</A></nobr><br>
+<!-- Method requestCursorUpdates -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.InputConnection
+</A></nobr><br>
+<!-- Method requestCursorUpdates -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.InputConnectionWrapper.html#android.view.inputmethod.InputConnectionWrapper.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.InputConnectionWrapper
+</A></nobr><br>
+<!-- Method requestInterruptionFilter -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.requestInterruptionFilter_added(int)" class="hiddenlink" target="rightframe"><b>requestInterruptionFilter</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method requestListenerHints -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.requestListenerHints_added(int)" class="hiddenlink" target="rightframe"><b>requestListenerHints</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method requestMtu -->
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.requestMtu_added(int)" class="hiddenlink" target="rightframe"><b>requestMtu</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method requestUnbufferedDispatch -->
+<nobr><A HREF="android.view.View.html#android.view.View.requestUnbufferedDispatch_added(android.view.MotionEvent)" class="hiddenlink" target="rightframe"><b>requestUnbufferedDispatch</b>
+(<code>MotionEvent</code>)</A></nobr><br>
+<!-- Method requestVisibleBehind -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.requestVisibleBehind_added(boolean)" class="hiddenlink" target="rightframe"><b>requestVisibleBehind</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Field RES_PACKAGE -->
+<i>RES_PACKAGE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.DataColumns.html#android.provider.ContactsContract.DataColumns.RES_PACKAGE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.DataColumns</A>
+</nobr><br>
+<!-- Field RES_PACKAGE -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.GroupsColumns.html#android.provider.ContactsContract.GroupsColumns.RES_PACKAGE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.GroupsColumns</A>
+</nobr><br>
+<!-- Method reset -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.reset_added()" class="hiddenlink" target="rightframe"><b>reset</b>
+()</A></nobr><br>
+<!-- Method resize -->
+<nobr><A HREF="android.hardware.display.VirtualDisplay.html#android.hardware.display.VirtualDisplay.resize_added(int, int, int)" class="hiddenlink" target="rightframe"><b>resize</b>
+(<code>int, int, int</code>)</A></nobr><br>
+<!-- Field RESOURCE_PROTECTED_MEDIA_ID -->
+<nobr><A HREF="android.webkit.PermissionRequest.html#android.webkit.PermissionRequest.RESOURCE_PROTECTED_MEDIA_ID" class="hiddenlink" target="rightframe">RESOURCE_PROTECTED_MEDIA_ID</A>
+</nobr><br>
+<!-- Constructor RestrictionEntry -->
+<i>RestrictionEntry</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.ctor_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>RestrictionEntry</b>
+(<code>int, String</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor RestrictionEntry -->
+&nbsp;&nbsp;<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.ctor_added(java.lang.String, int)" class="hiddenlink" target="rightframe"><b>RestrictionEntry</b>
+(<code>String, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field RESTRICTIONS_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.RESTRICTIONS_SERVICE" class="hiddenlink" target="rightframe">RESTRICTIONS_SERVICE</A>
+</nobr><br>
+<!-- Class RestrictionsManager -->
+<A HREF="pkg_android.content.html#RestrictionsManager" class="hiddenlink" target="rightframe"><b>RestrictionsManager</b></A><br>
+<!-- Field restrictionType -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.restrictionType" class="hiddenlink" target="rightframe">restrictionType</A>
+</nobr><br>
+<!-- Field resumeWhilePausing -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.resumeWhilePausing" class="hiddenlink" target="rightframe">resumeWhilePausing</A>
+</nobr><br>
+<!-- Field SCAN_FAILED_FEATURE_UNSUPPORTED -->
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#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.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.SCAN_FAILED_FEATURE_UNSUPPORTED" class="hiddenlink" target="rightframe">SCAN_FAILED_FEATURE_UNSUPPORTED</A>
+</nobr><br>
+<!-- Field SCAN_FAILED_INTERNAL_ERROR -->
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.SCAN_FAILED_INTERNAL_ERROR" class="hiddenlink" target="rightframe">SCAN_FAILED_INTERNAL_ERROR</A>
+</nobr><br>
+<!-- Constructor ScanResult -->
+<nobr><A HREF="android.bluetooth.le.ScanResult.html#android.bluetooth.le.ScanResult.ctor_added(android.bluetooth.BluetoothDevice, android.bluetooth.le.ScanRecord, int, long)" class="hiddenlink" target="rightframe"><b>ScanResult</b>
+(<code>BluetoothDevice, ScanRecord, int, long</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor ScriptC -->
+<i>ScriptC</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptC.html#android.renderscript.ScriptC.ctor_added(android.renderscript.RenderScript, java.lang.String, byte[], byte[])" class="hiddenlink" target="rightframe"><b>ScriptC</b>
+(<code>RenderScript, String, byte[], byte[]</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor ScriptC -->
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptC.html#android.renderscript.ScriptC.ctor_added(long, android.renderscript.RenderScript)" class="hiddenlink" target="rightframe"><b>ScriptC</b>
+(<code>long, RenderScript</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field searchIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.searchIcon" class="hiddenlink" target="rightframe">searchIcon</A>
+</nobr><br>
+<!-- Field searchViewStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.searchViewStyle" class="hiddenlink" target="rightframe">searchViewStyle</A>
+</nobr><br>
+<!-- Field secondaryProgressTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.secondaryProgressTint" class="hiddenlink" target="rightframe">secondaryProgressTint</A>
+</nobr><br>
+<!-- Field secondaryProgressTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.secondaryProgressTintMode" class="hiddenlink" target="rightframe">secondaryProgressTintMode</A>
+</nobr><br>
+<!-- Method selectTrack -->
+<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.selectTrack_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>selectTrack</b>
+(<code>int, String</code>)</A></nobr><br>
+<!-- Method sendCommand -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.sendCommand_added(java.lang.String, android.os.Bundle, android.os.ResultReceiver)" class="hiddenlink" target="rightframe"><b>sendCommand</b>
+(<code>String, Bundle, ResultReceiver</code>)</A></nobr><br>
+<!-- Method sendCustomAction -->
+<i>sendCustomAction</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.TransportControls.html#android.media.session.MediaController.TransportControls.sendCustomAction_added(android.media.session.PlaybackState.CustomAction, android.os.Bundle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CustomAction, Bundle</code>)</b>&nbsp;in&nbsp;android.media.session.MediaController.TransportControls
+</A></nobr><br>
+<!-- Method sendCustomAction -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.TransportControls.html#android.media.session.MediaController.TransportControls.sendCustomAction_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, Bundle</code>)</b>&nbsp;in&nbsp;android.media.session.MediaController.TransportControls
+</A></nobr><br>
+<!-- Method sendEnvelopeWithStatus -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.sendEnvelopeWithStatus_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>sendEnvelopeWithStatus</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Field sendingUid -->
+<nobr><A HREF="android.os.Message.html#android.os.Message.sendingUid" class="hiddenlink" target="rightframe">sendingUid</A>
+</nobr><br>
+<!-- Method sendMultimediaMessage -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.sendMultimediaMessage_added(android.content.Context, android.net.Uri, java.lang.String, android.os.Bundle, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>sendMultimediaMessage</b>
+(<code>Context, Uri, String, Bundle, PendingIntent</code>)</A></nobr><br>
+<!-- Field SENSOR_INFO_TIMESTAMP_SOURCE -->
+<nobr><A HREF="android.hardware.camera2.CameraCharacteristics.html#android.hardware.camera2.CameraCharacteristics.SENSOR_INFO_TIMESTAMP_SOURCE" class="hiddenlink" target="rightframe">SENSOR_INFO_TIMESTAMP_SOURCE</A>
+</nobr><br>
+<!-- Field SENSOR_INFO_TIMESTAMP_SOURCE_REALTIME -->
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.SENSOR_INFO_TIMESTAMP_SOURCE_REALTIME" class="hiddenlink" target="rightframe">SENSOR_INFO_TIMESTAMP_SOURCE_REALTIME</A>
+</nobr><br>
+<!-- Field SENSOR_INFO_TIMESTAMP_SOURCE_UNKNOWN -->
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.SENSOR_INFO_TIMESTAMP_SOURCE_UNKNOWN" class="hiddenlink" target="rightframe">SENSOR_INFO_TIMESTAMP_SOURCE_UNKNOWN</A>
+</nobr><br>
+<!-- Field SENSOR_NOISE_PROFILE -->
+<nobr><A HREF="android.hardware.camera2.CaptureResult.html#android.hardware.camera2.CaptureResult.SENSOR_NOISE_PROFILE" class="hiddenlink" target="rightframe">SENSOR_NOISE_PROFILE</A>
+</nobr><br>
+<!-- Field SENSOR_ROLLING_SHUTTER_SKEW -->
+<nobr><A HREF="android.hardware.camera2.CaptureResult.html#android.hardware.camera2.CaptureResult.SENSOR_ROLLING_SHUTTER_SKEW" class="hiddenlink" target="rightframe">SENSOR_ROLLING_SHUTTER_SKEW</A>
+</nobr><br>
+<!-- Field SENSOR_STATUS_NO_CONTACT -->
+<nobr><A HREF="android.hardware.SensorManager.html#android.hardware.SensorManager.SENSOR_STATUS_NO_CONTACT" class="hiddenlink" target="rightframe">SENSOR_STATUS_NO_CONTACT</A>
+</nobr><br>
+<!-- Method setAcceptThirdPartyCookies -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.setAcceptThirdPartyCookies_added(android.webkit.WebView, boolean)" class="hiddenlink" target="rightframe"><b>setAcceptThirdPartyCookies</b>
+(<code>WebView, boolean</code>)</A></nobr><br>
+<!-- Method setAlarmClock -->
+<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.setAlarmClock_added(android.app.AlarmManager.AlarmClockInfo, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>setAlarmClock</b>
+(<code>AlarmClockInfo, PendingIntent</code>)</A></nobr><br>
+<!-- Method setAllowEnterTransitionOverlap -->
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setAllowEnterTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe"><b>setAllowEnterTransitionOverlap</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setAllowReturnTransitionOverlap -->
+<i>setAllowReturnTransitionOverlap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setAllowReturnTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setAllowReturnTransitionOverlap -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setAllowReturnTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setAlpha -->
+<nobr><A HREF="android.graphics.Outline.html#android.graphics.Outline.setAlpha_added(float)" class="hiddenlink" target="rightframe"><b>setAlpha</b>
+(<code>float</code>)</A></nobr><br>
+<!-- Method setApplicationHidden -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setApplicationHidden_added(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setApplicationHidden</b>
+(<code>ComponentName, String, boolean</code>)</A></nobr><br>
+<!-- Method setAudioAttributes -->
+<i>setAudioAttributes</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AudioAttributes</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+<!-- Method setAudioAttributes -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AudioAttributes</code>)</b>&nbsp;in&nbsp;android.media.Ringtone
+</A></nobr><br>
+<!-- Method setAudioAttributes -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AudioAttributes</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method setAutoTimeRequired -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setAutoTimeRequired_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setAutoTimeRequired</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<!-- Method setBackgroundTintList -->
+<nobr><A HREF="android.view.View.html#android.view.View.setBackgroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setBackgroundTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setBackgroundTintMode -->
+<nobr><A HREF="android.view.View.html#android.view.View.setBackgroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setBackgroundTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setBlocking -->
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.setBlocking_added(boolean)" class="hiddenlink" target="rightframe"><b>setBlocking</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setButtonTintList -->
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.setButtonTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setButtonTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setButtonTintMode -->
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.setButtonTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setButtonTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setCallback -->
+<i>setCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.setCallback_added(android.media.MediaCodec.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback</code>)</b>&nbsp;in&nbsp;android.media.MediaCodec
+</A></nobr><br>
+<!-- Method setCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setCallback_added(android.media.session.MediaSession.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback</code>)</b>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+<!-- Method setCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setCallback_added(android.media.session.MediaSession.Callback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback, Handler</code>)</b>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+<!-- Method setCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.setCallback_added(android.media.tv.TvView.TvInputCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>TvInputCallback</code>)</b>&nbsp;in&nbsp;android.media.tv.TvView
+</A></nobr><br>
+<!-- Method setCaptionEnabled -->
+<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.setCaptionEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setCaptionEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setCheckMarkTintList -->
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.setCheckMarkTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setCheckMarkTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setCheckMarkTintMode -->
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.setCheckMarkTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setCheckMarkTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setColor -->
+<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.setColor_added(int)" class="hiddenlink" target="rightframe"><b>setColor</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setConnectable -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.Builder.html#android.bluetooth.le.AdvertiseSettings.Builder.setConnectable_added(boolean)" class="hiddenlink" target="rightframe"><b>setConnectable</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setCookie -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.setCookie_added(java.lang.String, java.lang.String, android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>setCookie</b>
+(<code>String, String, ValueCallback&lt;Boolean&gt;</code>)</A></nobr><br>
+<!-- Method setCropRect -->
+<nobr><A HREF="android.media.Image.html#android.media.Image.setCropRect_added(android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>setCropRect</b>
+(<code>Rect</code>)</A></nobr><br>
+<!-- Method setCrossProfileCallerIdDisabled -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setCrossProfileCallerIdDisabled_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setCrossProfileCallerIdDisabled</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<!-- Method setDescription -->
+<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.setDescription_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setDescription</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setDeviceAddress -->
+<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setDeviceAddress_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setDeviceAddress</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setDeviceName -->
+<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setDeviceName_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setDeviceName</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setElevation -->
+<i>setElevation</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setElevation_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+<!-- Method setElevation -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.PopupWindow.html#android.widget.PopupWindow.setElevation_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.widget.PopupWindow
+</A></nobr><br>
+<!-- Method setEnterSharedElementCallback -->
+<i>setEnterSharedElementCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setEnterSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+<!-- Method setEnterSharedElementCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setEnterSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setEnterTransition -->
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setEnterTransition</b>
+(<code>Transition</code>)</A></nobr><br>
+<!-- Method setError -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.setError_added(java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>setError</b>
+(<code>CharSequence</code>)</A></nobr><br>
+<!-- Method setExcludeFromRecents -->
+<nobr><A HREF="android.app.ActivityManager.AppTask.html#android.app.ActivityManager.AppTask.setExcludeFromRecents_added(boolean)" class="hiddenlink" target="rightframe"><b>setExcludeFromRecents</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setExitSharedElementCallback -->
+<i>setExitSharedElementCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setExitSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+<!-- Method setExitSharedElementCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setExitSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setExitTransition -->
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setExitTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setExitTransition</b>
+(<code>Transition</code>)</A></nobr><br>
+<!-- Method setExtras -->
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setExtras_added(android.os.Bundle)" class="hiddenlink" target="rightframe"><b>setExtras</b>
+(<code>Bundle</code>)</A></nobr><br>
+<!-- Method setFeatureEnabled -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.setFeatureEnabled_added(java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setFeatureEnabled</b>
+(<code>String, boolean</code>)</A></nobr><br>
+<!-- Method setFirstDayOfWeek -->
+<nobr><A HREF="android.widget.DatePicker.html#android.widget.DatePicker.setFirstDayOfWeek_added(int)" class="hiddenlink" target="rightframe"><b>setFirstDayOfWeek</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setFontFeatureSettings -->
+<i>setFontFeatureSettings</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setFontFeatureSettings_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+<!-- Method setFontFeatureSettings -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setFontFeatureSettings_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<!-- Method setForegroundTintList -->
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.setForegroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setForegroundTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setForegroundTintMode -->
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.setForegroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setForegroundTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setImageTintList -->
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.setImageTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setImageTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setImageTintMode -->
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.setImageTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setImageTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setIndeterminateTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setIndeterminateTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setIndeterminateTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setIndeterminateTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setIndeterminateTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setIndeterminateTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setIntValue -->
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.setIntValue_added(int)" class="hiddenlink" target="rightframe"><b>setIntValue</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setLetterSpacing -->
+<i>setLetterSpacing</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setLetterSpacing_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+<!-- Method setLetterSpacing -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setLetterSpacing_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<!-- Method setLocation -->
+<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.setLocation_added(android.location.Location)" class="hiddenlink" target="rightframe"><b>setLocation</b>
+(<code>Location</code>)</A></nobr><br>
+<!-- Method setLockTaskPackages -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setLockTaskPackages_added(android.content.ComponentName, java.lang.String[])" class="hiddenlink" target="rightframe"><b>setLockTaskPackages</b>
+(<code>ComponentName, String[]</code>)</A></nobr><br>
+<!-- Method setMasterVolumeMuted -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setMasterVolumeMuted_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setMasterVolumeMuted</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<!-- Method setMaxTextLength -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.setMaxTextLength_added(int)" class="hiddenlink" target="rightframe"><b>setMaxTextLength</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setMediaButtonReceiver -->
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setMediaButtonReceiver_added(android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>setMediaButtonReceiver</b>
+(<code>PendingIntent</code>)</A></nobr><br>
+<!-- Method setMediaController -->
+<i>setMediaController</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setMediaController_added(android.media.session.MediaController)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>MediaController</code>)</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+<!-- Method setMediaController -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setMediaController_added(android.media.session.MediaController)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>MediaController</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setMode -->
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.setMode_added(int)" class="hiddenlink" target="rightframe"><b>setMode</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setNetworkSpecifier -->
+<nobr><A HREF="android.net.NetworkRequest.Builder.html#android.net.NetworkRequest.Builder.setNetworkSpecifier_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setNetworkSpecifier</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setOrientation -->
+<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.setOrientation_added(int)" class="hiddenlink" target="rightframe"><b>setOrientation</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setOutlineProvider -->
+<nobr><A HREF="android.view.View.html#android.view.View.setOutlineProvider_added(android.view.ViewOutlineProvider)" class="hiddenlink" target="rightframe"><b>setOutlineProvider</b>
+(<code>ViewOutlineProvider</code>)</A></nobr><br>
+<!-- Method setPathMotion -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.setPathMotion_added(android.transition.PathMotion)" class="hiddenlink" target="rightframe"><b>setPathMotion</b>
+(<code>PathMotion</code>)</A></nobr><br>
+<!-- Method setPermittedAccessibilityServices -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setPermittedAccessibilityServices_added(android.content.ComponentName, java.util.List<java.lang.String>)" class="hiddenlink" target="rightframe"><b>setPermittedAccessibilityServices</b>
+(<code>ComponentName, List&lt;String&gt;</code>)</A></nobr><br>
+<!-- Method setPermittedInputMethods -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setPermittedInputMethods_added(android.content.ComponentName, java.util.List<java.lang.String>)" class="hiddenlink" target="rightframe"><b>setPermittedInputMethods</b>
+(<code>ComponentName, List&lt;String&gt;</code>)</A></nobr><br>
+<!-- Method setPersisted -->
+<nobr><A HREF="android.app.job.JobInfo.Builder.html#android.app.job.JobInfo.Builder.setPersisted_added(boolean)" class="hiddenlink" target="rightframe"><b>setPersisted</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setPopupTheme -->
+<i>setPopupTheme</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.ActionMenuView.html#android.widget.ActionMenuView.setPopupTheme_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.widget.ActionMenuView
+</A></nobr><br>
+<!-- Method setPopupTheme -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.setPopupTheme_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.widget.Toolbar
+</A></nobr><br>
+<!-- Method setProfileName -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setProfileName_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>setProfileName</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method setProgressBackgroundTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressBackgroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setProgressBackgroundTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setProgressBackgroundTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressBackgroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setProgressBackgroundTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setProgressTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setProgressTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setProgressTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setProgressTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setQueue -->
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setQueue_added(java.util.List<android.media.session.MediaSession.QueueItem>)" class="hiddenlink" target="rightframe"><b>setQueue</b>
+(<code>List&lt;QueueItem&gt;</code>)</A></nobr><br>
+<!-- Method setQueueTitle -->
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setQueueTitle_added(java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>setQueueTitle</b>
+(<code>CharSequence</code>)</A></nobr><br>
+<!-- Method setRecommendedGlobalProxy -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setRecommendedGlobalProxy_added(android.content.ComponentName, android.net.ProxyInfo)" class="hiddenlink" target="rightframe"><b>setRecommendedGlobalProxy</b>
+(<code>ComponentName, ProxyInfo</code>)</A></nobr><br>
+<!-- Method setReenterTransition -->
+<i>setReenterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setReenterTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setRemoveOnCancelPolicy -->
+<nobr><A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html#java.util.concurrent.ScheduledThreadPoolExecutor.setRemoveOnCancelPolicy_added(boolean)" class="hiddenlink" target="rightframe"><b>setRemoveOnCancelPolicy</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setReparent -->
+<nobr><A HREF="android.transition.ChangeTransform.html#android.transition.ChangeTransform.setReparent_added(boolean)" class="hiddenlink" target="rightframe"><b>setReparent</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setReparentWithOverlay -->
+<nobr><A HREF="android.transition.ChangeTransform.html#android.transition.ChangeTransform.setReparentWithOverlay_added(boolean)" class="hiddenlink" target="rightframe"><b>setReparentWithOverlay</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setReportDelay -->
+<nobr><A HREF="android.bluetooth.le.ScanSettings.Builder.html#android.bluetooth.le.ScanSettings.Builder.setReportDelay_added(long)" class="hiddenlink" target="rightframe"><b>setReportDelay</b>
+(<code>long</code>)</A></nobr><br>
+<!-- Method setRequiredNetworkType -->
+<nobr><A HREF="android.app.job.JobInfo.Builder.html#android.app.job.JobInfo.Builder.setRequiredNetworkType_added(int)" class="hiddenlink" target="rightframe"><b>setRequiredNetworkType</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setResponseHeaders -->
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.setResponseHeaders_added(java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe"><b>setResponseHeaders</b>
+(<code>Map&lt;String, String&gt;</code>)</A></nobr><br>
+<!-- Method setRestrictionsProvider -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setRestrictionsProvider_added(android.content.ComponentName, android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>setRestrictionsProvider</b>
+(<code>ComponentName, ComponentName</code>)</A></nobr><br>
+<!-- Method setReturnTransition -->
+<i>setReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setReturnTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setScreenCaptureDisabled -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setScreenCaptureDisabled_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setScreenCaptureDisabled</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<!-- Method setSecondaryProgressTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setSecondaryProgressTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setSecondaryProgressTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setSecondaryProgressTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setSecondaryProgressTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setSecondaryProgressTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setServiceData -->
+<i>setServiceData</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setServiceData_added(android.os.ParcelUuid, byte[])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ParcelUuid, byte[]</code>)</b>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter.Builder
+</A></nobr><br>
+<!-- Method setServiceData -->
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setServiceData_added(android.os.ParcelUuid, byte[], byte[])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ParcelUuid, byte[], byte[]</code>)</b>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter.Builder
+</A></nobr><br>
+<!-- Method setSessionActivity -->
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setSessionActivity_added(android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>setSessionActivity</b>
+(<code>PendingIntent</code>)</A></nobr><br>
+<!-- Method setSharedElementEnterTransition -->
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setSharedElementEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setSharedElementEnterTransition</b>
+(<code>Transition</code>)</A></nobr><br>
+<!-- Method setSharedElementReenterTransition -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setSharedElementReenterTransition</b>
+(<code>Transition</code>)</A></nobr><br>
+<!-- Method setSharedElementReturnTransition -->
+<i>setSharedElementReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setSharedElementReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setSharedElementReturnTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setSharedElementsUseOverlay -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementsUseOverlay_added(boolean)" class="hiddenlink" target="rightframe"><b>setSharedElementsUseOverlay</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setShowSoftInputOnFocus -->
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setShowSoftInputOnFocus_added(boolean)" class="hiddenlink" target="rightframe"><b>setShowSoftInputOnFocus</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setShowText -->
+<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.setShowText_added(boolean)" class="hiddenlink" target="rightframe"><b>setShowText</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setSound -->
+<i>setSound</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_added(android.net.Uri, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Uri, AudioAttributes</code>)</b>&nbsp;in&nbsp;android.app.Notification.Builder
+</A></nobr><br>
+<!-- Method setSound -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_added(android.net.Uri, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Uri, int</code>)</b>&nbsp;in&nbsp;android.app.Notification.Builder
+</A></nobr><br>
+<!-- Method setStatusCodeAndReasonPhrase -->
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.setStatusCodeAndReasonPhrase_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>setStatusCodeAndReasonPhrase</b>
+(<code>int, String</code>)</A></nobr><br>
+<!-- Method setSubtitleTextColor -->
+<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.setSubtitleTextColor_added(int)" class="hiddenlink" target="rightframe"><b>setSubtitleTextColor</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setThumbnail -->
+<i>setThumbnail</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.setThumbnail_added(android.graphics.Bitmap)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Bitmap</code>)</b>&nbsp;in&nbsp;android.hardware.camera2.DngCreator
+</A></nobr><br>
+<!-- Method setThumbnail -->
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.setThumbnail_added(android.media.Image)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Image</code>)</b>&nbsp;in&nbsp;android.hardware.camera2.DngCreator
+</A></nobr><br>
+<!-- Method setThumbTintList -->
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.setThumbTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setThumbTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setThumbTintMode -->
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.setThumbTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setThumbTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setTimeout -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.Builder.html#android.bluetooth.le.AdvertiseSettings.Builder.setTimeout_added(int)" class="hiddenlink" target="rightframe"><b>setTimeout</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setTintList -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setTintMode -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setTitleTextColor -->
+<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.setTitleTextColor_added(int)" class="hiddenlink" target="rightframe"><b>setTitleTextColor</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setTouchscreenBlocksFocus -->
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.setTouchscreenBlocksFocus_added(boolean)" class="hiddenlink" target="rightframe"><b>setTouchscreenBlocksFocus</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setTransitionBackgroundFadeDuration -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.setTransitionBackgroundFadeDuration_added(long)" class="hiddenlink" target="rightframe"><b>setTransitionBackgroundFadeDuration</b>
+(<code>long</code>)</A></nobr><br>
+<!-- Method setTransitionName -->
+<nobr><A HREF="android.view.View.html#android.view.View.setTransitionName_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setTransitionName</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setUninstallBlocked -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setUninstallBlocked_added(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setUninstallBlocked</b>
+(<code>ComponentName, String, boolean</code>)</A></nobr><br>
+<!-- Method setVideoURI -->
+<nobr><A HREF="android.widget.VideoView.html#android.widget.VideoView.setVideoURI_added(android.net.Uri, java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe"><b>setVideoURI</b>
+(<code>Uri, Map&lt;String, String&gt;</code>)</A></nobr><br>
+<!-- Method setVoice -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.setVoice_added(android.speech.tts.Voice)" class="hiddenlink" target="rightframe"><b>setVoice</b>
+(<code>Voice</code>)</A></nobr><br>
+<!-- Method setVolumeTo -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.setVolumeTo_added(int, int)" class="hiddenlink" target="rightframe"><b>setVolumeTo</b>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Class SharedElementCallback -->
+<A HREF="pkg_android.app.html#SharedElementCallback" class="hiddenlink" target="rightframe"><b>SharedElementCallback</b></A><br>
+<!-- Method shouldInterceptRequest -->
+<i>shouldInterceptRequest</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, android.webkit.WebResourceRequest)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>WebView, WebResourceRequest</code>)</b>&nbsp;in&nbsp;android.webkit.WebViewClient
+</A></nobr><br>
+<!-- Method shouldInterceptRequest -->
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>WebView, String</code>)</b>&nbsp;in&nbsp;android.webkit.WebViewClient
+</A></nobr><br>
+<!-- Field showText -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.showText" class="hiddenlink" target="rightframe">showText</A>
+</nobr><br>
+<!-- Field SKIP_FIRST_USE_HINTS -->
+<nobr><A HREF="android.provider.Settings.Secure.html#android.provider.Settings.Secure.SKIP_FIRST_USE_HINTS" class="hiddenlink" target="rightframe">SKIP_FIRST_USE_HINTS</A>
+</nobr><br>
+<!-- Method skipToQueueItem -->
+<nobr><A HREF="android.media.session.MediaController.TransportControls.html#android.media.session.MediaController.TransportControls.skipToQueueItem_added(long)" class="hiddenlink" target="rightframe"><b>skipToQueueItem</b>
+(<code>long</code>)</A></nobr><br>
+<!-- Constructor Slide -->
+<nobr><A HREF="android.transition.Slide.html#android.transition.Slide.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Slide</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field slide_bottom -->
+<nobr><A HREF="android.R.transition.html#android.R.transition.slide_bottom" class="hiddenlink" target="rightframe">slide_bottom</A>
+</nobr><br>
+<!-- Field slide_left -->
+<nobr><A HREF="android.R.transition.html#android.R.transition.slide_left" class="hiddenlink" target="rightframe">slide_left</A>
+</nobr><br>
+<!-- Field slide_right -->
+<nobr><A HREF="android.R.transition.html#android.R.transition.slide_right" class="hiddenlink" target="rightframe">slide_right</A>
+</nobr><br>
+<!-- Field slide_top -->
+<nobr><A HREF="android.R.transition.html#android.R.transition.slide_top" class="hiddenlink" target="rightframe">slide_top</A>
+</nobr><br>
+<!-- Class SoundPool.Builder -->
+<A HREF="pkg_android.media.html#SoundPool.Builder" class="hiddenlink" target="rightframe"><b>SoundPool.Builder</b></A><br>
+<!-- Method speak -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.speak_added(java.lang.CharSequence, int, android.os.Bundle, java.lang.String)" class="hiddenlink" target="rightframe"><b>speak</b>
+(<code>CharSequence, int, Bundle, String</code>)</A></nobr><br>
+<!-- Method spec -->
+<i>spec</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, android.widget.GridLayout.Alignment, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, Alignment, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+<!-- Method spec -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+<!-- Method spec -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, int, android.widget.GridLayout.Alignment, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, Alignment, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+<!-- Method spec -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, int, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+<!-- Field splitNames -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.splitNames" class="hiddenlink" target="rightframe">splitNames</A>
+</nobr><br>
+<!-- Field splitPublicSourceDirs -->
+<i>splitPublicSourceDirs</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.splitPublicSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.ApplicationInfo</A>
+</nobr><br>
+<!-- Field splitPublicSourceDirs -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.InstrumentationInfo.html#android.content.pm.InstrumentationInfo.splitPublicSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.InstrumentationInfo</A>
+</nobr><br>
+<!-- Field splitSourceDirs -->
+<i>splitSourceDirs</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.splitSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.ApplicationInfo</A>
+</nobr><br>
+<!-- Field splitSourceDirs -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.InstrumentationInfo.html#android.content.pm.InstrumentationInfo.splitSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.InstrumentationInfo</A>
+</nobr><br>
+<!-- Field spotShadowAlpha -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.spotShadowAlpha" class="hiddenlink" target="rightframe">spotShadowAlpha</A>
+</nobr><br>
+<!-- Method startActivity -->
+<nobr><A HREF="android.app.ActivityManager.AppTask.html#android.app.ActivityManager.AppTask.startActivity_added(android.content.Context, android.content.Intent, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>startActivity</b>
+(<code>Context, Intent, Bundle</code>)</A></nobr><br>
+<!-- Method startAdvertising -->
+<i>startAdvertising</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.BluetoothLeAdvertiser.html#android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising_added(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AdvertiseSettings, AdvertiseData, AdvertiseCallback</code>)</b>&nbsp;in&nbsp;android.bluetooth.le.BluetoothLeAdvertiser
+</A></nobr><br>
+<!-- Method startAdvertising -->
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.BluetoothLeAdvertiser.html#android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising_added(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AdvertiseSettings, AdvertiseData, AdvertiseData, AdvertiseCallback</code>)</b>&nbsp;in&nbsp;android.bluetooth.le.BluetoothLeAdvertiser
+</A></nobr><br>
+<!-- Method startAppDetailsActivity -->
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.startAppDetailsActivity_added(android.content.ComponentName, android.os.UserHandle, android.graphics.Rect, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>startAppDetailsActivity</b>
+(<code>ComponentName, UserHandle, Rect, Bundle</code>)</A></nobr><br>
+<!-- Method startAppWidgetConfigureActivityForResult -->
+<nobr><A HREF="android.appwidget.AppWidgetHost.html#android.appwidget.AppWidgetHost.startAppWidgetConfigureActivityForResult_added(android.app.Activity, int, int, int, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>startAppWidgetConfigureActivityForResult</b>
+(<code>Activity, int, int, int, Bundle</code>)</A></nobr><br>
+<!-- Method startMainActivity -->
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.startMainActivity_added(android.content.ComponentName, android.os.UserHandle, android.graphics.Rect, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>startMainActivity</b>
+(<code>ComponentName, UserHandle, Rect, Bundle</code>)</A></nobr><br>
+<!-- Method startScan -->
+<nobr><A HREF="android.bluetooth.le.BluetoothLeScanner.html#android.bluetooth.le.BluetoothLeScanner.startScan_added(android.bluetooth.le.ScanCallback)" class="hiddenlink" target="rightframe"><b>startScan</b>
+(<code>ScanCallback</code>)</A></nobr><br>
+<!-- Method startWps -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.startWps_added(android.net.wifi.WpsInfo, android.net.wifi.WifiManager.WpsCallback)" class="hiddenlink" target="rightframe"><b>startWps</b>
+(<code>WpsInfo, WpsCallback</code>)</A></nobr><br>
+<!-- Field STATE_CONNECTING -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.STATE_CONNECTING" class="hiddenlink" target="rightframe">STATE_CONNECTING</A>
+</nobr><br>
+<!-- Field STATE_DOZE -->
+<nobr><A HREF="android.view.Display.html#android.view.Display.STATE_DOZE" class="hiddenlink" target="rightframe">STATE_DOZE</A>
+</nobr><br>
+<!-- Field STATE_DOZE_SUSPEND -->
+<nobr><A HREF="android.view.Display.html#android.view.Display.STATE_DOZE_SUSPEND" class="hiddenlink" target="rightframe">STATE_DOZE_SUSPEND</A>
+</nobr><br>
+<!-- Field STATE_SKIPPING_TO_QUEUE_ITEM -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.STATE_SKIPPING_TO_QUEUE_ITEM" class="hiddenlink" target="rightframe">STATE_SKIPPING_TO_QUEUE_ITEM</A>
+</nobr><br>
+<!-- Field STATUS_BAR_BACKGROUND_TRANSITION_NAME -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.STATUS_BAR_BACKGROUND_TRANSITION_NAME" class="hiddenlink" target="rightframe">STATUS_BAR_BACKGROUND_TRANSITION_NAME</A>
+</nobr><br>
+<!-- Field statusBarBackground -->
+<nobr><A HREF="android.R.id.html#android.R.id.statusBarBackground" class="hiddenlink" target="rightframe">statusBarBackground</A>
+</nobr><br>
+<!-- Field STOPPED -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.STOPPED" class="hiddenlink" target="rightframe">STOPPED</A>
+</nobr><br>
+<!-- Field strokeAlpha -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeAlpha" class="hiddenlink" target="rightframe">strokeAlpha</A>
+</nobr><br>
+<!-- Field strokeColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeColor" class="hiddenlink" target="rightframe">strokeColor</A>
+</nobr><br>
+<!-- Field strokeMiterLimit -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeMiterLimit" class="hiddenlink" target="rightframe">strokeMiterLimit</A>
+</nobr><br>
+<!-- Field submitBackground -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.submitBackground" class="hiddenlink" target="rightframe">submitBackground</A>
+</nobr><br>
+<!-- Field suggestionRowLayout -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.suggestionRowLayout" class="hiddenlink" target="rightframe">suggestionRowLayout</A>
+</nobr><br>
+<!-- Field SUPPORTED_32_BIT_ABIS -->
+<nobr><A HREF="android.os.Build.html#android.os.Build.SUPPORTED_32_BIT_ABIS" class="hiddenlink" target="rightframe">SUPPORTED_32_BIT_ABIS</A>
+</nobr><br>
+<!-- Field SUPPORTED_64_BIT_ABIS -->
+<nobr><A HREF="android.os.Build.html#android.os.Build.SUPPORTED_64_BIT_ABIS" class="hiddenlink" target="rightframe">SUPPORTED_64_BIT_ABIS</A>
+</nobr><br>
+<!-- Field SUPPORTED_ABIS -->
+<nobr><A HREF="android.os.Build.html#android.os.Build.SUPPORTED_ABIS" class="hiddenlink" target="rightframe">SUPPORTED_ABIS</A>
+</nobr><br>
+<!-- Method supportsAidPrefixRegistration -->
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.supportsAidPrefixRegistration_added()" class="hiddenlink" target="rightframe"><b>supportsAidPrefixRegistration</b>
+()</A></nobr><br>
+<!-- Method switchUser -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.switchUser_added(android.content.ComponentName, android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>switchUser</b>
+(<code>ComponentName, UserHandle</code>)</A></nobr><br>
+<!-- Constructor SynthesisRequest -->
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.ctor_added(java.lang.CharSequence, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>SynthesisRequest</b>
+(<code>CharSequence, Bundle</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Method synthesizeToFile -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.synthesizeToFile_added(java.lang.CharSequence, android.os.Bundle, java.io.File, java.lang.String)" class="hiddenlink" target="rightframe"><b>synthesizeToFile</b>
+(<code>CharSequence, Bundle, File, String</code>)</A></nobr><br>
+<!-- Field targetName -->
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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="#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.targetName" class="hiddenlink" target="rightframe">targetName</A>
+</nobr><br>
+<!-- Field taskDescription -->
+<nobr><A HREF="android.app.ActivityManager.RecentTaskInfo.html#android.app.ActivityManager.RecentTaskInfo.taskDescription" class="hiddenlink" target="rightframe">taskDescription</A>
+</nobr><br>
+<!-- Field TELECOM_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.TELECOM_SERVICE" class="hiddenlink" target="rightframe">TELECOM_SERVICE</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Notification -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Notification_Emphasis -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Emphasis" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Emphasis</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Notification_Info -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Info" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Info</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Notification_Line2 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Line2" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Line2</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Notification_Time -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Time" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Time</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Notification_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Title</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_Toolbar_Subtitle -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_Toolbar_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_Toolbar_Subtitle</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_Toolbar_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_Toolbar_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_Toolbar_Title</A>
+</nobr><br>
+<!-- Constructor TextInfo -->
+<nobr><A HREF="android.view.textservice.TextInfo.html#android.view.textservice.TextInfo.ctor_added(java.lang.CharSequence, int, int, int, int)" class="hiddenlink" target="rightframe"><b>TextInfo</b>
+(<code>CharSequence, int, int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field Theme_Material_Dialog_Alert -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_Alert" class="hiddenlink" target="rightframe">Theme_Material_Dialog_Alert</A>
+</nobr><br>
+<!-- Field Theme_Material_Dialog_Presentation -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_Presentation" class="hiddenlink" target="rightframe">Theme_Material_Dialog_Presentation</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Dialog_Alert -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_Alert" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_Alert</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Dialog_Presentation -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_Presentation" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_Presentation</A>
+</nobr><br>
+<!-- Class ThreadLocalRandom -->
+<A HREF="pkg_java.util.concurrent.html#ThreadLocalRandom" class="hiddenlink" target="rightframe"><b>ThreadLocalRandom</b></A><br>
+<!-- Field thumbTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.thumbTint" class="hiddenlink" target="rightframe">thumbTint</A>
+</nobr><br>
+<!-- Field thumbTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.thumbTintMode" class="hiddenlink" target="rightframe">thumbTintMode</A>
+</nobr><br>
+<!-- Field tileModeX -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.tileModeX" class="hiddenlink" target="rightframe">tileModeX</A>
+</nobr><br>
+<!-- Field tileModeY -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.tileModeY" class="hiddenlink" target="rightframe">tileModeY</A>
+</nobr><br>
+<!-- Field timePickerDialogTheme -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.timePickerDialogTheme" class="hiddenlink" target="rightframe">timePickerDialogTheme</A>
+</nobr><br>
+<!-- Field timePickerMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.timePickerMode" class="hiddenlink" target="rightframe">timePickerMode</A>
+</nobr><br>
+<!-- Field timePickerStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.timePickerStyle" class="hiddenlink" target="rightframe">timePickerStyle</A>
+</nobr><br>
+<!-- Field TITLE_RES -->
+<nobr><A HREF="android.provider.ContactsContract.GroupsColumns.html#android.provider.ContactsContract.GroupsColumns.TITLE_RES" class="hiddenlink" target="rightframe">TITLE_RES</A>
+</nobr><br>
+<!-- Method toLanguageTag -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.toLanguageTag_added()" class="hiddenlink" target="rightframe"><b>toLanguageTag</b>
+()</A></nobr><br>
+<!-- Field toolbarStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.toolbarStyle" class="hiddenlink" target="rightframe">toolbarStyle</A>
+</nobr><br>
+<!-- Field touchscreenBlocksFocus -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.touchscreenBlocksFocus" class="hiddenlink" target="rightframe">touchscreenBlocksFocus</A>
+</nobr><br>
+<!-- Field TRANSCRIPTION -->
+<i>TRANSCRIPTION</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.TRANSCRIPTION" class="hiddenlink" target="rightframe">android.provider.CallLog.Calls</A>
+</nobr><br>
+<!-- Field TRANSCRIPTION -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.VoicemailContract.Voicemails.html#android.provider.VoicemailContract.Voicemails.TRANSCRIPTION" class="hiddenlink" target="rightframe">android.provider.VoicemailContract.Voicemails</A>
+</nobr><br>
+<!-- Class TransferQueue -->
+<A HREF="pkg_java.util.concurrent.html#TransferQueue" class="hiddenlink" target="rightframe"><b><i>TransferQueue</i></b></A><br>
+<!-- Constructor Transition -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Transition</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field transitionName -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.transitionName" class="hiddenlink" target="rightframe">transitionName</A>
+</nobr><br>
+<!-- Constructor TransitionSet -->
+<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>TransitionSet</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field transitionVisibilityMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.transitionVisibilityMode" class="hiddenlink" target="rightframe">transitionVisibilityMode</A>
+</nobr><br>
+<!-- Field translateX -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.translateX" class="hiddenlink" target="rightframe">translateX</A>
+</nobr><br>
+<!-- Field translateY -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.translateY" class="hiddenlink" target="rightframe">translateY</A>
+</nobr><br>
+<!-- Field TRANSPORT_VPN -->
+<nobr><A HREF="android.net.NetworkCapabilities.html#android.net.NetworkCapabilities.TRANSPORT_VPN" class="hiddenlink" target="rightframe">TRANSPORT_VPN</A>
+</nobr><br>
+<!-- Class TtsSpan -->
+<A HREF="pkg_android.text.style.html#TtsSpan" class="hiddenlink" target="rightframe"><b>TtsSpan</b></A><br>
+<!-- Class TtsSpan.Builder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.Builder" class="hiddenlink" target="rightframe"><b>TtsSpan.Builder</b></A><br>
+<!-- Class TtsSpan.CardinalBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.CardinalBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.CardinalBuilder</b></A><br>
+<!-- Class TtsSpan.DateBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.DateBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.DateBuilder</b></A><br>
+<!-- Class TtsSpan.DecimalBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.DecimalBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.DecimalBuilder</b></A><br>
+<!-- Class TtsSpan.DigitsBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.DigitsBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.DigitsBuilder</b></A><br>
+<!-- Class TtsSpan.ElectronicBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.ElectronicBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.ElectronicBuilder</b></A><br>
+<!-- Class TtsSpan.FractionBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.FractionBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.FractionBuilder</b></A><br>
+<!-- Class TtsSpan.MeasureBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.MeasureBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.MeasureBuilder</b></A><br>
+<!-- Class TtsSpan.MoneyBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.MoneyBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.MoneyBuilder</b></A><br>
+<!-- Class TtsSpan.OrdinalBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.OrdinalBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.OrdinalBuilder</b></A><br>
+<!-- Class TtsSpan.SemioticClassBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.SemioticClassBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.SemioticClassBuilder</b></A><br>
+<!-- Class TtsSpan.TelephoneBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.TelephoneBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.TelephoneBuilder</b></A><br>
+<!-- Class TtsSpan.TextBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.TextBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.TextBuilder</b></A><br>
+<!-- Class TtsSpan.TimeBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.TimeBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.TimeBuilder</b></A><br>
+<!-- Class TtsSpan.VerbatimBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.VerbatimBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.VerbatimBuilder</b></A><br>
+<!-- Class TvContentRating -->
+<A HREF="pkg_android.media.tv.html#TvContentRating" class="hiddenlink" target="rightframe"><b>TvContentRating</b></A><br>
+<!-- Class TvInputManager.TvInputCallback -->
+<A HREF="pkg_android.media.tv.html#TvInputManager.TvInputCallback" class="hiddenlink" target="rightframe"><b>TvInputManager.TvInputCallback</b></A><br>
+<!-- Class TvInputService.HardwareSession -->
+<A HREF="pkg_android.media.tv.html#TvInputService.HardwareSession" class="hiddenlink" target="rightframe"><b>TvInputService.HardwareSession</b></A><br>
+<!-- Class TvTrackInfo -->
+<A HREF="pkg_android.media.tv.html#TvTrackInfo" class="hiddenlink" target="rightframe"><b>TvTrackInfo</b></A><br>
+<!-- Class TvTrackInfo.Builder -->
+<A HREF="pkg_android.media.tv.html#TvTrackInfo.Builder" class="hiddenlink" target="rightframe"><b>TvTrackInfo.Builder</b></A><br>
+<!-- Class TvView.TvInputCallback -->
+<A HREF="pkg_android.media.tv.html#TvView.TvInputCallback" class="hiddenlink" target="rightframe"><b>TvView.TvInputCallback</b></A><br>
+<!-- Field TYPE_COMPONENT -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_COMPONENT" class="hiddenlink" target="rightframe">TYPE_COMPONENT</A>
+</nobr><br>
+<!-- Field TYPE_COMPOSITE -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_COMPOSITE" class="hiddenlink" target="rightframe">TYPE_COMPOSITE</A>
+</nobr><br>
+<!-- Field TYPE_DISPLAY_PORT -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_DISPLAY_PORT" class="hiddenlink" target="rightframe">TYPE_DISPLAY_PORT</A>
+</nobr><br>
+<!-- Field TYPE_DVI -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_DVI" class="hiddenlink" target="rightframe">TYPE_DVI</A>
+</nobr><br>
+<!-- Field TYPE_INTEGER -->
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.TYPE_INTEGER" class="hiddenlink" target="rightframe">TYPE_INTEGER</A>
+</nobr><br>
+<!-- Field TYPE_NTSC -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_NTSC" class="hiddenlink" target="rightframe">TYPE_NTSC</A>
+</nobr><br>
+<!-- Field TYPE_OTHER -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_OTHER" class="hiddenlink" target="rightframe">TYPE_OTHER</A>
+</nobr><br>
+<!-- Field TYPE_PAL -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_PAL" class="hiddenlink" target="rightframe">TYPE_PAL</A>
+</nobr><br>
+<!-- Field TYPE_SCART -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_SCART" class="hiddenlink" target="rightframe">TYPE_SCART</A>
+</nobr><br>
+<!-- Field TYPE_SECAM -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_SECAM" class="hiddenlink" target="rightframe">TYPE_SECAM</A>
+</nobr><br>
+<!-- Field TYPE_STRING -->
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.TYPE_STRING" class="hiddenlink" target="rightframe">TYPE_STRING</A>
+</nobr><br>
+<!-- Field TYPE_SVIDEO -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_SVIDEO" class="hiddenlink" target="rightframe">TYPE_SVIDEO</A>
+</nobr><br>
+<!-- Field TYPE_VGA -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_VGA" class="hiddenlink" target="rightframe">TYPE_VGA</A>
+</nobr><br>
+<!-- Field TYPE_VPN -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.TYPE_VPN" class="hiddenlink" target="rightframe">TYPE_VPN</A>
+</nobr><br>
+<!-- Field UNICODE_LOCALE_EXTENSION -->
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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="#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="java.util.Locale.html#java.util.Locale.UNICODE_LOCALE_EXTENSION" class="hiddenlink" target="rightframe">UNICODE_LOCALE_EXTENSION</A>
+</nobr><br>
+<!-- Method uninstallAllUserCaCerts -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.uninstallAllUserCaCerts_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>uninstallAllUserCaCerts</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method uninstallCaCert -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.uninstallCaCert_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>uninstallCaCert</b>
+(<code>ComponentName, byte[]</code>)</A></nobr><br>
+<!-- Method unregisterAvailabilityCallback -->
+<nobr><A HREF="android.hardware.camera2.CameraManager.html#android.hardware.camera2.CameraManager.unregisterAvailabilityCallback_added(android.hardware.camera2.CameraManager.AvailabilityCallback)" class="hiddenlink" target="rightframe"><b>unregisterAvailabilityCallback</b>
+(<code>AvailabilityCallback</code>)</A></nobr><br>
+<!-- Method unregisterCallback -->
+<i>unregisterCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.unregisterCallback_added(android.content.pm.LauncherApps.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback</code>)</b>&nbsp;in&nbsp;android.content.pm.LauncherApps
+</A></nobr><br>
+<!-- Method unregisterCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.unregisterCallback_added(android.media.session.MediaController.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback</code>)</b>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+<!-- Method unregisterCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.unregisterCallback_added(android.media.tv.TvInputManager.TvInputCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>TvInputCallback</code>)</b>&nbsp;in&nbsp;android.media.tv.TvInputManager
+</A></nobr><br>
+<!-- Class VectorDrawable -->
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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="#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.graphics.drawable.html#VectorDrawable" class="hiddenlink" target="rightframe"><b>VectorDrawable</b></A><br>
+<!-- Method vibrate -->
+<i>vibrate</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_added(long, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long, AudioAttributes</code>)</b>&nbsp;in&nbsp;android.os.Vibrator
+</A></nobr><br>
+<!-- Method vibrate -->
+&nbsp;&nbsp;<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_added(long[], int, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long[], int, AudioAttributes</code>)</b>&nbsp;in&nbsp;android.os.Vibrator
+</A></nobr><br>
+<!-- Field VIDEO_FORMAT_1080I -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_1080I" class="hiddenlink" target="rightframe">VIDEO_FORMAT_1080I</A>
+</nobr><br>
+<!-- Field VIDEO_FORMAT_1080P -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_1080P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_1080P</A>
+</nobr><br>
+<!-- Field VIDEO_FORMAT_2160P -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_2160P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_2160P</A>
+</nobr><br>
+<!-- Field VIDEO_FORMAT_240P -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_240P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_240P</A>
+</nobr><br>
+<!-- Field VIDEO_FORMAT_360P -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_360P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_360P</A>
+</nobr><br>
+<!-- Field VIDEO_FORMAT_4320P -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_4320P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_4320P</A>
+</nobr><br>
+<!-- Field VIDEO_FORMAT_480I -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_480I" class="hiddenlink" target="rightframe">VIDEO_FORMAT_480I</A>
+</nobr><br>
+<!-- Field VIDEO_FORMAT_480P -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_480P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_480P</A>
+</nobr><br>
+<!-- Field VIDEO_FORMAT_576I -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_576I" class="hiddenlink" target="rightframe">VIDEO_FORMAT_576I</A>
+</nobr><br>
+<!-- Field VIDEO_FORMAT_576P -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_576P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_576P</A>
+</nobr><br>
+<!-- Field VIDEO_FORMAT_720P -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_720P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_720P</A>
+</nobr><br>
+<!-- Field VIDEO_RESOLUTION_ED -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_ED" class="hiddenlink" target="rightframe">VIDEO_RESOLUTION_ED</A>
+</nobr><br>
+<!-- Field VIDEO_RESOLUTION_FHD -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_FHD" class="hiddenlink" target="rightframe">VIDEO_RESOLUTION_FHD</A>
+</nobr><br>
+<!-- Field VIDEO_RESOLUTION_HD -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_HD" class="hiddenlink" target="rightframe">VIDEO_RESOLUTION_HD</A>
+</nobr><br>
+<!-- Field VIDEO_RESOLUTION_SD -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_SD" class="hiddenlink" target="rightframe">VIDEO_RESOLUTION_SD</A>
+</nobr><br>
+<!-- Field VIDEO_RESOLUTION_UHD -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_UHD" class="hiddenlink" target="rightframe">VIDEO_RESOLUTION_UHD</A>
+</nobr><br>
+<!-- Field VIDEO_UNAVAILABLE_REASON_BUFFERING -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.VIDEO_UNAVAILABLE_REASON_BUFFERING" class="hiddenlink" target="rightframe">VIDEO_UNAVAILABLE_REASON_BUFFERING</A>
+</nobr><br>
+<!-- Field VIDEO_UNAVAILABLE_REASON_TUNING -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.VIDEO_UNAVAILABLE_REASON_TUNING" class="hiddenlink" target="rightframe">VIDEO_UNAVAILABLE_REASON_TUNING</A>
+</nobr><br>
+<!-- Field VIDEO_UNAVAILABLE_REASON_UNKNOWN -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.VIDEO_UNAVAILABLE_REASON_UNKNOWN" class="hiddenlink" target="rightframe">VIDEO_UNAVAILABLE_REASON_UNKNOWN</A>
+</nobr><br>
+<!-- Field VIDEO_UNAVAILABLE_REASON_WEAK_SIGNAL -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.VIDEO_UNAVAILABLE_REASON_WEAK_SIGNAL" class="hiddenlink" target="rightframe">VIDEO_UNAVAILABLE_REASON_WEAK_SIGNAL</A>
+</nobr><br>
+<!-- Class ViewOutlineProvider -->
+<A HREF="pkg_android.view.html#ViewOutlineProvider" class="hiddenlink" target="rightframe"><b>ViewOutlineProvider</b></A><br>
+<!-- Field VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR -->
+<nobr><A HREF="android.hardware.display.DisplayManager.html#android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR" class="hiddenlink" target="rightframe">VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR</A>
+</nobr><br>
+<!-- Class VirtualDisplay.Callback -->
+<A HREF="pkg_android.hardware.display.html#VirtualDisplay.Callback" class="hiddenlink" target="rightframe"><b>VirtualDisplay.Callback</b></A><br>
+<!-- Field VIRTUALIZATION_MODE_AUTO -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_AUTO" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_AUTO</A>
+</nobr><br>
+<!-- Field VIRTUALIZATION_MODE_BINAURAL -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_BINAURAL" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_BINAURAL</A>
+</nobr><br>
+<!-- Field VIRTUALIZATION_MODE_OFF -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_OFF" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_OFF</A>
+</nobr><br>
+<!-- Field VIRTUALIZATION_MODE_TRANSAURAL -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_TRANSAURAL" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_TRANSAURAL</A>
+</nobr><br>
+<!-- Constructor Visibility -->
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Visibility</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class Voice -->
+<A HREF="pkg_android.speech.tts.html#Voice" class="hiddenlink" target="rightframe"><b>Voice</b></A><br>
+<!-- Field voiceIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.voiceIcon" class="hiddenlink" target="rightframe">voiceIcon</A>
+</nobr><br>
+<!-- Class VolumeProvider -->
+<A HREF="pkg_android.media.html#VolumeProvider" class="hiddenlink" target="rightframe"><b>VolumeProvider</b></A><br>
+<!-- Field VORBIS -->
+<nobr><A HREF="android.media.MediaRecorder.AudioEncoder.html#android.media.MediaRecorder.AudioEncoder.VORBIS" class="hiddenlink" target="rightframe">VORBIS</A>
+</nobr><br>
+<!-- Field VP8 -->
+<nobr><A HREF="android.media.MediaRecorder.VideoEncoder.html#android.media.MediaRecorder.VideoEncoder.VP8" class="hiddenlink" target="rightframe">VP8</A>
+</nobr><br>
+<!-- Method wakeUp -->
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#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.service.dreams.DreamService.html#android.service.dreams.DreamService.wakeUp_added()" class="hiddenlink" target="rightframe"><b>wakeUp</b>
+()</A></nobr><br>
+<!-- Class WebChromeClient.FileChooserParams -->
+<A HREF="pkg_android.webkit.html#WebChromeClient.FileChooserParams" class="hiddenlink" target="rightframe"><b>WebChromeClient.FileChooserParams</b></A><br>
+<!-- Field WEBM -->
+<nobr><A HREF="android.media.MediaRecorder.OutputFormat.html#android.media.MediaRecorder.OutputFormat.WEBM" class="hiddenlink" target="rightframe">WEBM</A>
+</nobr><br>
+<!-- Class WebResourceRequest -->
+<A HREF="pkg_android.webkit.html#WebResourceRequest" class="hiddenlink" target="rightframe"><b><i>WebResourceRequest</i></b></A><br>
+<!-- Constructor WebResourceResponse -->
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.ctor_added(java.lang.String, java.lang.String, int, java.lang.String, java.util.Map<java.lang.String, java.lang.String>, java.io.InputStream)" class="hiddenlink" target="rightframe"><b>WebResourceResponse</b>
+(<code>String, String, int, String, Map&lt;String, String&gt;, InputStream</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field WIDGET_CATEGORY_SEARCHBOX -->
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX" class="hiddenlink" target="rightframe">WIDGET_CATEGORY_SEARCHBOX</A>
+</nobr><br>
+<!-- Field Widget_Material_Button_Borderless_Colored -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Borderless_Colored" class="hiddenlink" target="rightframe">Widget_Material_Button_Borderless_Colored</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button_Borderless_Colored -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Borderless_Colored" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Borderless_Colored</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_DatePicker -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_DatePicker" class="hiddenlink" target="rightframe">Widget_Material_Light_DatePicker</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_SearchView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_SearchView" class="hiddenlink" target="rightframe">Widget_Material_Light_SearchView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Spinner_Underlined -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Spinner_Underlined" class="hiddenlink" target="rightframe">Widget_Material_Light_Spinner_Underlined</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_TimePicker -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TimePicker" class="hiddenlink" target="rightframe">Widget_Material_Light_TimePicker</A>
+</nobr><br>
+<!-- Field Widget_Material_SearchView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_SearchView" class="hiddenlink" target="rightframe">Widget_Material_SearchView</A>
+</nobr><br>
+<!-- Field Widget_Material_Spinner_Underlined -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Spinner_Underlined" class="hiddenlink" target="rightframe">Widget_Material_Spinner_Underlined</A>
+</nobr><br>
+<!-- Field Widget_Material_TimePicker -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TimePicker" class="hiddenlink" target="rightframe">Widget_Material_TimePicker</A>
+</nobr><br>
+<!-- Class WifiManager.WpsCallback -->
+<A HREF="pkg_android.net.wifi.html#WifiManager.WpsCallback" class="hiddenlink" target="rightframe"><b>WifiManager.WpsCallback</b></A><br>
+<!-- Field windowActivityTransitions -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowActivityTransitions" class="hiddenlink" target="rightframe">windowActivityTransitions</A>
+</nobr><br>
+<!-- Field windowAllowReturnTransitionOverlap -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowAllowReturnTransitionOverlap" class="hiddenlink" target="rightframe">windowAllowReturnTransitionOverlap</A>
+</nobr><br>
+<!-- Field windowClipToOutline -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowClipToOutline" class="hiddenlink" target="rightframe">windowClipToOutline</A>
+</nobr><br>
+<!-- Field windowElevation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowElevation" class="hiddenlink" target="rightframe">windowElevation</A>
+</nobr><br>
+<!-- Field windowReenterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowReenterTransition" class="hiddenlink" target="rightframe">windowReenterTransition</A>
+</nobr><br>
+<!-- Field windowReturnTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowReturnTransition" class="hiddenlink" target="rightframe">windowReturnTransition</A>
+</nobr><br>
+<!-- Field windowSharedElementReenterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementReenterTransition" class="hiddenlink" target="rightframe">windowSharedElementReenterTransition</A>
+</nobr><br>
+<!-- Field windowSharedElementReturnTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementReturnTransition" class="hiddenlink" target="rightframe">windowSharedElementReturnTransition</A>
+</nobr><br>
+<!-- Field windowSharedElementsUseOverlay -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementsUseOverlay" class="hiddenlink" target="rightframe">windowSharedElementsUseOverlay</A>
+</nobr><br>
+<!-- Field windowTransitionBackgroundFadeDuration -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowTransitionBackgroundFadeDuration" class="hiddenlink" target="rightframe">windowTransitionBackgroundFadeDuration</A>
+</nobr><br>
+<!-- Field WPS_AUTH_FAILURE -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_AUTH_FAILURE" class="hiddenlink" target="rightframe">WPS_AUTH_FAILURE</A>
+</nobr><br>
+<!-- Field WPS_OVERLAP_ERROR -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_OVERLAP_ERROR" class="hiddenlink" target="rightframe">WPS_OVERLAP_ERROR</A>
+</nobr><br>
+<!-- Field WPS_TIMED_OUT -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_TIMED_OUT" class="hiddenlink" target="rightframe">WPS_TIMED_OUT</A>
+</nobr><br>
+<!-- Field WPS_TKIP_ONLY_PROHIBITED -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_TKIP_ONLY_PROHIBITED" class="hiddenlink" target="rightframe">WPS_TKIP_ONLY_PROHIBITED</A>
+</nobr><br>
+<!-- Field WPS_WEP_PROHIBITED -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_WEP_PROHIBITED" class="hiddenlink" target="rightframe">WPS_WEP_PROHIBITED</A>
+</nobr><br>
+<!-- Field WRITE_VOICEMAIL -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.WRITE_VOICEMAIL" class="hiddenlink" target="rightframe">WRITE_VOICEMAIL</A>
+</nobr><br>
+<!-- Method writeByteBuffer -->
+<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.writeByteBuffer_added(java.io.OutputStream, android.util.Size, java.nio.ByteBuffer, long)" class="hiddenlink" target="rightframe"><b>writeByteBuffer</b>
+(<code>OutputStream, Size, ByteBuffer, long</code>)</A></nobr><br>
+<!-- Method writeInputStream -->
+<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.writeInputStream_added(java.io.OutputStream, android.util.Size, java.io.InputStream, long)" class="hiddenlink" target="rightframe"><b>writeInputStream</b>
+(<code>OutputStream, Size, InputStream, long</code>)</A></nobr><br>
+<!-- Method writeSize -->
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.writeSize_added(android.util.Size)" class="hiddenlink" target="rightframe"><b>writeSize</b>
+(<code>Size</code>)</A></nobr><br>
+<!-- Method writeSizeF -->
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.writeSizeF_added(android.util.SizeF)" class="hiddenlink" target="rightframe"><b>writeSizeF</b>
+(<code>SizeF</code>)</A></nobr><br>
+<!-- Field yearListItemTextAppearance -->
+<A NAME="Y"></A>
+<br><font size="+2">Y</font>&nbsp;
+<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="#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.yearListItemTextAppearance" class="hiddenlink" target="rightframe">yearListItemTextAppearance</A>
+</nobr><br>
+<!-- Field yearListSelectorColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.yearListSelectorColor" class="hiddenlink" target="rightframe">yearListSelectorColor</A>
+</nobr><br>
+<!-- Method zoomBy -->
+<A NAME="Z"></A>
+<br><font size="+2">Z</font>&nbsp;
+<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.webkit.WebView.html#android.webkit.WebView.zoomBy_added(float)" class="hiddenlink" target="rightframe"><b>zoomBy</b>
+(<code>float</code>)</A></nobr><br>
+<script src="//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/preview-21/changes/alldiffs_index_all.html b/docs/html/sdk/api_diff/preview-21/changes/alldiffs_index_all.html
new file mode 100644
index 0000000..d8276a8
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/alldiffs_index_all.html
@@ -0,0 +1,8139 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<!-- Class AbsListView -->
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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">
+<A HREF="android.widget.AbsListView.html" class="hiddenlink" target="rightframe">AbsListView</A><br>
+<!-- Class AbsSeekBar -->
+<A HREF="android.widget.AbsSeekBar.html" class="hiddenlink" target="rightframe">AbsSeekBar</A><br>
+<!-- Class AbstractQueuedLongSynchronizer -->
+<A HREF="java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html" class="hiddenlink" target="rightframe">AbstractQueuedLongSynchronizer</A><br>
+<!-- Class AbstractQueuedSynchronizer -->
+<A HREF="java.util.concurrent.locks.AbstractQueuedSynchronizer.html" class="hiddenlink" target="rightframe">AbstractQueuedSynchronizer</A><br>
+<!-- Method acceptThirdPartyCookies -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.acceptThirdPartyCookies_added(android.webkit.WebView)" class="hiddenlink" target="rightframe"><b>acceptThirdPartyCookies</b>
+(<code>WebView</code>)</A></nobr><br>
+<!-- Class AccessibilityNodeInfo -->
+<A HREF="android.view.accessibility.AccessibilityNodeInfo.html" class="hiddenlink" target="rightframe">AccessibilityNodeInfo</A><br>
+<!-- Class AccessibilityService -->
+<A HREF="android.accessibilityservice.AccessibilityService.html" class="hiddenlink" target="rightframe">AccessibilityService</A><br>
+<!-- Class AccessibilityWindowInfo -->
+<A HREF="android.view.accessibility.AccessibilityWindowInfo.html" class="hiddenlink" target="rightframe">AccessibilityWindowInfo</A><br>
+<!-- Field ACCOUNT_NAME -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.ACCOUNT_NAME" class="hiddenlink" target="rightframe">ACCOUNT_NAME</A>
+</nobr><br>
+<!-- Field ACCOUNT_TYPE -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.ACCOUNT_TYPE" class="hiddenlink" target="rightframe">ACCOUNT_TYPE</A>
+</nobr><br>
+<!-- Field ACCOUNT_TYPE_AND_DATA_SET -->
+<nobr><A HREF="android.provider.ContactsContract.RawContactsColumns.html#android.provider.ContactsContract.RawContactsColumns.ACCOUNT_TYPE_AND_DATA_SET" class="hiddenlink" target="rightframe">ACCOUNT_TYPE_AND_DATA_SET</A>
+</nobr><br>
+<!-- Class AccountManager -->
+<A HREF="android.accounts.AccountManager.html" class="hiddenlink" target="rightframe">AccountManager</A><br>
+<!-- Field ACTION_BLOCKED_RATINGS_CHANGED -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.ACTION_BLOCKED_RATINGS_CHANGED" class="hiddenlink" target="rightframe">ACTION_BLOCKED_RATINGS_CHANGED</A>
+</nobr><br>
+<!-- Field ACTION_CAST_SETTINGS -->
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_CAST_SETTINGS" class="hiddenlink" target="rightframe">ACTION_CAST_SETTINGS</A>
+</nobr><br>
+<!-- Field ACTION_HDMI_AUDIO_PLUG -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ACTION_HDMI_AUDIO_PLUG" class="hiddenlink" target="rightframe">ACTION_HDMI_AUDIO_PLUG</A>
+</nobr><br>
+<!-- Field ACTION_HEADSET_PLUG -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ACTION_HEADSET_PLUG" class="hiddenlink" target="rightframe">ACTION_HEADSET_PLUG</A>
+</nobr><br>
+<!-- Field ACTION_HOME_SETTINGS -->
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_HOME_SETTINGS" class="hiddenlink" target="rightframe">ACTION_HOME_SETTINGS</A>
+</nobr><br>
+<!-- Field ACTION_LOCK_TASK_ENTERING -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.ACTION_LOCK_TASK_ENTERING" class="hiddenlink" target="rightframe">ACTION_LOCK_TASK_ENTERING</A>
+</nobr><br>
+<!-- Field ACTION_LOCK_TASK_EXITING -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.ACTION_LOCK_TASK_EXITING" class="hiddenlink" target="rightframe">ACTION_LOCK_TASK_EXITING</A>
+</nobr><br>
+<!-- Field ACTION_NEXT_ALARM_CLOCK_CHANGED -->
+<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.ACTION_NEXT_ALARM_CLOCK_CHANGED" class="hiddenlink" target="rightframe">ACTION_NEXT_ALARM_CLOCK_CHANGED</A>
+</nobr><br>
+<!-- Field ACTION_PARENTAL_CONTROLS_ENABLED_CHANGED -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.ACTION_PARENTAL_CONTROLS_ENABLED_CHANGED" class="hiddenlink" target="rightframe">ACTION_PARENTAL_CONTROLS_ENABLED_CHANGED</A>
+</nobr><br>
+<!-- Field ACTION_PLAY_FROM_MEDIA_ID -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.ACTION_PLAY_FROM_MEDIA_ID" class="hiddenlink" target="rightframe">ACTION_PLAY_FROM_MEDIA_ID</A>
+</nobr><br>
+<!-- Field ACTION_PLAY_FROM_SEARCH -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.ACTION_PLAY_FROM_SEARCH" class="hiddenlink" target="rightframe">ACTION_PLAY_FROM_SEARCH</A>
+</nobr><br>
+<!-- Field ACTION_PROFILE_PROVISIONING_COMPLETE -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.ACTION_PROFILE_PROVISIONING_COMPLETE" class="hiddenlink" target="rightframe">ACTION_PROFILE_PROVISIONING_COMPLETE</A>
+</nobr><br>
+<!-- Field ACTION_PROVISION_MANAGED_PROFILE -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.ACTION_PROVISION_MANAGED_PROFILE" class="hiddenlink" target="rightframe">ACTION_PROVISION_MANAGED_PROFILE</A>
+</nobr><br>
+<!-- Field ACTION_QUERY_CONTENT_RATING_SYSTEMS -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.ACTION_QUERY_CONTENT_RATING_SYSTEMS" class="hiddenlink" target="rightframe">ACTION_QUERY_CONTENT_RATING_SYSTEMS</A>
+</nobr><br>
+<!-- Field ACTION_QUICK_CONTACT -->
+<nobr><A HREF="android.provider.ContactsContract.QuickContact.html#android.provider.ContactsContract.QuickContact.ACTION_QUICK_CONTACT" class="hiddenlink" target="rightframe">ACTION_QUICK_CONTACT</A>
+</nobr><br>
+<!-- Field ACTION_SHOW_REGULATORY_INFO -->
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_SHOW_REGULATORY_INFO" class="hiddenlink" target="rightframe">ACTION_SHOW_REGULATORY_INFO</A>
+</nobr><br>
+<!-- Field ACTION_SKIP_TO_QUEUE_ITEM -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.ACTION_SKIP_TO_QUEUE_ITEM" class="hiddenlink" target="rightframe">ACTION_SKIP_TO_QUEUE_ITEM</A>
+</nobr><br>
+<!-- Field ACTION_USAGE_ACCESS_SETTINGS -->
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_USAGE_ACCESS_SETTINGS" class="hiddenlink" target="rightframe">ACTION_USAGE_ACCESS_SETTINGS</A>
+</nobr><br>
+<!-- Field ACTION_VOICE_INPUT_SETTINGS -->
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_VOICE_INPUT_SETTINGS" class="hiddenlink" target="rightframe">ACTION_VOICE_INPUT_SETTINGS</A>
+</nobr><br>
+<!-- Class ActionBar -->
+<A HREF="android.app.ActionBar.html" class="hiddenlink" target="rightframe">ActionBar</A><br>
+<!-- Class ActionBar.LayoutParams -->
+<i>ActionBar.LayoutParams</i><br>
+&nbsp;&nbsp;<A HREF="android.app.ActionBar.LayoutParams.html" class="hiddenlink" target="rightframe">android.app</A><br>
+<!-- Constructor ActionBar.LayoutParams -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.LayoutParams.html#android.app.ActionBar.LayoutParams.ctor_removed(android.view.ViewGroup.MarginLayoutParams)" class="hiddenlink" target="rightframe"><strike>ActionBar.LayoutParams</strike>
+(<code>MarginLayoutParams</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field actionBarPopupTheme -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionBarPopupTheme" class="hiddenlink" target="rightframe">actionBarPopupTheme</A>
+</nobr><br>
+<!-- Field actionBarTheme -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionBarTheme" class="hiddenlink" target="rightframe">actionBarTheme</A>
+</nobr><br>
+<!-- Class ActionMenuView -->
+<A HREF="android.widget.ActionMenuView.html" class="hiddenlink" target="rightframe">ActionMenuView</A><br>
+<!-- Field actionModeFindDrawable -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionModeFindDrawable" class="hiddenlink" target="rightframe">actionModeFindDrawable</A>
+</nobr><br>
+<!-- Field actionModeShareDrawable -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionModeShareDrawable" class="hiddenlink" target="rightframe">actionModeShareDrawable</A>
+</nobr><br>
+<!-- Field actionModeWebSearchDrawable -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionModeWebSearchDrawable" class="hiddenlink" target="rightframe">actionModeWebSearchDrawable</A>
+</nobr><br>
+<!-- Field actionOverflowMenuStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionOverflowMenuStyle" class="hiddenlink" target="rightframe">actionOverflowMenuStyle</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.AppTask -->
+<A HREF="android.app.ActivityManager.AppTask.html" class="hiddenlink" target="rightframe">ActivityManager.AppTask</A><br>
+<!-- Class ActivityManager.RecentTaskInfo -->
+<A HREF="android.app.ActivityManager.RecentTaskInfo.html" class="hiddenlink" target="rightframe">ActivityManager.RecentTaskInfo</A><br>
+<!-- Class ActivityManager.RunningAppProcessInfo -->
+<A HREF="android.app.ActivityManager.RunningAppProcessInfo.html" class="hiddenlink" target="rightframe">ActivityManager.RunningAppProcessInfo</A><br>
+<!-- Class ActivityOptions -->
+<A HREF="android.app.ActivityOptions.html" class="hiddenlink" target="rightframe">ActivityOptions</A><br>
+<!-- Method addAllowedApplication -->
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.addAllowedApplication_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>addAllowedApplication</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method addAppTask -->
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.addAppTask_added(android.app.Activity, android.content.Intent, android.app.ActivityManager.TaskDescription, android.graphics.Bitmap)" class="hiddenlink" target="rightframe"><b>addAppTask</b>
+(<code>Activity, Intent, TaskDescription, Bitmap</code>)</A></nobr><br>
+<!-- Method addArc -->
+<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addArc_added(float, float, float, float, float, float)" class="hiddenlink" target="rightframe"><b>addArc</b>
+(<code>float, float, float, float, float, float</code>)</A></nobr><br>
+<!-- Method addAvailabilityListener -->
+<nobr><A HREF="android.hardware.camera2.CameraManager.html#android.hardware.camera2.CameraManager.addAvailabilityListener_removed(android.hardware.camera2.CameraManager.AvailabilityListener, android.os.Handler)" class="hiddenlink" target="rightframe"><strike>addAvailabilityListener</strike>
+(<code>AvailabilityListener, Handler</code>)</A></nobr><br>
+<!-- Method addCallback -->
+<i>addCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.addCallback_removed(android.media.session.MediaController.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Callback</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+<!-- Method addCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.addCallback_removed(android.media.session.MediaController.Callback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Callback, Handler</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+<!-- Method addCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.addCallback_removed(android.media.session.MediaSession.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Callback</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+<!-- Method addCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.addCallback_removed(android.media.session.MediaSession.Callback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Callback, Handler</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+<!-- Method addCharacterBounds -->
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.Builder.html#android.view.inputmethod.CursorAnchorInfo.Builder.addCharacterBounds_added(int, float, float, float, float, int)" class="hiddenlink" target="rightframe"><b>addCharacterBounds</b>
+(<code>int, float, float, float, float, int</code>)</A></nobr><br>
+<!-- Method addCharacterRect -->
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.Builder.html#android.view.inputmethod.CursorAnchorInfo.Builder.addCharacterRect_removed(int, float, float, float, float)" class="hiddenlink" target="rightframe"><strike>addCharacterRect</strike>
+(<code>int, float, float, float, float</code>)</A></nobr><br>
+<!-- Method addCrossProfileIntentFilter -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addCrossProfileIntentFilter_added(android.content.ComponentName, android.content.IntentFilter, int)" class="hiddenlink" target="rightframe"><b>addCrossProfileIntentFilter</b>
+(<code>ComponentName, IntentFilter, int</code>)</A></nobr><br>
+<!-- Method addCrossProfileWidgetProvider -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>addCrossProfileWidgetProvider</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method addDefaultNetworkActiveListener -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.addDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><b>addDefaultNetworkActiveListener</b>
+(<code>OnNetworkActiveListener</code>)</A></nobr><br>
+<!-- Method addDisallowedApplication -->
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.addDisallowedApplication_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>addDisallowedApplication</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method addEarcon -->
+<i>addEarcon</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_removed(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String, String</code>)</strike>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method addEarcon -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.io.File)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, File</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method addEarcon -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, String</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method addForwardingIntentFilter -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addForwardingIntentFilter_removed(android.content.ComponentName, android.content.IntentFilter, int)" class="hiddenlink" target="rightframe"><strike>addForwardingIntentFilter</strike>
+(<code>ComponentName, IntentFilter, int</code>)</A></nobr><br>
+<!-- Method addOnActiveSessionsChangedListener -->
+<i>addOnActiveSessionsChangedListener</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSessionManager.html#android.media.session.MediaSessionManager.addOnActiveSessionsChangedListener_added(android.media.session.MediaSessionManager.OnActiveSessionsChangedListener, android.content.ComponentName)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>OnActiveSessionsChangedListener, ComponentName</code>)</b>&nbsp;in&nbsp;android.media.session.MediaSessionManager
+</A></nobr><br>
+<!-- Method addOnActiveSessionsChangedListener -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSessionManager.html#android.media.session.MediaSessionManager.addOnActiveSessionsChangedListener_added(android.media.session.MediaSessionManager.OnActiveSessionsChangedListener, android.content.ComponentName, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>OnActiveSessionsChangedListener, ComponentName, Handler</code>)</b>&nbsp;in&nbsp;android.media.session.MediaSessionManager
+</A></nobr><br>
+<!-- Method addOnAppsChangedListener -->
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.addOnAppsChangedListener_removed(android.content.pm.LauncherApps.OnAppsChangedListener)" class="hiddenlink" target="rightframe"><strike>addOnAppsChangedListener</strike>
+(<code>OnAppsChangedListener</code>)</A></nobr><br>
+<!-- Method addRoundRect -->
+<i>addRoundRect</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addRoundRect_added(float, float, float, float, float, float, android.graphics.Path.Direction)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float, float, float, float, float, float, Direction</code>)</b>&nbsp;in&nbsp;android.graphics.Path
+</A></nobr><br>
+<!-- Method addRoundRect -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addRoundRect_added(float, float, float, float, float[], android.graphics.Path.Direction)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float, float, float, float, float[], Direction</code>)</b>&nbsp;in&nbsp;android.graphics.Path
+</A></nobr><br>
+<!-- Method addSharedElement -->
+<nobr><A HREF="android.app.FragmentTransaction.html#android.app.FragmentTransaction.addSharedElement_added(android.view.View, java.lang.String)" class="hiddenlink" target="rightframe"><b>addSharedElement</b>
+(<code>View, String</code>)</A></nobr><br>
+<!-- Method addSpeech -->
+<i>addSpeech</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.io.File)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, File</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method addSpeech -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, String, int</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method addTransition -->
+<nobr><A HREF="android.graphics.drawable.AnimatedStateListDrawable.html#android.graphics.drawable.AnimatedStateListDrawable.addTransition_changed(int, int, T, boolean)" class="hiddenlink" target="rightframe">addTransition
+(<code>int, int, T, boolean</code>)</A></nobr><br>
+<!-- Method addTransportControlsCallback -->
+<i>addTransportControlsCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.addTransportControlsCallback_removed(android.media.session.MediaSession.TransportControlsCallback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>TransportControlsCallback</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+<!-- Method addTransportControlsCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.addTransportControlsCallback_removed(android.media.session.MediaSession.TransportControlsCallback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>TransportControlsCallback, Handler</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+<!-- Method adjustVolume -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.adjustVolume_added(int, int)" class="hiddenlink" target="rightframe"><b>adjustVolume</b>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Field ADVERTISE_FAILED_CONTROLLER_FAILURE -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_CONTROLLER_FAILURE" class="hiddenlink" target="rightframe"><strike>ADVERTISE_FAILED_CONTROLLER_FAILURE</strike></A>
+</nobr><br>
+<!-- Field ADVERTISE_FAILED_DATA_TOO_LARGE -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_DATA_TOO_LARGE" class="hiddenlink" target="rightframe">ADVERTISE_FAILED_DATA_TOO_LARGE</A>
+</nobr><br>
+<!-- Field ADVERTISE_FAILED_FEATURE_UNSUPPORTED -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_FEATURE_UNSUPPORTED" class="hiddenlink" target="rightframe">ADVERTISE_FAILED_FEATURE_UNSUPPORTED</A>
+</nobr><br>
+<!-- Field ADVERTISE_FAILED_INTERNAL_ERROR -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_INTERNAL_ERROR" class="hiddenlink" target="rightframe">ADVERTISE_FAILED_INTERNAL_ERROR</A>
+</nobr><br>
+<!-- Field ADVERTISE_FAILED_NOT_STARTED -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_NOT_STARTED" class="hiddenlink" target="rightframe"><strike>ADVERTISE_FAILED_NOT_STARTED</strike></A>
+</nobr><br>
+<!-- Field ADVERTISE_FAILED_SERVICE_UNKNOWN -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_SERVICE_UNKNOWN" class="hiddenlink" target="rightframe"><strike>ADVERTISE_FAILED_SERVICE_UNKNOWN</strike></A>
+</nobr><br>
+<!-- Field ADVERTISE_TYPE_CONNECTABLE -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html#android.bluetooth.le.AdvertiseSettings.ADVERTISE_TYPE_CONNECTABLE" class="hiddenlink" target="rightframe"><strike>ADVERTISE_TYPE_CONNECTABLE</strike></A>
+</nobr><br>
+<!-- Field ADVERTISE_TYPE_NON_CONNECTABLE -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html#android.bluetooth.le.AdvertiseSettings.ADVERTISE_TYPE_NON_CONNECTABLE" class="hiddenlink" target="rightframe"><strike>ADVERTISE_TYPE_NON_CONNECTABLE</strike></A>
+</nobr><br>
+<!-- Field ADVERTISE_TYPE_SCANNABLE -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html#android.bluetooth.le.AdvertiseSettings.ADVERTISE_TYPE_SCANNABLE" class="hiddenlink" target="rightframe"><strike>ADVERTISE_TYPE_SCANNABLE</strike></A>
+</nobr><br>
+<!-- Class AdvertiseCallback -->
+<A HREF="android.bluetooth.le.AdvertiseCallback.html" class="hiddenlink" target="rightframe">AdvertiseCallback</A><br>
+<!-- Class AdvertiseData -->
+<A HREF="pkg_android.bluetooth.le.html#AdvertiseData" class="hiddenlink" target="rightframe"><b>AdvertiseData</b></A><br>
+<!-- Class AdvertiseData.Builder -->
+<A HREF="pkg_android.bluetooth.le.html#AdvertiseData.Builder" class="hiddenlink" target="rightframe"><b>AdvertiseData.Builder</b></A><br>
+<!-- Class AdvertisementData -->
+<A HREF="pkg_android.bluetooth.le.html#AdvertisementData" class="hiddenlink" target="rightframe"><strike>AdvertisementData</strike></A><br>
+<!-- Class AdvertisementData.Builder -->
+<A HREF="pkg_android.bluetooth.le.html#AdvertisementData.Builder" class="hiddenlink" target="rightframe"><strike>AdvertisementData.Builder</strike></A><br>
+<!-- Class AdvertiseSettings -->
+<A HREF="android.bluetooth.le.AdvertiseSettings.html" class="hiddenlink" target="rightframe">AdvertiseSettings</A><br>
+<!-- Class AdvertiseSettings.Builder -->
+<A HREF="android.bluetooth.le.AdvertiseSettings.Builder.html" class="hiddenlink" target="rightframe">AdvertiseSettings.Builder</A><br>
+<!-- Field affiliatedTaskId -->
+<nobr><A HREF="android.app.ActivityManager.RecentTaskInfo.html#android.app.ActivityManager.RecentTaskInfo.affiliatedTaskId" class="hiddenlink" target="rightframe">affiliatedTaskId</A>
+</nobr><br>
+<!-- Class AlarmManager -->
+<A HREF="android.app.AlarmManager.html" class="hiddenlink" target="rightframe">AlarmManager</A><br>
+<!-- Class AlarmManager.AlarmClockInfo -->
+<A HREF="pkg_android.app.html#AlarmManager.AlarmClockInfo" class="hiddenlink" target="rightframe"><b>AlarmManager.AlarmClockInfo</b></A><br>
+<!-- Field ALL_CODECS -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.ALL_CODECS" class="hiddenlink" target="rightframe">ALL_CODECS</A>
+</nobr><br>
+<!-- Method allowBypass -->
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.allowBypass_added()" class="hiddenlink" target="rightframe"><b>allowBypass</b>
+()</A></nobr><br>
+<!-- Method allowFamily -->
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.allowFamily_added(int)" class="hiddenlink" target="rightframe"><b>allowFamily</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Class AlwaysOnHotwordDetector -->
+<A HREF="pkg_android.service.voice.html#AlwaysOnHotwordDetector" class="hiddenlink" target="rightframe"><b>AlwaysOnHotwordDetector</b></A><br>
+<!-- Class AlwaysOnHotwordDetector.Callback -->
+<A HREF="pkg_android.service.voice.html#AlwaysOnHotwordDetector.Callback" class="hiddenlink" target="rightframe"><b>AlwaysOnHotwordDetector.Callback</b></A><br>
+<!-- Class AlwaysOnHotwordDetector.EventPayload -->
+<A HREF="pkg_android.service.voice.html#AlwaysOnHotwordDetector.EventPayload" class="hiddenlink" target="rightframe"><b>AlwaysOnHotwordDetector.EventPayload</b></A><br>
+<!-- Field ambientShadowAlpha -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.ambientShadowAlpha" class="hiddenlink" target="rightframe">ambientShadowAlpha</A>
+</nobr><br>
+<!-- Field amPmBackgroundColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.amPmBackgroundColor" class="hiddenlink" target="rightframe">amPmBackgroundColor</A>
+</nobr><br>
+<!-- Field amPmTextColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.amPmTextColor" class="hiddenlink" target="rightframe">amPmTextColor</A>
+</nobr><br>
+<!-- Package android -->
+<A HREF="pkg_android.html" class="hiddenlink" target="rightframe">android</A><br>
+<!-- Package android.accessibilityservice -->
+<A HREF="pkg_android.accessibilityservice.html" class="hiddenlink" target="rightframe">android.accessibilityservice</A><br>
+<!-- Package android.accounts -->
+<A HREF="pkg_android.accounts.html" class="hiddenlink" target="rightframe">android.accounts</A><br>
+<!-- Package android.app -->
+<A HREF="pkg_android.app.html" class="hiddenlink" target="rightframe">android.app</A><br>
+<!-- Package android.app.admin -->
+<A HREF="pkg_android.app.admin.html" class="hiddenlink" target="rightframe">android.app.admin</A><br>
+<!-- Package android.app.backup -->
+<A HREF="pkg_android.app.backup.html" class="hiddenlink" target="rightframe">android.app.backup</A><br>
+<!-- Package android.app.job -->
+<A HREF="pkg_android.app.job.html" class="hiddenlink" target="rightframe">android.app.job</A><br>
+<!-- Package android.app.usage -->
+<A HREF="changes-summary.html#android.app.usage" class="hiddenlink" target="rightframe"><b>android.app.usage</b></A><br>
+<!-- Package android.appwidget -->
+<A HREF="pkg_android.appwidget.html" class="hiddenlink" target="rightframe">android.appwidget</A><br>
+<!-- Package android.bluetooth -->
+<A HREF="pkg_android.bluetooth.html" class="hiddenlink" target="rightframe">android.bluetooth</A><br>
+<!-- Package android.bluetooth.le -->
+<A HREF="pkg_android.bluetooth.le.html" class="hiddenlink" target="rightframe">android.bluetooth.le</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.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.graphics.drawable.shapes -->
+<A HREF="pkg_android.graphics.drawable.shapes.html" class="hiddenlink" target="rightframe">android.graphics.drawable.shapes</A><br>
+<!-- Package android.hardware -->
+<A HREF="pkg_android.hardware.html" class="hiddenlink" target="rightframe">android.hardware</A><br>
+<!-- Package android.hardware.camera2 -->
+<A HREF="pkg_android.hardware.camera2.html" class="hiddenlink" target="rightframe">android.hardware.camera2</A><br>
+<!-- Package android.hardware.camera2.params -->
+<A HREF="pkg_android.hardware.camera2.params.html" class="hiddenlink" target="rightframe">android.hardware.camera2.params</A><br>
+<!-- Package android.hardware.display -->
+<A HREF="pkg_android.hardware.display.html" class="hiddenlink" target="rightframe">android.hardware.display</A><br>
+<!-- Package android.hardware.location -->
+<A HREF="changes-summary.html#android.hardware.location" class="hiddenlink" target="rightframe"><strike>android.hardware.location</strike></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.media.audiofx -->
+<A HREF="pkg_android.media.audiofx.html" class="hiddenlink" target="rightframe">android.media.audiofx</A><br>
+<!-- Package android.media.browse -->
+<A HREF="changes-summary.html#android.media.browse" class="hiddenlink" target="rightframe"><b>android.media.browse</b></A><br>
+<!-- Package android.media.projection -->
+<A HREF="changes-summary.html#android.media.projection" class="hiddenlink" target="rightframe"><b>android.media.projection</b></A><br>
+<!-- Package android.media.session -->
+<A HREF="pkg_android.media.session.html" class="hiddenlink" target="rightframe">android.media.session</A><br>
+<!-- Package android.media.tv -->
+<A HREF="pkg_android.media.tv.html" class="hiddenlink" target="rightframe">android.media.tv</A><br>
+<!-- Package android.net -->
+<A HREF="pkg_android.net.html" class="hiddenlink" target="rightframe">android.net</A><br>
+<!-- Package android.net.wifi -->
+<A HREF="pkg_android.net.wifi.html" class="hiddenlink" target="rightframe">android.net.wifi</A><br>
+<!-- Package android.nfc.cardemulation -->
+<A HREF="pkg_android.nfc.cardemulation.html" class="hiddenlink" target="rightframe">android.nfc.cardemulation</A><br>
+<!-- Package android.os -->
+<A HREF="pkg_android.os.html" class="hiddenlink" target="rightframe">android.os</A><br>
+<!-- Package android.printservice -->
+<A HREF="pkg_android.printservice.html" class="hiddenlink" target="rightframe">android.printservice</A><br>
+<!-- Package android.provider -->
+<A HREF="pkg_android.provider.html" class="hiddenlink" target="rightframe">android.provider</A><br>
+<!-- Package android.renderscript -->
+<A HREF="pkg_android.renderscript.html" class="hiddenlink" target="rightframe">android.renderscript</A><br>
+<!-- Package android.service.dreams -->
+<A HREF="pkg_android.service.dreams.html" class="hiddenlink" target="rightframe">android.service.dreams</A><br>
+<!-- Package android.service.media -->
+<A HREF="changes-summary.html#android.service.media" class="hiddenlink" target="rightframe"><b>android.service.media</b></A><br>
+<!-- Package android.service.notification -->
+<A HREF="pkg_android.service.notification.html" class="hiddenlink" target="rightframe">android.service.notification</A><br>
+<!-- Package android.service.restrictions -->
+<A HREF="changes-summary.html#android.service.restrictions" class="hiddenlink" target="rightframe"><b>android.service.restrictions</b></A><br>
+<!-- Package android.service.voice -->
+<A HREF="pkg_android.service.voice.html" class="hiddenlink" target="rightframe">android.service.voice</A><br>
+<!-- Package android.service.wallpaper -->
+<A HREF="pkg_android.service.wallpaper.html" class="hiddenlink" target="rightframe">android.service.wallpaper</A><br>
+<!-- Package android.speech.tts -->
+<A HREF="pkg_android.speech.tts.html" class="hiddenlink" target="rightframe">android.speech.tts</A><br>
+<!-- Package android.system -->
+<A HREF="pkg_android.system.html" class="hiddenlink" target="rightframe">android.system</A><br>
+<!-- Package android.telecom -->
+<A HREF="changes-summary.html#android.telecom" class="hiddenlink" target="rightframe"><b>android.telecom</b></A><br>
+<!-- Package android.telephony -->
+<A HREF="pkg_android.telephony.html" class="hiddenlink" target="rightframe">android.telephony</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.style -->
+<A HREF="pkg_android.text.style.html" class="hiddenlink" target="rightframe">android.text.style</A><br>
+<!-- Package android.transition -->
+<A HREF="pkg_android.transition.html" class="hiddenlink" target="rightframe">android.transition</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.accessibility -->
+<A HREF="pkg_android.view.accessibility.html" class="hiddenlink" target="rightframe">android.view.accessibility</A><br>
+<!-- Package android.view.inputmethod -->
+<A HREF="pkg_android.view.inputmethod.html" class="hiddenlink" target="rightframe">android.view.inputmethod</A><br>
+<!-- Package android.view.textservice -->
+<A HREF="pkg_android.view.textservice.html" class="hiddenlink" target="rightframe">android.view.textservice</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>
+<!-- Field ANIMAL_WILDLIFE -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.ANIMAL_WILDLIFE" class="hiddenlink" target="rightframe">ANIMAL_WILDLIFE</A>
+</nobr><br>
+<!-- Class AnimatedStateListDrawable -->
+<A HREF="android.graphics.drawable.AnimatedStateListDrawable.html" class="hiddenlink" target="rightframe">AnimatedStateListDrawable</A><br>
+<!-- Class AnimatedVectorDrawable -->
+<A HREF="pkg_android.graphics.drawable.html#AnimatedVectorDrawable" class="hiddenlink" target="rightframe"><b>AnimatedVectorDrawable</b></A><br>
+<!-- Method append -->
+<nobr><A HREF="android.text.SpannableStringBuilder.html#android.text.SpannableStringBuilder.append_added(java.lang.CharSequence, java.lang.Object, int)" class="hiddenlink" target="rightframe"><b>append</b>
+(<code>CharSequence, Object, int</code>)</A></nobr><br>
+<!-- Class ApplicationInfo -->
+<A HREF="android.content.pm.ApplicationInfo.html" class="hiddenlink" target="rightframe">ApplicationInfo</A><br>
+<!-- Class AppOpsManager -->
+<A HREF="android.app.AppOpsManager.html" class="hiddenlink" target="rightframe">AppOpsManager</A><br>
+<!-- Field APPWIDGET_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.APPWIDGET_SERVICE" class="hiddenlink" target="rightframe">APPWIDGET_SERVICE</A>
+</nobr><br>
+<!-- Class AppWidgetHost -->
+<A HREF="android.appwidget.AppWidgetHost.html" class="hiddenlink" target="rightframe">AppWidgetHost</A><br>
+<!-- Class AppWidgetManager -->
+<A HREF="android.appwidget.AppWidgetManager.html" class="hiddenlink" target="rightframe">AppWidgetManager</A><br>
+<!-- Class AppWidgetProviderInfo -->
+<A HREF="android.appwidget.AppWidgetProviderInfo.html" class="hiddenlink" target="rightframe">AppWidgetProviderInfo</A><br>
+<!-- Field ARCHIVED -->
+<nobr><A HREF="android.provider.Telephony.ThreadsColumns.html#android.provider.Telephony.ThreadsColumns.ARCHIVED" class="hiddenlink" target="rightframe">ARCHIVED</A>
+</nobr><br>
+<!-- Class ArcMotion -->
+<A HREF="pkg_android.transition.html#ArcMotion" class="hiddenlink" target="rightframe"><b>ArcMotion</b></A><br>
+<!-- Method arcTo -->
+<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.arcTo_added(float, float, float, float, float, float, boolean)" class="hiddenlink" target="rightframe"><b>arcTo</b>
+(<code>float, float, float, float, float, float, boolean</code>)</A></nobr><br>
+<!-- Method areDefaultsEnforced -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.areDefaultsEnforced_changed()" class="hiddenlink" target="rightframe">areDefaultsEnforced
+()</A></nobr><br>
+<!-- Class ArrayMap -->
+<A HREF="android.util.ArrayMap.html" class="hiddenlink" target="rightframe">ArrayMap</A><br>
+<!-- Class AssetManager -->
+<A HREF="android.content.res.AssetManager.html" class="hiddenlink" target="rightframe">AssetManager</A><br>
+<!-- Field AUDIO_ATTRIBUTES_DEFAULT -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.AUDIO_ATTRIBUTES_DEFAULT" class="hiddenlink" target="rightframe">AUDIO_ATTRIBUTES_DEFAULT</A>
+</nobr><br>
+<!-- Field AUDIO_SESSION_ID_GENERATE -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.AUDIO_SESSION_ID_GENERATE" class="hiddenlink" target="rightframe">AUDIO_SESSION_ID_GENERATE</A>
+</nobr><br>
+<!-- Class AudioAttributes -->
+<A HREF="pkg_android.media.html#AudioAttributes" class="hiddenlink" target="rightframe"><b>AudioAttributes</b></A><br>
+<!-- Field audioAttributes -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.audioAttributes" class="hiddenlink" target="rightframe">audioAttributes</A>
+</nobr><br>
+<!-- Class AudioAttributes.Builder -->
+<A HREF="pkg_android.media.html#AudioAttributes.Builder" class="hiddenlink" target="rightframe"><b>AudioAttributes.Builder</b></A><br>
+<!-- Class AudioFormat -->
+<i>AudioFormat</i><br>
+&nbsp;&nbsp;<A HREF="android.media.AudioFormat.html" class="hiddenlink" target="rightframe">android.media</A><br>
+<!-- Constructor AudioFormat -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ctor_removed()" class="hiddenlink" target="rightframe"><strike>AudioFormat</strike>
+()</A></nobr>&nbsp;constructor<br>
+<!-- Class AudioFormat.Builder -->
+<A HREF="pkg_android.media.html#AudioFormat.Builder" class="hiddenlink" target="rightframe"><b>AudioFormat.Builder</b></A><br>
+<!-- Class AudioManager -->
+<A HREF="android.media.AudioManager.html" class="hiddenlink" target="rightframe">AudioManager</A><br>
+<!-- Field audioStreamType -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.audioStreamType" class="hiddenlink" target="rightframe">audioStreamType</A>
+</nobr><br>
+<!-- Class AudioTrack -->
+<i>AudioTrack</i><br>
+&nbsp;&nbsp;<A HREF="android.media.AudioTrack.html" class="hiddenlink" target="rightframe">android.media</A><br>
+<!-- Constructor AudioTrack -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.ctor_added(android.media.AudioAttributes, android.media.AudioFormat, int, int, int)" class="hiddenlink" target="rightframe"><b>AudioTrack</b>
+(<code>AudioAttributes, AudioFormat, int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field autoRemoveFromRecents -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.autoRemoveFromRecents" class="hiddenlink" target="rightframe">autoRemoveFromRecents</A>
+</nobr><br>
+<!-- Class AutoTransition -->
+<i>AutoTransition</i><br>
+&nbsp;&nbsp;<A HREF="android.transition.AutoTransition.html" class="hiddenlink" target="rightframe">android.transition</A><br>
+<!-- Constructor AutoTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.AutoTransition.html#android.transition.AutoTransition.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>AutoTransition</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field AVCLevel52 -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.AVCLevel52" class="hiddenlink" target="rightframe">AVCLevel52</A>
+</nobr><br>
+<!-- Field backgroundTint -->
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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">
+<nobr><A HREF="android.R.attr.html#android.R.attr.backgroundTint" class="hiddenlink" target="rightframe">backgroundTint</A>
+</nobr><br>
+<!-- Field backgroundTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.backgroundTintMode" class="hiddenlink" target="rightframe">backgroundTintMode</A>
+</nobr><br>
+<!-- Field BACKOFF_POLICY_EXPONENTIAL -->
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.BACKOFF_POLICY_EXPONENTIAL" class="hiddenlink" target="rightframe">BACKOFF_POLICY_EXPONENTIAL</A>
+</nobr><br>
+<!-- Field BACKOFF_POLICY_LINEAR -->
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.BACKOFF_POLICY_LINEAR" class="hiddenlink" target="rightframe">BACKOFF_POLICY_LINEAR</A>
+</nobr><br>
+<!-- Class BackupAgent -->
+<A HREF="android.app.backup.BackupAgent.html" class="hiddenlink" target="rightframe">BackupAgent</A><br>
+<!-- Class BaseInputConnection -->
+<A HREF="android.view.inputmethod.BaseInputConnection.html" class="hiddenlink" target="rightframe">BaseInputConnection</A><br>
+<!-- Field BIND_DREAM_SERVICE -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.BIND_DREAM_SERVICE" class="hiddenlink" target="rightframe">BIND_DREAM_SERVICE</A>
+</nobr><br>
+<!-- Method bindAppWidgetIdIfAllowed -->
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.bindAppWidgetIdIfAllowed_added(int, android.os.UserHandle, android.content.ComponentName, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>bindAppWidgetIdIfAllowed</b>
+(<code>int, UserHandle, ComponentName, Bundle</code>)</A></nobr><br>
+<!-- Method bindSocket -->
+<nobr><A HREF="android.net.Network.html#android.net.Network.bindSocket_added(java.net.Socket)" class="hiddenlink" target="rightframe"><b>bindSocket</b>
+(<code>Socket</code>)</A></nobr><br>
+<!-- Class BitmapFactory.Options -->
+<A HREF="android.graphics.BitmapFactory.Options.html" class="hiddenlink" target="rightframe">BitmapFactory.Options</A><br>
+<!-- Class BlackLevelPattern -->
+<A HREF="pkg_android.hardware.camera2.params.html#BlackLevelPattern" class="hiddenlink" target="rightframe"><b>BlackLevelPattern</b></A><br>
+<!-- Class BluetoothAdapter -->
+<A HREF="android.bluetooth.BluetoothAdapter.html" class="hiddenlink" target="rightframe">BluetoothAdapter</A><br>
+<!-- Class BluetoothGatt -->
+<A HREF="android.bluetooth.BluetoothGatt.html" class="hiddenlink" target="rightframe">BluetoothGatt</A><br>
+<!-- Class BluetoothGattCallback -->
+<A HREF="android.bluetooth.BluetoothGattCallback.html" class="hiddenlink" target="rightframe">BluetoothGattCallback</A><br>
+<!-- Class BluetoothGattServerCallback -->
+<A HREF="android.bluetooth.BluetoothGattServerCallback.html" class="hiddenlink" target="rightframe">BluetoothGattServerCallback</A><br>
+<!-- Class BluetoothLeAdvertiser -->
+<A HREF="android.bluetooth.le.BluetoothLeAdvertiser.html" class="hiddenlink" target="rightframe">BluetoothLeAdvertiser</A><br>
+<!-- Class BluetoothLeScanner -->
+<A HREF="android.bluetooth.le.BluetoothLeScanner.html" class="hiddenlink" target="rightframe">BluetoothLeScanner</A><br>
+<!-- Field BSSID -->
+<nobr><A HREF="android.net.wifi.WpsInfo.html#android.net.wifi.WpsInfo.BSSID" class="hiddenlink" target="rightframe">BSSID</A>
+</nobr><br>
+<!-- Field BUFFER_FLAG_KEY_FRAME -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.BUFFER_FLAG_KEY_FRAME" class="hiddenlink" target="rightframe">BUFFER_FLAG_KEY_FRAME</A>
+</nobr><br>
+<!-- Field BUFFER_FLAG_SYNC_FRAME -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.BUFFER_FLAG_SYNC_FRAME" class="hiddenlink" target="rightframe">BUFFER_FLAG_SYNC_FRAME</A>
+</nobr><br>
+<!-- Class Build -->
+<A HREF="android.os.Build.html" class="hiddenlink" target="rightframe">Build</A><br>
+<!-- Class Build.VERSION_CODES -->
+<A HREF="android.os.Build.VERSION_CODES.html" class="hiddenlink" target="rightframe">Build.VERSION_CODES</A><br>
+<!-- Method buildChannelsUriForInput -->
+<i>buildChannelsUriForInput</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildChannelsUriForInput_removed(android.content.ComponentName)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>ComponentName</code>)</strike>&nbsp;in&nbsp;android.media.tv.TvContract
+</A></nobr><br>
+<!-- Method buildChannelsUriForInput -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildChannelsUriForInput_removed(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>ComponentName, boolean</code>)</strike>&nbsp;in&nbsp;android.media.tv.TvContract
+</A></nobr><br>
+<!-- Method buildChannelsUriForInput -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildChannelsUriForInput_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.media.tv.TvContract
+</A></nobr><br>
+<!-- Method buildChannelUriForPassthroughInput -->
+<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildChannelUriForPassthroughInput_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>buildChannelUriForPassthroughInput</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method buildInputId -->
+<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildInputId_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>buildInputId</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method buildProgramsUriForChannel -->
+<i>buildProgramsUriForChannel</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildProgramsUriForChannel_added(long)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long</code>)</b>&nbsp;in&nbsp;android.media.tv.TvContract
+</A></nobr><br>
+<!-- Method buildProgramsUriForChannel -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildProgramsUriForChannel_added(long, long, long)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long, long, long</code>)</b>&nbsp;in&nbsp;android.media.tv.TvContract
+</A></nobr><br>
+<!-- Method buildStyled -->
+<nobr><A HREF="android.app.Notification.MediaStyle.html#android.app.Notification.MediaStyle.buildStyled_removed(android.app.Notification)" class="hiddenlink" target="rightframe"><strike>buildStyled</strike>
+(<code>Notification</code>)</A></nobr><br>
+<!-- Class Bundle -->
+<A HREF="android.os.Bundle.html" class="hiddenlink" target="rightframe">Bundle</A><br>
+<!-- Field buttonBarNegativeButtonStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonBarNegativeButtonStyle" class="hiddenlink" target="rightframe">buttonBarNegativeButtonStyle</A>
+</nobr><br>
+<!-- Field buttonBarNeutralButtonStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonBarNeutralButtonStyle" class="hiddenlink" target="rightframe">buttonBarNeutralButtonStyle</A>
+</nobr><br>
+<!-- Field buttonBarPositiveButtonStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonBarPositiveButtonStyle" class="hiddenlink" target="rightframe">buttonBarPositiveButtonStyle</A>
+</nobr><br>
+<!-- Field buttonTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonTint" class="hiddenlink" target="rightframe">buttonTint</A>
+</nobr><br>
+<!-- Field buttonTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonTintMode" class="hiddenlink" target="rightframe">buttonTintMode</A>
+</nobr><br>
+<!-- Field calendarTextColor -->
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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">
+<nobr><A HREF="android.R.attr.html#android.R.attr.calendarTextColor" class="hiddenlink" target="rightframe">calendarTextColor</A>
+</nobr><br>
+<!-- Field CALLBACK_TYPE_ALL_MATCHES -->
+<nobr><A HREF="android.bluetooth.le.ScanSettings.html#android.bluetooth.le.ScanSettings.CALLBACK_TYPE_ALL_MATCHES" class="hiddenlink" target="rightframe">CALLBACK_TYPE_ALL_MATCHES</A>
+</nobr><br>
+<!-- Field CALLBACK_TYPE_ON_UPDATE -->
+<nobr><A HREF="android.bluetooth.le.ScanSettings.html#android.bluetooth.le.ScanSettings.CALLBACK_TYPE_ON_UPDATE" class="hiddenlink" target="rightframe"><strike>CALLBACK_TYPE_ON_UPDATE</strike></A>
+</nobr><br>
+<!-- Class CallLog.Calls -->
+<A HREF="android.provider.CallLog.Calls.html" class="hiddenlink" target="rightframe">CallLog.Calls</A><br>
+<!-- Class CamcorderProfile -->
+<A HREF="android.media.CamcorderProfile.html" class="hiddenlink" target="rightframe">CamcorderProfile</A><br>
+<!-- Class Camera -->
+<A HREF="android.hardware.Camera.html" class="hiddenlink" target="rightframe">Camera</A><br>
+<!-- Class Camera.Area -->
+<A HREF="android.hardware.Camera.Area.html" class="hiddenlink" target="rightframe">Camera.Area</A><br>
+<!-- Class Camera.AutoFocusCallback -->
+<A HREF="android.hardware.Camera.AutoFocusCallback.html" class="hiddenlink" target="rightframe"><i>Camera.AutoFocusCallback</i></A><br>
+<!-- Class Camera.AutoFocusMoveCallback -->
+<A HREF="android.hardware.Camera.AutoFocusMoveCallback.html" class="hiddenlink" target="rightframe"><i>Camera.AutoFocusMoveCallback</i></A><br>
+<!-- Class Camera.CameraInfo -->
+<A HREF="android.hardware.Camera.CameraInfo.html" class="hiddenlink" target="rightframe">Camera.CameraInfo</A><br>
+<!-- Class Camera.ErrorCallback -->
+<A HREF="android.hardware.Camera.ErrorCallback.html" class="hiddenlink" target="rightframe"><i>Camera.ErrorCallback</i></A><br>
+<!-- Class Camera.Face -->
+<A HREF="android.hardware.Camera.Face.html" class="hiddenlink" target="rightframe">Camera.Face</A><br>
+<!-- Class Camera.FaceDetectionListener -->
+<A HREF="android.hardware.Camera.FaceDetectionListener.html" class="hiddenlink" target="rightframe"><i>Camera.FaceDetectionListener</i></A><br>
+<!-- Class Camera.OnZoomChangeListener -->
+<A HREF="android.hardware.Camera.OnZoomChangeListener.html" class="hiddenlink" target="rightframe"><i>Camera.OnZoomChangeListener</i></A><br>
+<!-- Class Camera.Parameters -->
+<A HREF="android.hardware.Camera.Parameters.html" class="hiddenlink" target="rightframe">Camera.Parameters</A><br>
+<!-- Class Camera.PictureCallback -->
+<A HREF="android.hardware.Camera.PictureCallback.html" class="hiddenlink" target="rightframe"><i>Camera.PictureCallback</i></A><br>
+<!-- Class Camera.PreviewCallback -->
+<A HREF="android.hardware.Camera.PreviewCallback.html" class="hiddenlink" target="rightframe"><i>Camera.PreviewCallback</i></A><br>
+<!-- Class Camera.ShutterCallback -->
+<A HREF="android.hardware.Camera.ShutterCallback.html" class="hiddenlink" target="rightframe"><i>Camera.ShutterCallback</i></A><br>
+<!-- Class Camera.Size -->
+<A HREF="android.hardware.Camera.Size.html" class="hiddenlink" target="rightframe">Camera.Size</A><br>
+<!-- Class CameraCaptureSession -->
+<A HREF="android.hardware.camera2.CameraCaptureSession.html" class="hiddenlink" target="rightframe">CameraCaptureSession</A><br>
+<!-- Class CameraCaptureSession.CaptureCallback -->
+<A HREF="pkg_android.hardware.camera2.html#CameraCaptureSession.CaptureCallback" class="hiddenlink" target="rightframe"><b>CameraCaptureSession.CaptureCallback</b></A><br>
+<!-- Class CameraCaptureSession.CaptureListener -->
+<A HREF="pkg_android.hardware.camera2.html#CameraCaptureSession.CaptureListener" class="hiddenlink" target="rightframe"><strike>CameraCaptureSession.CaptureListener</strike></A><br>
+<!-- Class CameraCaptureSession.StateCallback -->
+<A HREF="pkg_android.hardware.camera2.html#CameraCaptureSession.StateCallback" class="hiddenlink" target="rightframe"><b>CameraCaptureSession.StateCallback</b></A><br>
+<!-- Class CameraCaptureSession.StateListener -->
+<A HREF="pkg_android.hardware.camera2.html#CameraCaptureSession.StateListener" class="hiddenlink" target="rightframe"><strike>CameraCaptureSession.StateListener</strike></A><br>
+<!-- Class CameraCharacteristics -->
+<A HREF="android.hardware.camera2.CameraCharacteristics.html" class="hiddenlink" target="rightframe">CameraCharacteristics</A><br>
+<!-- Class CameraDevice -->
+<A HREF="android.hardware.camera2.CameraDevice.html" class="hiddenlink" target="rightframe">CameraDevice</A><br>
+<!-- Class CameraDevice.CaptureListener -->
+<A HREF="pkg_android.hardware.camera2.html#CameraDevice.CaptureListener" class="hiddenlink" target="rightframe"><strike>CameraDevice.CaptureListener</strike></A><br>
+<!-- Class CameraDevice.StateCallback -->
+<A HREF="pkg_android.hardware.camera2.html#CameraDevice.StateCallback" class="hiddenlink" target="rightframe"><b>CameraDevice.StateCallback</b></A><br>
+<!-- Class CameraDevice.StateListener -->
+<A HREF="pkg_android.hardware.camera2.html#CameraDevice.StateListener" class="hiddenlink" target="rightframe"><strike>CameraDevice.StateListener</strike></A><br>
+<!-- Class CameraManager -->
+<A HREF="android.hardware.camera2.CameraManager.html" class="hiddenlink" target="rightframe">CameraManager</A><br>
+<!-- Class CameraManager.AvailabilityCallback -->
+<A HREF="pkg_android.hardware.camera2.html#CameraManager.AvailabilityCallback" class="hiddenlink" target="rightframe"><b>CameraManager.AvailabilityCallback</b></A><br>
+<!-- Class CameraManager.AvailabilityListener -->
+<A HREF="pkg_android.hardware.camera2.html#CameraManager.AvailabilityListener" class="hiddenlink" target="rightframe"><strike>CameraManager.AvailabilityListener</strike></A><br>
+<!-- Class CameraMetadata -->
+<A HREF="android.hardware.camera2.CameraMetadata.html" class="hiddenlink" target="rightframe">CameraMetadata</A><br>
+<!-- Method cancelWps -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.cancelWps_added(android.net.wifi.WifiManager.WpsCallback)" class="hiddenlink" target="rightframe"><b>cancelWps</b>
+(<code>WpsCallback</code>)</A></nobr><br>
+<!-- Class Canvas -->
+<A HREF="android.graphics.Canvas.html" class="hiddenlink" target="rightframe">Canvas</A><br>
+<!-- Method canVirtualize -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.canVirtualize_added(int, int)" class="hiddenlink" target="rightframe"><b>canVirtualize</b>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Method capture -->
+<i>capture</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CameraCaptureSession.html#android.hardware.camera2.CameraCaptureSession.capture_changed(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>CaptureRequest, CaptureCallback, Handler</code>)&nbsp;in&nbsp;android.hardware.camera2.CameraCaptureSession
+</A></nobr><br>
+<!-- Method capture -->
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.capture_removed(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraDevice.CaptureListener, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>CaptureRequest, CaptureListener, Handler</code>)</strike>&nbsp;in&nbsp;android.hardware.camera2.CameraDevice
+</A></nobr><br>
+<!-- Method captureBurst -->
+<i>captureBurst</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CameraCaptureSession.html#android.hardware.camera2.CameraCaptureSession.captureBurst_changed(java.util.List<android.hardware.camera2.CaptureRequest>, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>List&lt;CaptureRequest&gt;, CaptureCallback, Handler</code>)&nbsp;in&nbsp;android.hardware.camera2.CameraCaptureSession
+</A></nobr><br>
+<!-- Method captureBurst -->
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.captureBurst_removed(java.util.List<android.hardware.camera2.CaptureRequest>, android.hardware.camera2.CameraDevice.CaptureListener, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>List&lt;CaptureRequest&gt;, CaptureListener, Handler</code>)</strike>&nbsp;in&nbsp;android.hardware.camera2.CameraDevice
+</A></nobr><br>
+<!-- Class CaptureFailure -->
+<A HREF="android.hardware.camera2.CaptureFailure.html" class="hiddenlink" target="rightframe">CaptureFailure</A><br>
+<!-- Class CaptureRequest -->
+<A HREF="android.hardware.camera2.CaptureRequest.html" class="hiddenlink" target="rightframe">CaptureRequest</A><br>
+<!-- Class CaptureResult -->
+<A HREF="android.hardware.camera2.CaptureResult.html" class="hiddenlink" target="rightframe">CaptureResult</A><br>
+<!-- Class CardEmulation -->
+<A HREF="android.nfc.cardemulation.CardEmulation.html" class="hiddenlink" target="rightframe">CardEmulation</A><br>
+<!-- Field CATEGORY_VOICE -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.CATEGORY_VOICE" class="hiddenlink" target="rightframe"><strike>CATEGORY_VOICE</strike></A>
+</nobr><br>
+<!-- Class ChangeBounds -->
+<i>ChangeBounds</i><br>
+&nbsp;&nbsp;<A HREF="android.transition.ChangeBounds.html" class="hiddenlink" target="rightframe">android.transition</A><br>
+<!-- Constructor ChangeBounds -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.ChangeBounds.html#android.transition.ChangeBounds.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>ChangeBounds</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class ChangeClipBounds -->
+<i>ChangeClipBounds</i><br>
+&nbsp;&nbsp;<A HREF="android.transition.ChangeClipBounds.html" class="hiddenlink" target="rightframe">android.transition</A><br>
+<!-- Constructor ChangeClipBounds -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.ChangeClipBounds.html#android.transition.ChangeClipBounds.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>ChangeClipBounds</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class ChangeImageTransform -->
+<A HREF="pkg_android.transition.html#ChangeImageTransform" class="hiddenlink" target="rightframe"><b>ChangeImageTransform</b></A><br>
+<!-- Class ChangeTransform -->
+<i>ChangeTransform</i><br>
+&nbsp;&nbsp;<A HREF="android.transition.ChangeTransform.html" class="hiddenlink" target="rightframe">android.transition</A><br>
+<!-- Constructor ChangeTransform -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.ChangeTransform.html#android.transition.ChangeTransform.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>ChangeTransform</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field CHANNEL_OUT_SIDE_LEFT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_SIDE_LEFT" class="hiddenlink" target="rightframe">CHANNEL_OUT_SIDE_LEFT</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_SIDE_RIGHT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_SIDE_RIGHT" class="hiddenlink" target="rightframe">CHANNEL_OUT_SIDE_RIGHT</A>
+</nobr><br>
+<!-- Class CheckedTextView -->
+<A HREF="android.widget.CheckedTextView.html" class="hiddenlink" target="rightframe">CheckedTextView</A><br>
+<!-- Field checkMarkTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.checkMarkTint" class="hiddenlink" target="rightframe">checkMarkTint</A>
+</nobr><br>
+<!-- Field checkMarkTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.checkMarkTintMode" class="hiddenlink" target="rightframe">checkMarkTintMode</A>
+</nobr><br>
+<!-- Method clamp -->
+<nobr><A HREF="android.util.Range.html#android.util.Range.clamp_added(T)" class="hiddenlink" target="rightframe"><b>clamp</b>
+(<code>T</code>)</A></nobr><br>
+<!-- Method clearCrossProfileIntentFilters -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearCrossProfileIntentFilters_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>clearCrossProfileIntentFilters</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method clearDeviceOwnerApp -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearDeviceOwnerApp_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>clearDeviceOwnerApp</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method clearForwardingIntentFilters -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearForwardingIntentFilters_removed(android.content.ComponentName)" class="hiddenlink" target="rightframe"><strike>clearForwardingIntentFilters</strike>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method clipRegion -->
+<i>clipRegion</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.clipRegion_changed(android.graphics.Region)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Region</code>)&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<!-- Method clipRegion -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.clipRegion_changed(android.graphics.Region, android.graphics.Region.Op)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Region, Op</code>)&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<!-- Field clipToPath -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.clipToPath" class="hiddenlink" target="rightframe"><strike>clipToPath</strike></A>
+</nobr><br>
+<!-- Field closeIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.closeIcon" class="hiddenlink" target="rightframe">closeIcon</A>
+</nobr><br>
+<!-- Field COLOR_CORRECTION_ABERRATION_MODE -->
+<i>COLOR_CORRECTION_ABERRATION_MODE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.hardware.camera2.CaptureRequest.html#android.hardware.camera2.CaptureRequest.COLOR_CORRECTION_ABERRATION_MODE" class="hiddenlink" target="rightframe">android.hardware.camera2.CaptureRequest</A>
+</nobr><br>
+<!-- Field COLOR_CORRECTION_ABERRATION_MODE -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.hardware.camera2.CaptureResult.html#android.hardware.camera2.CaptureResult.COLOR_CORRECTION_ABERRATION_MODE" class="hiddenlink" target="rightframe">android.hardware.camera2.CaptureResult</A>
+</nobr><br>
+<!-- Field COLOR_CORRECTION_ABERRATION_MODE_FAST -->
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.COLOR_CORRECTION_ABERRATION_MODE_FAST" class="hiddenlink" target="rightframe">COLOR_CORRECTION_ABERRATION_MODE_FAST</A>
+</nobr><br>
+<!-- Field COLOR_CORRECTION_ABERRATION_MODE_HIGH_QUALITY -->
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.COLOR_CORRECTION_ABERRATION_MODE_HIGH_QUALITY" class="hiddenlink" target="rightframe">COLOR_CORRECTION_ABERRATION_MODE_HIGH_QUALITY</A>
+</nobr><br>
+<!-- Field COLOR_CORRECTION_ABERRATION_MODE_OFF -->
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.COLOR_CORRECTION_ABERRATION_MODE_OFF" class="hiddenlink" target="rightframe">COLOR_CORRECTION_ABERRATION_MODE_OFF</A>
+</nobr><br>
+<!-- Field COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES -->
+<nobr><A HREF="android.hardware.camera2.CameraCharacteristics.html#android.hardware.camera2.CameraCharacteristics.COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES" class="hiddenlink" target="rightframe">COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES</A>
+</nobr><br>
+<!-- Field COLOR_FormatYUV420Flexible -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.COLOR_FormatYUV420Flexible" class="hiddenlink" target="rightframe">COLOR_FormatYUV420Flexible</A>
+</nobr><br>
+<!-- Field colorAccent -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorAccent" class="hiddenlink" target="rightframe">colorAccent</A>
+</nobr><br>
+<!-- Field colorButtonNormal -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorButtonNormal" class="hiddenlink" target="rightframe">colorButtonNormal</A>
+</nobr><br>
+<!-- Field colorControlActivated -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorControlActivated" class="hiddenlink" target="rightframe">colorControlActivated</A>
+</nobr><br>
+<!-- Field colorControlHighlight -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorControlHighlight" class="hiddenlink" target="rightframe">colorControlHighlight</A>
+</nobr><br>
+<!-- Field colorControlNormal -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorControlNormal" class="hiddenlink" target="rightframe">colorControlNormal</A>
+</nobr><br>
+<!-- Field colorEdgeEffect -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorEdgeEffect" class="hiddenlink" target="rightframe">colorEdgeEffect</A>
+</nobr><br>
+<!-- Class ColorMatrixColorFilter -->
+<A HREF="android.graphics.ColorMatrixColorFilter.html" class="hiddenlink" target="rightframe">ColorMatrixColorFilter</A><br>
+<!-- Field colorPrimary -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorPrimary" class="hiddenlink" target="rightframe">colorPrimary</A>
+</nobr><br>
+<!-- Field colorPrimaryDark -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorPrimaryDark" class="hiddenlink" target="rightframe">colorPrimaryDark</A>
+</nobr><br>
+<!-- Field COLUMN_BROWSABLE -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.COLUMN_BROWSABLE" class="hiddenlink" target="rightframe"><strike>COLUMN_BROWSABLE</strike></A>
+</nobr><br>
+<!-- Field COLUMN_CONTENT_RATING -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.html#android.media.tv.TvContract.Programs.COLUMN_CONTENT_RATING" class="hiddenlink" target="rightframe">COLUMN_CONTENT_RATING</A>
+</nobr><br>
+<!-- Field COLUMN_EPISODE_NUMBER -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.html#android.media.tv.TvContract.Programs.COLUMN_EPISODE_NUMBER" class="hiddenlink" target="rightframe">COLUMN_EPISODE_NUMBER</A>
+</nobr><br>
+<!-- Field COLUMN_EPISODE_TITLE -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.html#android.media.tv.TvContract.Programs.COLUMN_EPISODE_TITLE" class="hiddenlink" target="rightframe">COLUMN_EPISODE_TITLE</A>
+</nobr><br>
+<!-- Field COLUMN_INPUT_ID -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.COLUMN_INPUT_ID" class="hiddenlink" target="rightframe">COLUMN_INPUT_ID</A>
+</nobr><br>
+<!-- Field COLUMN_NETWORK_AFFILIATION -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.COLUMN_NETWORK_AFFILIATION" class="hiddenlink" target="rightframe">COLUMN_NETWORK_AFFILIATION</A>
+</nobr><br>
+<!-- Field COLUMN_SEASON_NUMBER -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.html#android.media.tv.TvContract.Programs.COLUMN_SEASON_NUMBER" class="hiddenlink" target="rightframe">COLUMN_SEASON_NUMBER</A>
+</nobr><br>
+<!-- Field COLUMN_SERVICE_NAME -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.COLUMN_SERVICE_NAME" class="hiddenlink" target="rightframe"><strike>COLUMN_SERVICE_NAME</strike></A>
+</nobr><br>
+<!-- Field COLUMN_VIDEO_FORMAT -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.COLUMN_VIDEO_FORMAT" class="hiddenlink" target="rightframe">COLUMN_VIDEO_FORMAT</A>
+</nobr><br>
+<!-- Field COLUMN_VIDEO_HEIGHT -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.html#android.media.tv.TvContract.Programs.COLUMN_VIDEO_HEIGHT" class="hiddenlink" target="rightframe">COLUMN_VIDEO_HEIGHT</A>
+</nobr><br>
+<!-- Field COLUMN_VIDEO_WIDTH -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.html#android.media.tv.TvContract.Programs.COLUMN_VIDEO_WIDTH" class="hiddenlink" target="rightframe">COLUMN_VIDEO_WIDTH</A>
+</nobr><br>
+<!-- Field COMEDY -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.COMEDY" class="hiddenlink" target="rightframe">COMEDY</A>
+</nobr><br>
+<!-- Field COMMENTS -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.COMMENTS" class="hiddenlink" target="rightframe">COMMENTS</A>
+</nobr><br>
+<!-- Field commitIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.commitIcon" class="hiddenlink" target="rightframe">commitIcon</A>
+</nobr><br>
+<!-- Class CompoundButton -->
+<A HREF="android.widget.CompoundButton.html" class="hiddenlink" target="rightframe">CompoundButton</A><br>
+<!-- Method computeSystemWindowInsets -->
+<nobr><A HREF="android.view.View.html#android.view.View.computeSystemWindowInsets_added(android.view.WindowInsets, android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>computeSystemWindowInsets</b>
+(<code>WindowInsets, Rect</code>)</A></nobr><br>
+<!-- Class ConcurrentLinkedDeque -->
+<A HREF="pkg_java.util.concurrent.html#ConcurrentLinkedDeque" class="hiddenlink" target="rightframe"><b>ConcurrentLinkedDeque</b></A><br>
+<!-- Method configureOutputs -->
+<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.configureOutputs_removed(java.util.List<android.view.Surface>)" class="hiddenlink" target="rightframe"><strike>configureOutputs</strike>
+(<code>List&lt;Surface&gt;</code>)</A></nobr><br>
+<!-- Field CONNECTION_PRIORITY_BALANCED -->
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_BALANCED" class="hiddenlink" target="rightframe">CONNECTION_PRIORITY_BALANCED</A>
+</nobr><br>
+<!-- Field CONNECTION_PRIORITY_HIGH -->
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_HIGH" class="hiddenlink" target="rightframe">CONNECTION_PRIORITY_HIGH</A>
+</nobr><br>
+<!-- Field CONNECTION_PRIORITY_LOW_POWER -->
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_LOW_POWER" class="hiddenlink" target="rightframe">CONNECTION_PRIORITY_LOW_POWER</A>
+</nobr><br>
+<!-- Class ConnectivityManager -->
+<A HREF="android.net.ConnectivityManager.html" class="hiddenlink" target="rightframe">ConnectivityManager</A><br>
+<!-- Method consumeStableInsets -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.consumeStableInsets_added()" class="hiddenlink" target="rightframe"><b>consumeStableInsets</b>
+()</A></nobr><br>
+<!-- Field CONTACT_ID -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.CONTACT_ID" class="hiddenlink" target="rightframe">CONTACT_ID</A>
+</nobr><br>
+<!-- Field CONTACT_LOOKUP_KEY -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.CONTACT_LOOKUP_KEY" class="hiddenlink" target="rightframe">CONTACT_LOOKUP_KEY</A>
+</nobr><br>
+<!-- Class ContactsContract -->
+<A HREF="android.provider.ContactsContract.html" class="hiddenlink" target="rightframe">ContactsContract</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Callable -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Callable.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Callable</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Contactables -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Contactables</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Email -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Email</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Event -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Event</A><br>
+<!-- Class ContactsContract.CommonDataKinds.GroupMembership -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.GroupMembership</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Identity -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Identity</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Im -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Im</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Nickname -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Nickname</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Note -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Note</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Organization -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Organization</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Phone -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Phone</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Photo -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Photo</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Relation -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Relation</A><br>
+<!-- Class ContactsContract.CommonDataKinds.SipAddress -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.SipAddress</A><br>
+<!-- Class ContactsContract.CommonDataKinds.StructuredName -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.StructuredName</A><br>
+<!-- Class ContactsContract.CommonDataKinds.StructuredPostal -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.StructuredPostal</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Website -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Website</A><br>
+<!-- Class ContactsContract.ContactOptionsColumns -->
+<A HREF="android.provider.ContactsContract.ContactOptionsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.ContactOptionsColumns</i></A><br>
+<!-- Class ContactsContract.Contacts -->
+<A HREF="android.provider.ContactsContract.Contacts.html" class="hiddenlink" target="rightframe">ContactsContract.Contacts</A><br>
+<!-- Class ContactsContract.Contacts.Entity -->
+<A HREF="android.provider.ContactsContract.Contacts.Entity.html" class="hiddenlink" target="rightframe">ContactsContract.Contacts.Entity</A><br>
+<!-- Class ContactsContract.Contacts.StreamItems -->
+<A HREF="android.provider.ContactsContract.Contacts.StreamItems.html" class="hiddenlink" target="rightframe">ContactsContract.Contacts.StreamItems</A><br>
+<!-- Class ContactsContract.ContactsColumns -->
+<A HREF="android.provider.ContactsContract.ContactsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.ContactsColumns</i></A><br>
+<!-- Class ContactsContract.Data -->
+<A HREF="android.provider.ContactsContract.Data.html" class="hiddenlink" target="rightframe">ContactsContract.Data</A><br>
+<!-- Class ContactsContract.DataColumns -->
+<A HREF="android.provider.ContactsContract.DataColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.DataColumns</i></A><br>
+<!-- Class ContactsContract.GroupsColumns -->
+<A HREF="android.provider.ContactsContract.GroupsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.GroupsColumns</i></A><br>
+<!-- Class ContactsContract.PhoneLookup -->
+<A HREF="android.provider.ContactsContract.PhoneLookup.html" class="hiddenlink" target="rightframe">ContactsContract.PhoneLookup</A><br>
+<!-- Class ContactsContract.PinnedPositions -->
+<A HREF="pkg_android.provider.html#ContactsContract.PinnedPositions" class="hiddenlink" target="rightframe"><b>ContactsContract.PinnedPositions</b></A><br>
+<!-- Class ContactsContract.Preferences -->
+<A HREF="pkg_android.provider.html#ContactsContract.Preferences" class="hiddenlink" target="rightframe"><strike>ContactsContract.Preferences</strike></A><br>
+<!-- Class ContactsContract.QuickContact -->
+<A HREF="android.provider.ContactsContract.QuickContact.html" class="hiddenlink" target="rightframe">ContactsContract.QuickContact</A><br>
+<!-- Class ContactsContract.RawContacts.StreamItems -->
+<A HREF="android.provider.ContactsContract.RawContacts.StreamItems.html" class="hiddenlink" target="rightframe">ContactsContract.RawContacts.StreamItems</A><br>
+<!-- Class ContactsContract.RawContactsColumns -->
+<A HREF="android.provider.ContactsContract.RawContactsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.RawContactsColumns</i></A><br>
+<!-- Class ContactsContract.SearchSnippets -->
+<A HREF="pkg_android.provider.html#ContactsContract.SearchSnippets" class="hiddenlink" target="rightframe"><b>ContactsContract.SearchSnippets</b></A><br>
+<!-- Class ContactsContract.StreamItemPhotos -->
+<A HREF="android.provider.ContactsContract.StreamItemPhotos.html" class="hiddenlink" target="rightframe">ContactsContract.StreamItemPhotos</A><br>
+<!-- Class ContactsContract.StreamItemPhotosColumns -->
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.StreamItemPhotosColumns</i></A><br>
+<!-- Class ContactsContract.StreamItems -->
+<A HREF="android.provider.ContactsContract.StreamItems.html" class="hiddenlink" target="rightframe">ContactsContract.StreamItems</A><br>
+<!-- Class ContactsContract.StreamItems.StreamItemPhotos -->
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html" class="hiddenlink" target="rightframe">ContactsContract.StreamItems.StreamItemPhotos</A><br>
+<!-- Class ContactsContract.StreamItemsColumns -->
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.StreamItemsColumns</i></A><br>
+<!-- Method contains -->
+<i>contains</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.contains_added(T)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+<!-- Method contains -->
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.contains_added(android.util.Range<T>)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Range&lt;T&gt;</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+<!-- Field CONTENT_DIRECTORY -->
+<i>CONTENT_DIRECTORY</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.StreamItems.html#android.provider.ContactsContract.Contacts.StreamItems.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts.StreamItems</A>
+</nobr><br>
+<!-- Field CONTENT_DIRECTORY -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.RawContacts.StreamItems.html#android.provider.ContactsContract.RawContacts.StreamItems.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.ContactsContract.RawContacts.StreamItems</A>
+</nobr><br>
+<!-- Field CONTENT_DIRECTORY -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html#android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems.StreamItemPhotos</A>
+</nobr><br>
+<!-- Field CONTENT_FREQUENT_URI -->
+<nobr><A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.CONTENT_FREQUENT_URI" class="hiddenlink" target="rightframe">CONTENT_FREQUENT_URI</A>
+</nobr><br>
+<!-- Field CONTENT_ITEM_TYPE -->
+<i>CONTENT_ITEM_TYPE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems</A>
+</nobr><br>
+<!-- Field CONTENT_ITEM_TYPE -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html#android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems.StreamItemPhotos</A>
+</nobr><br>
+<!-- Field CONTENT_LIMIT_URI -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_LIMIT_URI" class="hiddenlink" target="rightframe">CONTENT_LIMIT_URI</A>
+</nobr><br>
+<!-- Field CONTENT_PHOTO_URI -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_PHOTO_URI" class="hiddenlink" target="rightframe">CONTENT_PHOTO_URI</A>
+</nobr><br>
+<!-- Field CONTENT_TYPE -->
+<i>CONTENT_TYPE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems</A>
+</nobr><br>
+<!-- Field CONTENT_TYPE -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html#android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems.StreamItemPhotos</A>
+</nobr><br>
+<!-- Field CONTENT_URI -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_URI" class="hiddenlink" target="rightframe">CONTENT_URI</A>
+</nobr><br>
+<!-- Field contentAgeHint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentAgeHint" class="hiddenlink" target="rightframe">contentAgeHint</A>
+</nobr><br>
+<!-- Field contentInsetEnd -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetEnd" class="hiddenlink" target="rightframe">contentInsetEnd</A>
+</nobr><br>
+<!-- Field contentInsetLeft -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetLeft" class="hiddenlink" target="rightframe">contentInsetLeft</A>
+</nobr><br>
+<!-- Field contentInsetRight -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetRight" class="hiddenlink" target="rightframe">contentInsetRight</A>
+</nobr><br>
+<!-- Field contentInsetStart -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetStart" class="hiddenlink" target="rightframe">contentInsetStart</A>
+</nobr><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>
+<!-- Field CONTROL_SCENE_MODE_HIGH_SPEED_VIDEO -->
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.CONTROL_SCENE_MODE_HIGH_SPEED_VIDEO" class="hiddenlink" target="rightframe">CONTROL_SCENE_MODE_HIGH_SPEED_VIDEO</A>
+</nobr><br>
+<!-- Field controlX1 -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlX1" class="hiddenlink" target="rightframe">controlX1</A>
+</nobr><br>
+<!-- Field controlX2 -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlX2" class="hiddenlink" target="rightframe">controlX2</A>
+</nobr><br>
+<!-- Field controlY1 -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlY1" class="hiddenlink" target="rightframe">controlY1</A>
+</nobr><br>
+<!-- Field controlY2 -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlY2" class="hiddenlink" target="rightframe">controlY2</A>
+</nobr><br>
+<!-- Class CookieManager -->
+<A HREF="android.webkit.CookieManager.html" class="hiddenlink" target="rightframe">CookieManager</A><br>
+<!-- Class CookieSyncManager -->
+<A HREF="android.webkit.CookieSyncManager.html" class="hiddenlink" target="rightframe">CookieSyncManager</A><br>
+<!-- Field country -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.country" class="hiddenlink" target="rightframe">country</A>
+</nobr><br>
+<!-- Field CPU_ABI -->
+<nobr><A HREF="android.os.Build.html#android.os.Build.CPU_ABI" class="hiddenlink" target="rightframe">CPU_ABI</A>
+</nobr><br>
+<!-- Field CPU_ABI2 -->
+<nobr><A HREF="android.os.Build.html#android.os.Build.CPU_ABI2" class="hiddenlink" target="rightframe">CPU_ABI2</A>
+</nobr><br>
+<!-- Method create -->
+<i>create</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.create_added(android.content.Context, android.net.Uri, android.view.SurfaceHolder, android.media.AudioAttributes, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context, Uri, SurfaceHolder, AudioAttributes, int</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+<!-- Method create -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.create_added(android.content.Context, int, android.media.AudioAttributes, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context, int, AudioAttributes, int</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+<!-- Method createAlwaysOnHotwordDetector -->
+<nobr><A HREF="android.service.voice.VoiceInteractionService.html#android.service.voice.VoiceInteractionService.createAlwaysOnHotwordDetector_added(java.lang.String, java.util.Locale, android.service.voice.AlwaysOnHotwordDetector.Callback)" class="hiddenlink" target="rightframe"><b>createAlwaysOnHotwordDetector</b>
+(<code>String, Locale, Callback</code>)</A></nobr><br>
+<!-- Method createAndInitializeUser -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.createAndInitializeUser_added(android.content.ComponentName, java.lang.String, java.lang.String, android.content.ComponentName, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>createAndInitializeUser</b>
+(<code>ComponentName, String, String, ComponentName, Bundle</code>)</A></nobr><br>
+<!-- Method createCaptureSession -->
+<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.createCaptureSession_changed(java.util.List<android.view.Surface>, android.hardware.camera2.CameraCaptureSession.StateCallback, android.os.Handler)" class="hiddenlink" target="rightframe">createCaptureSession
+(<code>List&lt;Surface&gt;, StateCallback, Handler</code>)</A></nobr><br>
+<!-- Method createCircularReveal -->
+<nobr><A HREF="android.view.ViewAnimationUtils.html#android.view.ViewAnimationUtils.createCircularReveal_changed(android.view.View, int, int, float, float)" class="hiddenlink" target="rightframe">createCircularReveal
+(<code>View, int, int, float, float</code>)</A></nobr><br>
+<!-- Method createConfirmDeviceCredentialIntent -->
+<nobr><A HREF="android.app.KeyguardManager.html#android.app.KeyguardManager.createConfirmDeviceCredentialIntent_added(java.lang.CharSequence, java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>createConfirmDeviceCredentialIntent</b>
+(<code>CharSequence, CharSequence</code>)</A></nobr><br>
+<!-- Method createFromProfileLevel -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.createFromProfileLevel_added(java.lang.String, int, int)" class="hiddenlink" target="rightframe"><b>createFromProfileLevel</b>
+(<code>String, int, int</code>)</A></nobr><br>
+<!-- Method createSession -->
+<nobr><A HREF="android.media.session.MediaSessionManager.html#android.media.session.MediaSessionManager.createSession_removed(java.lang.String)" class="hiddenlink" target="rightframe"><strike>createSession</strike>
+(<code>String</code>)</A></nobr><br>
+<!-- Method createSettingsIntent -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.createSettingsIntent_added()" class="hiddenlink" target="rightframe"><b>createSettingsIntent</b>
+()</A></nobr><br>
+<!-- Method createSetupIntent -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.createSetupIntent_added()" class="hiddenlink" target="rightframe"><b>createSetupIntent</b>
+()</A></nobr><br>
+<!-- Method createVirtualDisplay -->
+<nobr><A HREF="android.hardware.display.DisplayManager.html#android.hardware.display.DisplayManager.createVirtualDisplay_added(java.lang.String, int, int, int, android.view.Surface, int, android.hardware.display.VirtualDisplay.Callback, android.os.Handler)" class="hiddenlink" target="rightframe"><b>createVirtualDisplay</b>
+(<code>String, int, int, int, Surface, int, Callback, Handler</code>)</A></nobr><br>
+<!-- Field CREATOR -->
+<i>CREATOR</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.CREATOR" class="hiddenlink" target="rightframe">android.media.tv.TvInputInfo</A>
+</nobr><br>
+<!-- Field CREATOR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.net.LinkAddress.html#android.net.LinkAddress.CREATOR" class="hiddenlink" target="rightframe">android.net.LinkAddress</A>
+</nobr><br>
+<!-- Field CREATOR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.net.ProxyInfo.html#android.net.ProxyInfo.CREATOR" class="hiddenlink" target="rightframe">android.net.ProxyInfo</A>
+</nobr><br>
+<!-- Field CREATOR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.Telephony.BaseMmsColumns.html#android.provider.Telephony.BaseMmsColumns.CREATOR" class="hiddenlink" target="rightframe">android.provider.Telephony.BaseMmsColumns</A>
+</nobr><br>
+<!-- Field CREATOR -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.Telephony.TextBasedSmsColumns.html#android.provider.Telephony.TextBasedSmsColumns.CREATOR" class="hiddenlink" target="rightframe">android.provider.Telephony.TextBasedSmsColumns</A>
+</nobr><br>
+<!-- Field CURSOR_ANCHOR_MONITOR_MODE_CURSOR_RECT -->
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.CURSOR_ANCHOR_MONITOR_MODE_CURSOR_RECT" class="hiddenlink" target="rightframe"><strike>CURSOR_ANCHOR_MONITOR_MODE_CURSOR_RECT</strike></A>
+</nobr><br>
+<!-- Field CURSOR_ANCHOR_MONITOR_MODE_NONE -->
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.CURSOR_ANCHOR_MONITOR_MODE_NONE" class="hiddenlink" target="rightframe"><strike>CURSOR_ANCHOR_MONITOR_MODE_NONE</strike></A>
+</nobr><br>
+<!-- Field CURSOR_UPDATE_IMMEDIATE -->
+<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.CURSOR_UPDATE_IMMEDIATE" class="hiddenlink" target="rightframe">CURSOR_UPDATE_IMMEDIATE</A>
+</nobr><br>
+<!-- Field CURSOR_UPDATE_MONITOR -->
+<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.CURSOR_UPDATE_MONITOR" class="hiddenlink" target="rightframe">CURSOR_UPDATE_MONITOR</A>
+</nobr><br>
+<!-- Class CursorAnchorInfo -->
+<A HREF="android.view.inputmethod.CursorAnchorInfo.html" class="hiddenlink" target="rightframe">CursorAnchorInfo</A><br>
+<!-- Class CursorAnchorInfo.Builder -->
+<A HREF="android.view.inputmethod.CursorAnchorInfo.Builder.html" class="hiddenlink" target="rightframe">CursorAnchorInfo.Builder</A><br>
+<!-- Field DATA_SET -->
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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="#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.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.DATA_SET" class="hiddenlink" target="rightframe">DATA_SET</A>
+</nobr><br>
+<!-- Field DATA_USAGE -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.DATA_USAGE" class="hiddenlink" target="rightframe">DATA_USAGE</A>
+</nobr><br>
+<!-- Class DatePicker -->
+<A HREF="android.widget.DatePicker.html" class="hiddenlink" target="rightframe">DatePicker</A><br>
+<!-- Field datePickerDialogTheme -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.datePickerDialogTheme" class="hiddenlink" target="rightframe">datePickerDialogTheme</A>
+</nobr><br>
+<!-- Field datePickerMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.datePickerMode" class="hiddenlink" target="rightframe">datePickerMode</A>
+</nobr><br>
+<!-- Field dayOfWeekBackground -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.dayOfWeekBackground" class="hiddenlink" target="rightframe">dayOfWeekBackground</A>
+</nobr><br>
+<!-- Field dayOfWeekTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.dayOfWeekTextAppearance" class="hiddenlink" target="rightframe">dayOfWeekTextAppearance</A>
+</nobr><br>
+<!-- Field DEFAULT_INITIAL_BACKOFF_MILLIS -->
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.DEFAULT_INITIAL_BACKOFF_MILLIS" class="hiddenlink" target="rightframe">DEFAULT_INITIAL_BACKOFF_MILLIS</A>
+</nobr><br>
+<!-- Field DEFERRED_SNIPPETING -->
+<nobr><A HREF="android.provider.ContactsContract.html#android.provider.ContactsContract.DEFERRED_SNIPPETING" class="hiddenlink" target="rightframe">DEFERRED_SNIPPETING</A>
+</nobr><br>
+<!-- Field DEFERRED_SNIPPETING_QUERY -->
+<nobr><A HREF="android.provider.ContactsContract.html#android.provider.ContactsContract.DEFERRED_SNIPPETING_QUERY" class="hiddenlink" target="rightframe">DEFERRED_SNIPPETING_QUERY</A>
+</nobr><br>
+<!-- Field DENSITY_560 -->
+<nobr><A HREF="android.util.DisplayMetrics.html#android.util.DisplayMetrics.DENSITY_560" class="hiddenlink" target="rightframe">DENSITY_560</A>
+</nobr><br>
+<!-- Class DeviceAdminReceiver -->
+<A HREF="android.app.admin.DeviceAdminReceiver.html" class="hiddenlink" target="rightframe">DeviceAdminReceiver</A><br>
+<!-- Class DevicePolicyManager -->
+<A HREF="android.app.admin.DevicePolicyManager.html" class="hiddenlink" target="rightframe">DevicePolicyManager</A><br>
+<!-- Field DISALLOW_APPS_CONTROL -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_APPS_CONTROL" class="hiddenlink" target="rightframe">DISALLOW_APPS_CONTROL</A>
+</nobr><br>
+<!-- Field DISALLOW_CONFIG_APPS -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CONFIG_APPS" class="hiddenlink" target="rightframe"><strike>DISALLOW_CONFIG_APPS</strike></A>
+</nobr><br>
+<!-- Field DISALLOW_CREATE_WINDOWS -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CREATE_WINDOWS" class="hiddenlink" target="rightframe">DISALLOW_CREATE_WINDOWS</A>
+</nobr><br>
+<!-- Field DISALLOW_CROSS_PROFILE_COPY_PASTE -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CROSS_PROFILE_COPY_PASTE" class="hiddenlink" target="rightframe">DISALLOW_CROSS_PROFILE_COPY_PASTE</A>
+</nobr><br>
+<!-- Field DISALLOW_OUTGOING_CALLS -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_OUTGOING_CALLS" class="hiddenlink" target="rightframe">DISALLOW_OUTGOING_CALLS</A>
+</nobr><br>
+<!-- Field DISALLOW_SMS -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_SMS" class="hiddenlink" target="rightframe">DISALLOW_SMS</A>
+</nobr><br>
+<!-- Field DISALLOW_TELEPHONY -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_TELEPHONY" class="hiddenlink" target="rightframe"><strike>DISALLOW_TELEPHONY</strike></A>
+</nobr><br>
+<!-- Method dispatchNestedPreFling -->
+<nobr><A HREF="android.view.View.html#android.view.View.dispatchNestedPreFling_added(float, float)" class="hiddenlink" target="rightframe"><b>dispatchNestedPreFling</b>
+(<code>float, float</code>)</A></nobr><br>
+<!-- Class Display -->
+<A HREF="android.view.Display.html" class="hiddenlink" target="rightframe">Display</A><br>
+<!-- Class DisplayManager -->
+<A HREF="android.hardware.display.DisplayManager.html" class="hiddenlink" target="rightframe">DisplayManager</A><br>
+<!-- Class DisplayMetrics -->
+<A HREF="android.util.DisplayMetrics.html" class="hiddenlink" target="rightframe">DisplayMetrics</A><br>
+<!-- Class DngCreator -->
+<A HREF="android.hardware.camera2.DngCreator.html" class="hiddenlink" target="rightframe">DngCreator</A><br>
+<!-- Field documentLaunchMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.documentLaunchMode" class="hiddenlink" target="rightframe">documentLaunchMode</A>
+</nobr><br>
+<!-- Method downloadMultimediaMessage -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.downloadMultimediaMessage_added(android.content.Context, java.lang.String, android.net.Uri, android.os.Bundle, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>downloadMultimediaMessage</b>
+(<code>Context, String, Uri, Bundle, PendingIntent</code>)</A></nobr><br>
+<!-- Field DRAMA -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.DRAMA" class="hiddenlink" target="rightframe">DRAMA</A>
+</nobr><br>
+<!-- Class Drawable -->
+<A HREF="android.graphics.drawable.Drawable.html" class="hiddenlink" target="rightframe">Drawable</A><br>
+<!-- Method drawableHotspotChanged -->
+<nobr><A HREF="android.view.View.html#android.view.View.drawableHotspotChanged_added(float, float)" class="hiddenlink" target="rightframe"><b>drawableHotspotChanged</b>
+(<code>float, float</code>)</A></nobr><br>
+<!-- Method drawArc -->
+<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawArc_added(float, float, float, float, float, float, boolean, android.graphics.Paint)" class="hiddenlink" target="rightframe"><b>drawArc</b>
+(<code>float, float, float, float, float, float, boolean, Paint</code>)</A></nobr><br>
+<!-- Method drawOval -->
+<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawOval_added(float, float, float, float, android.graphics.Paint)" class="hiddenlink" target="rightframe"><b>drawOval</b>
+(<code>float, float, float, float, Paint</code>)</A></nobr><br>
+<!-- Class DreamService -->
+<A HREF="android.service.dreams.DreamService.html" class="hiddenlink" target="rightframe">DreamService</A><br>
+<!-- Class EdgeEffect -->
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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">
+<A HREF="android.widget.EdgeEffect.html" class="hiddenlink" target="rightframe">EdgeEffect</A><br>
+<!-- Field EDUCATION -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.EDUCATION" class="hiddenlink" target="rightframe">EDUCATION</A>
+</nobr><br>
+<!-- Field elegantTextHeight -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.elegantTextHeight" class="hiddenlink" target="rightframe">elegantTextHeight</A>
+</nobr><br>
+<!-- Field elevation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.elevation" class="hiddenlink" target="rightframe">elevation</A>
+</nobr><br>
+<!-- Field ENABLE_CAR_MODE_ALLOW_SLEEP -->
+<nobr><A HREF="android.app.UiModeManager.html#android.app.UiModeManager.ENABLE_CAR_MODE_ALLOW_SLEEP" class="hiddenlink" target="rightframe">ENABLE_CAR_MODE_ALLOW_SLEEP</A>
+</nobr><br>
+<!-- Method enableHardwareAcceleration -->
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.enableHardwareAcceleration_changed()" class="hiddenlink" target="rightframe">enableHardwareAcceleration
+()</A></nobr><br>
+<!-- Method enableSlowWholeDocumentDraw -->
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.enableSlowWholeDocumentDraw_added()" class="hiddenlink" target="rightframe"><b>enableSlowWholeDocumentDraw</b>
+()</A></nobr><br>
+<!-- Field ENCODING_AC3 -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ENCODING_AC3" class="hiddenlink" target="rightframe">ENCODING_AC3</A>
+</nobr><br>
+<!-- Field ENCODING_E_AC3 -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ENCODING_E_AC3" class="hiddenlink" target="rightframe">ENCODING_E_AC3</A>
+</nobr><br>
+<!-- Field ENTERPRISE_CONTENT_FILTER_URI -->
+<nobr><A HREF="android.provider.ContactsContract.PhoneLookup.html#android.provider.ContactsContract.PhoneLookup.ENTERPRISE_CONTENT_FILTER_URI" class="hiddenlink" target="rightframe">ENTERPRISE_CONTENT_FILTER_URI</A>
+</nobr><br>
+<!-- Method error -->
+<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.error_added(int)" class="hiddenlink" target="rightframe"><b>error</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Field ERROR -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ERROR" class="hiddenlink" target="rightframe">ERROR</A>
+</nobr><br>
+<!-- Field ERROR_BUSY -->
+<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.ERROR_BUSY" class="hiddenlink" target="rightframe"><strike>ERROR_BUSY</strike></A>
+</nobr><br>
+<!-- Field ERROR_DEAD_OBJECT -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ERROR_DEAD_OBJECT" class="hiddenlink" target="rightframe">ERROR_DEAD_OBJECT</A>
+</nobr><br>
+<!-- Field ERROR_INSUFFICIENT_OUTPUT_PROTECTION -->
+<nobr><A HREF="android.media.MediaCodec.CryptoException.html#android.media.MediaCodec.CryptoException.ERROR_INSUFFICIENT_OUTPUT_PROTECTION" class="hiddenlink" target="rightframe">ERROR_INSUFFICIENT_OUTPUT_PROTECTION</A>
+</nobr><br>
+<!-- Field ERROR_INVALID_REQUEST -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_INVALID_REQUEST" class="hiddenlink" target="rightframe">ERROR_INVALID_REQUEST</A>
+</nobr><br>
+<!-- Field ERROR_NETWORK -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_NETWORK" class="hiddenlink" target="rightframe">ERROR_NETWORK</A>
+</nobr><br>
+<!-- Field ERROR_NETWORK_TIMEOUT -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_NETWORK_TIMEOUT" class="hiddenlink" target="rightframe">ERROR_NETWORK_TIMEOUT</A>
+</nobr><br>
+<!-- Field ERROR_NOT_INSTALLED_YET -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_NOT_INSTALLED_YET" class="hiddenlink" target="rightframe">ERROR_NOT_INSTALLED_YET</A>
+</nobr><br>
+<!-- Field ERROR_OUTPUT -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_OUTPUT" class="hiddenlink" target="rightframe">ERROR_OUTPUT</A>
+</nobr><br>
+<!-- Field ERROR_SERVICE -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_SERVICE" class="hiddenlink" target="rightframe">ERROR_SERVICE</A>
+</nobr><br>
+<!-- Field ERROR_SYNTHESIS -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_SYNTHESIS" class="hiddenlink" target="rightframe">ERROR_SYNTHESIS</A>
+</nobr><br>
+<!-- Field ERROR_TV_INPUT_DISCONNECTED -->
+<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.ERROR_TV_INPUT_DISCONNECTED" class="hiddenlink" target="rightframe"><strike>ERROR_TV_INPUT_DISCONNECTED</strike></A>
+</nobr><br>
+<!-- Field excludeClass -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeClass" class="hiddenlink" target="rightframe">excludeClass</A>
+</nobr><br>
+<!-- Field excludeId -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeId" class="hiddenlink" target="rightframe">excludeId</A>
+</nobr><br>
+<!-- Field excludeName -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeName" class="hiddenlink" target="rightframe">excludeName</A>
+</nobr><br>
+<!-- Field excludeViewName -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeViewName" class="hiddenlink" target="rightframe"><strike>excludeViewName</strike></A>
+</nobr><br>
+<!-- Class Explode -->
+<i>Explode</i><br>
+&nbsp;&nbsp;<A HREF="android.transition.Explode.html" class="hiddenlink" target="rightframe">android.transition</A><br>
+<!-- Constructor Explode -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Explode.html#android.transition.Explode.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Explode</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field explode -->
+<nobr><A HREF="android.R.transition.html#android.R.transition.explode" class="hiddenlink" target="rightframe">explode</A>
+</nobr><br>
+<!-- Method extend -->
+<i>extend</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.extend_added(T)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+<!-- Method extend -->
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.extend_added(T, T)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, T</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+<!-- Method extend -->
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.extend_added(android.util.Range<T>)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Range&lt;T&gt;</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<i>EXTRA_ADDRESS_BOOK_INDEX</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Callable.html#android.provider.ContactsContract.CommonDataKinds.Callable.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Callable</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html#android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Contactables</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html#android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Email</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Event</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html#android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.GroupMembership</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html#android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Identity</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html#android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Im</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html#android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Nickname</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html#android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Note</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html#android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Organization</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html#android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Phone</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html#android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Photo</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html#android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Relation</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html#android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.SipAddress</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredName</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html#android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html#android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Website</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Data.html#android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Data</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<i>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Callable.html#android.provider.ContactsContract.CommonDataKinds.Callable.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Callable</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html#android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Contactables</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html#android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Email</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Event</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html#android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.GroupMembership</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html#android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Identity</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html#android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Im</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html#android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Nickname</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html#android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Note</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html#android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Organization</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html#android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Phone</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html#android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Photo</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html#android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Relation</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html#android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.SipAddress</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredName</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html#android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html#android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Website</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Data.html#android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Data</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<i>EXTRA_ADDRESS_BOOK_INDEX_TITLES</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Callable.html#android.provider.ContactsContract.CommonDataKinds.Callable.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Callable</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html#android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Contactables</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html#android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Email</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Event</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html#android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.GroupMembership</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html#android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Identity</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html#android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Im</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html#android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Nickname</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html#android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Note</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html#android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Organization</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html#android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Phone</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html#android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Photo</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html#android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Relation</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html#android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.SipAddress</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredName</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html#android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html#android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Website</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts</A>
+</nobr><br>
+<!-- Field EXTRA_ADDRESS_BOOK_INDEX_TITLES -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Data.html#android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Data</A>
+</nobr><br>
+<!-- Field EXTRA_APPWIDGET_PROVIDER_PROFILE -->
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE" class="hiddenlink" target="rightframe">EXTRA_APPWIDGET_PROVIDER_PROFILE</A>
+</nobr><br>
+<!-- Field EXTRA_ASSIST_INPUT_HINT_KEYBOARD -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD" class="hiddenlink" target="rightframe">EXTRA_ASSIST_INPUT_HINT_KEYBOARD</A>
+</nobr><br>
+<!-- Field EXTRA_AUDIO_PLUG_STATE -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.EXTRA_AUDIO_PLUG_STATE" class="hiddenlink" target="rightframe">EXTRA_AUDIO_PLUG_STATE</A>
+</nobr><br>
+<!-- Field EXTRA_BIG_TEXT -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_BIG_TEXT" class="hiddenlink" target="rightframe">EXTRA_BIG_TEXT</A>
+</nobr><br>
+<!-- Field EXTRA_CALL_TYPE_FILTER -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.EXTRA_CALL_TYPE_FILTER" class="hiddenlink" target="rightframe">EXTRA_CALL_TYPE_FILTER</A>
+</nobr><br>
+<!-- Field EXTRA_COMPACT_ACTIONS -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_COMPACT_ACTIONS" class="hiddenlink" target="rightframe">EXTRA_COMPACT_ACTIONS</A>
+</nobr><br>
+<!-- Field EXTRA_ENCODINGS -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.EXTRA_ENCODINGS" class="hiddenlink" target="rightframe">EXTRA_ENCODINGS</A>
+</nobr><br>
+<!-- Field EXTRA_EXCLUDE_MIMES -->
+<nobr><A HREF="android.provider.ContactsContract.QuickContact.html#android.provider.ContactsContract.QuickContact.EXTRA_EXCLUDE_MIMES" class="hiddenlink" target="rightframe">EXTRA_EXCLUDE_MIMES</A>
+</nobr><br>
+<!-- Field EXTRA_INPUT_ID -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.EXTRA_INPUT_ID" class="hiddenlink" target="rightframe">EXTRA_INPUT_ID</A>
+</nobr><br>
+<!-- Field EXTRA_LOCK_TASK_PACKAGE -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.EXTRA_LOCK_TASK_PACKAGE" class="hiddenlink" target="rightframe">EXTRA_LOCK_TASK_PACKAGE</A>
+</nobr><br>
+<!-- Field EXTRA_MAX_CHANNEL_COUNT -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.EXTRA_MAX_CHANNEL_COUNT" class="hiddenlink" target="rightframe">EXTRA_MAX_CHANNEL_COUNT</A>
+</nobr><br>
+<!-- Field EXTRA_MMS_DATA -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.EXTRA_MMS_DATA" class="hiddenlink" target="rightframe">EXTRA_MMS_DATA</A>
+</nobr><br>
+<!-- Field EXTRA_PRINTER_INFO -->
+<nobr><A HREF="android.printservice.PrintService.html#android.printservice.PrintService.EXTRA_PRINTER_INFO" class="hiddenlink" target="rightframe">EXTRA_PRINTER_INFO</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_DEFAULT_MANAGED_PROFILE_NAME -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEFAULT_MANAGED_PROFILE_NAME" class="hiddenlink" target="rightframe"><strike>EXTRA_PROVISIONING_DEFAULT_MANAGED_PROFILE_NAME</strike></A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_EMAIL_ADDRESS -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_EMAIL_ADDRESS" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_EMAIL_ADDRESS</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_LOCAL_TIME -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_LOCAL_TIME" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_LOCAL_TIME</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_LOCALE -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_LOCALE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_LOCALE</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_TIME_ZONE -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_TIME_ZONE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_TIME_ZONE</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_HIDDEN -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_HIDDEN" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_HIDDEN</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_PAC_URL -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PAC_URL" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PAC_URL</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_PASSWORD -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PASSWORD" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PASSWORD</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_PROXY_BYPASS -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_BYPASS" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PROXY_BYPASS</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_PROXY_HOST -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_HOST" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PROXY_HOST</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_PROXY_PORT -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_PORT" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PROXY_PORT</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_SECURITY_TYPE -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_SECURITY_TYPE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_SECURITY_TYPE</A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_WIFI_SSID -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_SSID" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_SSID</A>
+</nobr><br>
+<!-- Field EXTRA_REPLACEMENT_EXTRAS -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_REPLACEMENT_EXTRAS" class="hiddenlink" target="rightframe">EXTRA_REPLACEMENT_EXTRAS</A>
+</nobr><br>
+<!-- Field EXTRA_SERVICE_NAME -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.EXTRA_SERVICE_NAME" class="hiddenlink" target="rightframe"><strike>EXTRA_SERVICE_NAME</strike></A>
+</nobr><br>
+<!-- Field EXTRA_SIZE -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.EXTRA_SIZE" class="hiddenlink" target="rightframe">EXTRA_SIZE</A>
+</nobr><br>
+<!-- Field EXTRA_USER -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_USER" class="hiddenlink" target="rightframe">EXTRA_USER</A>
+</nobr><br>
+<!-- Class Fade -->
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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">
+<i>Fade</i><br>
+&nbsp;&nbsp;<A HREF="android.transition.Fade.html" class="hiddenlink" target="rightframe">android.transition</A><br>
+<!-- Constructor Fade -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Fade.html#android.transition.Fade.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Fade</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field fade -->
+<nobr><A HREF="android.R.transition.html#android.R.transition.fade" class="hiddenlink" target="rightframe">fade</A>
+</nobr><br>
+<!-- Field FAMILY_KIDS -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.FAMILY_KIDS" class="hiddenlink" target="rightframe">FAMILY_KIDS</A>
+</nobr><br>
+<!-- Field fast_out_linear_in -->
+<nobr><A HREF="android.R.interpolator.html#android.R.interpolator.fast_out_linear_in" class="hiddenlink" target="rightframe">fast_out_linear_in</A>
+</nobr><br>
+<!-- Field fast_out_slow_in -->
+<nobr><A HREF="android.R.interpolator.html#android.R.interpolator.fast_out_slow_in" class="hiddenlink" target="rightframe">fast_out_slow_in</A>
+</nobr><br>
+<!-- Field fastScrollStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fastScrollStyle" class="hiddenlink" target="rightframe">fastScrollStyle</A>
+</nobr><br>
+<!-- Field FEATURE_ACTIVITY_TRANSITIONS -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.FEATURE_ACTIVITY_TRANSITIONS" class="hiddenlink" target="rightframe">FEATURE_ACTIVITY_TRANSITIONS</A>
+</nobr><br>
+<!-- Field FEATURE_AUDIO_OUTPUT -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_AUDIO_OUTPUT" class="hiddenlink" target="rightframe">FEATURE_AUDIO_OUTPUT</A>
+</nobr><br>
+<!-- Field FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING" class="hiddenlink" target="rightframe">FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING</A>
+</nobr><br>
+<!-- Field FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR" class="hiddenlink" target="rightframe">FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR</A>
+</nobr><br>
+<!-- Field FEATURE_CAMERA_CAPABILITY_RAW -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_RAW" class="hiddenlink" target="rightframe">FEATURE_CAMERA_CAPABILITY_RAW</A>
+</nobr><br>
+<!-- Field FEATURE_CAMERA_LEVEL_FULL -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_LEVEL_FULL" class="hiddenlink" target="rightframe">FEATURE_CAMERA_LEVEL_FULL</A>
+</nobr><br>
+<!-- Field FEATURE_CONNECTION_SERVICE -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CONNECTION_SERVICE" class="hiddenlink" target="rightframe">FEATURE_CONNECTION_SERVICE</A>
+</nobr><br>
+<!-- Field FEATURE_GAMEPAD -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_GAMEPAD" class="hiddenlink" target="rightframe">FEATURE_GAMEPAD</A>
+</nobr><br>
+<!-- Field FEATURE_LIVE_TV -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_LIVE_TV" class="hiddenlink" target="rightframe">FEATURE_LIVE_TV</A>
+</nobr><br>
+<!-- Field FEATURE_MANAGED_PROFILES -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_MANAGED_PROFILES" class="hiddenlink" target="rightframe"><strike>FEATURE_MANAGED_PROFILES</strike></A>
+</nobr><br>
+<!-- Field FEATURE_MANAGED_USERS -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_MANAGED_USERS" class="hiddenlink" target="rightframe">FEATURE_MANAGED_USERS</A>
+</nobr><br>
+<!-- Field FEATURE_OPENGLES_EXTENSION_PACK -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_OPENGLES_EXTENSION_PACK" class="hiddenlink" target="rightframe">FEATURE_OPENGLES_EXTENSION_PACK</A>
+</nobr><br>
+<!-- Field FEATURE_SECURELY_REMOVES_USERS -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SECURELY_REMOVES_USERS" class="hiddenlink" target="rightframe">FEATURE_SECURELY_REMOVES_USERS</A>
+</nobr><br>
+<!-- Field FEATURE_SecurePlayback -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.FEATURE_SecurePlayback" class="hiddenlink" target="rightframe">FEATURE_SecurePlayback</A>
+</nobr><br>
+<!-- Field FEATURE_SENSOR_AMBIENT_TEMPERATURE -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SENSOR_AMBIENT_TEMPERATURE" class="hiddenlink" target="rightframe">FEATURE_SENSOR_AMBIENT_TEMPERATURE</A>
+</nobr><br>
+<!-- Field FEATURE_SENSOR_HEART_RATE_ECG -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SENSOR_HEART_RATE_ECG" class="hiddenlink" target="rightframe">FEATURE_SENSOR_HEART_RATE_ECG</A>
+</nobr><br>
+<!-- Field FEATURE_SENSOR_RELATIVE_HUMIDITY -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SENSOR_RELATIVE_HUMIDITY" class="hiddenlink" target="rightframe">FEATURE_SENSOR_RELATIVE_HUMIDITY</A>
+</nobr><br>
+<!-- Field FEATURE_TunneledPlayback -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.FEATURE_TunneledPlayback" class="hiddenlink" target="rightframe">FEATURE_TunneledPlayback</A>
+</nobr><br>
+<!-- Field FEATURE_VERIFIED_BOOT -->
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_VERIFIED_BOOT" class="hiddenlink" target="rightframe">FEATURE_VERIFIED_BOOT</A>
+</nobr><br>
+<!-- Class FeatureGroupInfo -->
+<A HREF="pkg_android.content.pm.html#FeatureGroupInfo" class="hiddenlink" target="rightframe"><b>FeatureGroupInfo</b></A><br>
+<!-- Field featureGroups -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.featureGroups" class="hiddenlink" target="rightframe">featureGroups</A>
+</nobr><br>
+<!-- Field FEATURES -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.FEATURES" class="hiddenlink" target="rightframe">FEATURES</A>
+</nobr><br>
+<!-- Field FEATURES_VIDEO -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.FEATURES_VIDEO" class="hiddenlink" target="rightframe">FEATURES_VIDEO</A>
+</nobr><br>
+<!-- Field fill -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fill" class="hiddenlink" target="rightframe"><strike>fill</strike></A>
+</nobr><br>
+<!-- Field fillAlpha -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fillAlpha" class="hiddenlink" target="rightframe">fillAlpha</A>
+</nobr><br>
+<!-- Field fillColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fillColor" class="hiddenlink" target="rightframe">fillColor</A>
+</nobr><br>
+<!-- Field fillOpacity -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fillOpacity" class="hiddenlink" target="rightframe"><strike>fillOpacity</strike></A>
+</nobr><br>
+<!-- Method findDecoderForFormat -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.findDecoderForFormat_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>findDecoderForFormat</b>
+(<code>MediaFormat</code>)</A></nobr><br>
+<!-- Method findEncoderForFormat -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.findEncoderForFormat_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>findEncoderForFormat</b>
+(<code>MediaFormat</code>)</A></nobr><br>
+<!-- Field FLAG_ACTIVITY_AUTO_REMOVE_FROM_RECENTS -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_ACTIVITY_AUTO_REMOVE_FROM_RECENTS" class="hiddenlink" target="rightframe"><strike>FLAG_ACTIVITY_AUTO_REMOVE_FROM_RECENTS</strike></A>
+</nobr><br>
+<!-- Field FLAG_ACTIVITY_RETAIN_IN_RECENTS -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS" class="hiddenlink" target="rightframe">FLAG_ACTIVITY_RETAIN_IN_RECENTS</A>
+</nobr><br>
+<!-- Field FLAG_FULL_BACKUP_ONLY -->
+<nobr><A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.FLAG_FULL_BACKUP_ONLY" class="hiddenlink" target="rightframe">FLAG_FULL_BACKUP_ONLY</A>
+</nobr><br>
+<!-- Field FLAG_HAS_INVISIBLE_REGION -->
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.FLAG_HAS_INVISIBLE_REGION" class="hiddenlink" target="rightframe">FLAG_HAS_INVISIBLE_REGION</A>
+</nobr><br>
+<!-- Field FLAG_HAS_VISIBLE_REGION -->
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.FLAG_HAS_VISIBLE_REGION" class="hiddenlink" target="rightframe">FLAG_HAS_VISIBLE_REGION</A>
+</nobr><br>
+<!-- Field FLAG_IS_RTL -->
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.FLAG_IS_RTL" class="hiddenlink" target="rightframe">FLAG_IS_RTL</A>
+</nobr><br>
+<!-- Field FLAG_MANAGED_CAN_ACCESS_PARENT -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.FLAG_MANAGED_CAN_ACCESS_PARENT" class="hiddenlink" target="rightframe">FLAG_MANAGED_CAN_ACCESS_PARENT</A>
+</nobr><br>
+<!-- Field FLAG_MULTIARCH -->
+<nobr><A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.FLAG_MULTIARCH" class="hiddenlink" target="rightframe">FLAG_MULTIARCH</A>
+</nobr><br>
+<!-- Field FLAG_PARENT_CAN_ACCESS_MANAGED -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.FLAG_PARENT_CAN_ACCESS_MANAGED" class="hiddenlink" target="rightframe">FLAG_PARENT_CAN_ACCESS_MANAGED</A>
+</nobr><br>
+<!-- Field FLAG_PERSISTABLE -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_PERSISTABLE" class="hiddenlink" target="rightframe"><strike>FLAG_PERSISTABLE</strike></A>
+</nobr><br>
+<!-- Field FLAG_RELINQUISH_TASK_IDENTITY -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY" class="hiddenlink" target="rightframe">FLAG_RELINQUISH_TASK_IDENTITY</A>
+</nobr><br>
+<!-- Field FLAG_RESUME_WHILE_PAUSING -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_RESUME_WHILE_PAUSING" class="hiddenlink" target="rightframe">FLAG_RESUME_WHILE_PAUSING</A>
+</nobr><br>
+<!-- Field FLAG_TO_MANAGED_PROFILE -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.FLAG_TO_MANAGED_PROFILE" class="hiddenlink" target="rightframe"><strike>FLAG_TO_MANAGED_PROFILE</strike></A>
+</nobr><br>
+<!-- Field FLAG_TO_PRIMARY_USER -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.FLAG_TO_PRIMARY_USER" class="hiddenlink" target="rightframe"><strike>FLAG_TO_PRIMARY_USER</strike></A>
+</nobr><br>
+<!-- Method fling -->
+<nobr><A HREF="android.widget.AbsListView.html#android.widget.AbsListView.fling_added(int)" class="hiddenlink" target="rightframe"><b>fling</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method flush -->
+<i>flush</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.flush_removed()" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+()</strike>&nbsp;in&nbsp;android.hardware.camera2.CameraDevice
+</A></nobr><br>
+<!-- Method flush -->
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.flush_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.webkit.CookieManager
+</A></nobr><br>
+<!-- Method flushPendingScanResults -->
+<nobr><A HREF="android.bluetooth.le.BluetoothLeScanner.html#android.bluetooth.le.BluetoothLeScanner.flushPendingScanResults_added(android.bluetooth.le.ScanCallback)" class="hiddenlink" target="rightframe"><b>flushPendingScanResults</b>
+(<code>ScanCallback</code>)</A></nobr><br>
+<!-- Field fontFeatureSettings -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fontFeatureSettings" class="hiddenlink" target="rightframe">fontFeatureSettings</A>
+</nobr><br>
+<!-- Method forceVirtualizationMode -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.forceVirtualizationMode_added(int)" class="hiddenlink" target="rightframe"><b>forceVirtualizationMode</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Field foregroundTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.foregroundTint" class="hiddenlink" target="rightframe">foregroundTint</A>
+</nobr><br>
+<!-- Field foregroundTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.foregroundTintMode" class="hiddenlink" target="rightframe">foregroundTintMode</A>
+</nobr><br>
+<!-- Class ForkJoinPool -->
+<A HREF="pkg_java.util.concurrent.html#ForkJoinPool" class="hiddenlink" target="rightframe"><b>ForkJoinPool</b></A><br>
+<!-- Class ForkJoinPool.ForkJoinWorkerThreadFactory -->
+<A HREF="pkg_java.util.concurrent.html#ForkJoinPool.ForkJoinWorkerThreadFactory" class="hiddenlink" target="rightframe"><b><i>ForkJoinPool.ForkJoinWorkerThreadFactory</i></b></A><br>
+<!-- Class ForkJoinPool.ManagedBlocker -->
+<A HREF="pkg_java.util.concurrent.html#ForkJoinPool.ManagedBlocker" class="hiddenlink" target="rightframe"><b><i>ForkJoinPool.ManagedBlocker</i></b></A><br>
+<!-- Class ForkJoinTask -->
+<A HREF="pkg_java.util.concurrent.html#ForkJoinTask" class="hiddenlink" target="rightframe"><b>ForkJoinTask</b></A><br>
+<!-- Class ForkJoinWorkerThread -->
+<A HREF="pkg_java.util.concurrent.html#ForkJoinWorkerThread" class="hiddenlink" target="rightframe"><b>ForkJoinWorkerThread</b></A><br>
+<!-- Method forLanguageTag -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.forLanguageTag_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>forLanguageTag</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Field FQDN -->
+<nobr><A HREF="android.net.wifi.WifiConfiguration.html#android.net.wifi.WifiConfiguration.FQDN" class="hiddenlink" target="rightframe">FQDN</A>
+</nobr><br>
+<!-- Class Fragment -->
+<A HREF="android.app.Fragment.html" class="hiddenlink" target="rightframe">Fragment</A><br>
+<!-- Field fragmentAllowEnterTransitionOverlap -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentAllowEnterTransitionOverlap" class="hiddenlink" target="rightframe">fragmentAllowEnterTransitionOverlap</A>
+</nobr><br>
+<!-- Field fragmentAllowReturnTransitionOverlap -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentAllowReturnTransitionOverlap" class="hiddenlink" target="rightframe">fragmentAllowReturnTransitionOverlap</A>
+</nobr><br>
+<!-- Field fragmentEnterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentEnterTransition" class="hiddenlink" target="rightframe">fragmentEnterTransition</A>
+</nobr><br>
+<!-- Field fragmentExitTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentExitTransition" class="hiddenlink" target="rightframe">fragmentExitTransition</A>
+</nobr><br>
+<!-- Field fragmentReenterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentReenterTransition" class="hiddenlink" target="rightframe">fragmentReenterTransition</A>
+</nobr><br>
+<!-- Field fragmentReturnTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentReturnTransition" class="hiddenlink" target="rightframe">fragmentReturnTransition</A>
+</nobr><br>
+<!-- Field fragmentSharedElementEnterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentSharedElementEnterTransition" class="hiddenlink" target="rightframe">fragmentSharedElementEnterTransition</A>
+</nobr><br>
+<!-- Field fragmentSharedElementReturnTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentSharedElementReturnTransition" class="hiddenlink" target="rightframe">fragmentSharedElementReturnTransition</A>
+</nobr><br>
+<!-- Class FragmentTransaction -->
+<A HREF="android.app.FragmentTransaction.html" class="hiddenlink" target="rightframe">FragmentTransaction</A><br>
+<!-- Class FrameLayout -->
+<A HREF="android.widget.FrameLayout.html" class="hiddenlink" target="rightframe">FrameLayout</A><br>
+<!-- Class FrameStats -->
+<A HREF="android.view.FrameStats.html" class="hiddenlink" target="rightframe">FrameStats</A><br>
+<!-- Field fromId -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fromId" class="hiddenlink" target="rightframe">fromId</A>
+</nobr><br>
+<!-- Method fromToken -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.fromToken_removed(android.media.session.MediaSessionToken)" class="hiddenlink" target="rightframe"><strike>fromToken</strike>
+(<code>MediaSessionToken</code>)</A></nobr><br>
+<!-- Field fullBackupOnly -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fullBackupOnly" class="hiddenlink" target="rightframe">fullBackupOnly</A>
+</nobr><br>
+<!-- Field GAMING -->
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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">
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.GAMING" class="hiddenlink" target="rightframe">GAMING</A>
+</nobr><br>
+<!-- Field GATT_CONNECTION_CONGESTED -->
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.GATT_CONNECTION_CONGESTED" class="hiddenlink" target="rightframe">GATT_CONNECTION_CONGESTED</A>
+</nobr><br>
+<!-- Method generateAudioSessionId -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.generateAudioSessionId_added()" class="hiddenlink" target="rightframe"><b>generateAudioSessionId</b>
+()</A></nobr><br>
+<!-- Field GET_TASKS -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.GET_TASKS" class="hiddenlink" target="rightframe">GET_TASKS</A>
+</nobr><br>
+<!-- Method getActiveNotifications -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getActiveNotifications_added(java.lang.String[])" class="hiddenlink" target="rightframe"><b>getActiveNotifications</b>
+(<code>String[]</code>)</A></nobr><br>
+<!-- Method getActiveQueueItemId -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getActiveQueueItemId_added()" class="hiddenlink" target="rightframe"><b>getActiveQueueItemId</b>
+()</A></nobr><br>
+<!-- Method getActiveSessions -->
+<nobr><A HREF="android.media.session.MediaSessionManager.html#android.media.session.MediaSessionManager.getActiveSessions_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getActiveSessions</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getAllNetworks -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getAllNetworks_added()" class="hiddenlink" target="rightframe"><b>getAllNetworks</b>
+()</A></nobr><br>
+<!-- Method getAllowEnterTransitionOverlap -->
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getAllowEnterTransitionOverlap_added()" class="hiddenlink" target="rightframe"><b>getAllowEnterTransitionOverlap</b>
+()</A></nobr><br>
+<!-- Method getAllowExitTransitionOverlap -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.getAllowExitTransitionOverlap_removed()" class="hiddenlink" target="rightframe"><strike>getAllowExitTransitionOverlap</strike>
+()</A></nobr><br>
+<!-- Method getAllowReturnTransitionOverlap -->
+<i>getAllowReturnTransitionOverlap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getAllowReturnTransitionOverlap_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method getAllowReturnTransitionOverlap -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getAllowReturnTransitionOverlap_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getAlpha -->
+<nobr><A HREF="android.graphics.Outline.html#android.graphics.Outline.getAlpha_added()" class="hiddenlink" target="rightframe"><b>getAlpha</b>
+()</A></nobr><br>
+<!-- Method getAppTaskThumbnailSize -->
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getAppTaskThumbnailSize_added()" class="hiddenlink" target="rightframe"><b>getAppTaskThumbnailSize</b>
+()</A></nobr><br>
+<!-- Method getAppVsyncOffsetNanos -->
+<nobr><A HREF="android.view.Display.html#android.view.Display.getAppVsyncOffsetNanos_added()" class="hiddenlink" target="rightframe"><b>getAppVsyncOffsetNanos</b>
+()</A></nobr><br>
+<!-- Method getAudioAttributes -->
+<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.getAudioAttributes_added()" class="hiddenlink" target="rightframe"><b>getAudioAttributes</b>
+()</A></nobr><br>
+<!-- Method getAudioCapabilities -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getAudioCapabilities_added()" class="hiddenlink" target="rightframe"><b>getAudioCapabilities</b>
+()</A></nobr><br>
+<!-- Method getAutoTimeRequired -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getAutoTimeRequired_added()" class="hiddenlink" target="rightframe"><b>getAutoTimeRequired</b>
+()</A></nobr><br>
+<!-- Method getAvailability -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.getAvailability_removed(java.lang.String)" class="hiddenlink" target="rightframe"><strike>getAvailability</strike>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getAvailableLanguages -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getAvailableLanguages_added()" class="hiddenlink" target="rightframe"><b>getAvailableLanguages</b>
+()</A></nobr><br>
+<!-- Method getBackgroundTintList -->
+<nobr><A HREF="android.view.View.html#android.view.View.getBackgroundTintList_added()" class="hiddenlink" target="rightframe"><b>getBackgroundTintList</b>
+()</A></nobr><br>
+<!-- Method getBackgroundTintMode -->
+<nobr><A HREF="android.view.View.html#android.view.View.getBackgroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getBackgroundTintMode</b>
+()</A></nobr><br>
+<!-- Method getBadgedDrawableForUser -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.getBadgedDrawableForUser_removed(android.graphics.drawable.Drawable, android.os.UserHandle)" class="hiddenlink" target="rightframe"><strike>getBadgedDrawableForUser</strike>
+(<code>Drawable, UserHandle</code>)</A></nobr><br>
+<!-- Method getBufferedPosition -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getBufferedPosition_added()" class="hiddenlink" target="rightframe"><b>getBufferedPosition</b>
+()</A></nobr><br>
+<!-- Method getBufferPosition -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getBufferPosition_removed()" class="hiddenlink" target="rightframe"><strike>getBufferPosition</strike>
+()</A></nobr><br>
+<!-- Method getButtonTintList -->
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.getButtonTintList_added()" class="hiddenlink" target="rightframe"><b>getButtonTintList</b>
+()</A></nobr><br>
+<!-- Method getButtonTintMode -->
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.getButtonTintMode_added()" class="hiddenlink" target="rightframe"><b>getButtonTintMode</b>
+()</A></nobr><br>
+<!-- Method getBytes -->
+<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getBytes_added()" class="hiddenlink" target="rightframe"><b>getBytes</b>
+()</A></nobr><br>
+<!-- Method getCarrierConfigValues -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.getCarrierConfigValues_added()" class="hiddenlink" target="rightframe"><b>getCarrierConfigValues</b>
+()</A></nobr><br>
+<!-- Method getChangingConfigurations -->
+<nobr><A HREF="android.content.res.TypedArray.html#android.content.res.TypedArray.getChangingConfigurations_added()" class="hiddenlink" target="rightframe"><b>getChangingConfigurations</b>
+()</A></nobr><br>
+<!-- Method getChannelMask -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getChannelMask_added()" class="hiddenlink" target="rightframe"><b>getChannelMask</b>
+()</A></nobr><br>
+<!-- Method getCharacterBounds -->
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.getCharacterBounds_added(int)" class="hiddenlink" target="rightframe"><b>getCharacterBounds</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getCharacterBoundsFlags -->
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.getCharacterBoundsFlags_added(int)" class="hiddenlink" target="rightframe"><b>getCharacterBoundsFlags</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getCharacterRect -->
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.getCharacterRect_removed(int)" class="hiddenlink" target="rightframe"><strike>getCharacterRect</strike>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getCharSequence -->
+<nobr><A HREF="android.view.textservice.TextInfo.html#android.view.textservice.TextInfo.getCharSequence_added()" class="hiddenlink" target="rightframe"><b>getCharSequence</b>
+()</A></nobr><br>
+<!-- Method getCharSequenceText -->
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getCharSequenceText_added()" class="hiddenlink" target="rightframe"><b>getCharSequenceText</b>
+()</A></nobr><br>
+<!-- Method getCheckMarkTintList -->
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.getCheckMarkTintList_added()" class="hiddenlink" target="rightframe"><b>getCheckMarkTintList</b>
+()</A></nobr><br>
+<!-- Method getCheckMarkTintMode -->
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.getCheckMarkTintMode_added()" class="hiddenlink" target="rightframe"><b>getCheckMarkTintMode</b>
+()</A></nobr><br>
+<!-- Method getClipToPadding -->
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.getClipToPadding_added()" class="hiddenlink" target="rightframe"><b>getClipToPadding</b>
+()</A></nobr><br>
+<!-- Method getCodeCacheDir -->
+<i>getCodeCacheDir</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.Context.html#android.content.Context.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.Context
+</A></nobr><br>
+<!-- Method getCodeCacheDir -->
+&nbsp;&nbsp;<nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.ContextWrapper
+</A></nobr><br>
+<!-- Method getCodeCacheDir -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockContext
+</A></nobr><br>
+<!-- Method getCodecCount -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecCount_changed()" class="hiddenlink" target="rightframe">getCodecCount
+()</A></nobr><br>
+<!-- Method getCodecInfoAt -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecInfoAt_changed(int)" class="hiddenlink" target="rightframe">getCodecInfoAt
+(<code>int</code>)</A></nobr><br>
+<!-- Method getCodecInfos -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecInfos_added()" class="hiddenlink" target="rightframe"><b>getCodecInfos</b>
+()</A></nobr><br>
+<!-- Method getColor -->
+<i>getColor</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.PorterDuffColorFilter.html#android.graphics.PorterDuffColorFilter.getColor_removed()" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+()</strike>&nbsp;in&nbsp;android.graphics.PorterDuffColorFilter
+</A></nobr><br>
+<!-- Method getColor -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.getColor_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.EdgeEffect
+</A></nobr><br>
+<!-- Method getColorAdd -->
+<nobr><A HREF="android.graphics.LightingColorFilter.html#android.graphics.LightingColorFilter.getColorAdd_removed()" class="hiddenlink" target="rightframe"><strike>getColorAdd</strike>
+()</A></nobr><br>
+<!-- Method getColorMatrix -->
+<nobr><A HREF="android.graphics.ColorMatrixColorFilter.html#android.graphics.ColorMatrixColorFilter.getColorMatrix_removed()" class="hiddenlink" target="rightframe"><strike>getColorMatrix</strike>
+()</A></nobr><br>
+<!-- Method getColorMultiply -->
+<nobr><A HREF="android.graphics.LightingColorFilter.html#android.graphics.LightingColorFilter.getColorMultiply_removed()" class="hiddenlink" target="rightframe"><strike>getColorMultiply</strike>
+()</A></nobr><br>
+<!-- Method getComposingText -->
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.getComposingText_changed()" class="hiddenlink" target="rightframe">getComposingText
+()</A></nobr><br>
+<!-- Method getController -->
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.getController_added()" class="hiddenlink" target="rightframe"><b>getController</b>
+()</A></nobr><br>
+<!-- Method getCropRect -->
+<nobr><A HREF="android.media.Image.html#android.media.Image.getCropRect_added()" class="hiddenlink" target="rightframe"><b>getCropRect</b>
+()</A></nobr><br>
+<!-- Method getCrossProfileCallerIdDisabled -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getCrossProfileCallerIdDisabled_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getCrossProfileCallerIdDisabled</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getCrossProfileWidgetProviders -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getCrossProfileWidgetProviders_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getCrossProfileWidgetProviders</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getCurrentInterruptionFilter -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getCurrentInterruptionFilter_added()" class="hiddenlink" target="rightframe"><b>getCurrentInterruptionFilter</b>
+()</A></nobr><br>
+<!-- Method getCurrentListenerHints -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getCurrentListenerHints_added()" class="hiddenlink" target="rightframe"><b>getCurrentListenerHints</b>
+()</A></nobr><br>
+<!-- Method getCustomActions -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getCustomActions_added()" class="hiddenlink" target="rightframe"><b>getCustomActions</b>
+()</A></nobr><br>
+<!-- Method getDefaultFormat -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getDefaultFormat_added()" class="hiddenlink" target="rightframe"><b>getDefaultFormat</b>
+()</A></nobr><br>
+<!-- Method getDefaultLanguage -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getDefaultLanguage_changed()" class="hiddenlink" target="rightframe">getDefaultLanguage
+()</A></nobr><br>
+<!-- Method getDefaultSensor -->
+<nobr><A HREF="android.hardware.SensorManager.html#android.hardware.SensorManager.getDefaultSensor_added(int, boolean)" class="hiddenlink" target="rightframe"><b>getDefaultSensor</b>
+(<code>int, boolean</code>)</A></nobr><br>
+<!-- Method getDefaultVoice -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getDefaultVoice_added()" class="hiddenlink" target="rightframe"><b>getDefaultVoice</b>
+()</A></nobr><br>
+<!-- Method getDescription -->
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.getDescription_added()" class="hiddenlink" target="rightframe"><b>getDescription</b>
+()</A></nobr><br>
+<!-- Method getDeviceName -->
+<i>getDeviceName</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.html#android.bluetooth.le.ScanFilter.getDeviceName_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter
+</A></nobr><br>
+<!-- Method getDeviceName -->
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getDeviceName_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.bluetooth.le.ScanRecord
+</A></nobr><br>
+<!-- Method getDisplayScript -->
+<i>getDisplayScript</i><br>
+&nbsp;&nbsp;<nobr><A HREF="java.util.Locale.html#java.util.Locale.getDisplayScript_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;java.util.Locale
+</A></nobr><br>
+<!-- Method getDisplayScript -->
+&nbsp;&nbsp;<nobr><A HREF="java.util.Locale.html#java.util.Locale.getDisplayScript_added(java.util.Locale)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Locale</code>)</b>&nbsp;in&nbsp;java.util.Locale
+</A></nobr><br>
+<!-- Method getElevation -->
+<i>getElevation</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getElevation_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+<!-- Method getElevation -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.PopupWindow.html#android.widget.PopupWindow.getElevation_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.PopupWindow
+</A></nobr><br>
+<!-- Method getEncoderCapabilities -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getEncoderCapabilities_added()" class="hiddenlink" target="rightframe"><b>getEncoderCapabilities</b>
+()</A></nobr><br>
+<!-- Method getEncoding -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getEncoding_added()" class="hiddenlink" target="rightframe"><b>getEncoding</b>
+()</A></nobr><br>
+<!-- Method getEnterTransition -->
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getEnterTransition_added()" class="hiddenlink" target="rightframe"><b>getEnterTransition</b>
+()</A></nobr><br>
+<!-- Method getError -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getError_added()" class="hiddenlink" target="rightframe"><b>getError</b>
+()</A></nobr><br>
+<!-- Method getExitTransition -->
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getExitTransition_added()" class="hiddenlink" target="rightframe"><b>getExitTransition</b>
+()</A></nobr><br>
+<!-- Method getExtension -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getExtension_added(char)" class="hiddenlink" target="rightframe"><b>getExtension</b>
+(<code>char</code>)</A></nobr><br>
+<!-- Method getExtensionKeys -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getExtensionKeys_added()" class="hiddenlink" target="rightframe"><b>getExtensionKeys</b>
+()</A></nobr><br>
+<!-- Method getExtras -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getExtras_added()" class="hiddenlink" target="rightframe"><b>getExtras</b>
+()</A></nobr><br>
+<!-- Method getFeatureEnabled -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.getFeatureEnabled_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getFeatureEnabled</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getFeatures -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getFeatures_changed(java.util.Locale)" class="hiddenlink" target="rightframe">getFeatures
+(<code>Locale</code>)</A></nobr><br>
+<!-- Method getFirstDayOfWeek -->
+<nobr><A HREF="android.widget.DatePicker.html#android.widget.DatePicker.getFirstDayOfWeek_added()" class="hiddenlink" target="rightframe"><b>getFirstDayOfWeek</b>
+()</A></nobr><br>
+<!-- Method getFlags -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getFlags_added()" class="hiddenlink" target="rightframe"><b>getFlags</b>
+()</A></nobr><br>
+<!-- Method getFontFeatureSettings -->
+<i>getFontFeatureSettings</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.getFontFeatureSettings_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+<!-- Method getFontFeatureSettings -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getFontFeatureSettings_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<!-- Method getForegroundTintList -->
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.getForegroundTintList_added()" class="hiddenlink" target="rightframe"><b>getForegroundTintList</b>
+()</A></nobr><br>
+<!-- Method getForegroundTintMode -->
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.getForegroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getForegroundTintMode</b>
+()</A></nobr><br>
+<!-- Method getFrameNumber -->
+<i>getFrameNumber</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CaptureFailure.html#android.hardware.camera2.CaptureFailure.getFrameNumber_changed()" class="hiddenlink" target="rightframe">type&nbsp;
+()&nbsp;in&nbsp;android.hardware.camera2.CaptureFailure
+</A></nobr><br>
+<!-- Method getFrameNumber -->
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CaptureResult.html#android.hardware.camera2.CaptureResult.getFrameNumber_changed()" class="hiddenlink" target="rightframe">type&nbsp;
+()&nbsp;in&nbsp;android.hardware.camera2.CaptureResult
+</A></nobr><br>
+<!-- Method getGroupKey -->
+<nobr><A HREF="android.service.notification.StatusBarNotification.html#android.service.notification.StatusBarNotification.getGroupKey_added()" class="hiddenlink" target="rightframe"><b>getGroupKey</b>
+()</A></nobr><br>
+<!-- Method getHighSpeedVideoFpsRanges -->
+<nobr><A HREF="android.hardware.camera2.params.StreamConfigurationMap.html#android.hardware.camera2.params.StreamConfigurationMap.getHighSpeedVideoFpsRanges_added()" class="hiddenlink" target="rightframe"><b>getHighSpeedVideoFpsRanges</b>
+()</A></nobr><br>
+<!-- Method getHighSpeedVideoFpsRangesFor -->
+<nobr><A HREF="android.hardware.camera2.params.StreamConfigurationMap.html#android.hardware.camera2.params.StreamConfigurationMap.getHighSpeedVideoFpsRangesFor_added(android.util.Size)" class="hiddenlink" target="rightframe"><b>getHighSpeedVideoFpsRangesFor</b>
+(<code>Size</code>)</A></nobr><br>
+<!-- Method getHighSpeedVideoSizes -->
+<nobr><A HREF="android.hardware.camera2.params.StreamConfigurationMap.html#android.hardware.camera2.params.StreamConfigurationMap.getHighSpeedVideoSizes_added()" class="hiddenlink" target="rightframe"><b>getHighSpeedVideoSizes</b>
+()</A></nobr><br>
+<!-- Method getHighSpeedVideoSizesFor -->
+<nobr><A HREF="android.hardware.camera2.params.StreamConfigurationMap.html#android.hardware.camera2.params.StreamConfigurationMap.getHighSpeedVideoSizesFor_added(android.util.Range<java.lang.Integer>)" class="hiddenlink" target="rightframe"><b>getHighSpeedVideoSizesFor</b>
+(<code>Range&lt;Integer&gt;</code>)</A></nobr><br>
+<!-- Method getImageTintList -->
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.getImageTintList_added()" class="hiddenlink" target="rightframe"><b>getImageTintList</b>
+()</A></nobr><br>
+<!-- Method getImageTintMode -->
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.getImageTintMode_added()" class="hiddenlink" target="rightframe"><b>getImageTintMode</b>
+()</A></nobr><br>
+<!-- Method getIndeterminateTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getIndeterminateTintList_added()" class="hiddenlink" target="rightframe"><b>getIndeterminateTintList</b>
+()</A></nobr><br>
+<!-- Method getIndeterminateTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getIndeterminateTintMode_added()" class="hiddenlink" target="rightframe"><b>getIndeterminateTintMode</b>
+()</A></nobr><br>
+<!-- Method getInputBuffer -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputBuffer_added(int)" class="hiddenlink" target="rightframe"><b>getInputBuffer</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getInputBuffers -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputBuffers_changed()" class="hiddenlink" target="rightframe">getInputBuffers
+()</A></nobr><br>
+<!-- Method getInputFormat -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputFormat_added()" class="hiddenlink" target="rightframe"><b>getInputFormat</b>
+()</A></nobr><br>
+<!-- Method getInputImage -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputImage_added(int)" class="hiddenlink" target="rightframe"><b>getInputImage</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getInputState -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.getInputState_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getInputState</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getInsertionMarkerFlags -->
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.getInsertionMarkerFlags_added()" class="hiddenlink" target="rightframe"><b>getInsertionMarkerFlags</b>
+()</A></nobr><br>
+<!-- Method getInstalledCaCerts -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getInstalledCaCerts_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getInstalledCaCerts</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getInstalledProvidersForProfile -->
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.getInstalledProvidersForProfile_added(android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>getInstalledProvidersForProfile</b>
+(<code>UserHandle</code>)</A></nobr><br>
+<!-- Method getIntentForSettingsActivity -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.getIntentForSettingsActivity_removed()" class="hiddenlink" target="rightframe"><strike>getIntentForSettingsActivity</strike>
+()</A></nobr><br>
+<!-- Method getIntentForSetupActivity -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.getIntentForSetupActivity_removed()" class="hiddenlink" target="rightframe"><strike>getIntentForSetupActivity</strike>
+()</A></nobr><br>
+<!-- Method getIntValue -->
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.getIntValue_added()" class="hiddenlink" target="rightframe"><b>getIntValue</b>
+()</A></nobr><br>
+<!-- Method getLanguage -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getLanguage_changed()" class="hiddenlink" target="rightframe">getLanguage
+()</A></nobr><br>
+<!-- Method getLastPositionUpdateTime -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getLastPositionUpdateTime_added()" class="hiddenlink" target="rightframe"><b>getLastPositionUpdateTime</b>
+()</A></nobr><br>
+<!-- Method getLayoutInflater -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.getLayoutInflater_removed()" class="hiddenlink" target="rightframe"><strike>getLayoutInflater</strike>
+()</A></nobr><br>
+<!-- Method getLetterSpacing -->
+<i>getLetterSpacing</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.getLetterSpacing_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+<!-- Method getLetterSpacing -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getLetterSpacing_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<!-- Method getLocalName -->
+<i>getLocalName</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.html#android.bluetooth.le.ScanFilter.getLocalName_removed()" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+()</strike>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter
+</A></nobr><br>
+<!-- Method getLocalName -->
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getLocalName_removed()" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+()</strike>&nbsp;in&nbsp;android.bluetooth.le.ScanRecord
+</A></nobr><br>
+<!-- Method getManufacturerId -->
+<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getManufacturerId_removed()" class="hiddenlink" target="rightframe"><strike>getManufacturerId</strike>
+()</A></nobr><br>
+<!-- Method getManufacturerSpecificData -->
+<i>getManufacturerSpecificData</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getManufacturerSpecificData_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.bluetooth.le.ScanRecord
+</A></nobr><br>
+<!-- Method getManufacturerSpecificData -->
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getManufacturerSpecificData_changed()" class="hiddenlink" target="rightframe">type&nbsp;
+()&nbsp;in&nbsp;android.bluetooth.le.ScanRecord
+</A></nobr><br>
+<!-- Method getMax -->
+<nobr><A HREF="android.text.InputFilter.LengthFilter.html#android.text.InputFilter.LengthFilter.getMax_added()" class="hiddenlink" target="rightframe"><b>getMax</b>
+()</A></nobr><br>
+<!-- Method getMaxDelay -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.getMaxDelay_added()" class="hiddenlink" target="rightframe"><b>getMaxDelay</b>
+()</A></nobr><br>
+<!-- Method getMaxRssi -->
+<nobr><A HREF="android.bluetooth.le.ScanFilter.html#android.bluetooth.le.ScanFilter.getMaxRssi_removed()" class="hiddenlink" target="rightframe"><strike>getMaxRssi</strike>
+()</A></nobr><br>
+<!-- Method getMaxTextLength -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getMaxTextLength_added()" class="hiddenlink" target="rightframe"><b>getMaxTextLength</b>
+()</A></nobr><br>
+<!-- Method getMediaController -->
+<i>getMediaController</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.getMediaController_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+<!-- Method getMediaController -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getMediaController_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getMimeType -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getMimeType_added()" class="hiddenlink" target="rightframe"><b>getMimeType</b>
+()</A></nobr><br>
+<!-- Method getMinRssi -->
+<nobr><A HREF="android.bluetooth.le.ScanFilter.html#android.bluetooth.le.ScanFilter.getMinRssi_removed()" class="hiddenlink" target="rightframe"><strike>getMinRssi</strike>
+()</A></nobr><br>
+<!-- Method getMode -->
+<i>getMode</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.PorterDuffColorFilter.html#android.graphics.PorterDuffColorFilter.getMode_removed()" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+()</strike>&nbsp;in&nbsp;android.graphics.PorterDuffColorFilter
+</A></nobr><br>
+<!-- Method getMode -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.getMode_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.transition.Visibility
+</A></nobr><br>
+<!-- Method getNavigationContentDescription -->
+<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.getNavigationContentDescription_added()" class="hiddenlink" target="rightframe"><b>getNavigationContentDescription</b>
+()</A></nobr><br>
+<!-- Method getNetworkCapabilities -->
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.getNetworkCapabilities_removed()" class="hiddenlink" target="rightframe"><strike>getNetworkCapabilities</strike>
+()</A></nobr><br>
+<!-- Method getNetworkInfo -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getNetworkInfo_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>getNetworkInfo</b>
+(<code>Network</code>)</A></nobr><br>
+<!-- Method getNetworkType -->
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.getNetworkType_added()" class="hiddenlink" target="rightframe"><b>getNetworkType</b>
+()</A></nobr><br>
+<!-- Method getNextAlarmClock -->
+<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.getNextAlarmClock_added()" class="hiddenlink" target="rightframe"><b>getNextAlarmClock</b>
+()</A></nobr><br>
+<!-- Method getNoBackupFilesDir -->
+<i>getNoBackupFilesDir</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.Context.html#android.content.Context.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.Context
+</A></nobr><br>
+<!-- Method getNoBackupFilesDir -->
+&nbsp;&nbsp;<nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.ContextWrapper
+</A></nobr><br>
+<!-- Method getNoBackupFilesDir -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockContext
+</A></nobr><br>
+<!-- Method getOutline -->
+<i>getOutline</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.getOutline_changed(android.graphics.Outline)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Outline</code>)&nbsp;in&nbsp;android.graphics.drawable.Drawable
+</A></nobr><br>
+<!-- Method getOutline -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.shapes.Shape.html#android.graphics.drawable.shapes.Shape.getOutline_changed(android.graphics.Outline)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Outline</code>)&nbsp;in&nbsp;android.graphics.drawable.shapes.Shape
+</A></nobr><br>
+<!-- Method getOutlineProvider -->
+<nobr><A HREF="android.view.View.html#android.view.View.getOutlineProvider_added()" class="hiddenlink" target="rightframe"><b>getOutlineProvider</b>
+()</A></nobr><br>
+<!-- Method getOutputBuffer -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputBuffer_added(int)" class="hiddenlink" target="rightframe"><b>getOutputBuffer</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getOutputBuffers -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputBuffers_changed()" class="hiddenlink" target="rightframe">getOutputBuffers
+()</A></nobr><br>
+<!-- Method getOutputFormat -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputFormat_added(int)" class="hiddenlink" target="rightframe"><b>getOutputFormat</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getOutputImage -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputImage_added(int)" class="hiddenlink" target="rightframe"><b>getOutputImage</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getPackageInstaller -->
+<i>getPackageInstaller</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getPackageInstaller_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method getPackageInstaller -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getPackageInstaller_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Method getPackageName -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getPackageName_added()" class="hiddenlink" target="rightframe"><b>getPackageName</b>
+()</A></nobr><br>
+<!-- Method getParentId -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.getParentId_added()" class="hiddenlink" target="rightframe"><b>getParentId</b>
+()</A></nobr><br>
+<!-- Method getPathMotion -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getPathMotion_added()" class="hiddenlink" target="rightframe"><b>getPathMotion</b>
+()</A></nobr><br>
+<!-- Method getPermittedAccessibilityServices -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getPermittedAccessibilityServices_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getPermittedAccessibilityServices</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getPermittedInputMethods -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getPermittedInputMethods_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getPermittedInputMethods</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getPlaybackInfo -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getPlaybackInfo_added()" class="hiddenlink" target="rightframe"><b>getPlaybackInfo</b>
+()</A></nobr><br>
+<!-- Method getPlaybackRate -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getPlaybackRate_removed()" class="hiddenlink" target="rightframe"><strike>getPlaybackRate</strike>
+()</A></nobr><br>
+<!-- Method getPlaybackSpeed -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getPlaybackSpeed_added()" class="hiddenlink" target="rightframe"><b>getPlaybackSpeed</b>
+()</A></nobr><br>
+<!-- Method getPopupTheme -->
+<i>getPopupTheme</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.ActionMenuView.html#android.widget.ActionMenuView.getPopupTheme_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.ActionMenuView
+</A></nobr><br>
+<!-- Method getPopupTheme -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.getPopupTheme_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.Toolbar
+</A></nobr><br>
+<!-- Method getPresentationDeadlineNanos -->
+<nobr><A HREF="android.view.Display.html#android.view.Display.getPresentationDeadlineNanos_added()" class="hiddenlink" target="rightframe"><b>getPresentationDeadlineNanos</b>
+()</A></nobr><br>
+<!-- Method getPreviousName -->
+<nobr><A HREF="android.accounts.AccountManager.html#android.accounts.AccountManager.getPreviousName_added(android.accounts.Account)" class="hiddenlink" target="rightframe"><b>getPreviousName</b>
+(<code>Account</code>)</A></nobr><br>
+<!-- Method getProfile -->
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.getProfile_added()" class="hiddenlink" target="rightframe"><b>getProfile</b>
+()</A></nobr><br>
+<!-- Method getProgressBackgroundTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressBackgroundTintList_added()" class="hiddenlink" target="rightframe"><b>getProgressBackgroundTintList</b>
+()</A></nobr><br>
+<!-- Method getProgressBackgroundTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressBackgroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getProgressBackgroundTintMode</b>
+()</A></nobr><br>
+<!-- Method getProgressTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressTintList_added()" class="hiddenlink" target="rightframe"><b>getProgressTintList</b>
+()</A></nobr><br>
+<!-- Method getProgressTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressTintMode_added()" class="hiddenlink" target="rightframe"><b>getProgressTintMode</b>
+()</A></nobr><br>
+<!-- Method getQueue -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getQueue_added()" class="hiddenlink" target="rightframe"><b>getQueue</b>
+()</A></nobr><br>
+<!-- Method getQueueTitle -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getQueueTitle_added()" class="hiddenlink" target="rightframe"><b>getQueueTitle</b>
+()</A></nobr><br>
+<!-- Method getRanking -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.RankingMap.html#android.service.notification.NotificationListenerService.RankingMap.getRanking_changed(java.lang.String, android.service.notification.NotificationListenerService.Ranking)" class="hiddenlink" target="rightframe">getRanking
+(<code>String, Ranking</code>)</A></nobr><br>
+<!-- Method getReasonPhrase -->
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getReasonPhrase_added()" class="hiddenlink" target="rightframe"><b>getReasonPhrase</b>
+()</A></nobr><br>
+<!-- Method getReenterTransition -->
+<i>getReenterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getReenterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method getReenterTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getReenterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getRemoveOnCancelPolicy -->
+<nobr><A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html#java.util.concurrent.ScheduledThreadPoolExecutor.getRemoveOnCancelPolicy_added()" class="hiddenlink" target="rightframe"><b>getRemoveOnCancelPolicy</b>
+()</A></nobr><br>
+<!-- Method getReparent -->
+<nobr><A HREF="android.transition.ChangeTransform.html#android.transition.ChangeTransform.getReparent_added()" class="hiddenlink" target="rightframe"><b>getReparent</b>
+()</A></nobr><br>
+<!-- Method getReparentWithOverlay -->
+<nobr><A HREF="android.transition.ChangeTransform.html#android.transition.ChangeTransform.getReparentWithOverlay_added()" class="hiddenlink" target="rightframe"><b>getReparentWithOverlay</b>
+()</A></nobr><br>
+<!-- Method getReportDelayMillis -->
+<nobr><A HREF="android.bluetooth.le.ScanSettings.html#android.bluetooth.le.ScanSettings.getReportDelayMillis_added()" class="hiddenlink" target="rightframe"><b>getReportDelayMillis</b>
+()</A></nobr><br>
+<!-- Method getReportDelayNanos -->
+<nobr><A HREF="android.bluetooth.le.ScanSettings.html#android.bluetooth.le.ScanSettings.getReportDelayNanos_removed()" class="hiddenlink" target="rightframe"><strike>getReportDelayNanos</strike>
+()</A></nobr><br>
+<!-- Method getReportingMode -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.getReportingMode_added()" class="hiddenlink" target="rightframe"><b>getReportingMode</b>
+()</A></nobr><br>
+<!-- Method getResources -->
+<nobr><A HREF="android.webkit.PermissionRequest.html#android.webkit.PermissionRequest.getResources_changed()" class="hiddenlink" target="rightframe">getResources
+()</A></nobr><br>
+<!-- Method getResponseHeaders -->
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getResponseHeaders_added()" class="hiddenlink" target="rightframe"><b>getResponseHeaders</b>
+()</A></nobr><br>
+<!-- Method getReturnTransition -->
+<i>getReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method getReturnTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getSampleRate -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getSampleRate_added()" class="hiddenlink" target="rightframe"><b>getSampleRate</b>
+()</A></nobr><br>
+<!-- Method getScanRecord -->
+<nobr><A HREF="android.bluetooth.le.ScanResult.html#android.bluetooth.le.ScanResult.getScanRecord_changed()" class="hiddenlink" target="rightframe">getScanRecord
+()</A></nobr><br>
+<!-- Method getScreenCaptureDisabled -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getScreenCaptureDisabled_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getScreenCaptureDisabled</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getScript -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getScript_added()" class="hiddenlink" target="rightframe"><b>getScript</b>
+()</A></nobr><br>
+<!-- Method getSecondaryProgressTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getSecondaryProgressTintList_added()" class="hiddenlink" target="rightframe"><b>getSecondaryProgressTintList</b>
+()</A></nobr><br>
+<!-- Method getSecondaryProgressTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getSecondaryProgressTintMode_added()" class="hiddenlink" target="rightframe"><b>getSecondaryProgressTintMode</b>
+()</A></nobr><br>
+<!-- Method getSelectedTrack -->
+<i>getSelectedTrack</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.getSelectedTrack_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+<!-- Method getSelectedTrack -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.getSelectedTrack_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.media.tv.TvView
+</A></nobr><br>
+<!-- Method getServiceData -->
+<i>getServiceData</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getServiceData_removed()" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+()</strike>&nbsp;in&nbsp;android.bluetooth.le.ScanRecord
+</A></nobr><br>
+<!-- Method getServiceData -->
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getServiceData_added(android.os.ParcelUuid)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ParcelUuid</code>)</b>&nbsp;in&nbsp;android.bluetooth.le.ScanRecord
+</A></nobr><br>
+<!-- Method getServiceData -->
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getServiceData_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.bluetooth.le.ScanRecord
+</A></nobr><br>
+<!-- Method getServiceDataUuid -->
+<i>getServiceDataUuid</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.html#android.bluetooth.le.ScanFilter.getServiceDataUuid_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter
+</A></nobr><br>
+<!-- Method getServiceDataUuid -->
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getServiceDataUuid_removed()" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+()</strike>&nbsp;in&nbsp;android.bluetooth.le.ScanRecord
+</A></nobr><br>
+<!-- Method getSessionActivity -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getSessionActivity_added()" class="hiddenlink" target="rightframe"><b>getSessionActivity</b>
+()</A></nobr><br>
+<!-- Method getSessionToken -->
+<i>getSessionToken</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getSessionToken_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+<!-- Method getSessionToken -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.getSessionToken_changed()" class="hiddenlink" target="rightframe">type&nbsp;
+()&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+<!-- Method getSharedElementEnterTransition -->
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getSharedElementEnterTransition_added()" class="hiddenlink" target="rightframe"><b>getSharedElementEnterTransition</b>
+()</A></nobr><br>
+<!-- Method getSharedElementReenterTransition -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementReenterTransition_added()" class="hiddenlink" target="rightframe"><b>getSharedElementReenterTransition</b>
+()</A></nobr><br>
+<!-- Method getSharedElementReturnTransition -->
+<i>getSharedElementReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getSharedElementReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method getSharedElementReturnTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method getSharedElementsUseOverlay -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementsUseOverlay_added()" class="hiddenlink" target="rightframe"><b>getSharedElementsUseOverlay</b>
+()</A></nobr><br>
+<!-- Method getShowSoftInputOnFocus -->
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getShowSoftInputOnFocus_added()" class="hiddenlink" target="rightframe"><b>getShowSoftInputOnFocus</b>
+()</A></nobr><br>
+<!-- Method getShowText -->
+<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.getShowText_added()" class="hiddenlink" target="rightframe"><b>getShowText</b>
+()</A></nobr><br>
+<!-- Method getSize -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getSize_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getSize</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getSizeF -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getSizeF_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getSizeF</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getSlideEdge -->
+<nobr><A HREF="android.transition.Slide.html#android.transition.Slide.getSlideEdge_added()" class="hiddenlink" target="rightframe"><b>getSlideEdge</b>
+()</A></nobr><br>
+<!-- Method getSpeakerAngles -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.getSpeakerAngles_added(int, int, int[])" class="hiddenlink" target="rightframe"><b>getSpeakerAngles</b>
+(<code>int, int, int[]</code>)</A></nobr><br>
+<!-- Method getStableInsetBottom -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetBottom_added()" class="hiddenlink" target="rightframe"><b>getStableInsetBottom</b>
+()</A></nobr><br>
+<!-- Method getStableInsetLeft -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetLeft_added()" class="hiddenlink" target="rightframe"><b>getStableInsetLeft</b>
+()</A></nobr><br>
+<!-- Method getStableInsetRight -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetRight_added()" class="hiddenlink" target="rightframe"><b>getStableInsetRight</b>
+()</A></nobr><br>
+<!-- Method getStableInsetTop -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetTop_added()" class="hiddenlink" target="rightframe"><b>getStableInsetTop</b>
+()</A></nobr><br>
+<!-- Method getStatusCode -->
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getStatusCode_added()" class="hiddenlink" target="rightframe"><b>getStatusCode</b>
+()</A></nobr><br>
+<!-- Method getStreamType -->
+<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.getStreamType_changed()" class="hiddenlink" target="rightframe">getStreamType
+()</A></nobr><br>
+<!-- Method getSupportedRefreshRates -->
+<nobr><A HREF="android.view.Display.html#android.view.Display.getSupportedRefreshRates_added()" class="hiddenlink" target="rightframe"><b>getSupportedRefreshRates</b>
+()</A></nobr><br>
+<!-- Method getTargetNames -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getTargetNames_added()" class="hiddenlink" target="rightframe"><b>getTargetNames</b>
+()</A></nobr><br>
+<!-- Method getTargetViewNames -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getTargetViewNames_removed()" class="hiddenlink" target="rightframe"><strike>getTargetViewNames</strike>
+()</A></nobr><br>
+<!-- Method getText -->
+<i>getText</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.getText_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.media.MediaMetadata
+</A></nobr><br>
+<!-- Method getText -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getText_changed()" class="hiddenlink" target="rightframe">type&nbsp;
+()&nbsp;in&nbsp;android.speech.tts.SynthesisRequest
+</A></nobr><br>
+<!-- Method getTextColor -->
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getTextColor_removed(android.content.Context, android.content.res.TypedArray, int)" class="hiddenlink" target="rightframe"><strike>getTextColor</strike>
+(<code>Context, TypedArray, int</code>)</A></nobr><br>
+<!-- Method getTextColors -->
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getTextColors_removed(android.content.Context, android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>getTextColors</strike>
+(<code>Context, TypedArray</code>)</A></nobr><br>
+<!-- Method getThumbTintList -->
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.getThumbTintList_added()" class="hiddenlink" target="rightframe"><b>getThumbTintList</b>
+()</A></nobr><br>
+<!-- Method getThumbTintMode -->
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.getThumbTintMode_added()" class="hiddenlink" target="rightframe"><b>getThumbTintMode</b>
+()</A></nobr><br>
+<!-- Method getTimeout -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html#android.bluetooth.le.AdvertiseSettings.getTimeout_added()" class="hiddenlink" target="rightframe"><b>getTimeout</b>
+()</A></nobr><br>
+<!-- Method getTouchscreenBlocksFocus -->
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.getTouchscreenBlocksFocus_added()" class="hiddenlink" target="rightframe"><b>getTouchscreenBlocksFocus</b>
+()</A></nobr><br>
+<!-- Method getTracks -->
+<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.getTracks_added(int)" class="hiddenlink" target="rightframe"><b>getTracks</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getTransitionAt -->
+<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.getTransitionAt_added(int)" class="hiddenlink" target="rightframe"><b>getTransitionAt</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getTransitionBackgroundFadeDuration -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.getTransitionBackgroundFadeDuration_added()" class="hiddenlink" target="rightframe"><b>getTransitionBackgroundFadeDuration</b>
+()</A></nobr><br>
+<!-- Method getTransitionCount -->
+<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.getTransitionCount_added()" class="hiddenlink" target="rightframe"><b>getTransitionCount</b>
+()</A></nobr><br>
+<!-- Method getTransitionName -->
+<nobr><A HREF="android.view.View.html#android.view.View.getTransitionName_added()" class="hiddenlink" target="rightframe"><b>getTransitionName</b>
+()</A></nobr><br>
+<!-- Method getTvInputInfo -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.getTvInputInfo_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getTvInputInfo</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getType -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html#android.bluetooth.le.AdvertiseSettings.getType_removed()" class="hiddenlink" target="rightframe"><strike>getType</strike>
+()</A></nobr><br>
+<!-- Method getTypeLabel -->
+<nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.getTypeLabel_added(android.content.res.Resources, int, java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>getTypeLabel</b>
+(<code>Resources, int, CharSequence</code>)</A></nobr><br>
+<!-- Method getUnicodeLocaleAttributes -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleAttributes_added()" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleAttributes</b>
+()</A></nobr><br>
+<!-- Method getUnicodeLocaleKeys -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleKeys_added()" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleKeys</b>
+()</A></nobr><br>
+<!-- Method getUnicodeLocaleType -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleType_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleType</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getUserBadgedDrawableForDensity -->
+<i>getUserBadgedDrawableForDensity</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle, Rect, int</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method getUserBadgedDrawableForDensity -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle, Rect, int</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Method getUserBadgedIcon -->
+<i>getUserBadgedIcon</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method getUserBadgedIcon -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Method getUserBadgedLabel -->
+<i>getUserBadgedLabel</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, UserHandle</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method getUserBadgedLabel -->
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, UserHandle</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Method getVideoCapabilities -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getVideoCapabilities_added()" class="hiddenlink" target="rightframe"><b>getVideoCapabilities</b>
+()</A></nobr><br>
+<!-- Method getVideoResolution -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.getVideoResolution_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getVideoResolution</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getViewName -->
+<nobr><A HREF="android.view.View.html#android.view.View.getViewName_removed()" class="hiddenlink" target="rightframe"><strike>getViewName</strike>
+()</A></nobr><br>
+<!-- Method getVirtualizationMode -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.getVirtualizationMode_added()" class="hiddenlink" target="rightframe"><b>getVirtualizationMode</b>
+()</A></nobr><br>
+<!-- Method getVoice -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getVoice_added()" class="hiddenlink" target="rightframe"><b>getVoice</b>
+()</A></nobr><br>
+<!-- Method getVoiceInteractor -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.getVoiceInteractor_removed()" class="hiddenlink" target="rightframe"><strike>getVoiceInteractor</strike>
+()</A></nobr><br>
+<!-- Method getVoiceName -->
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getVoiceName_added()" class="hiddenlink" target="rightframe"><b>getVoiceName</b>
+()</A></nobr><br>
+<!-- Method getVoices -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getVoices_added()" class="hiddenlink" target="rightframe"><b>getVoices</b>
+()</A></nobr><br>
+<!-- Method getWindow -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.getWindow_removed()" class="hiddenlink" target="rightframe"><strike>getWindow</strike>
+()</A></nobr><br>
+<!-- Field GLOBAL_ACTION_POWER_DIALOG -->
+<nobr><A HREF="android.accessibilityservice.AccessibilityService.html#android.accessibilityservice.AccessibilityService.GLOBAL_ACTION_POWER_DIALOG" class="hiddenlink" target="rightframe">GLOBAL_ACTION_POWER_DIALOG</A>
+</nobr><br>
+<!-- Field goIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.goIcon" class="hiddenlink" target="rightframe">goIcon</A>
+</nobr><br>
+<!-- Method goToSleep -->
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.goToSleep_removed(long)" class="hiddenlink" target="rightframe"><strike>goToSleep</strike>
+(<code>long</code>)</A></nobr><br>
+<!-- Method grant -->
+<nobr><A HREF="android.webkit.PermissionRequest.html#android.webkit.PermissionRequest.grant_changed(java.lang.String[])" class="hiddenlink" target="rightframe">grant
+(<code>String[]</code>)</A></nobr><br>
+<!-- Class GridLayout -->
+<A HREF="android.widget.GridLayout.html" class="hiddenlink" target="rightframe">GridLayout</A><br>
+<!-- Method hasCaCertInstalled -->
+<A NAME="H"></A>
+<br><font size="+2">H</font>&nbsp;
+<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">
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.hasCaCertInstalled_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>hasCaCertInstalled</b>
+(<code>ComponentName, byte[]</code>)</A></nobr><br>
+<!-- Method hasFinished -->
+<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.hasFinished_added()" class="hiddenlink" target="rightframe"><b>hasFinished</b>
+()</A></nobr><br>
+<!-- Method hasQueuedPredecessors -->
+<i>hasQueuedPredecessors</i><br>
+&nbsp;&nbsp;<nobr><A HREF="java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html#java.util.concurrent.locks.AbstractQueuedLongSynchronizer.hasQueuedPredecessors_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;java.util.concurrent.locks.AbstractQueuedLongSynchronizer
+</A></nobr><br>
+<!-- Method hasQueuedPredecessors -->
+&nbsp;&nbsp;<nobr><A HREF="java.util.concurrent.locks.AbstractQueuedSynchronizer.html#java.util.concurrent.locks.AbstractQueuedSynchronizer.hasQueuedPredecessors_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;java.util.concurrent.locks.AbstractQueuedSynchronizer
+</A></nobr><br>
+<!-- Method hasStableInsets -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.hasStableInsets_added()" class="hiddenlink" target="rightframe"><b>hasStableInsets</b>
+()</A></nobr><br>
+<!-- Method hasStarted -->
+<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.hasStarted_added()" class="hiddenlink" target="rightframe"><b>hasStarted</b>
+()</A></nobr><br>
+<!-- Method hasUserRestriction -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.hasUserRestriction_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>hasUserRestriction</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Field headerAmPmTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerAmPmTextAppearance" class="hiddenlink" target="rightframe">headerAmPmTextAppearance</A>
+</nobr><br>
+<!-- Field headerDayOfMonthTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerDayOfMonthTextAppearance" class="hiddenlink" target="rightframe">headerDayOfMonthTextAppearance</A>
+</nobr><br>
+<!-- Field headerMonthTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerMonthTextAppearance" class="hiddenlink" target="rightframe">headerMonthTextAppearance</A>
+</nobr><br>
+<!-- Field headerTimeTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerTimeTextAppearance" class="hiddenlink" target="rightframe">headerTimeTextAppearance</A>
+</nobr><br>
+<!-- Field headerYearTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerYearTextAppearance" class="hiddenlink" target="rightframe">headerYearTextAppearance</A>
+</nobr><br>
+<!-- Field headsUpContentView -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.headsUpContentView" class="hiddenlink" target="rightframe">headsUpContentView</A>
+</nobr><br>
+<!-- Field hideOnContentScroll -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.hideOnContentScroll" class="hiddenlink" target="rightframe">hideOnContentScroll</A>
+</nobr><br>
+<!-- Method hideWindow -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.hideWindow_removed()" class="hiddenlink" target="rightframe"><strike>hideWindow</strike>
+()</A></nobr><br>
+<!-- Field HINT_HOST_DISABLE_EFFECTS -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.HINT_HOST_DISABLE_EFFECTS" class="hiddenlink" target="rightframe">HINT_HOST_DISABLE_EFFECTS</A>
+</nobr><br>
+<!-- Method iccCloseLogicalChannel -->
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccCloseLogicalChannel_added(int)" class="hiddenlink" target="rightframe"><b>iccCloseLogicalChannel</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method iccExchangeSimIO -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccExchangeSimIO_added(int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccExchangeSimIO</b>
+(<code>int, int, int, int, int, String</code>)</A></nobr><br>
+<!-- Method iccOpenLogicalChannel -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccOpenLogicalChannel_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>iccOpenLogicalChannel</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Class IccOpenLogicalChannelResponse -->
+<A HREF="pkg_android.telephony.html#IccOpenLogicalChannelResponse" class="hiddenlink" target="rightframe"><b>IccOpenLogicalChannelResponse</b></A><br>
+<!-- Method iccTransmitApduBasicChannel -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccTransmitApduBasicChannel_added(int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccTransmitApduBasicChannel</b>
+(<code>int, int, int, int, int, String</code>)</A></nobr><br>
+<!-- Method iccTransmitApduLogicalChannel -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccTransmitApduLogicalChannel_added(int, int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccTransmitApduLogicalChannel</b>
+(<code>int, int, int, int, int, int, String</code>)</A></nobr><br>
+<!-- Class IllformedLocaleException -->
+<A HREF="pkg_java.util.html#IllformedLocaleException" class="hiddenlink" target="rightframe"><b>IllformedLocaleException</b></A><br>
+<!-- Class Image -->
+<A HREF="android.media.Image.html" class="hiddenlink" target="rightframe">Image</A><br>
+<!-- Class ImageFormat -->
+<A HREF="android.graphics.ImageFormat.html" class="hiddenlink" target="rightframe">ImageFormat</A><br>
+<!-- Class ImageView -->
+<A HREF="android.widget.ImageView.html" class="hiddenlink" target="rightframe">ImageView</A><br>
+<!-- Field IMPORTANCE_GONE -->
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.IMPORTANCE_GONE" class="hiddenlink" target="rightframe">IMPORTANCE_GONE</A>
+</nobr><br>
+<!-- Field indeterminateTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.indeterminateTint" class="hiddenlink" target="rightframe">indeterminateTint</A>
+</nobr><br>
+<!-- Field indeterminateTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.indeterminateTintMode" class="hiddenlink" target="rightframe">indeterminateTintMode</A>
+</nobr><br>
+<!-- Method indexOfKey -->
+<nobr><A HREF="android.util.ArrayMap.html#android.util.ArrayMap.indexOfKey_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>indexOfKey</b>
+(<code>Object</code>)</A></nobr><br>
+<!-- Field INFO_OUTPUT_BUFFERS_CHANGED -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.INFO_OUTPUT_BUFFERS_CHANGED" class="hiddenlink" target="rightframe">INFO_OUTPUT_BUFFERS_CHANGED</A>
+</nobr><br>
+<!-- Field INFO_SUPPORTED_HARDWARE_LEVEL_LEGACY -->
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.INFO_SUPPORTED_HARDWARE_LEVEL_LEGACY" class="hiddenlink" target="rightframe">INFO_SUPPORTED_HARDWARE_LEVEL_LEGACY</A>
+</nobr><br>
+<!-- Field inInputShareable -->
+<nobr><A HREF="android.graphics.BitmapFactory.Options.html#android.graphics.BitmapFactory.Options.inInputShareable" class="hiddenlink" target="rightframe">inInputShareable</A>
+</nobr><br>
+<!-- Method initializeFadingEdge -->
+<nobr><A HREF="android.view.View.html#android.view.View.initializeFadingEdge_removed(android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>initializeFadingEdge</strike>
+(<code>TypedArray</code>)</A></nobr><br>
+<!-- Method initializeScrollbars -->
+<nobr><A HREF="android.view.View.html#android.view.View.initializeScrollbars_removed(android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>initializeScrollbars</strike>
+(<code>TypedArray</code>)</A></nobr><br>
+<!-- Field inPurgeable -->
+<nobr><A HREF="android.graphics.BitmapFactory.Options.html#android.graphics.BitmapFactory.Options.inPurgeable" class="hiddenlink" target="rightframe">inPurgeable</A>
+</nobr><br>
+<!-- Field INPUT_STATE_CONNECTED -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.INPUT_STATE_CONNECTED" class="hiddenlink" target="rightframe">INPUT_STATE_CONNECTED</A>
+</nobr><br>
+<!-- Field INPUT_STATE_CONNECTED_STANDBY -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.INPUT_STATE_CONNECTED_STANDBY" class="hiddenlink" target="rightframe">INPUT_STATE_CONNECTED_STANDBY</A>
+</nobr><br>
+<!-- Field INPUT_STATE_DISCONNECTED -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.INPUT_STATE_DISCONNECTED" class="hiddenlink" target="rightframe">INPUT_STATE_DISCONNECTED</A>
+</nobr><br>
+<!-- Class InputConnection -->
+<A HREF="android.view.inputmethod.InputConnection.html" class="hiddenlink" target="rightframe"><i>InputConnection</i></A><br>
+<!-- Class InputConnectionWrapper -->
+<A HREF="android.view.inputmethod.InputConnectionWrapper.html" class="hiddenlink" target="rightframe">InputConnectionWrapper</A><br>
+<!-- Class InputFilter.LengthFilter -->
+<A HREF="android.text.InputFilter.LengthFilter.html" class="hiddenlink" target="rightframe">InputFilter.LengthFilter</A><br>
+<!-- Class InputMethodManager -->
+<A HREF="android.view.inputmethod.InputMethodManager.html" class="hiddenlink" target="rightframe">InputMethodManager</A><br>
+<!-- Class InputMethodService -->
+<A HREF="android.inputmethodservice.InputMethodService.html" class="hiddenlink" target="rightframe">InputMethodService</A><br>
+<!-- Method inRange -->
+<nobr><A HREF="android.util.Range.html#android.util.Range.inRange_removed(T)" class="hiddenlink" target="rightframe"><strike>inRange</strike>
+(<code>T</code>)</A></nobr><br>
+<!-- Field inset -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.inset" class="hiddenlink" target="rightframe">inset</A>
+</nobr><br>
+<!-- Field INSTALL_LOCATION_AUTO -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.INSTALL_LOCATION_AUTO" class="hiddenlink" target="rightframe">INSTALL_LOCATION_AUTO</A>
+</nobr><br>
+<!-- Field INSTALL_LOCATION_INTERNAL_ONLY -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY" class="hiddenlink" target="rightframe">INSTALL_LOCATION_INTERNAL_ONLY</A>
+</nobr><br>
+<!-- Field INSTALL_LOCATION_PREFER_EXTERNAL -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.INSTALL_LOCATION_PREFER_EXTERNAL" class="hiddenlink" target="rightframe">INSTALL_LOCATION_PREFER_EXTERNAL</A>
+</nobr><br>
+<!-- Method installCaCert -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.installCaCert_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>installCaCert</b>
+(<code>ComponentName, byte[]</code>)</A></nobr><br>
+<!-- Method installKeyPair -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.installKeyPair_added(android.content.ComponentName, java.security.PrivateKey, java.security.cert.Certificate, java.lang.String)" class="hiddenlink" target="rightframe"><b>installKeyPair</b>
+(<code>ComponentName, PrivateKey, Certificate, String</code>)</A></nobr><br>
+<!-- Field installLocation -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.installLocation" class="hiddenlink" target="rightframe">installLocation</A>
+</nobr><br>
+<!-- Class InstrumentationInfo -->
+<A HREF="android.content.pm.InstrumentationInfo.html" class="hiddenlink" target="rightframe">InstrumentationInfo</A><br>
+<!-- Class Intent -->
+<A HREF="android.content.Intent.html" class="hiddenlink" target="rightframe">Intent</A><br>
+<!-- Field INTERRUPTION_FILTER_ALL -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_ALL" class="hiddenlink" target="rightframe">INTERRUPTION_FILTER_ALL</A>
+</nobr><br>
+<!-- Field INTERRUPTION_FILTER_NONE -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_NONE" class="hiddenlink" target="rightframe">INTERRUPTION_FILTER_NONE</A>
+</nobr><br>
+<!-- Field INTERRUPTION_FILTER_PRIORITY -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_PRIORITY" class="hiddenlink" target="rightframe">INTERRUPTION_FILTER_PRIORITY</A>
+</nobr><br>
+<!-- Method intersect -->
+<i>intersect</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.intersect_added(T, T)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, T</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+<!-- Method intersect -->
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.intersect_added(android.util.Range<T>)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Range&lt;T&gt;</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+<!-- Method invalidateOutline -->
+<nobr><A HREF="android.view.View.html#android.view.View.invalidateOutline_added()" class="hiddenlink" target="rightframe"><b>invalidateOutline</b>
+()</A></nobr><br>
+<!-- Method is5GHzBandSupported -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.is5GHzBandSupported_added()" class="hiddenlink" target="rightframe"><b>is5GHzBandSupported</b>
+()</A></nobr><br>
+<!-- Method isAccessibilityFocused -->
+<nobr><A HREF="android.view.accessibility.AccessibilityWindowInfo.html#android.view.accessibility.AccessibilityWindowInfo.isAccessibilityFocused_added()" class="hiddenlink" target="rightframe"><b>isAccessibilityFocused</b>
+()</A></nobr><br>
+<!-- Method isActiveService -->
+<nobr><A HREF="android.service.voice.VoiceInteractionService.html#android.service.voice.VoiceInteractionService.isActiveService_added(android.content.Context, android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>isActiveService</b>
+(<code>Context, ComponentName</code>)</A></nobr><br>
+<!-- Method isActivityEnabled -->
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.isActivityEnabled_added(android.content.ComponentName, android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>isActivityEnabled</b>
+(<code>ComponentName, UserHandle</code>)</A></nobr><br>
+<!-- Method isActivityEnabledForProfile -->
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.isActivityEnabledForProfile_removed(android.content.ComponentName, android.os.UserHandle)" class="hiddenlink" target="rightframe"><strike>isActivityEnabledForProfile</strike>
+(<code>ComponentName, UserHandle</code>)</A></nobr><br>
+<!-- Method isApplicationBlocked -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isApplicationBlocked_removed(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><strike>isApplicationBlocked</strike>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method isApplicationHidden -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isApplicationHidden_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>isApplicationHidden</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method isButtonPressed -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.isButtonPressed_added(int)" class="hiddenlink" target="rightframe"><b>isButtonPressed</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method isConnectable -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html#android.bluetooth.le.AdvertiseSettings.isConnectable_added()" class="hiddenlink" target="rightframe"><b>isConnectable</b>
+()</A></nobr><br>
+<!-- Method isConsumed -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.isConsumed_added()" class="hiddenlink" target="rightframe"><b>isConsumed</b>
+()</A></nobr><br>
+<!-- Method isDeviceToApRttSupported -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isDeviceToApRttSupported_added()" class="hiddenlink" target="rightframe"><b>isDeviceToApRttSupported</b>
+()</A></nobr><br>
+<!-- Method isEnhancedPowerReportingSupported -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isEnhancedPowerReportingSupported_added()" class="hiddenlink" target="rightframe"><b>isEnhancedPowerReportingSupported</b>
+()</A></nobr><br>
+<!-- Method isEnterpriseContactId -->
+<nobr><A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.isEnterpriseContactId_added(long)" class="hiddenlink" target="rightframe"><b>isEnterpriseContactId</b>
+(<code>long</code>)</A></nobr><br>
+<!-- Method isFeatureRequired -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.isFeatureRequired_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>isFeatureRequired</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method isFormatSupported -->
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.isFormatSupported_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>isFormatSupported</b>
+(<code>MediaFormat</code>)</A></nobr><br>
+<!-- Method isInLockTaskMode -->
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.isInLockTaskMode_added()" class="hiddenlink" target="rightframe"><b>isInLockTaskMode</b>
+()</A></nobr><br>
+<!-- Method isInterceptedByDoNotDisturb -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.Ranking.html#android.service.notification.NotificationListenerService.Ranking.isInterceptedByDoNotDisturb_removed()" class="hiddenlink" target="rightframe"><strike>isInterceptedByDoNotDisturb</strike>
+()</A></nobr><br>
+<!-- Method isLockTaskPermitted -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isLockTaskPermitted_changed(java.lang.String)" class="hiddenlink" target="rightframe">isLockTaskPermitted
+(<code>String</code>)</A></nobr><br>
+<!-- Method isMasterVolumeMuted -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isMasterVolumeMuted_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>isMasterVolumeMuted</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method isMultipleAdvertisementSupported -->
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isMultipleAdvertisementSupported_added()" class="hiddenlink" target="rightframe"><b>isMultipleAdvertisementSupported</b>
+()</A></nobr><br>
+<!-- Method isOffloadedFilteringSupported -->
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isOffloadedFilteringSupported_added()" class="hiddenlink" target="rightframe"><b>isOffloadedFilteringSupported</b>
+()</A></nobr><br>
+<!-- Method isOffloadedScanBatchingSupported -->
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isOffloadedScanBatchingSupported_added()" class="hiddenlink" target="rightframe"><b>isOffloadedScanBatchingSupported</b>
+()</A></nobr><br>
+<!-- Method isOverrideDeadlineExpired -->
+<nobr><A HREF="android.app.job.JobParameters.html#android.app.job.JobParameters.isOverrideDeadlineExpired_added()" class="hiddenlink" target="rightframe"><b>isOverrideDeadlineExpired</b>
+()</A></nobr><br>
+<!-- Method isP2pSupported -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isP2pSupported_added()" class="hiddenlink" target="rightframe"><b>isP2pSupported</b>
+()</A></nobr><br>
+<!-- Method isPackageEnabled -->
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.isPackageEnabled_added(java.lang.String, android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>isPackageEnabled</b>
+(<code>String, UserHandle</code>)</A></nobr><br>
+<!-- Method isPackageEnabledForProfile -->
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.isPackageEnabledForProfile_removed(java.lang.String, android.os.UserHandle)" class="hiddenlink" target="rightframe"><strike>isPackageEnabledForProfile</strike>
+(<code>String, UserHandle</code>)</A></nobr><br>
+<!-- Method isParentalControlsEnabled -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.isParentalControlsEnabled_added()" class="hiddenlink" target="rightframe"><b>isParentalControlsEnabled</b>
+()</A></nobr><br>
+<!-- Method isPassthroughInput -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.isPassthroughInput_added()" class="hiddenlink" target="rightframe"><b>isPassthroughInput</b>
+()</A></nobr><br>
+<!-- Method isPersisted -->
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.isPersisted_added()" class="hiddenlink" target="rightframe"><b>isPersisted</b>
+()</A></nobr><br>
+<!-- Method isPreferredNetworkOffloadSupported -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isPreferredNetworkOffloadSupported_added()" class="hiddenlink" target="rightframe"><b>isPreferredNetworkOffloadSupported</b>
+()</A></nobr><br>
+<!-- Method isRatingBlocked -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.isRatingBlocked_added(android.media.tv.TvContentRating)" class="hiddenlink" target="rightframe"><b>isRatingBlocked</b>
+(<code>TvContentRating</code>)</A></nobr><br>
+<!-- Method isSmsCapable -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.isSmsCapable_added()" class="hiddenlink" target="rightframe"><b>isSmsCapable</b>
+()</A></nobr><br>
+<!-- Method isTdlsSupported -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isTdlsSupported_added()" class="hiddenlink" target="rightframe"><b>isTdlsSupported</b>
+()</A></nobr><br>
+<!-- Method isUninstallBlocked -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isUninstallBlocked_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>isUninstallBlocked</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method isVoiceInteraction -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.isVoiceInteraction_removed()" class="hiddenlink" target="rightframe"><strike>isVoiceInteraction</strike>
+()</A></nobr><br>
+<!-- Method isVolumeFixed -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.isVolumeFixed_added()" class="hiddenlink" target="rightframe"><b>isVolumeFixed</b>
+()</A></nobr><br>
+<!-- Method isWakeLockLevelSupported -->
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.isWakeLockLevelSupported_added(int)" class="hiddenlink" target="rightframe"><b>isWakeLockLevelSupported</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method isWakeUpSensor -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.isWakeUpSensor_added()" class="hiddenlink" target="rightframe"><b>isWakeUpSensor</b>
+()</A></nobr><br>
+<!-- Method isWatchingCursor -->
+<nobr><A HREF="android.view.inputmethod.InputMethodManager.html#android.view.inputmethod.InputMethodManager.isWatchingCursor_changed(android.view.View)" class="hiddenlink" target="rightframe">isWatchingCursor
+(<code>View</code>)</A></nobr><br>
+<!-- Package java.util -->
+<A NAME="J"></A>
+<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>
+<!-- Class JobInfo -->
+<A HREF="android.app.job.JobInfo.html" class="hiddenlink" target="rightframe">JobInfo</A><br>
+<!-- Class JobInfo.BackoffPolicy -->
+<A HREF="pkg_android.app.job.html#JobInfo.BackoffPolicy" class="hiddenlink" target="rightframe"><strike>JobInfo.BackoffPolicy</strike></A><br>
+<!-- Class JobInfo.Builder -->
+<A HREF="android.app.job.JobInfo.Builder.html" class="hiddenlink" target="rightframe">JobInfo.Builder</A><br>
+<!-- Class JobInfo.NetworkType -->
+<A HREF="pkg_android.app.job.html#JobInfo.NetworkType" class="hiddenlink" target="rightframe"><strike>JobInfo.NetworkType</strike></A><br>
+<!-- Class JobParameters -->
+<A HREF="android.app.job.JobParameters.html" class="hiddenlink" target="rightframe">JobParameters</A><br>
+<!-- Field KEY_AAC_DRC_ATTENUATION_FACTOR -->
+<A NAME="K"></A>
+<br><font size="+2">K</font>&nbsp;
+<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.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_ATTENUATION_FACTOR" class="hiddenlink" target="rightframe">KEY_AAC_DRC_ATTENUATION_FACTOR</A>
+</nobr><br>
+<!-- Field KEY_AAC_DRC_BOOST_FACTOR -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_BOOST_FACTOR" class="hiddenlink" target="rightframe">KEY_AAC_DRC_BOOST_FACTOR</A>
+</nobr><br>
+<!-- Field KEY_AAC_DRC_HEAVY_COMPRESSION -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_HEAVY_COMPRESSION" class="hiddenlink" target="rightframe">KEY_AAC_DRC_HEAVY_COMPRESSION</A>
+</nobr><br>
+<!-- Field KEY_AAC_DRC_TARGET_REFERENCE_LEVEL -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_TARGET_REFERENCE_LEVEL" class="hiddenlink" target="rightframe">KEY_AAC_DRC_TARGET_REFERENCE_LEVEL</A>
+</nobr><br>
+<!-- Field KEY_AAC_ENCODED_TARGET_LEVEL -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_ENCODED_TARGET_LEVEL" class="hiddenlink" target="rightframe">KEY_AAC_ENCODED_TARGET_LEVEL</A>
+</nobr><br>
+<!-- Field KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT" class="hiddenlink" target="rightframe">KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT</A>
+</nobr><br>
+<!-- Field KEY_AAC_SBR_MODE -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_SBR_MODE" class="hiddenlink" target="rightframe">KEY_AAC_SBR_MODE</A>
+</nobr><br>
+<!-- Field KEY_AUDIO_SESSION_ID -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AUDIO_SESSION_ID" class="hiddenlink" target="rightframe">KEY_AUDIO_SESSION_ID</A>
+</nobr><br>
+<!-- Field KEY_BITRATE_MODE -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_BITRATE_MODE" class="hiddenlink" target="rightframe">KEY_BITRATE_MODE</A>
+</nobr><br>
+<!-- Field KEY_CAPTURE_RATE -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_CAPTURE_RATE" class="hiddenlink" target="rightframe">KEY_CAPTURE_RATE</A>
+</nobr><br>
+<!-- Field KEY_COMPLEXITY -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_COMPLEXITY" class="hiddenlink" target="rightframe">KEY_COMPLEXITY</A>
+</nobr><br>
+<!-- Field KEY_FEATURE_EMBEDDED_SYNTHESIS -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_EMBEDDED_SYNTHESIS" class="hiddenlink" target="rightframe">KEY_FEATURE_EMBEDDED_SYNTHESIS</A>
+</nobr><br>
+<!-- Field KEY_FEATURE_NETWORK_RETRIES_COUNT -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_RETRIES_COUNT" class="hiddenlink" target="rightframe">KEY_FEATURE_NETWORK_RETRIES_COUNT</A>
+</nobr><br>
+<!-- Field KEY_FEATURE_NETWORK_SYNTHESIS -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_SYNTHESIS" class="hiddenlink" target="rightframe">KEY_FEATURE_NETWORK_SYNTHESIS</A>
+</nobr><br>
+<!-- Field KEY_FEATURE_NETWORK_TIMEOUT_MS -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_TIMEOUT_MS" class="hiddenlink" target="rightframe">KEY_FEATURE_NETWORK_TIMEOUT_MS</A>
+</nobr><br>
+<!-- Field KEY_FEATURE_NOT_INSTALLED -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NOT_INSTALLED" class="hiddenlink" target="rightframe">KEY_FEATURE_NOT_INSTALLED</A>
+</nobr><br>
+<!-- Field KEY_PARAM_SESSION_ID -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_PARAM_SESSION_ID" class="hiddenlink" target="rightframe">KEY_PARAM_SESSION_ID</A>
+</nobr><br>
+<!-- Field KEY_PROFILE -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_PROFILE" class="hiddenlink" target="rightframe">KEY_PROFILE</A>
+</nobr><br>
+<!-- Field KEY_TEMPORAL_LAYERING -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_TEMPORAL_LAYERING" class="hiddenlink" target="rightframe">KEY_TEMPORAL_LAYERING</A>
+</nobr><br>
+<!-- Field KEYCODE_HELP -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_HELP" class="hiddenlink" target="rightframe">KEYCODE_HELP</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_ANTENNA_CABLE -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_ANTENNA_CABLE" class="hiddenlink" target="rightframe">KEYCODE_TV_ANTENNA_CABLE</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_AUDIO_DESCRIPTION -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION" class="hiddenlink" target="rightframe">KEYCODE_TV_AUDIO_DESCRIPTION</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN" class="hiddenlink" target="rightframe">KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP" class="hiddenlink" target="rightframe">KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_CONTENTS_MENU -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_CONTENTS_MENU" class="hiddenlink" target="rightframe">KEYCODE_TV_CONTENTS_MENU</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_COMPONENT_1 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPONENT_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPONENT_1</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_COMPONENT_2 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPONENT_2" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPONENT_2</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_COMPOSITE_1 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPOSITE_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPOSITE_1</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_COMPOSITE_2 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPOSITE_2" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPOSITE_2</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_HDMI_1 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_1</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_HDMI_2 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_2" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_2</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_HDMI_3 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_3" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_3</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_HDMI_4 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_4" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_4</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_INPUT_VGA_1 -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_VGA_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_VGA_1</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_MEDIA_CONTEXT_MENU -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_MEDIA_CONTEXT_MENU" class="hiddenlink" target="rightframe">KEYCODE_TV_MEDIA_CONTEXT_MENU</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_NETWORK -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_NETWORK" class="hiddenlink" target="rightframe">KEYCODE_TV_NETWORK</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_NUMBER_ENTRY -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_NUMBER_ENTRY" class="hiddenlink" target="rightframe">KEYCODE_TV_NUMBER_ENTRY</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_RADIO_SERVICE -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_RADIO_SERVICE" class="hiddenlink" target="rightframe">KEYCODE_TV_RADIO_SERVICE</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_SATELLITE -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_SATELLITE_BS -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE_BS" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE_BS</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_SATELLITE_CS -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE_CS" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE_CS</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_SATELLITE_SERVICE -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE_SERVICE" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE_SERVICE</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_TELETEXT -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TELETEXT" class="hiddenlink" target="rightframe">KEYCODE_TV_TELETEXT</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_TERRESTRIAL_ANALOG -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TERRESTRIAL_ANALOG" class="hiddenlink" target="rightframe">KEYCODE_TV_TERRESTRIAL_ANALOG</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_TERRESTRIAL_DIGITAL -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TERRESTRIAL_DIGITAL" class="hiddenlink" target="rightframe">KEYCODE_TV_TERRESTRIAL_DIGITAL</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_TIMER_PROGRAMMING -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TIMER_PROGRAMMING" class="hiddenlink" target="rightframe">KEYCODE_TV_TIMER_PROGRAMMING</A>
+</nobr><br>
+<!-- Field KEYCODE_TV_ZOOM_MODE -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_ZOOM_MODE" class="hiddenlink" target="rightframe">KEYCODE_TV_ZOOM_MODE</A>
+</nobr><br>
+<!-- Field KEYCODE_VOICE_ASSIST -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_VOICE_ASSIST" class="hiddenlink" target="rightframe">KEYCODE_VOICE_ASSIST</A>
+</nobr><br>
+<!-- Class KeyEvent -->
+<A HREF="android.view.KeyEvent.html" class="hiddenlink" target="rightframe">KeyEvent</A><br>
+<!-- Field KEYGUARD_DISABLE_FINGERPRINT -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_FINGERPRINT" class="hiddenlink" target="rightframe">KEYGUARD_DISABLE_FINGERPRINT</A>
+</nobr><br>
+<!-- Class KeyguardManager -->
+<A HREF="android.app.KeyguardManager.html" class="hiddenlink" target="rightframe">KeyguardManager</A><br>
+<!-- Field L -->
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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">
+<nobr><A HREF="android.os.Build.VERSION_CODES.html#android.os.Build.VERSION_CODES.L" class="hiddenlink" target="rightframe">L</A>
+</nobr><br>
+<!-- Field l_resource_pad1 -->
+<i>l_resource_pad1</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad1" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad1 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad1" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad1 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad1" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad1 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.interpolator.html#android.R.interpolator.l_resource_pad1" class="hiddenlink" target="rightframe"><strike>android.R.interpolator</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad1 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad1" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad10 -->
+<i>l_resource_pad10</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad10" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad10 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad10" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad10 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad10" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad10 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad10" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad11 -->
+<i>l_resource_pad11</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad11" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad11 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad11" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad11 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad11" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad12 -->
+<i>l_resource_pad12</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad12" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad12 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad12" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad12 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad12" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad13 -->
+<i>l_resource_pad13</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad13" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad13 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad13" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad13 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad13" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad14 -->
+<i>l_resource_pad14</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad14" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad14 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad14" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad14 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad14" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad15 -->
+<i>l_resource_pad15</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad15" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad15 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad15" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad15 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad15" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad16 -->
+<i>l_resource_pad16</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad16" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad16 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad16" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad16 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad16" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad17 -->
+<i>l_resource_pad17</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad17" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad17 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad17" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad17 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad17" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad18 -->
+<i>l_resource_pad18</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad18" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad18 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad18" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad18 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad18" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad19 -->
+<i>l_resource_pad19</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad19" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad19 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad19" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad19 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad19" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad2 -->
+<i>l_resource_pad2</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad2" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad2 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad2" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad2 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad2" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad2 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.interpolator.html#android.R.interpolator.l_resource_pad2" class="hiddenlink" target="rightframe"><strike>android.R.interpolator</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad2 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad2" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad20 -->
+<i>l_resource_pad20</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad20" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad20 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad20" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad21 -->
+<i>l_resource_pad21</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad21" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad21 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad21" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad22 -->
+<i>l_resource_pad22</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad22" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad22 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad22" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad23 -->
+<i>l_resource_pad23</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad23" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad23 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad23" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad24 -->
+<i>l_resource_pad24</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad24" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad24 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad24" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad25 -->
+<i>l_resource_pad25</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad25" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad25 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad25" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad26 -->
+<nobr><A HREF="android.R.style.html#android.R.style.l_resource_pad26" class="hiddenlink" target="rightframe"><strike>l_resource_pad26</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad27 -->
+<nobr><A HREF="android.R.style.html#android.R.style.l_resource_pad27" class="hiddenlink" target="rightframe"><strike>l_resource_pad27</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad28 -->
+<nobr><A HREF="android.R.style.html#android.R.style.l_resource_pad28" class="hiddenlink" target="rightframe"><strike>l_resource_pad28</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad3 -->
+<i>l_resource_pad3</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad3" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad3 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad3" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad3 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad3" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad3 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.interpolator.html#android.R.interpolator.l_resource_pad3" class="hiddenlink" target="rightframe"><strike>android.R.interpolator</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad3 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad3" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad4 -->
+<i>l_resource_pad4</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad4" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad4 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad4" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad4 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad4" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad4 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.interpolator.html#android.R.interpolator.l_resource_pad4" class="hiddenlink" target="rightframe"><strike>android.R.interpolator</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad4 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad4" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad5 -->
+<i>l_resource_pad5</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad5" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad5 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad5" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad5 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad5" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad5 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad5" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad6 -->
+<i>l_resource_pad6</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad6" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad6 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad6" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad6 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad6" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad6 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad6" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad7 -->
+<i>l_resource_pad7</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad7" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad7 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad7" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad7 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad7" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad7 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad7" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad8 -->
+<i>l_resource_pad8</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad8" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad8 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad8" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad8 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad8" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad8 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad8" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad9 -->
+<i>l_resource_pad9</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad9" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad9 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad9" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad9 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad9" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad9 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad9" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field label -->
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.label" class="hiddenlink" target="rightframe">label</A>
+</nobr><br>
+<!-- Class LauncherApps -->
+<A HREF="android.content.pm.LauncherApps.html" class="hiddenlink" target="rightframe">LauncherApps</A><br>
+<!-- Class LauncherApps.Callback -->
+<A HREF="pkg_android.content.pm.html#LauncherApps.Callback" class="hiddenlink" target="rightframe"><b>LauncherApps.Callback</b></A><br>
+<!-- Class LauncherApps.OnAppsChangedListener -->
+<A HREF="pkg_android.content.pm.html#LauncherApps.OnAppsChangedListener" class="hiddenlink" target="rightframe"><strike>LauncherApps.OnAppsChangedListener</strike></A><br>
+<!-- Field launchTaskBehindSourceAnimation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.launchTaskBehindSourceAnimation" class="hiddenlink" target="rightframe">launchTaskBehindSourceAnimation</A>
+</nobr><br>
+<!-- Field launchTaskBehindTargetAnimation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.launchTaskBehindTargetAnimation" class="hiddenlink" target="rightframe">launchTaskBehindTargetAnimation</A>
+</nobr><br>
+<!-- Field layout_columnWeight -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.layout_columnWeight" class="hiddenlink" target="rightframe">layout_columnWeight</A>
+</nobr><br>
+<!-- Field layout_rowWeight -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.layout_rowWeight" class="hiddenlink" target="rightframe">layout_rowWeight</A>
+</nobr><br>
+<!-- Field letterSpacing -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.letterSpacing" class="hiddenlink" target="rightframe">letterSpacing</A>
+</nobr><br>
+<!-- Class LightingColorFilter -->
+<A HREF="android.graphics.LightingColorFilter.html" class="hiddenlink" target="rightframe">LightingColorFilter</A><br>
+<!-- Field linear_out_slow_in -->
+<nobr><A HREF="android.R.interpolator.html#android.R.interpolator.linear_out_slow_in" class="hiddenlink" target="rightframe">linear_out_slow_in</A>
+</nobr><br>
+<!-- Class LinkAddress -->
+<A HREF="android.net.LinkAddress.html" class="hiddenlink" target="rightframe">LinkAddress</A><br>
+<!-- Class LinkedTransferQueue -->
+<A HREF="pkg_java.util.concurrent.html#LinkedTransferQueue" class="hiddenlink" target="rightframe"><b>LinkedTransferQueue</b></A><br>
+<!-- Method loadIcon -->
+<i>loadIcon</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadIcon_added(android.content.Context, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context, int</code>)</b>&nbsp;in&nbsp;android.appwidget.AppWidgetProviderInfo
+</A></nobr><br>
+<!-- Method loadIcon -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.loadIcon_added(android.content.Context)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context</code>)</b>&nbsp;in&nbsp;android.media.tv.TvInputInfo
+</A></nobr><br>
+<!-- Method loadLabel -->
+<i>loadLabel</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadLabel_added(android.content.pm.PackageManager)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>PackageManager</code>)</b>&nbsp;in&nbsp;android.appwidget.AppWidgetProviderInfo
+</A></nobr><br>
+<!-- Method loadLabel -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.loadLabel_changed(android.content.Context)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Context</code>)&nbsp;in&nbsp;android.media.tv.TvInputInfo
+</A></nobr><br>
+<!-- Method loadPreviewImage -->
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadPreviewImage_added(android.content.Context, int)" class="hiddenlink" target="rightframe"><b>loadPreviewImage</b>
+(<code>Context, int</code>)</A></nobr><br>
+<!-- Class Locale -->
+<A HREF="java.util.Locale.html" class="hiddenlink" target="rightframe">Locale</A><br>
+<!-- Class Locale.Builder -->
+<A HREF="pkg_java.util.html#Locale.Builder" class="hiddenlink" target="rightframe"><b>Locale.Builder</b></A><br>
+<!-- Field LOLLIPOP -->
+<nobr><A HREF="android.os.Build.VERSION_CODES.html#android.os.Build.VERSION_CODES.LOLLIPOP" class="hiddenlink" target="rightframe">LOLLIPOP</A>
+</nobr><br>
+<!-- Method makeTaskLaunchBehind -->
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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.app.ActivityOptions.html#android.app.ActivityOptions.makeTaskLaunchBehind_added()" class="hiddenlink" target="rightframe"><b>makeTaskLaunchBehind</b>
+()</A></nobr><br>
+<!-- Class Manifest.permission -->
+<A HREF="android.Manifest.permission.html" class="hiddenlink" target="rightframe">Manifest.permission</A><br>
+<!-- Field mask -->
+<nobr><A HREF="android.R.id.html#android.R.id.mask" class="hiddenlink" target="rightframe">mask</A>
+</nobr><br>
+<!-- Field MATCH_NAME -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.MATCH_NAME" class="hiddenlink" target="rightframe">MATCH_NAME</A>
+</nobr><br>
+<!-- Field MATCH_VIEW_NAME -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.MATCH_VIEW_NAME" class="hiddenlink" target="rightframe"><strike>MATCH_VIEW_NAME</strike></A>
+</nobr><br>
+<!-- Method matchesInterruptionFilter -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.Ranking.html#android.service.notification.NotificationListenerService.Ranking.matchesInterruptionFilter_added()" class="hiddenlink" target="rightframe"><b>matchesInterruptionFilter</b>
+()</A></nobr><br>
+<!-- Field matchOrder -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.matchOrder" class="hiddenlink" target="rightframe">matchOrder</A>
+</nobr><br>
+<!-- Field MAX_BACKOFF_DELAY_MILLIS -->
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.MAX_BACKOFF_DELAY_MILLIS" class="hiddenlink" target="rightframe">MAX_BACKOFF_DELAY_MILLIS</A>
+</nobr><br>
+<!-- Field MAX_ITEMS -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.MAX_ITEMS" class="hiddenlink" target="rightframe">MAX_ITEMS</A>
+</nobr><br>
+<!-- Field MAX_THUMBNAIL_DIMENSION -->
+<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.MAX_THUMBNAIL_DIMENSION" class="hiddenlink" target="rightframe">MAX_THUMBNAIL_DIMENSION</A>
+</nobr><br>
+<!-- Field maximumAngle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.maximumAngle" class="hiddenlink" target="rightframe">maximumAngle</A>
+</nobr><br>
+<!-- Field maxRecents -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.maxRecents" class="hiddenlink" target="rightframe">maxRecents</A>
+</nobr><br>
+<!-- Field MEDIA_PROJECTION_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.MEDIA_PROJECTION_SERVICE" class="hiddenlink" target="rightframe">MEDIA_PROJECTION_SERVICE</A>
+</nobr><br>
+<!-- Field MEDIA_TRACK_TYPE_SUBTITLE -->
+<nobr><A HREF="android.media.MediaPlayer.TrackInfo.html#android.media.MediaPlayer.TrackInfo.MEDIA_TRACK_TYPE_SUBTITLE" class="hiddenlink" target="rightframe">MEDIA_TRACK_TYPE_SUBTITLE</A>
+</nobr><br>
+<!-- Class MediaCodec -->
+<A HREF="android.media.MediaCodec.html" class="hiddenlink" target="rightframe">MediaCodec</A><br>
+<!-- Class MediaCodec.Callback -->
+<A HREF="pkg_android.media.html#MediaCodec.Callback" class="hiddenlink" target="rightframe"><b>MediaCodec.Callback</b></A><br>
+<!-- Class MediaCodec.CodecException -->
+<A HREF="pkg_android.media.html#MediaCodec.CodecException" class="hiddenlink" target="rightframe"><b>MediaCodec.CodecException</b></A><br>
+<!-- Class MediaCodec.CryptoException -->
+<A HREF="android.media.MediaCodec.CryptoException.html" class="hiddenlink" target="rightframe">MediaCodec.CryptoException</A><br>
+<!-- Class MediaCodecInfo.AudioCapabilities -->
+<A HREF="pkg_android.media.html#MediaCodecInfo.AudioCapabilities" class="hiddenlink" target="rightframe"><b>MediaCodecInfo.AudioCapabilities</b></A><br>
+<!-- Class MediaCodecInfo.CodecCapabilities -->
+<A HREF="android.media.MediaCodecInfo.CodecCapabilities.html" class="hiddenlink" target="rightframe">MediaCodecInfo.CodecCapabilities</A><br>
+<!-- Class MediaCodecInfo.CodecProfileLevel -->
+<A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html" class="hiddenlink" target="rightframe">MediaCodecInfo.CodecProfileLevel</A><br>
+<!-- Class MediaCodecInfo.EncoderCapabilities -->
+<A HREF="pkg_android.media.html#MediaCodecInfo.EncoderCapabilities" class="hiddenlink" target="rightframe"><b>MediaCodecInfo.EncoderCapabilities</b></A><br>
+<!-- Class MediaCodecInfo.VideoCapabilities -->
+<A HREF="pkg_android.media.html#MediaCodecInfo.VideoCapabilities" class="hiddenlink" target="rightframe"><b>MediaCodecInfo.VideoCapabilities</b></A><br>
+<!-- Class MediaCodecList -->
+<i>MediaCodecList</i><br>
+&nbsp;&nbsp;<A HREF="android.media.MediaCodecList.html" class="hiddenlink" target="rightframe">android.media</A><br>
+<!-- Constructor MediaCodecList -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.ctor_added(int)" class="hiddenlink" target="rightframe"><b>MediaCodecList</b>
+(<code>int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class MediaController -->
+<i>MediaController</i><br>
+&nbsp;&nbsp;<A HREF="android.media.session.MediaController.html" class="hiddenlink" target="rightframe">android.media.session</A><br>
+<!-- Constructor MediaController -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.ctor_added(android.content.Context, android.media.session.MediaSession.Token)" class="hiddenlink" target="rightframe"><b>MediaController</b>
+(<code>Context, Token</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class MediaController.Callback -->
+<A HREF="android.media.session.MediaController.Callback.html" class="hiddenlink" target="rightframe">MediaController.Callback</A><br>
+<!-- Class MediaController.PlaybackInfo -->
+<A HREF="pkg_android.media.session.html#MediaController.PlaybackInfo" class="hiddenlink" target="rightframe"><b>MediaController.PlaybackInfo</b></A><br>
+<!-- Class MediaController.TransportControls -->
+<A HREF="android.media.session.MediaController.TransportControls.html" class="hiddenlink" target="rightframe">MediaController.TransportControls</A><br>
+<!-- Class MediaDescription -->
+<A HREF="pkg_android.media.html#MediaDescription" class="hiddenlink" target="rightframe"><b>MediaDescription</b></A><br>
+<!-- Class MediaDescription.Builder -->
+<A HREF="pkg_android.media.html#MediaDescription.Builder" class="hiddenlink" target="rightframe"><b>MediaDescription.Builder</b></A><br>
+<!-- Class MediaDrm -->
+<A HREF="android.media.MediaDrm.html" class="hiddenlink" target="rightframe">MediaDrm</A><br>
+<!-- Class MediaDrm.MediaDrmStateException -->
+<A HREF="pkg_android.media.html#MediaDrm.MediaDrmStateException" class="hiddenlink" target="rightframe"><b>MediaDrm.MediaDrmStateException</b></A><br>
+<!-- Class MediaFormat -->
+<A HREF="android.media.MediaFormat.html" class="hiddenlink" target="rightframe">MediaFormat</A><br>
+<!-- Class MediaMetadata -->
+<A HREF="android.media.MediaMetadata.html" class="hiddenlink" target="rightframe">MediaMetadata</A><br>
+<!-- Class MediaMetadata.Builder -->
+<A HREF="android.media.MediaMetadata.Builder.html" class="hiddenlink" target="rightframe">MediaMetadata.Builder</A><br>
+<!-- Class MediaMetadataEditor -->
+<A HREF="android.media.MediaMetadataEditor.html" class="hiddenlink" target="rightframe">MediaMetadataEditor</A><br>
+<!-- Class MediaPlayer -->
+<A HREF="android.media.MediaPlayer.html" class="hiddenlink" target="rightframe">MediaPlayer</A><br>
+<!-- Class MediaPlayer.TrackInfo -->
+<A HREF="android.media.MediaPlayer.TrackInfo.html" class="hiddenlink" target="rightframe">MediaPlayer.TrackInfo</A><br>
+<!-- Class MediaRecorder -->
+<A HREF="android.media.MediaRecorder.html" class="hiddenlink" target="rightframe">MediaRecorder</A><br>
+<!-- Class MediaRecorder.AudioEncoder -->
+<A HREF="android.media.MediaRecorder.AudioEncoder.html" class="hiddenlink" target="rightframe">MediaRecorder.AudioEncoder</A><br>
+<!-- Class MediaRecorder.OutputFormat -->
+<A HREF="android.media.MediaRecorder.OutputFormat.html" class="hiddenlink" target="rightframe">MediaRecorder.OutputFormat</A><br>
+<!-- Class MediaRecorder.VideoEncoder -->
+<A HREF="android.media.MediaRecorder.VideoEncoder.html" class="hiddenlink" target="rightframe">MediaRecorder.VideoEncoder</A><br>
+<!-- Class MediaSession -->
+<i>MediaSession</i><br>
+&nbsp;&nbsp;<A HREF="android.media.session.MediaSession.html" class="hiddenlink" target="rightframe">android.media.session</A><br>
+<!-- Constructor MediaSession -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.ctor_added(android.content.Context, java.lang.String)" class="hiddenlink" target="rightframe"><b>MediaSession</b>
+(<code>Context, String</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class MediaSession.Callback -->
+<A HREF="android.media.session.MediaSession.Callback.html" class="hiddenlink" target="rightframe">MediaSession.Callback</A><br>
+<!-- Class MediaSession.QueueItem -->
+<A HREF="pkg_android.media.session.html#MediaSession.QueueItem" class="hiddenlink" target="rightframe"><b>MediaSession.QueueItem</b></A><br>
+<!-- Class MediaSession.Token -->
+<A HREF="pkg_android.media.session.html#MediaSession.Token" class="hiddenlink" target="rightframe"><b>MediaSession.Token</b></A><br>
+<!-- Class MediaSession.TransportControlsCallback -->
+<A HREF="pkg_android.media.session.html#MediaSession.TransportControlsCallback" class="hiddenlink" target="rightframe"><strike>MediaSession.TransportControlsCallback</strike></A><br>
+<!-- Class MediaSessionManager -->
+<A HREF="android.media.session.MediaSessionManager.html" class="hiddenlink" target="rightframe">MediaSessionManager</A><br>
+<!-- Class MediaSessionManager.OnActiveSessionsChangedListener -->
+<A HREF="pkg_android.media.session.html#MediaSessionManager.OnActiveSessionsChangedListener" class="hiddenlink" target="rightframe"><b><i>MediaSessionManager.OnActiveSessionsChangedListener</i></b></A><br>
+<!-- Class MediaSessionToken -->
+<A HREF="pkg_android.media.session.html#MediaSessionToken" class="hiddenlink" target="rightframe"><strike>MediaSessionToken</strike></A><br>
+<!-- Class MediaStore.Audio.Radio -->
+<i>MediaStore.Audio.Radio</i><br>
+&nbsp;&nbsp;<A HREF="android.provider.MediaStore.Audio.Radio.html" class="hiddenlink" target="rightframe">android.provider</A><br>
+<!-- Constructor MediaStore.Audio.Radio -->
+&nbsp;&nbsp;<nobr><A HREF="android.provider.MediaStore.Audio.Radio.html#android.provider.MediaStore.Audio.Radio.ctor_removed()" class="hiddenlink" target="rightframe"><strike>MediaStore.Audio.Radio</strike>
+()</A></nobr>&nbsp;constructor<br>
+<!-- Class Message -->
+<A HREF="android.os.Message.html" class="hiddenlink" target="rightframe">Message</A><br>
+<!-- Field MESSAGE_BOX_FAILED -->
+<nobr><A HREF="android.provider.Telephony.BaseMmsColumns.html#android.provider.Telephony.BaseMmsColumns.MESSAGE_BOX_FAILED" class="hiddenlink" target="rightframe">MESSAGE_BOX_FAILED</A>
+</nobr><br>
+<!-- Field META_DATA_CONTENT_RATING_SYSTEMS -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.META_DATA_CONTENT_RATING_SYSTEMS" class="hiddenlink" target="rightframe">META_DATA_CONTENT_RATING_SYSTEMS</A>
+</nobr><br>
+<!-- Field METADATA_KEY_DISPLAY_DESCRIPTION -->
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.METADATA_KEY_DISPLAY_DESCRIPTION" class="hiddenlink" target="rightframe">METADATA_KEY_DISPLAY_DESCRIPTION</A>
+</nobr><br>
+<!-- Field METADATA_KEY_DISPLAY_ICON -->
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.METADATA_KEY_DISPLAY_ICON" class="hiddenlink" target="rightframe">METADATA_KEY_DISPLAY_ICON</A>
+</nobr><br>
+<!-- Field METADATA_KEY_DISPLAY_ICON_URI -->
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.METADATA_KEY_DISPLAY_ICON_URI" class="hiddenlink" target="rightframe">METADATA_KEY_DISPLAY_ICON_URI</A>
+</nobr><br>
+<!-- Field METADATA_KEY_DISPLAY_SUBTITLE -->
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.METADATA_KEY_DISPLAY_SUBTITLE" class="hiddenlink" target="rightframe">METADATA_KEY_DISPLAY_SUBTITLE</A>
+</nobr><br>
+<!-- Field METADATA_KEY_DISPLAY_TITLE -->
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.METADATA_KEY_DISPLAY_TITLE" class="hiddenlink" target="rightframe">METADATA_KEY_DISPLAY_TITLE</A>
+</nobr><br>
+<!-- Field METADATA_KEY_MEDIA_ID -->
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.METADATA_KEY_MEDIA_ID" class="hiddenlink" target="rightframe">METADATA_KEY_MEDIA_ID</A>
+</nobr><br>
+<!-- Field mFramesPresentedTimeNano -->
+<nobr><A HREF="android.view.FrameStats.html#android.view.FrameStats.mFramesPresentedTimeNano" class="hiddenlink" target="rightframe"><strike>mFramesPresentedTimeNano</strike></A>
+</nobr><br>
+<!-- Field MIME_TYPE_PROVISIONING_NFC -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.MIME_TYPE_PROVISIONING_NFC" class="hiddenlink" target="rightframe">MIME_TYPE_PROVISIONING_NFC</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_AAC -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AAC" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AAC</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_AC3 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AC3" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AC3</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_AMR_NB -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AMR_NB" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AMR_NB</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_AMR_WB -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AMR_WB" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AMR_WB</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_FLAC -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_FLAC" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_FLAC</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_G711_ALAW -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_G711_ALAW" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_G711_ALAW</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_G711_MLAW -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_G711_MLAW" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_G711_MLAW</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_MPEG -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_MPEG" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_MPEG</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_MSGSM -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_MSGSM" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_MSGSM</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_OPUS -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_OPUS" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_OPUS</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_QCELP -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_QCELP" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_QCELP</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_RAW -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_RAW" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_RAW</A>
+</nobr><br>
+<!-- Field MIMETYPE_AUDIO_VORBIS -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_VORBIS" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_VORBIS</A>
+</nobr><br>
+<!-- Field MIMETYPE_TEXT_CEA_608 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_TEXT_CEA_608" class="hiddenlink" target="rightframe">MIMETYPE_TEXT_CEA_608</A>
+</nobr><br>
+<!-- Field MIMETYPE_TEXT_VTT -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_TEXT_VTT" class="hiddenlink" target="rightframe">MIMETYPE_TEXT_VTT</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_AVC -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_AVC" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_AVC</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_H263 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_H263" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_H263</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_HEVC -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_HEVC" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_HEVC</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_MPEG2 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_MPEG2" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_MPEG2</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_MPEG4 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_MPEG4" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_MPEG4</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_RAW -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_RAW" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_RAW</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_VP8 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_VP8" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_VP8</A>
+</nobr><br>
+<!-- Field MIMETYPE_VIDEO_VP9 -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_VP9" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_VP9</A>
+</nobr><br>
+<!-- Field minimumHorizontalAngle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.minimumHorizontalAngle" class="hiddenlink" target="rightframe">minimumHorizontalAngle</A>
+</nobr><br>
+<!-- Field minimumVerticalAngle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.minimumVerticalAngle" class="hiddenlink" target="rightframe">minimumVerticalAngle</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_ALIAS_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALIAS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_ALIAS_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_ALIAS_MAX_CHARS -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALIAS_MAX_CHARS" class="hiddenlink" target="rightframe">MMS_CONFIG_ALIAS_MAX_CHARS</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_ALIAS_MIN_CHARS -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALIAS_MIN_CHARS" class="hiddenlink" target="rightframe">MMS_CONFIG_ALIAS_MIN_CHARS</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_ALLOW_ATTACH_AUDIO -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALLOW_ATTACH_AUDIO" class="hiddenlink" target="rightframe">MMS_CONFIG_ALLOW_ATTACH_AUDIO</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_APPEND_TRANSACTION_ID -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_APPEND_TRANSACTION_ID" class="hiddenlink" target="rightframe">MMS_CONFIG_APPEND_TRANSACTION_ID</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_EMAIL_GATEWAY_NUMBER -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_EMAIL_GATEWAY_NUMBER" class="hiddenlink" target="rightframe">MMS_CONFIG_EMAIL_GATEWAY_NUMBER</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_GROUP_MMS_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_GROUP_MMS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_GROUP_MMS_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_HTTP_PARAMS -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_HTTP_PARAMS" class="hiddenlink" target="rightframe">MMS_CONFIG_HTTP_PARAMS</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_HTTP_SOCKET_TIMEOUT -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_HTTP_SOCKET_TIMEOUT" class="hiddenlink" target="rightframe">MMS_CONFIG_HTTP_SOCKET_TIMEOUT</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MAX_IMAGE_HEIGHT -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MAX_IMAGE_HEIGHT" class="hiddenlink" target="rightframe">MMS_CONFIG_MAX_IMAGE_HEIGHT</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MAX_IMAGE_WIDTH -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MAX_IMAGE_WIDTH" class="hiddenlink" target="rightframe">MMS_CONFIG_MAX_IMAGE_WIDTH</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MAX_MESSAGE_SIZE -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MAX_MESSAGE_SIZE" class="hiddenlink" target="rightframe">MMS_CONFIG_MAX_MESSAGE_SIZE</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE" class="hiddenlink" target="rightframe">MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MMS_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MMS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MMS_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MMS_READ_REPORT_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MMS_READ_REPORT_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MMS_READ_REPORT_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_MULTIPART_SMS_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MULTIPART_SMS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MULTIPART_SMS_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_NAI_SUFFIX -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_NAI_SUFFIX" class="hiddenlink" target="rightframe">MMS_CONFIG_NAI_SUFFIX</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_RECIPIENT_LIMIT -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_RECIPIENT_LIMIT" class="hiddenlink" target="rightframe">MMS_CONFIG_RECIPIENT_LIMIT</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES" class="hiddenlink" target="rightframe">MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD" class="hiddenlink" target="rightframe">MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD" class="hiddenlink" target="rightframe">MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_SUBJECT_MAX_LENGTH -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SUBJECT_MAX_LENGTH" class="hiddenlink" target="rightframe">MMS_CONFIG_SUBJECT_MAX_LENGTH</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION" class="hiddenlink" target="rightframe">MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_UA_PROF_TAG_NAME -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_UA_PROF_TAG_NAME" class="hiddenlink" target="rightframe">MMS_CONFIG_UA_PROF_TAG_NAME</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_UA_PROF_URL -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_UA_PROF_URL" class="hiddenlink" target="rightframe">MMS_CONFIG_UA_PROF_URL</A>
+</nobr><br>
+<!-- Field MMS_CONFIG_USER_AGENT -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_USER_AGENT" class="hiddenlink" target="rightframe">MMS_CONFIG_USER_AGENT</A>
+</nobr><br>
+<!-- Field MMS_ERROR_CONFIGURATION_ERROR -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_CONFIGURATION_ERROR" class="hiddenlink" target="rightframe">MMS_ERROR_CONFIGURATION_ERROR</A>
+</nobr><br>
+<!-- Field MMS_ERROR_HTTP_FAILURE -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_HTTP_FAILURE" class="hiddenlink" target="rightframe">MMS_ERROR_HTTP_FAILURE</A>
+</nobr><br>
+<!-- Field MMS_ERROR_INVALID_APN -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_INVALID_APN" class="hiddenlink" target="rightframe">MMS_ERROR_INVALID_APN</A>
+</nobr><br>
+<!-- Field MMS_ERROR_IO_ERROR -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_IO_ERROR" class="hiddenlink" target="rightframe">MMS_ERROR_IO_ERROR</A>
+</nobr><br>
+<!-- Field MMS_ERROR_RETRY -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_RETRY" class="hiddenlink" target="rightframe">MMS_ERROR_RETRY</A>
+</nobr><br>
+<!-- Field MMS_ERROR_UNABLE_CONNECT_MMS -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_UNABLE_CONNECT_MMS" class="hiddenlink" target="rightframe">MMS_ERROR_UNABLE_CONNECT_MMS</A>
+</nobr><br>
+<!-- Field MMS_ERROR_UNSPECIFIED -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_UNSPECIFIED" class="hiddenlink" target="rightframe">MMS_ERROR_UNSPECIFIED</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>
+<!-- Field MODE_DEFAULT -->
+<nobr><A HREF="android.app.AppOpsManager.html#android.app.AppOpsManager.MODE_DEFAULT" class="hiddenlink" target="rightframe">MODE_DEFAULT</A>
+</nobr><br>
+<!-- Field MODE_IN -->
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.MODE_IN" class="hiddenlink" target="rightframe">MODE_IN</A>
+</nobr><br>
+<!-- Field MODE_OUT -->
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.MODE_OUT" class="hiddenlink" target="rightframe">MODE_OUT</A>
+</nobr><br>
+<!-- Class MotionEvent -->
+<A HREF="android.view.MotionEvent.html" class="hiddenlink" target="rightframe">MotionEvent</A><br>
+<!-- Field move -->
+<nobr><A HREF="android.R.transition.html#android.R.transition.move" class="hiddenlink" target="rightframe">move</A>
+</nobr><br>
+<!-- Class MoveImage -->
+<A HREF="pkg_android.transition.html#MoveImage" class="hiddenlink" target="rightframe"><strike>MoveImage</strike></A><br>
+<!-- Method moveToFront -->
+<nobr><A HREF="android.app.ActivityManager.AppTask.html#android.app.ActivityManager.AppTask.moveToFront_added()" class="hiddenlink" target="rightframe"><b>moveToFront</b>
+()</A></nobr><br>
+<!-- Field MOVIES -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.MOVIES" class="hiddenlink" target="rightframe">MOVIES</A>
+</nobr><br>
+<!-- Field mRefreshPeriodNano -->
+<nobr><A HREF="android.view.FrameStats.html#android.view.FrameStats.mRefreshPeriodNano" class="hiddenlink" target="rightframe"><strike>mRefreshPeriodNano</strike></A>
+</nobr><br>
+<!-- Field multiArch -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.multiArch" class="hiddenlink" target="rightframe">multiArch</A>
+</nobr><br>
+<!-- Field NAME_RAW_CONTACT_ID -->
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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">
+<nobr><A HREF="android.provider.ContactsContract.ContactsColumns.html#android.provider.ContactsContract.ContactsColumns.NAME_RAW_CONTACT_ID" class="hiddenlink" target="rightframe">NAME_RAW_CONTACT_ID</A>
+</nobr><br>
+<!-- Field NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME" class="hiddenlink" target="rightframe">NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME</A>
+</nobr><br>
+<!-- Field navigationBarBackground -->
+<nobr><A HREF="android.R.id.html#android.R.id.navigationBarBackground" class="hiddenlink" target="rightframe">navigationBarBackground</A>
+</nobr><br>
+<!-- Field navigationBarColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.navigationBarColor" class="hiddenlink" target="rightframe">navigationBarColor</A>
+</nobr><br>
+<!-- Field navigationContentDescription -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.navigationContentDescription" class="hiddenlink" target="rightframe">navigationContentDescription</A>
+</nobr><br>
+<!-- Field navigationIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.navigationIcon" class="hiddenlink" target="rightframe">navigationIcon</A>
+</nobr><br>
+<!-- Field nestedScrollingEnabled -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.nestedScrollingEnabled" class="hiddenlink" target="rightframe">nestedScrollingEnabled</A>
+</nobr><br>
+<!-- Field NET_CAPABILITY_NOT_VPN -->
+<nobr><A HREF="android.net.NetworkCapabilities.html#android.net.NetworkCapabilities.NET_CAPABILITY_NOT_VPN" class="hiddenlink" target="rightframe">NET_CAPABILITY_NOT_VPN</A>
+</nobr><br>
+<!-- Field NET_CAPABILITY_TRUSTED -->
+<nobr><A HREF="android.net.NetworkCapabilities.html#android.net.NetworkCapabilities.NET_CAPABILITY_TRUSTED" class="hiddenlink" target="rightframe">NET_CAPABILITY_TRUSTED</A>
+</nobr><br>
+<!-- Class Network -->
+<A HREF="android.net.Network.html" class="hiddenlink" target="rightframe">Network</A><br>
+<!-- Field NETWORK_TYPE_ANY -->
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.NETWORK_TYPE_ANY" class="hiddenlink" target="rightframe">NETWORK_TYPE_ANY</A>
+</nobr><br>
+<!-- Field NETWORK_TYPE_NONE -->
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.NETWORK_TYPE_NONE" class="hiddenlink" target="rightframe">NETWORK_TYPE_NONE</A>
+</nobr><br>
+<!-- Field NETWORK_TYPE_UNMETERED -->
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.NETWORK_TYPE_UNMETERED" class="hiddenlink" target="rightframe">NETWORK_TYPE_UNMETERED</A>
+</nobr><br>
+<!-- Class NetworkCapabilities -->
+<A HREF="android.net.NetworkCapabilities.html" class="hiddenlink" target="rightframe">NetworkCapabilities</A><br>
+<!-- Class NetworkRequest.Builder -->
+<A HREF="android.net.NetworkRequest.Builder.html" class="hiddenlink" target="rightframe">NetworkRequest.Builder</A><br>
+<!-- Field NEWS -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.NEWS" class="hiddenlink" target="rightframe">NEWS</A>
+</nobr><br>
+<!-- Field NEXT_ALARM_FORMATTED -->
+<nobr><A HREF="android.provider.Settings.System.html#android.provider.Settings.System.NEXT_ALARM_FORMATTED" class="hiddenlink" target="rightframe">NEXT_ALARM_FORMATTED</A>
+</nobr><br>
+<!-- Class Notification -->
+<A HREF="android.app.Notification.html" class="hiddenlink" target="rightframe">Notification</A><br>
+<!-- Class Notification.Builder -->
+<A HREF="android.app.Notification.Builder.html" class="hiddenlink" target="rightframe">Notification.Builder</A><br>
+<!-- Class Notification.MediaStyle -->
+<A HREF="android.app.Notification.MediaStyle.html" class="hiddenlink" target="rightframe">Notification.MediaStyle</A><br>
+<!-- Class NotificationListenerService -->
+<A HREF="android.service.notification.NotificationListenerService.html" class="hiddenlink" target="rightframe">NotificationListenerService</A><br>
+<!-- Class NotificationListenerService.Ranking -->
+<i>NotificationListenerService.Ranking</i><br>
+&nbsp;&nbsp;<A HREF="android.service.notification.NotificationListenerService.Ranking.html" class="hiddenlink" target="rightframe">android.service.notification</A><br>
+<!-- Constructor NotificationListenerService.Ranking -->
+&nbsp;&nbsp;<nobr><A HREF="android.service.notification.NotificationListenerService.Ranking.html#android.service.notification.NotificationListenerService.Ranking.ctor_added()" class="hiddenlink" target="rightframe"><b>NotificationListenerService.Ranking</b>
+()</A></nobr>&nbsp;constructor<br>
+<!-- Class NotificationListenerService.RankingMap -->
+<A HREF="android.service.notification.NotificationListenerService.RankingMap.html" class="hiddenlink" target="rightframe">NotificationListenerService.RankingMap</A><br>
+<!-- Method notifyChannelRetuned -->
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyChannelRetuned_added(android.net.Uri)" class="hiddenlink" target="rightframe"><b>notifyChannelRetuned</b>
+(<code>Uri</code>)</A></nobr><br>
+<!-- Method notifyContentAllowed -->
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyContentAllowed_added()" class="hiddenlink" target="rightframe"><b>notifyContentAllowed</b>
+()</A></nobr><br>
+<!-- Method notifyContentBlocked -->
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyContentBlocked_added(android.media.tv.TvContentRating)" class="hiddenlink" target="rightframe"><b>notifyContentBlocked</b>
+(<code>TvContentRating</code>)</A></nobr><br>
+<!-- Method notifyTracksChanged -->
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyTracksChanged_added(java.util.List<android.media.tv.TvTrackInfo>)" class="hiddenlink" target="rightframe"><b>notifyTracksChanged</b>
+(<code>List&lt;TvTrackInfo&gt;</code>)</A></nobr><br>
+<!-- Method notifyTrackSelected -->
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyTrackSelected_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>notifyTrackSelected</b>
+(<code>int, String</code>)</A></nobr><br>
+<!-- Method notifyVideoAvailable -->
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyVideoAvailable_added()" class="hiddenlink" target="rightframe"><b>notifyVideoAvailable</b>
+()</A></nobr><br>
+<!-- Method notifyVideoUnavailable -->
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyVideoUnavailable_added(int)" class="hiddenlink" target="rightframe"><b>notifyVideoUnavailable</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Field numbersBackgroundColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.numbersBackgroundColor" class="hiddenlink" target="rightframe">numbersBackgroundColor</A>
+</nobr><br>
+<!-- Field numbersSelectorColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.numbersSelectorColor" class="hiddenlink" target="rightframe">numbersSelectorColor</A>
+</nobr><br>
+<!-- Field numbersTextColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.numbersTextColor" class="hiddenlink" target="rightframe">numbersTextColor</A>
+</nobr><br>
+<!-- Method onAbortVoice -->
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onAbortVoice_removed(android.service.voice.VoiceInteractionSession.Caller, android.service.voice.VoiceInteractionSession.Request, java.lang.CharSequence, android.os.Bundle)" class="hiddenlink" target="rightframe"><strike>onAbortVoice</strike>
+(<code>Caller, Request, CharSequence, Bundle</code>)</A></nobr><br>
+<!-- Method onActivityReenter -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onActivityReenter_changed(int, android.content.Intent)" class="hiddenlink" target="rightframe">onActivityReenter
+(<code>int, Intent</code>)</A></nobr><br>
+<!-- Method onAdvertisementUpdate -->
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.onAdvertisementUpdate_removed(android.bluetooth.le.ScanResult)" class="hiddenlink" target="rightframe"><strike>onAdvertisementUpdate</strike>
+(<code>ScanResult</code>)</A></nobr><br>
+<!-- Method onApplyWindowInsets -->
+<nobr><A HREF="android.service.wallpaper.WallpaperService.Engine.html#android.service.wallpaper.WallpaperService.Engine.onApplyWindowInsets_added(android.view.WindowInsets)" class="hiddenlink" target="rightframe"><b>onApplyWindowInsets</b>
+(<code>WindowInsets</code>)</A></nobr><br>
+<!-- Method onAudioInfoChanged -->
+<nobr><A HREF="android.media.session.MediaController.Callback.html#android.media.session.MediaController.Callback.onAudioInfoChanged_added(android.media.session.MediaController.PlaybackInfo)" class="hiddenlink" target="rightframe"><b>onAudioInfoChanged</b>
+(<code>PlaybackInfo</code>)</A></nobr><br>
+<!-- Method onBackPressed -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onBackPressed_removed()" class="hiddenlink" target="rightframe"><strike>onBackPressed</strike>
+()</A></nobr><br>
+<!-- Method onBatchScanResults -->
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.onBatchScanResults_added(java.util.List<android.bluetooth.le.ScanResult>)" class="hiddenlink" target="rightframe"><b>onBatchScanResults</b>
+(<code>List&lt;ScanResult&gt;</code>)</A></nobr><br>
+<!-- Method onCancel -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onCancel_removed(android.service.voice.VoiceInteractionSession.Request)" class="hiddenlink" target="rightframe"><strike>onCancel</strike>
+(<code>Request</code>)</A></nobr><br>
+<!-- Method onCommand -->
+<i>onCommand</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onCommand_added(java.lang.String, android.os.Bundle, android.os.ResultReceiver)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, Bundle, ResultReceiver</code>)</b>&nbsp;in&nbsp;android.media.session.MediaSession.Callback
+</A></nobr><br>
+<!-- Method onCommand -->
+&nbsp;&nbsp;<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onCommand_removed(android.service.voice.VoiceInteractionSession.Caller, android.service.voice.VoiceInteractionSession.Request, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Caller, Request, String, Bundle</code>)</strike>&nbsp;in&nbsp;android.service.voice.VoiceInteractionSession
+</A></nobr><br>
+<!-- Method onComputeInsets -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onComputeInsets_removed(android.service.voice.VoiceInteractionSession.Insets)" class="hiddenlink" target="rightframe"><strike>onComputeInsets</strike>
+(<code>Insets</code>)</A></nobr><br>
+<!-- Method onConfirm -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onConfirm_removed(android.service.voice.VoiceInteractionSession.Caller, android.service.voice.VoiceInteractionSession.Request, java.lang.CharSequence, android.os.Bundle)" class="hiddenlink" target="rightframe"><strike>onConfirm</strike>
+(<code>Caller, Request, CharSequence, Bundle</code>)</A></nobr><br>
+<!-- Method onControlCommand -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onControlCommand_removed(java.lang.String, android.os.Bundle, android.os.ResultReceiver)" class="hiddenlink" target="rightframe"><strike>onControlCommand</strike>
+(<code>String, Bundle, ResultReceiver</code>)</A></nobr><br>
+<!-- Method onCreate -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onCreate_changed(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe">onCreate
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<!-- Method onCreateContentView -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onCreateContentView_removed()" class="hiddenlink" target="rightframe"><strike>onCreateContentView</strike>
+()</A></nobr><br>
+<!-- Method onCreateSession -->
+<nobr><A HREF="android.media.tv.TvInputService.html#android.media.tv.TvInputService.onCreateSession_changed(java.lang.String)" class="hiddenlink" target="rightframe">onCreateSession
+(<code>String</code>)</A></nobr><br>
+<!-- Method onCustomAction -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onCustomAction_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>onCustomAction</b>
+(<code>String, Bundle</code>)</A></nobr><br>
+<!-- Method onEnterAnimationComplete -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onEnterAnimationComplete_added()" class="hiddenlink" target="rightframe"><b>onEnterAnimationComplete</b>
+()</A></nobr><br>
+<!-- Method onError -->
+<i>onError</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_removed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String</code>)</strike>&nbsp;in&nbsp;android.speech.tts.UtteranceProgressListener
+</A></nobr><br>
+<!-- Method onError -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_added(java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, int</code>)</b>&nbsp;in&nbsp;android.speech.tts.UtteranceProgressListener
+</A></nobr><br>
+<!-- Method onError -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.speech.tts.UtteranceProgressListener
+</A></nobr><br>
+<!-- Method onExtrasChanged -->
+<nobr><A HREF="android.media.session.MediaController.Callback.html#android.media.session.MediaController.Callback.onExtrasChanged_added(android.os.Bundle)" class="hiddenlink" target="rightframe"><b>onExtrasChanged</b>
+(<code>Bundle</code>)</A></nobr><br>
+<!-- Method onFailure -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.onFailure_removed(int)" class="hiddenlink" target="rightframe"><strike>onFailure</strike>
+(<code>int</code>)</A></nobr><br>
+<!-- Method onFastForward -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onFastForward_added()" class="hiddenlink" target="rightframe"><b>onFastForward</b>
+()</A></nobr><br>
+<!-- Method onGetDefaultVoiceNameFor -->
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onGetDefaultVoiceNameFor_added(java.lang.String, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>onGetDefaultVoiceNameFor</b>
+(<code>String, String, String</code>)</A></nobr><br>
+<!-- Method onGetSummary -->
+<nobr><A HREF="android.location.SettingInjectorService.html#android.location.SettingInjectorService.onGetSummary_changed()" class="hiddenlink" target="rightframe">onGetSummary
+()</A></nobr><br>
+<!-- Method onGetSupportedCommands -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onGetSupportedCommands_removed(android.service.voice.VoiceInteractionSession.Caller, java.lang.String[])" class="hiddenlink" target="rightframe"><strike>onGetSupportedCommands</strike>
+(<code>Caller, String[]</code>)</A></nobr><br>
+<!-- Method onGetVoices -->
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onGetVoices_added()" class="hiddenlink" target="rightframe"><b>onGetVoices</b>
+()</A></nobr><br>
+<!-- Method onInterruptionFilterChanged -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onInterruptionFilterChanged_added(int)" class="hiddenlink" target="rightframe"><b>onInterruptionFilterChanged</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method onIsValidVoiceName -->
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onIsValidVoiceName_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>onIsValidVoiceName</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method onListenerHintsChanged -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onListenerHintsChanged_added(int)" class="hiddenlink" target="rightframe"><b>onListenerHintsChanged</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method onLoadVoice -->
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onLoadVoice_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>onLoadVoice</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method onLockTaskModeEntering -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.onLockTaskModeEntering_added(android.content.Context, android.content.Intent, java.lang.String)" class="hiddenlink" target="rightframe"><b>onLockTaskModeEntering</b>
+(<code>Context, Intent, String</code>)</A></nobr><br>
+<!-- Method onLockTaskModeExiting -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.onLockTaskModeExiting_added(android.content.Context, android.content.Intent)" class="hiddenlink" target="rightframe"><b>onLockTaskModeExiting</b>
+(<code>Context, Intent</code>)</A></nobr><br>
+<!-- Method onMediaButtonEvent -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onMediaButtonEvent_changed(android.content.Intent)" class="hiddenlink" target="rightframe">onMediaButtonEvent
+(<code>Intent</code>)</A></nobr><br>
+<!-- Method onMtuChanged -->
+<nobr><A HREF="android.bluetooth.BluetoothGattCallback.html#android.bluetooth.BluetoothGattCallback.onMtuChanged_added(android.bluetooth.BluetoothGatt, int, int)" class="hiddenlink" target="rightframe"><b>onMtuChanged</b>
+(<code>BluetoothGatt, int, int</code>)</A></nobr><br>
+<!-- Method onNestedPreFling -->
+<i>onNestedPreFling</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedPreFling_added(android.view.View, float, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, float, float</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+<!-- Method onNestedPreFling -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedPreFling_added(android.view.View, float, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, float, float</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<!-- Method onNotificationSent -->
+<nobr><A HREF="android.bluetooth.BluetoothGattServerCallback.html#android.bluetooth.BluetoothGattServerCallback.onNotificationSent_added(android.bluetooth.BluetoothDevice, int)" class="hiddenlink" target="rightframe"><b>onNotificationSent</b>
+(<code>BluetoothDevice, int</code>)</A></nobr><br>
+<!-- Method onPause -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onPause_added()" class="hiddenlink" target="rightframe"><b>onPause</b>
+()</A></nobr><br>
+<!-- Method onPlay -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onPlay_added()" class="hiddenlink" target="rightframe"><b>onPlay</b>
+()</A></nobr><br>
+<!-- Method onPlayFromMediaId -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onPlayFromMediaId_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>onPlayFromMediaId</b>
+(<code>String, Bundle</code>)</A></nobr><br>
+<!-- Method onPlayFromSearch -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onPlayFromSearch_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>onPlayFromSearch</b>
+(<code>String, Bundle</code>)</A></nobr><br>
+<!-- Method onPostCreate -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onPostCreate_changed(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe">onPostCreate
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<!-- Method onQueueChanged -->
+<nobr><A HREF="android.media.session.MediaController.Callback.html#android.media.session.MediaController.Callback.onQueueChanged_added(java.util.List<android.media.session.MediaSession.QueueItem>)" class="hiddenlink" target="rightframe"><b>onQueueChanged</b>
+(<code>List&lt;QueueItem&gt;</code>)</A></nobr><br>
+<!-- Method onQueueTitleChanged -->
+<nobr><A HREF="android.media.session.MediaController.Callback.html#android.media.session.MediaController.Callback.onQueueTitleChanged_added(java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>onQueueTitleChanged</b>
+(<code>CharSequence</code>)</A></nobr><br>
+<!-- Method onReady -->
+<nobr><A HREF="android.service.voice.VoiceInteractionService.html#android.service.voice.VoiceInteractionService.onReady_added()" class="hiddenlink" target="rightframe"><b>onReady</b>
+()</A></nobr><br>
+<!-- Method onRestoreFinished -->
+<nobr><A HREF="android.app.backup.BackupAgent.html#android.app.backup.BackupAgent.onRestoreFinished_added()" class="hiddenlink" target="rightframe"><b>onRestoreFinished</b>
+()</A></nobr><br>
+<!-- Method onRestoreInstanceState -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onRestoreInstanceState_changed(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe">onRestoreInstanceState
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<!-- Method onRewind -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onRewind_added()" class="hiddenlink" target="rightframe"><b>onRewind</b>
+()</A></nobr><br>
+<!-- Method onSaveInstanceState -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onSaveInstanceState_changed(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe">onSaveInstanceState
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<!-- Method onScanFailed -->
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.onScanFailed_changed(int)" class="hiddenlink" target="rightframe">onScanFailed
+(<code>int</code>)</A></nobr><br>
+<!-- Method onScanResult -->
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.onScanResult_added(int, android.bluetooth.le.ScanResult)" class="hiddenlink" target="rightframe"><b>onScanResult</b>
+(<code>int, ScanResult</code>)</A></nobr><br>
+<!-- Method onSeekTo -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onSeekTo_added(long)" class="hiddenlink" target="rightframe"><b>onSeekTo</b>
+(<code>long</code>)</A></nobr><br>
+<!-- Method onSelectTrack -->
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.onSelectTrack_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>onSelectTrack</b>
+(<code>int, String</code>)</A></nobr><br>
+<!-- Method onSessionDestroyed -->
+<nobr><A HREF="android.media.session.MediaController.Callback.html#android.media.session.MediaController.Callback.onSessionDestroyed_added()" class="hiddenlink" target="rightframe"><b>onSessionDestroyed</b>
+()</A></nobr><br>
+<!-- Method onSetCaptionEnabled -->
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.onSetCaptionEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>onSetCaptionEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method onSetRating -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onSetRating_added(android.media.Rating)" class="hiddenlink" target="rightframe"><b>onSetRating</b>
+(<code>Rating</code>)</A></nobr><br>
+<!-- Method onShowFileChooser -->
+<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onShowFileChooser_added(android.webkit.WebView, android.webkit.ValueCallback<android.net.Uri[]>, android.webkit.WebChromeClient.FileChooserParams)" class="hiddenlink" target="rightframe"><b>onShowFileChooser</b>
+(<code>WebView, ValueCallback&lt;Uri[]&gt;, FileChooserParams</code>)</A></nobr><br>
+<!-- Method onShutdown -->
+<nobr><A HREF="android.service.voice.VoiceInteractionService.html#android.service.voice.VoiceInteractionService.onShutdown_added()" class="hiddenlink" target="rightframe"><b>onShutdown</b>
+()</A></nobr><br>
+<!-- Method onSkipToNext -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onSkipToNext_added()" class="hiddenlink" target="rightframe"><b>onSkipToNext</b>
+()</A></nobr><br>
+<!-- Method onSkipToPrevious -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onSkipToPrevious_added()" class="hiddenlink" target="rightframe"><b>onSkipToPrevious</b>
+()</A></nobr><br>
+<!-- Method onSkipToQueueItem -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onSkipToQueueItem_added(long)" class="hiddenlink" target="rightframe"><b>onSkipToQueueItem</b>
+(<code>long</code>)</A></nobr><br>
+<!-- Method onStartFailure -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.onStartFailure_added(int)" class="hiddenlink" target="rightframe"><b>onStartFailure</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method onStartSuccess -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.onStartSuccess_added(android.bluetooth.le.AdvertiseSettings)" class="hiddenlink" target="rightframe"><b>onStartSuccess</b>
+(<code>AdvertiseSettings</code>)</A></nobr><br>
+<!-- Method onStop -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onStop_added()" class="hiddenlink" target="rightframe"><b>onStop</b>
+()</A></nobr><br>
+<!-- Method onSuccess -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.onSuccess_removed(android.bluetooth.le.AdvertiseSettings)" class="hiddenlink" target="rightframe"><strike>onSuccess</strike>
+(<code>AdvertiseSettings</code>)</A></nobr><br>
+<!-- Method onSurfaceChanged -->
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.onSurfaceChanged_added(int, int, int)" class="hiddenlink" target="rightframe"><b>onSurfaceChanged</b>
+(<code>int, int, int</code>)</A></nobr><br>
+<!-- Method onTaskFinished -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onTaskFinished_removed(android.content.Intent, int)" class="hiddenlink" target="rightframe"><strike>onTaskFinished</strike>
+(<code>Intent, int</code>)</A></nobr><br>
+<!-- Method onTaskStarted -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onTaskStarted_removed(android.content.Intent, int)" class="hiddenlink" target="rightframe"><strike>onTaskStarted</strike>
+(<code>Intent, int</code>)</A></nobr><br>
+<!-- Method onUnblockContent -->
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.onUnblockContent_added(android.media.tv.TvContentRating)" class="hiddenlink" target="rightframe"><b>onUnblockContent</b>
+(<code>TvContentRating</code>)</A></nobr><br>
+<!-- Method onUpdateCursor -->
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.onUpdateCursor_changed(android.graphics.Rect)" class="hiddenlink" target="rightframe">onUpdateCursor
+(<code>Rect</code>)</A></nobr><br>
+<!-- Method onVisibleBehindCanceled -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onVisibleBehindCanceled_added()" class="hiddenlink" target="rightframe"><b>onVisibleBehindCanceled</b>
+()</A></nobr><br>
+<!-- Method onWakeUp -->
+<nobr><A HREF="android.service.dreams.DreamService.html#android.service.dreams.DreamService.onWakeUp_added()" class="hiddenlink" target="rightframe"><b>onWakeUp</b>
+()</A></nobr><br>
+<!-- Method openCamera -->
+<nobr><A HREF="android.hardware.camera2.CameraManager.html#android.hardware.camera2.CameraManager.openCamera_changed(java.lang.String, android.hardware.camera2.CameraDevice.StateCallback, android.os.Handler)" class="hiddenlink" target="rightframe">openCamera
+(<code>String, StateCallback, Handler</code>)</A></nobr><br>
+<!-- Method openConnection -->
+<nobr><A HREF="android.net.Network.html#android.net.Network.openConnection_added(java.net.URL)" class="hiddenlink" target="rightframe"><b>openConnection</b>
+(<code>URL</code>)</A></nobr><br>
+<!-- Method openSession -->
+<nobr><A HREF="android.media.MediaDrm.html#android.media.MediaDrm.openSession_changed()" class="hiddenlink" target="rightframe">openSession
+()</A></nobr><br>
+<!-- Field OPSTR_GET_USAGE_STATS -->
+<nobr><A HREF="android.app.AppOpsManager.html#android.app.AppOpsManager.OPSTR_GET_USAGE_STATS" class="hiddenlink" target="rightframe">OPSTR_GET_USAGE_STATS</A>
+</nobr><br>
+<!-- Class OsConstants -->
+<A HREF="android.system.OsConstants.html" class="hiddenlink" target="rightframe">OsConstants</A><br>
+<!-- Class Outline -->
+<A HREF="android.graphics.Outline.html" class="hiddenlink" target="rightframe">Outline</A><br>
+<!-- Field outlineProvider -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.outlineProvider" class="hiddenlink" target="rightframe">outlineProvider</A>
+</nobr><br>
+<!-- Field overlapAnchor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.overlapAnchor" class="hiddenlink" target="rightframe">overlapAnchor</A>
+</nobr><br>
+<!-- Class PackageInfo -->
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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 PackageInstaller -->
+<A HREF="pkg_android.content.pm.html#PackageInstaller" class="hiddenlink" target="rightframe"><b>PackageInstaller</b></A><br>
+<!-- Class PackageInstaller.Session -->
+<A HREF="pkg_android.content.pm.html#PackageInstaller.Session" class="hiddenlink" target="rightframe"><b>PackageInstaller.Session</b></A><br>
+<!-- Class PackageInstaller.SessionCallback -->
+<A HREF="pkg_android.content.pm.html#PackageInstaller.SessionCallback" class="hiddenlink" target="rightframe"><b>PackageInstaller.SessionCallback</b></A><br>
+<!-- Class PackageInstaller.SessionInfo -->
+<A HREF="pkg_android.content.pm.html#PackageInstaller.SessionInfo" class="hiddenlink" target="rightframe"><b>PackageInstaller.SessionInfo</b></A><br>
+<!-- Class PackageInstaller.SessionParams -->
+<A HREF="pkg_android.content.pm.html#PackageInstaller.SessionParams" class="hiddenlink" target="rightframe"><b>PackageInstaller.SessionParams</b></A><br>
+<!-- Class PackageManager -->
+<A HREF="android.content.pm.PackageManager.html" class="hiddenlink" target="rightframe">PackageManager</A><br>
+<!-- Field paddingMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.paddingMode" class="hiddenlink" target="rightframe">paddingMode</A>
+</nobr><br>
+<!-- Class Paint -->
+<A HREF="android.graphics.Paint.html" class="hiddenlink" target="rightframe">Paint</A><br>
+<!-- Class Parcel -->
+<A HREF="android.os.Parcel.html" class="hiddenlink" target="rightframe">Parcel</A><br>
+<!-- Method parseFromBytes -->
+<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.parseFromBytes_removed(byte[])" class="hiddenlink" target="rightframe"><strike>parseFromBytes</strike>
+(<code>byte[]</code>)</A></nobr><br>
+<!-- Method parseRational -->
+<nobr><A HREF="android.util.Rational.html#android.util.Rational.parseRational_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>parseRational</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method parseSize -->
+<nobr><A HREF="android.util.Size.html#android.util.Size.parseSize_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>parseSize</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method parseSizeF -->
+<nobr><A HREF="android.util.SizeF.html#android.util.SizeF.parseSizeF_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>parseSizeF</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Field PASSWORD_QUALITY_NUMERIC_COMPLEX -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.PASSWORD_QUALITY_NUMERIC_COMPLEX" class="hiddenlink" target="rightframe">PASSWORD_QUALITY_NUMERIC_COMPLEX</A>
+</nobr><br>
+<!-- Class Path -->
+<A HREF="android.graphics.Path.html" class="hiddenlink" target="rightframe">Path</A><br>
+<!-- Field pathData -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.pathData" class="hiddenlink" target="rightframe">pathData</A>
+</nobr><br>
+<!-- Class PathMotion -->
+<A HREF="pkg_android.transition.html#PathMotion" class="hiddenlink" target="rightframe"><b>PathMotion</b></A><br>
+<!-- Field patternPathData -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.patternPathData" class="hiddenlink" target="rightframe">patternPathData</A>
+</nobr><br>
+<!-- Class PatternPathMotion -->
+<A HREF="pkg_android.transition.html#PatternPathMotion" class="hiddenlink" target="rightframe"><b>PatternPathMotion</b></A><br>
+<!-- Class PermissionInfo -->
+<A HREF="android.content.pm.PermissionInfo.html" class="hiddenlink" target="rightframe">PermissionInfo</A><br>
+<!-- Class PermissionRequest -->
+<i>PermissionRequest</i><br>
+&nbsp;&nbsp;<A HREF="android.webkit.PermissionRequest.html" class="hiddenlink" target="rightframe">android.webkit</A><br>
+<!-- Constructor PermissionRequest -->
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.PermissionRequest.html#android.webkit.PermissionRequest.ctor_added()" class="hiddenlink" target="rightframe"><b>PermissionRequest</b>
+()</A></nobr>&nbsp;constructor<br>
+<!-- Field PERSIST_ACROSS_REBOOTS -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.PERSIST_ACROSS_REBOOTS" class="hiddenlink" target="rightframe">PERSIST_ACROSS_REBOOTS</A>
+</nobr><br>
+<!-- Field PERSIST_NEVER -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.PERSIST_NEVER" class="hiddenlink" target="rightframe">PERSIST_NEVER</A>
+</nobr><br>
+<!-- Field PERSIST_ROOT_ONLY -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.PERSIST_ROOT_ONLY" class="hiddenlink" target="rightframe">PERSIST_ROOT_ONLY</A>
+</nobr><br>
+<!-- Field persistable -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.persistable" class="hiddenlink" target="rightframe"><strike>persistable</strike></A>
+</nobr><br>
+<!-- Field persistableMode -->
+<i>persistableMode</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.persistableMode" class="hiddenlink" target="rightframe">android.R.attr</A>
+</nobr><br>
+<!-- Field persistableMode -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.persistableMode" class="hiddenlink" target="rightframe">android.content.pm.ActivityInfo</A>
+</nobr><br>
+<!-- Class Phaser -->
+<A HREF="pkg_java.util.concurrent.html#Phaser" class="hiddenlink" target="rightframe"><b>Phaser</b></A><br>
+<!-- Field PHONE_ACCOUNT_COMPONENT_NAME -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.PHONE_ACCOUNT_COMPONENT_NAME" class="hiddenlink" target="rightframe">PHONE_ACCOUNT_COMPONENT_NAME</A>
+</nobr><br>
+<!-- Field PHONE_ACCOUNT_ID -->
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.PHONE_ACCOUNT_ID" class="hiddenlink" target="rightframe">PHONE_ACCOUNT_ID</A>
+</nobr><br>
+<!-- Field PHOTO -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotos.html#android.provider.ContactsContract.StreamItemPhotos.PHOTO" class="hiddenlink" target="rightframe">PHOTO</A>
+</nobr><br>
+<!-- Field PHOTO_FILE_ID -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.PHOTO_FILE_ID" class="hiddenlink" target="rightframe">PHOTO_FILE_ID</A>
+</nobr><br>
+<!-- Field PHOTO_URI -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.PHOTO_URI" class="hiddenlink" target="rightframe">PHOTO_URI</A>
+</nobr><br>
+<!-- Field PINNED -->
+<nobr><A HREF="android.provider.ContactsContract.ContactOptionsColumns.html#android.provider.ContactsContract.ContactOptionsColumns.PINNED" class="hiddenlink" target="rightframe">PINNED</A>
+</nobr><br>
+<!-- Class PlaybackState -->
+<i>PlaybackState</i><br>
+&nbsp;&nbsp;<A HREF="android.media.session.PlaybackState.html" class="hiddenlink" target="rightframe">android.media.session</A><br>
+<!-- Constructor PlaybackState -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.ctor_removed()" class="hiddenlink" target="rightframe"><strike>PlaybackState</strike>
+()</A></nobr>&nbsp;constructor<br>
+<!-- Constructor PlaybackState -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.ctor_removed(android.media.session.PlaybackState)" class="hiddenlink" target="rightframe"><strike>PlaybackState</strike>
+(<code>PlaybackState</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class PlaybackState.Builder -->
+<A HREF="pkg_android.media.session.html#PlaybackState.Builder" class="hiddenlink" target="rightframe"><b>PlaybackState.Builder</b></A><br>
+<!-- Class PlaybackState.CustomAction -->
+<A HREF="pkg_android.media.session.html#PlaybackState.CustomAction" class="hiddenlink" target="rightframe"><b>PlaybackState.CustomAction</b></A><br>
+<!-- Class PlaybackState.CustomAction.Builder -->
+<A HREF="pkg_android.media.session.html#PlaybackState.CustomAction.Builder" class="hiddenlink" target="rightframe"><b>PlaybackState.CustomAction.Builder</b></A><br>
+<!-- Method playEarcon -->
+<i>playEarcon</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playEarcon_added(java.lang.String, int, android.os.Bundle, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, int, Bundle, String</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method playEarcon -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playEarcon_changed(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>String, int, HashMap&lt;String, String&gt;</code>)&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method playFromMediaId -->
+<nobr><A HREF="android.media.session.MediaController.TransportControls.html#android.media.session.MediaController.TransportControls.playFromMediaId_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>playFromMediaId</b>
+(<code>String, Bundle</code>)</A></nobr><br>
+<!-- Method playFromSearch -->
+<nobr><A HREF="android.media.session.MediaController.TransportControls.html#android.media.session.MediaController.TransportControls.playFromSearch_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>playFromSearch</b>
+(<code>String, Bundle</code>)</A></nobr><br>
+<!-- Method playSilence -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playSilence_changed(long, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">playSilence
+(<code>long, int, HashMap&lt;String, String&gt;</code>)</A></nobr><br>
+<!-- Method playSilentUtterance -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playSilentUtterance_added(long, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>playSilentUtterance</b>
+(<code>long, int, String</code>)</A></nobr><br>
+<!-- Field popupElevation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.popupElevation" class="hiddenlink" target="rightframe">popupElevation</A>
+</nobr><br>
+<!-- Field popupTheme -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.popupTheme" class="hiddenlink" target="rightframe">popupTheme</A>
+</nobr><br>
+<!-- Class PopupWindow -->
+<A HREF="android.widget.PopupWindow.html" class="hiddenlink" target="rightframe">PopupWindow</A><br>
+<!-- Class PorterDuffColorFilter -->
+<A HREF="android.graphics.PorterDuffColorFilter.html" class="hiddenlink" target="rightframe">PorterDuffColorFilter</A><br>
+<!-- Class PowerManager -->
+<A HREF="android.os.PowerManager.html" class="hiddenlink" target="rightframe">PowerManager</A><br>
+<!-- Class PowerManager.WakeLock -->
+<A HREF="android.os.PowerManager.WakeLock.html" class="hiddenlink" target="rightframe">PowerManager.WakeLock</A><br>
+<!-- Field PR_GET_DUMPABLE -->
+<nobr><A HREF="android.system.OsConstants.html#android.system.OsConstants.PR_GET_DUMPABLE" class="hiddenlink" target="rightframe">PR_GET_DUMPABLE</A>
+</nobr><br>
+<!-- Field PR_SET_DUMPABLE -->
+<nobr><A HREF="android.system.OsConstants.html#android.system.OsConstants.PR_SET_DUMPABLE" class="hiddenlink" target="rightframe">PR_SET_DUMPABLE</A>
+</nobr><br>
+<!-- Method preauthorizePermission -->
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.preauthorizePermission_removed(android.net.Uri, long)" class="hiddenlink" target="rightframe"><strike>preauthorizePermission</strike>
+(<code>Uri, long</code>)</A></nobr><br>
+<!-- Field preferredRefreshRate -->
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.preferredRefreshRate" class="hiddenlink" target="rightframe">preferredRefreshRate</A>
+</nobr><br>
+<!-- Class PrintService -->
+<A HREF="android.printservice.PrintService.html" class="hiddenlink" target="rightframe">PrintService</A><br>
+<!-- Field PRIVATE_USE_EXTENSION -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.PRIVATE_USE_EXTENSION" class="hiddenlink" target="rightframe">PRIVATE_USE_EXTENSION</A>
+</nobr><br>
+<!-- Field progressBackgroundTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressBackgroundTint" class="hiddenlink" target="rightframe">progressBackgroundTint</A>
+</nobr><br>
+<!-- Field progressBackgroundTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressBackgroundTintMode" class="hiddenlink" target="rightframe">progressBackgroundTintMode</A>
+</nobr><br>
+<!-- Class ProgressBar -->
+<A HREF="android.widget.ProgressBar.html" class="hiddenlink" target="rightframe">ProgressBar</A><br>
+<!-- Field progressTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressTint" class="hiddenlink" target="rightframe">progressTint</A>
+</nobr><br>
+<!-- Field progressTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressTintMode" class="hiddenlink" target="rightframe">progressTintMode</A>
+</nobr><br>
+<!-- Field propertyXName -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.propertyXName" class="hiddenlink" target="rightframe">propertyXName</A>
+</nobr><br>
+<!-- Field propertyYName -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.propertyYName" class="hiddenlink" target="rightframe">propertyYName</A>
+</nobr><br>
+<!-- Field PROTECTION_FLAG_APPOP -->
+<nobr><A HREF="android.content.pm.PermissionInfo.html#android.content.pm.PermissionInfo.PROTECTION_FLAG_APPOP" class="hiddenlink" target="rightframe">PROTECTION_FLAG_APPOP</A>
+</nobr><br>
+<!-- Field PROXIMITY_SCREEN_OFF_WAKE_LOCK -->
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.PROXIMITY_SCREEN_OFF_WAKE_LOCK" class="hiddenlink" target="rightframe">PROXIMITY_SCREEN_OFF_WAKE_LOCK</A>
+</nobr><br>
+<!-- Class ProxyInfo -->
+<A HREF="android.net.ProxyInfo.html" class="hiddenlink" target="rightframe">ProxyInfo</A><br>
+<!-- Class PskKeyManager -->
+<A HREF="pkg_android.net.html#PskKeyManager" class="hiddenlink" target="rightframe"><b>PskKeyManager</b></A><br>
+<!-- Method putSize -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putSize_added(java.lang.String, android.util.Size)" class="hiddenlink" target="rightframe"><b>putSize</b>
+(<code>String, Size</code>)</A></nobr><br>
+<!-- Method putSizeF -->
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putSizeF_added(java.lang.String, android.util.SizeF)" class="hiddenlink" target="rightframe"><b>putSizeF</b>
+(<code>String, SizeF</code>)</A></nobr><br>
+<!-- Method putText -->
+<nobr><A HREF="android.media.MediaMetadata.Builder.html#android.media.MediaMetadata.Builder.putText_added(java.lang.String, java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>putText</b>
+(<code>String, CharSequence</code>)</A></nobr><br>
+<!-- Field QUALITY_2160P -->
+<A NAME="Q"></A>
+<br><font size="+2">Q</font>&nbsp;
+<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.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_2160P" class="hiddenlink" target="rightframe">QUALITY_2160P</A>
+</nobr><br>
+<!-- Field QUALITY_HIGH_SPEED_1080P -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_1080P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_1080P</A>
+</nobr><br>
+<!-- Field QUALITY_HIGH_SPEED_2160P -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_2160P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_2160P</A>
+</nobr><br>
+<!-- Field QUALITY_HIGH_SPEED_480P -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_480P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_480P</A>
+</nobr><br>
+<!-- Field QUALITY_HIGH_SPEED_720P -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_720P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_720P</A>
+</nobr><br>
+<!-- Field QUALITY_HIGH_SPEED_HIGH -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_HIGH" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_HIGH</A>
+</nobr><br>
+<!-- Field QUALITY_HIGH_SPEED_LOW -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_LOW" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_LOW</A>
+</nobr><br>
+<!-- Field QUALITY_TIME_LAPSE_2160P -->
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_TIME_LAPSE_2160P" class="hiddenlink" target="rightframe">QUALITY_TIME_LAPSE_2160P</A>
+</nobr><br>
+<!-- Field queryBackground -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.queryBackground" class="hiddenlink" target="rightframe">queryBackground</A>
+</nobr><br>
+<!-- Class R.attr -->
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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.dimen -->
+<A HREF="android.R.dimen.html" class="hiddenlink" target="rightframe">R.dimen</A><br>
+<!-- Class R.id -->
+<A HREF="android.R.id.html" class="hiddenlink" target="rightframe">R.id</A><br>
+<!-- Class R.interpolator -->
+<A HREF="android.R.interpolator.html" class="hiddenlink" target="rightframe">R.interpolator</A><br>
+<!-- Class R.style -->
+<A HREF="android.R.style.html" class="hiddenlink" target="rightframe">R.style</A><br>
+<!-- Class R.transition -->
+<A HREF="android.R.transition.html" class="hiddenlink" target="rightframe">R.transition</A><br>
+<!-- Class Range -->
+<A HREF="android.util.Range.html" class="hiddenlink" target="rightframe">Range</A><br>
+<!-- Class Rational -->
+<A HREF="android.util.Rational.html" class="hiddenlink" target="rightframe">Rational</A><br>
+<!-- Field RAW10 -->
+<nobr><A HREF="android.graphics.ImageFormat.html#android.graphics.ImageFormat.RAW10" class="hiddenlink" target="rightframe">RAW10</A>
+</nobr><br>
+<!-- Field RAW_CONTACT_ID -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RAW_CONTACT_ID" class="hiddenlink" target="rightframe">RAW_CONTACT_ID</A>
+</nobr><br>
+<!-- Field RAW_CONTACT_SOURCE_ID -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RAW_CONTACT_SOURCE_ID" class="hiddenlink" target="rightframe">RAW_CONTACT_SOURCE_ID</A>
+</nobr><br>
+<!-- Field READ_SOCIAL_STREAM -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.READ_SOCIAL_STREAM" class="hiddenlink" target="rightframe">READ_SOCIAL_STREAM</A>
+</nobr><br>
+<!-- Field READ_VOICEMAIL -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.READ_VOICEMAIL" class="hiddenlink" target="rightframe">READ_VOICEMAIL</A>
+</nobr><br>
+<!-- Method readSize -->
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readSize_added()" class="hiddenlink" target="rightframe"><b>readSize</b>
+()</A></nobr><br>
+<!-- Method readSizeF -->
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readSizeF_added()" class="hiddenlink" target="rightframe"><b>readSizeF</b>
+()</A></nobr><br>
+<!-- Field REBOOT_RECOVERY -->
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.REBOOT_RECOVERY" class="hiddenlink" target="rightframe"><strike>REBOOT_RECOVERY</strike></A>
+</nobr><br>
+<!-- Field recognitionService -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.recognitionService" class="hiddenlink" target="rightframe">recognitionService</A>
+</nobr><br>
+<!-- Class RecursiveAction -->
+<A HREF="pkg_java.util.concurrent.html#RecursiveAction" class="hiddenlink" target="rightframe"><b>RecursiveAction</b></A><br>
+<!-- Class RecursiveTask -->
+<A HREF="pkg_java.util.concurrent.html#RecursiveTask" class="hiddenlink" target="rightframe"><b>RecursiveTask</b></A><br>
+<!-- Method registerAvailabilityCallback -->
+<nobr><A HREF="android.hardware.camera2.CameraManager.html#android.hardware.camera2.CameraManager.registerAvailabilityCallback_added(android.hardware.camera2.CameraManager.AvailabilityCallback, android.os.Handler)" class="hiddenlink" target="rightframe"><b>registerAvailabilityCallback</b>
+(<code>AvailabilityCallback, Handler</code>)</A></nobr><br>
+<!-- Method registerCallback -->
+<i>registerCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.registerCallback_added(android.content.pm.LauncherApps.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback</code>)</b>&nbsp;in&nbsp;android.content.pm.LauncherApps
+</A></nobr><br>
+<!-- Method registerCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.registerCallback_added(android.content.pm.LauncherApps.Callback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback, Handler</code>)</b>&nbsp;in&nbsp;android.content.pm.LauncherApps
+</A></nobr><br>
+<!-- Method registerCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.registerCallback_added(android.media.session.MediaController.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback</code>)</b>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+<!-- Method registerCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.registerCallback_added(android.media.session.MediaController.Callback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback, Handler</code>)</b>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+<!-- Method registerCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.registerCallback_added(android.media.tv.TvInputManager.TvInputCallback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>TvInputCallback, Handler</code>)</b>&nbsp;in&nbsp;android.media.tv.TvInputManager
+</A></nobr><br>
+<!-- Method registerDefaultNetworkActiveListener -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.registerDefaultNetworkActiveListener_removed(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><strike>registerDefaultNetworkActiveListener</strike>
+(<code>OnNetworkActiveListener</code>)</A></nobr><br>
+<!-- Method registerMediaButtonEventReceiver -->
+<i>registerMediaButtonEventReceiver</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.app.PendingIntent)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>PendingIntent</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+<!-- Method registerMediaButtonEventReceiver -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.content.ComponentName)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>ComponentName</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+<!-- Method registerRemoteControlClient -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerRemoteControlClient_changed(android.media.RemoteControlClient)" class="hiddenlink" target="rightframe">registerRemoteControlClient
+(<code>RemoteControlClient</code>)</A></nobr><br>
+<!-- Method registerRemoteController -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerRemoteController_changed(android.media.RemoteController)" class="hiddenlink" target="rightframe">registerRemoteController
+(<code>RemoteController</code>)</A></nobr><br>
+<!-- Field REGULAR_CODECS -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.REGULAR_CODECS" class="hiddenlink" target="rightframe">REGULAR_CODECS</A>
+</nobr><br>
+<!-- Method release -->
+<nobr><A HREF="android.os.PowerManager.WakeLock.html#android.os.PowerManager.WakeLock.release_added(int)" class="hiddenlink" target="rightframe"><b>release</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Field RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY -->
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY" class="hiddenlink" target="rightframe">RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY</A>
+</nobr><br>
+<!-- Method releaseInstance -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.releaseInstance_added()" class="hiddenlink" target="rightframe"><b>releaseInstance</b>
+()</A></nobr><br>
+<!-- Field relinquishTaskIdentity -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.relinquishTaskIdentity" class="hiddenlink" target="rightframe">relinquishTaskIdentity</A>
+</nobr><br>
+<!-- Class RemoteControlClient -->
+<A HREF="android.media.RemoteControlClient.html" class="hiddenlink" target="rightframe">RemoteControlClient</A><br>
+<!-- Class RemoteControlClient.MetadataEditor -->
+<A HREF="android.media.RemoteControlClient.MetadataEditor.html" class="hiddenlink" target="rightframe">RemoteControlClient.MetadataEditor</A><br>
+<!-- Class RemoteController -->
+<A HREF="android.media.RemoteController.html" class="hiddenlink" target="rightframe">RemoteController</A><br>
+<!-- Class RemoteVolumeProvider -->
+<A HREF="pkg_android.media.session.html#RemoteVolumeProvider" class="hiddenlink" target="rightframe"><strike>RemoteVolumeProvider</strike></A><br>
+<!-- Method removeAllCookie -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeAllCookie_changed()" class="hiddenlink" target="rightframe">removeAllCookie
+()</A></nobr><br>
+<!-- Method removeAllCookies -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeAllCookies_added(android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>removeAllCookies</b>
+(<code>ValueCallback&lt;Boolean&gt;</code>)</A></nobr><br>
+<!-- Method removeAvailabilityListener -->
+<nobr><A HREF="android.hardware.camera2.CameraManager.html#android.hardware.camera2.CameraManager.removeAvailabilityListener_removed(android.hardware.camera2.CameraManager.AvailabilityListener)" class="hiddenlink" target="rightframe"><strike>removeAvailabilityListener</strike>
+(<code>AvailabilityListener</code>)</A></nobr><br>
+<!-- Method removeCallback -->
+<i>removeCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.removeCallback_removed(android.media.session.MediaController.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Callback</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+<!-- Method removeCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.removeCallback_removed(android.media.session.MediaSession.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Callback</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+<!-- Method removeCrossProfileWidgetProvider -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.removeCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>removeCrossProfileWidgetProvider</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method removeDefaultNetworkActiveListener -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.removeDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><b>removeDefaultNetworkActiveListener</b>
+(<code>OnNetworkActiveListener</code>)</A></nobr><br>
+<!-- Method removeExpiredCookie -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeExpiredCookie_changed()" class="hiddenlink" target="rightframe">removeExpiredCookie
+()</A></nobr><br>
+<!-- Method removeOnActiveSessionsChangedListener -->
+<nobr><A HREF="android.media.session.MediaSessionManager.html#android.media.session.MediaSessionManager.removeOnActiveSessionsChangedListener_added(android.media.session.MediaSessionManager.OnActiveSessionsChangedListener)" class="hiddenlink" target="rightframe"><b>removeOnActiveSessionsChangedListener</b>
+(<code>OnActiveSessionsChangedListener</code>)</A></nobr><br>
+<!-- Method removeOnAppsChangedListener -->
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.removeOnAppsChangedListener_removed(android.content.pm.LauncherApps.OnAppsChangedListener)" class="hiddenlink" target="rightframe"><strike>removeOnAppsChangedListener</strike>
+(<code>OnAppsChangedListener</code>)</A></nobr><br>
+<!-- Method removeSessionCookie -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeSessionCookie_changed()" class="hiddenlink" target="rightframe">removeSessionCookie
+()</A></nobr><br>
+<!-- Method removeSessionCookies -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeSessionCookies_added(android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>removeSessionCookies</b>
+(<code>ValueCallback&lt;Boolean&gt;</code>)</A></nobr><br>
+<!-- Method removeStickyBroadcast -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.removeStickyBroadcast_changed(android.content.Intent)" class="hiddenlink" target="rightframe">removeStickyBroadcast
+(<code>Intent</code>)</A></nobr><br>
+<!-- Method removeStickyBroadcastAsUser -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.removeStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)" class="hiddenlink" target="rightframe">removeStickyBroadcastAsUser
+(<code>Intent, UserHandle</code>)</A></nobr><br>
+<!-- Method removeTransportControlsCallback -->
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.removeTransportControlsCallback_removed(android.media.session.MediaSession.TransportControlsCallback)" class="hiddenlink" target="rightframe"><strike>removeTransportControlsCallback</strike>
+(<code>TransportControlsCallback</code>)</A></nobr><br>
+<!-- Method renameAccount -->
+<nobr><A HREF="android.accounts.AccountManager.html#android.accounts.AccountManager.renameAccount_added(android.accounts.Account, java.lang.String, android.accounts.AccountManagerCallback<android.accounts.Account>, android.os.Handler)" class="hiddenlink" target="rightframe"><b>renameAccount</b>
+(<code>Account, String, AccountManagerCallback&lt;Account&gt;, Handler</code>)</A></nobr><br>
+<!-- Field reparent -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.reparent" class="hiddenlink" target="rightframe">reparent</A>
+</nobr><br>
+<!-- Field reparentWithOverlay -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.reparentWithOverlay" class="hiddenlink" target="rightframe">reparentWithOverlay</A>
+</nobr><br>
+<!-- Method replaceSystemWindowInsets -->
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.replaceSystemWindowInsets_added(android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>replaceSystemWindowInsets</b>
+(<code>Rect</code>)</A></nobr><br>
+<!-- Field REPORTING_MODE_CONTINUOUS -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_CONTINUOUS" class="hiddenlink" target="rightframe">REPORTING_MODE_CONTINUOUS</A>
+</nobr><br>
+<!-- Field REPORTING_MODE_ON_CHANGE -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_ON_CHANGE" class="hiddenlink" target="rightframe">REPORTING_MODE_ON_CHANGE</A>
+</nobr><br>
+<!-- Field REPORTING_MODE_ONE_SHOT -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_ONE_SHOT" class="hiddenlink" target="rightframe">REPORTING_MODE_ONE_SHOT</A>
+</nobr><br>
+<!-- Field REPORTING_MODE_SPECIAL_TRIGGER -->
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_SPECIAL_TRIGGER" class="hiddenlink" target="rightframe">REPORTING_MODE_SPECIAL_TRIGGER</A>
+</nobr><br>
+<!-- Field REQUEST_AVAILABLE_CAPABILITIES_BACKWARD_COMPATIBLE -->
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_BACKWARD_COMPATIBLE" class="hiddenlink" target="rightframe">REQUEST_AVAILABLE_CAPABILITIES_BACKWARD_COMPATIBLE</A>
+</nobr><br>
+<!-- Field REQUEST_AVAILABLE_CAPABILITIES_DNG -->
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_DNG" class="hiddenlink" target="rightframe"><strike>REQUEST_AVAILABLE_CAPABILITIES_DNG</strike></A>
+</nobr><br>
+<!-- Field REQUEST_AVAILABLE_CAPABILITIES_MANUAL_POST_PROCESSING -->
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_MANUAL_POST_PROCESSING" class="hiddenlink" target="rightframe">REQUEST_AVAILABLE_CAPABILITIES_MANUAL_POST_PROCESSING</A>
+</nobr><br>
+<!-- Field REQUEST_AVAILABLE_CAPABILITIES_MANUAL_SENSOR -->
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_MANUAL_SENSOR" class="hiddenlink" target="rightframe">REQUEST_AVAILABLE_CAPABILITIES_MANUAL_SENSOR</A>
+</nobr><br>
+<!-- Field REQUEST_AVAILABLE_CAPABILITIES_RAW -->
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_RAW" class="hiddenlink" target="rightframe">REQUEST_AVAILABLE_CAPABILITIES_RAW</A>
+</nobr><br>
+<!-- Field REQUEST_FRAME_COUNT -->
+<nobr><A HREF="android.hardware.camera2.CaptureResult.html#android.hardware.camera2.CaptureResult.REQUEST_FRAME_COUNT" class="hiddenlink" target="rightframe"><strike>REQUEST_FRAME_COUNT</strike></A>
+</nobr><br>
+<!-- Method requestConnectionPriority -->
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.requestConnectionPriority_added(int)" class="hiddenlink" target="rightframe"><b>requestConnectionPriority</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method requestCursorUpdates -->
+<i>requestCursorUpdates</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.BaseInputConnection.html#android.view.inputmethod.BaseInputConnection.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.BaseInputConnection
+</A></nobr><br>
+<!-- Method requestCursorUpdates -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.InputConnection
+</A></nobr><br>
+<!-- Method requestCursorUpdates -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.InputConnectionWrapper.html#android.view.inputmethod.InputConnectionWrapper.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.InputConnectionWrapper
+</A></nobr><br>
+<!-- Method requestInterruptionFilter -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.requestInterruptionFilter_added(int)" class="hiddenlink" target="rightframe"><b>requestInterruptionFilter</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method requestListenerHints -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.requestListenerHints_added(int)" class="hiddenlink" target="rightframe"><b>requestListenerHints</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method requestMtu -->
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.requestMtu_added(int)" class="hiddenlink" target="rightframe"><b>requestMtu</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method requestUnbufferedDispatch -->
+<nobr><A HREF="android.view.View.html#android.view.View.requestUnbufferedDispatch_added(android.view.MotionEvent)" class="hiddenlink" target="rightframe"><b>requestUnbufferedDispatch</b>
+(<code>MotionEvent</code>)</A></nobr><br>
+<!-- Method requestVisibleBehind -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.requestVisibleBehind_added(boolean)" class="hiddenlink" target="rightframe"><b>requestVisibleBehind</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Field requiredForProfile -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.requiredForProfile" class="hiddenlink" target="rightframe"><strike>requiredForProfile</strike></A>
+</nobr><br>
+<!-- Field RES_ICON -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RES_ICON" class="hiddenlink" target="rightframe">RES_ICON</A>
+</nobr><br>
+<!-- Field RES_LABEL -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RES_LABEL" class="hiddenlink" target="rightframe">RES_LABEL</A>
+</nobr><br>
+<!-- Field RES_PACKAGE -->
+<i>RES_PACKAGE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.DataColumns.html#android.provider.ContactsContract.DataColumns.RES_PACKAGE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.DataColumns</A>
+</nobr><br>
+<!-- Field RES_PACKAGE -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.GroupsColumns.html#android.provider.ContactsContract.GroupsColumns.RES_PACKAGE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.GroupsColumns</A>
+</nobr><br>
+<!-- Field RES_PACKAGE -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RES_PACKAGE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<!-- Method reset -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.reset_added()" class="hiddenlink" target="rightframe"><b>reset</b>
+()</A></nobr><br>
+<!-- Method resize -->
+<nobr><A HREF="android.hardware.display.VirtualDisplay.html#android.hardware.display.VirtualDisplay.resize_added(int, int, int)" class="hiddenlink" target="rightframe"><b>resize</b>
+(<code>int, int, int</code>)</A></nobr><br>
+<!-- Field RESOURCE_AUDIO_CAPTURE -->
+<nobr><A HREF="android.webkit.PermissionRequest.html#android.webkit.PermissionRequest.RESOURCE_AUDIO_CAPTURE" class="hiddenlink" target="rightframe">RESOURCE_AUDIO_CAPTURE</A>
+</nobr><br>
+<!-- Field RESOURCE_PROTECTED_MEDIA_ID -->
+<nobr><A HREF="android.webkit.PermissionRequest.html#android.webkit.PermissionRequest.RESOURCE_PROTECTED_MEDIA_ID" class="hiddenlink" target="rightframe">RESOURCE_PROTECTED_MEDIA_ID</A>
+</nobr><br>
+<!-- Field RESOURCE_VIDEO_CAPTURE -->
+<nobr><A HREF="android.webkit.PermissionRequest.html#android.webkit.PermissionRequest.RESOURCE_VIDEO_CAPTURE" class="hiddenlink" target="rightframe">RESOURCE_VIDEO_CAPTURE</A>
+</nobr><br>
+<!-- Class RestrictionEntry -->
+<i>RestrictionEntry</i><br>
+&nbsp;&nbsp;<A HREF="android.content.RestrictionEntry.html" class="hiddenlink" target="rightframe">android.content</A><br>
+<!-- Constructor RestrictionEntry -->
+&nbsp;&nbsp;<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.ctor_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>RestrictionEntry</b>
+(<code>int, String</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor RestrictionEntry -->
+&nbsp;&nbsp;<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.ctor_added(java.lang.String, int)" class="hiddenlink" target="rightframe"><b>RestrictionEntry</b>
+(<code>String, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field RESTRICTIONS_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.RESTRICTIONS_SERVICE" class="hiddenlink" target="rightframe">RESTRICTIONS_SERVICE</A>
+</nobr><br>
+<!-- Class RestrictionsManager -->
+<A HREF="pkg_android.content.html#RestrictionsManager" class="hiddenlink" target="rightframe"><b>RestrictionsManager</b></A><br>
+<!-- Field restrictionType -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.restrictionType" class="hiddenlink" target="rightframe">restrictionType</A>
+</nobr><br>
+<!-- Field resumeWhilePausing -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.resumeWhilePausing" class="hiddenlink" target="rightframe">resumeWhilePausing</A>
+</nobr><br>
+<!-- Field reversible -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.reversible" class="hiddenlink" target="rightframe">reversible</A>
+</nobr><br>
+<!-- Class Ringtone -->
+<A HREF="android.media.Ringtone.html" class="hiddenlink" target="rightframe">Ringtone</A><br>
+<!-- Class RippleDrawable -->
+<i>RippleDrawable</i><br>
+&nbsp;&nbsp;<A HREF="android.graphics.drawable.RippleDrawable.html" class="hiddenlink" target="rightframe">android.graphics.drawable</A><br>
+<!-- Constructor RippleDrawable -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.RippleDrawable.html#android.graphics.drawable.RippleDrawable.ctor_changed(android.content.res.ColorStateList, android.graphics.drawable.Drawable, android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe">RippleDrawable
+(<code>ColorStateList, Drawable, Drawable</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field SCAN_FAILED_CONTROLLER_FAILURE -->
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.SCAN_FAILED_CONTROLLER_FAILURE" class="hiddenlink" target="rightframe"><strike>SCAN_FAILED_CONTROLLER_FAILURE</strike></A>
+</nobr><br>
+<!-- Field SCAN_FAILED_FEATURE_UNSUPPORTED -->
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.SCAN_FAILED_FEATURE_UNSUPPORTED" class="hiddenlink" target="rightframe">SCAN_FAILED_FEATURE_UNSUPPORTED</A>
+</nobr><br>
+<!-- Field SCAN_FAILED_GATT_SERVICE_FAILURE -->
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.SCAN_FAILED_GATT_SERVICE_FAILURE" class="hiddenlink" target="rightframe"><strike>SCAN_FAILED_GATT_SERVICE_FAILURE</strike></A>
+</nobr><br>
+<!-- Field SCAN_FAILED_INTERNAL_ERROR -->
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.SCAN_FAILED_INTERNAL_ERROR" class="hiddenlink" target="rightframe">SCAN_FAILED_INTERNAL_ERROR</A>
+</nobr><br>
+<!-- Field SCAN_RESULT_TYPE_FULL -->
+<nobr><A HREF="android.bluetooth.le.ScanSettings.html#android.bluetooth.le.ScanSettings.SCAN_RESULT_TYPE_FULL" class="hiddenlink" target="rightframe"><strike>SCAN_RESULT_TYPE_FULL</strike></A>
+</nobr><br>
+<!-- Class ScanCallback -->
+<A HREF="android.bluetooth.le.ScanCallback.html" class="hiddenlink" target="rightframe">ScanCallback</A><br>
+<!-- Class ScanFilter -->
+<A HREF="android.bluetooth.le.ScanFilter.html" class="hiddenlink" target="rightframe">ScanFilter</A><br>
+<!-- Class ScanFilter.Builder -->
+<A HREF="android.bluetooth.le.ScanFilter.Builder.html" class="hiddenlink" target="rightframe">ScanFilter.Builder</A><br>
+<!-- Class ScanRecord -->
+<A HREF="android.bluetooth.le.ScanRecord.html" class="hiddenlink" target="rightframe">ScanRecord</A><br>
+<!-- Class ScanResult -->
+<i>ScanResult</i><br>
+&nbsp;&nbsp;<A HREF="android.bluetooth.le.ScanResult.html" class="hiddenlink" target="rightframe">android.bluetooth.le</A><br>
+<!-- Constructor ScanResult -->
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanResult.html#android.bluetooth.le.ScanResult.ctor_added(android.bluetooth.BluetoothDevice, android.bluetooth.le.ScanRecord, int, long)" class="hiddenlink" target="rightframe"><b>ScanResult</b>
+(<code>BluetoothDevice, ScanRecord, int, long</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class ScanSettings -->
+<A HREF="android.bluetooth.le.ScanSettings.html" class="hiddenlink" target="rightframe">ScanSettings</A><br>
+<!-- Class ScanSettings.Builder -->
+<A HREF="android.bluetooth.le.ScanSettings.Builder.html" class="hiddenlink" target="rightframe">ScanSettings.Builder</A><br>
+<!-- Class ScheduledThreadPoolExecutor -->
+<A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html" class="hiddenlink" target="rightframe">ScheduledThreadPoolExecutor</A><br>
+<!-- Class ScriptC -->
+<i>ScriptC</i><br>
+&nbsp;&nbsp;<A HREF="android.renderscript.ScriptC.html" class="hiddenlink" target="rightframe">android.renderscript</A><br>
+<!-- Constructor ScriptC -->
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptC.html#android.renderscript.ScriptC.ctor_added(android.renderscript.RenderScript, java.lang.String, byte[], byte[])" class="hiddenlink" target="rightframe"><b>ScriptC</b>
+(<code>RenderScript, String, byte[], byte[]</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Constructor ScriptC -->
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptC.html#android.renderscript.ScriptC.ctor_added(long, android.renderscript.RenderScript)" class="hiddenlink" target="rightframe"><b>ScriptC</b>
+(<code>long, RenderScript</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field searchIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.searchIcon" class="hiddenlink" target="rightframe">searchIcon</A>
+</nobr><br>
+<!-- Field searchViewStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.searchViewStyle" class="hiddenlink" target="rightframe">searchViewStyle</A>
+</nobr><br>
+<!-- Field secondaryProgressTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.secondaryProgressTint" class="hiddenlink" target="rightframe">secondaryProgressTint</A>
+</nobr><br>
+<!-- Field secondaryProgressTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.secondaryProgressTintMode" class="hiddenlink" target="rightframe">secondaryProgressTintMode</A>
+</nobr><br>
+<!-- Field selectableItemBackgroundBorderless -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.selectableItemBackgroundBorderless" class="hiddenlink" target="rightframe">selectableItemBackgroundBorderless</A>
+</nobr><br>
+<!-- Method selectTrack -->
+<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.selectTrack_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>selectTrack</b>
+(<code>int, String</code>)</A></nobr><br>
+<!-- Method sendCommand -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.sendCommand_added(java.lang.String, android.os.Bundle, android.os.ResultReceiver)" class="hiddenlink" target="rightframe"><b>sendCommand</b>
+(<code>String, Bundle, ResultReceiver</code>)</A></nobr><br>
+<!-- Method sendControlCommand -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.sendControlCommand_removed(java.lang.String, android.os.Bundle, android.os.ResultReceiver)" class="hiddenlink" target="rightframe"><strike>sendControlCommand</strike>
+(<code>String, Bundle, ResultReceiver</code>)</A></nobr><br>
+<!-- Method sendCustomAction -->
+<i>sendCustomAction</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.TransportControls.html#android.media.session.MediaController.TransportControls.sendCustomAction_added(android.media.session.PlaybackState.CustomAction, android.os.Bundle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CustomAction, Bundle</code>)</b>&nbsp;in&nbsp;android.media.session.MediaController.TransportControls
+</A></nobr><br>
+<!-- Method sendCustomAction -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.TransportControls.html#android.media.session.MediaController.TransportControls.sendCustomAction_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, Bundle</code>)</b>&nbsp;in&nbsp;android.media.session.MediaController.TransportControls
+</A></nobr><br>
+<!-- Method sendEnvelopeWithStatus -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.sendEnvelopeWithStatus_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>sendEnvelopeWithStatus</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Field sendingUid -->
+<nobr><A HREF="android.os.Message.html#android.os.Message.sendingUid" class="hiddenlink" target="rightframe">sendingUid</A>
+</nobr><br>
+<!-- Method sendMultimediaMessage -->
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.sendMultimediaMessage_added(android.content.Context, android.net.Uri, java.lang.String, android.os.Bundle, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>sendMultimediaMessage</b>
+(<code>Context, Uri, String, Bundle, PendingIntent</code>)</A></nobr><br>
+<!-- Method sendStickyBroadcast -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyBroadcast_changed(android.content.Intent)" class="hiddenlink" target="rightframe">sendStickyBroadcast
+(<code>Intent</code>)</A></nobr><br>
+<!-- Method sendStickyBroadcastAsUser -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)" class="hiddenlink" target="rightframe">sendStickyBroadcastAsUser
+(<code>Intent, UserHandle</code>)</A></nobr><br>
+<!-- Method sendStickyOrderedBroadcast -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyOrderedBroadcast_changed(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">sendStickyOrderedBroadcast
+(<code>Intent, BroadcastReceiver, Handler, int, String, Bundle</code>)</A></nobr><br>
+<!-- Method sendStickyOrderedBroadcastAsUser -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyOrderedBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">sendStickyOrderedBroadcastAsUser
+(<code>Intent, UserHandle, BroadcastReceiver, Handler, int, String, Bundle</code>)</A></nobr><br>
+<!-- Class Sensor -->
+<A HREF="android.hardware.Sensor.html" class="hiddenlink" target="rightframe">Sensor</A><br>
+<!-- Field SENSOR_INFO_TIMESTAMP_SOURCE -->
+<nobr><A HREF="android.hardware.camera2.CameraCharacteristics.html#android.hardware.camera2.CameraCharacteristics.SENSOR_INFO_TIMESTAMP_SOURCE" class="hiddenlink" target="rightframe">SENSOR_INFO_TIMESTAMP_SOURCE</A>
+</nobr><br>
+<!-- Field SENSOR_INFO_TIMESTAMP_SOURCE_REALTIME -->
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.SENSOR_INFO_TIMESTAMP_SOURCE_REALTIME" class="hiddenlink" target="rightframe">SENSOR_INFO_TIMESTAMP_SOURCE_REALTIME</A>
+</nobr><br>
+<!-- Field SENSOR_INFO_TIMESTAMP_SOURCE_UNKNOWN -->
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.SENSOR_INFO_TIMESTAMP_SOURCE_UNKNOWN" class="hiddenlink" target="rightframe">SENSOR_INFO_TIMESTAMP_SOURCE_UNKNOWN</A>
+</nobr><br>
+<!-- Field SENSOR_NOISE_PROFILE -->
+<nobr><A HREF="android.hardware.camera2.CaptureResult.html#android.hardware.camera2.CaptureResult.SENSOR_NOISE_PROFILE" class="hiddenlink" target="rightframe">SENSOR_NOISE_PROFILE</A>
+</nobr><br>
+<!-- Field SENSOR_ROLLING_SHUTTER_SKEW -->
+<nobr><A HREF="android.hardware.camera2.CaptureResult.html#android.hardware.camera2.CaptureResult.SENSOR_ROLLING_SHUTTER_SKEW" class="hiddenlink" target="rightframe">SENSOR_ROLLING_SHUTTER_SKEW</A>
+</nobr><br>
+<!-- Field SENSOR_STATUS_NO_CONTACT -->
+<nobr><A HREF="android.hardware.SensorManager.html#android.hardware.SensorManager.SENSOR_STATUS_NO_CONTACT" class="hiddenlink" target="rightframe">SENSOR_STATUS_NO_CONTACT</A>
+</nobr><br>
+<!-- Class SensorManager -->
+<A HREF="android.hardware.SensorManager.html" class="hiddenlink" target="rightframe">SensorManager</A><br>
+<!-- Field SERVICE_TYPE_AUDIO -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.SERVICE_TYPE_AUDIO" class="hiddenlink" target="rightframe">SERVICE_TYPE_AUDIO</A>
+</nobr><br>
+<!-- Field SERVICE_TYPE_AUDIO_VIDEO -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.SERVICE_TYPE_AUDIO_VIDEO" class="hiddenlink" target="rightframe">SERVICE_TYPE_AUDIO_VIDEO</A>
+</nobr><br>
+<!-- Field SERVICE_TYPE_OTHER -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.SERVICE_TYPE_OTHER" class="hiddenlink" target="rightframe">SERVICE_TYPE_OTHER</A>
+</nobr><br>
+<!-- Field sessionService -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.sessionService" class="hiddenlink" target="rightframe">sessionService</A>
+</nobr><br>
+<!-- Method setAcceptThirdPartyCookies -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.setAcceptThirdPartyCookies_added(android.webkit.WebView, boolean)" class="hiddenlink" target="rightframe"><b>setAcceptThirdPartyCookies</b>
+(<code>WebView, boolean</code>)</A></nobr><br>
+<!-- Method setActions -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.setActions_removed(long)" class="hiddenlink" target="rightframe"><strike>setActions</strike>
+(<code>long</code>)</A></nobr><br>
+<!-- Method setAlarmClock -->
+<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.setAlarmClock_added(android.app.AlarmManager.AlarmClockInfo, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>setAlarmClock</b>
+(<code>AlarmClockInfo, PendingIntent</code>)</A></nobr><br>
+<!-- Method setAllowEnterTransitionOverlap -->
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setAllowEnterTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe"><b>setAllowEnterTransitionOverlap</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setAllowExitTransitionOverlap -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.setAllowExitTransitionOverlap_removed(boolean)" class="hiddenlink" target="rightframe"><strike>setAllowExitTransitionOverlap</strike>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setAllowReturnTransitionOverlap -->
+<i>setAllowReturnTransitionOverlap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setAllowReturnTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setAllowReturnTransitionOverlap -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setAllowReturnTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setAlpha -->
+<nobr><A HREF="android.graphics.Outline.html#android.graphics.Outline.setAlpha_added(float)" class="hiddenlink" target="rightframe"><b>setAlpha</b>
+(<code>float</code>)</A></nobr><br>
+<!-- Method setApplicationBlocked -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setApplicationBlocked_removed(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><strike>setApplicationBlocked</strike>
+(<code>ComponentName, String, boolean</code>)</A></nobr><br>
+<!-- Method setApplicationHidden -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setApplicationHidden_added(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setApplicationHidden</b>
+(<code>ComponentName, String, boolean</code>)</A></nobr><br>
+<!-- Method setApplicationsBlocked -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setApplicationsBlocked_removed(android.content.ComponentName, android.content.Intent, boolean)" class="hiddenlink" target="rightframe"><strike>setApplicationsBlocked</strike>
+(<code>ComponentName, Intent, boolean</code>)</A></nobr><br>
+<!-- Method setAudioAttributes -->
+<i>setAudioAttributes</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AudioAttributes</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+<!-- Method setAudioAttributes -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AudioAttributes</code>)</b>&nbsp;in&nbsp;android.media.Ringtone
+</A></nobr><br>
+<!-- Method setAudioAttributes -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AudioAttributes</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method setAutoTimeRequired -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setAutoTimeRequired_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setAutoTimeRequired</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<!-- Method setBackgroundTintList -->
+<nobr><A HREF="android.view.View.html#android.view.View.setBackgroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setBackgroundTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setBackgroundTintMode -->
+<nobr><A HREF="android.view.View.html#android.view.View.setBackgroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setBackgroundTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setBlocking -->
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.setBlocking_added(boolean)" class="hiddenlink" target="rightframe"><b>setBlocking</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setBufferPosition -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.setBufferPosition_removed(long)" class="hiddenlink" target="rightframe"><strike>setBufferPosition</strike>
+(<code>long</code>)</A></nobr><br>
+<!-- Method setButtonTintList -->
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.setButtonTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setButtonTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setButtonTintMode -->
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.setButtonTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setButtonTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setCallback -->
+<i>setCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.setCallback_added(android.media.MediaCodec.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback</code>)</b>&nbsp;in&nbsp;android.media.MediaCodec
+</A></nobr><br>
+<!-- Method setCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setCallback_added(android.media.session.MediaSession.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback</code>)</b>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+<!-- Method setCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setCallback_added(android.media.session.MediaSession.Callback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback, Handler</code>)</b>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+<!-- Method setCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.setCallback_added(android.media.tv.TvView.TvInputCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>TvInputCallback</code>)</b>&nbsp;in&nbsp;android.media.tv.TvView
+</A></nobr><br>
+<!-- Method setCallbackType -->
+<nobr><A HREF="android.bluetooth.le.ScanSettings.Builder.html#android.bluetooth.le.ScanSettings.Builder.setCallbackType_removed(int)" class="hiddenlink" target="rightframe"><strike>setCallbackType</strike>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setCamera -->
+<nobr><A HREF="android.media.MediaRecorder.html#android.media.MediaRecorder.setCamera_changed(android.hardware.Camera)" class="hiddenlink" target="rightframe">setCamera
+(<code>Camera</code>)</A></nobr><br>
+<!-- Method setCaptionEnabled -->
+<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.setCaptionEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setCaptionEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setCheckMarkTintList -->
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.setCheckMarkTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setCheckMarkTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setCheckMarkTintMode -->
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.setCheckMarkTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setCheckMarkTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setColor -->
+<i>setColor</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.PorterDuffColorFilter.html#android.graphics.PorterDuffColorFilter.setColor_removed(int)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>int</code>)</strike>&nbsp;in&nbsp;android.graphics.PorterDuffColorFilter
+</A></nobr><br>
+<!-- Method setColor -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.setColor_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.widget.EdgeEffect
+</A></nobr><br>
+<!-- Method setColorAdd -->
+<nobr><A HREF="android.graphics.LightingColorFilter.html#android.graphics.LightingColorFilter.setColorAdd_removed(int)" class="hiddenlink" target="rightframe"><strike>setColorAdd</strike>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setColorMatrix -->
+<i>setColorMatrix</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.ColorMatrixColorFilter.html#android.graphics.ColorMatrixColorFilter.setColorMatrix_removed(android.graphics.ColorMatrix)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>ColorMatrix</code>)</strike>&nbsp;in&nbsp;android.graphics.ColorMatrixColorFilter
+</A></nobr><br>
+<!-- Method setColorMatrix -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.ColorMatrixColorFilter.html#android.graphics.ColorMatrixColorFilter.setColorMatrix_removed(float[])" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>float[]</code>)</strike>&nbsp;in&nbsp;android.graphics.ColorMatrixColorFilter
+</A></nobr><br>
+<!-- Method setColorMultiply -->
+<nobr><A HREF="android.graphics.LightingColorFilter.html#android.graphics.LightingColorFilter.setColorMultiply_removed(int)" class="hiddenlink" target="rightframe"><strike>setColorMultiply</strike>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setConnectable -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.Builder.html#android.bluetooth.le.AdvertiseSettings.Builder.setConnectable_added(boolean)" class="hiddenlink" target="rightframe"><b>setConnectable</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setCookie -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.setCookie_added(java.lang.String, java.lang.String, android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>setCookie</b>
+(<code>String, String, ValueCallback&lt;Boolean&gt;</code>)</A></nobr><br>
+<!-- Method setCropRect -->
+<nobr><A HREF="android.media.Image.html#android.media.Image.setCropRect_added(android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>setCropRect</b>
+(<code>Rect</code>)</A></nobr><br>
+<!-- Method setCrossProfileCallerIdDisabled -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setCrossProfileCallerIdDisabled_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setCrossProfileCallerIdDisabled</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<!-- Method setCursorAnchorMonitorMode -->
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.setCursorAnchorMonitorMode_removed(int)" class="hiddenlink" target="rightframe"><strike>setCursorAnchorMonitorMode</strike>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setDescription -->
+<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.setDescription_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setDescription</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setDeviceAddress -->
+<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setDeviceAddress_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setDeviceAddress</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setDeviceName -->
+<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setDeviceName_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setDeviceName</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setElevation -->
+<i>setElevation</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setElevation_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+<!-- Method setElevation -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.PopupWindow.html#android.widget.PopupWindow.setElevation_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.widget.PopupWindow
+</A></nobr><br>
+<!-- Method setEnterSharedElementCallback -->
+<i>setEnterSharedElementCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setEnterSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+<!-- Method setEnterSharedElementCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setEnterSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setEnterSharedElementListener -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.setEnterSharedElementListener_removed(android.app.SharedElementListener)" class="hiddenlink" target="rightframe"><strike>setEnterSharedElementListener</strike>
+(<code>SharedElementListener</code>)</A></nobr><br>
+<!-- Method setEnterTransition -->
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setEnterTransition</b>
+(<code>Transition</code>)</A></nobr><br>
+<!-- Method setError -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.setError_added(java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>setError</b>
+(<code>CharSequence</code>)</A></nobr><br>
+<!-- Method setErrorMessage -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.setErrorMessage_removed(java.lang.CharSequence)" class="hiddenlink" target="rightframe"><strike>setErrorMessage</strike>
+(<code>CharSequence</code>)</A></nobr><br>
+<!-- Method setExcludeFromRecents -->
+<nobr><A HREF="android.app.ActivityManager.AppTask.html#android.app.ActivityManager.AppTask.setExcludeFromRecents_added(boolean)" class="hiddenlink" target="rightframe"><b>setExcludeFromRecents</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setExitSharedElementCallback -->
+<i>setExitSharedElementCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setExitSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+<!-- Method setExitSharedElementCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setExitSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setExitSharedElementListener -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.setExitSharedElementListener_removed(android.app.SharedElementListener)" class="hiddenlink" target="rightframe"><strike>setExitSharedElementListener</strike>
+(<code>SharedElementListener</code>)</A></nobr><br>
+<!-- Method setExitTransition -->
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setExitTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setExitTransition</b>
+(<code>Transition</code>)</A></nobr><br>
+<!-- Method setExtras -->
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setExtras_added(android.os.Bundle)" class="hiddenlink" target="rightframe"><b>setExtras</b>
+(<code>Bundle</code>)</A></nobr><br>
+<!-- Method setFeatureEnabled -->
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.setFeatureEnabled_added(java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setFeatureEnabled</b>
+(<code>String, boolean</code>)</A></nobr><br>
+<!-- Method setFirstDayOfWeek -->
+<nobr><A HREF="android.widget.DatePicker.html#android.widget.DatePicker.setFirstDayOfWeek_added(int)" class="hiddenlink" target="rightframe"><b>setFirstDayOfWeek</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setFontFeatureSettings -->
+<i>setFontFeatureSettings</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setFontFeatureSettings_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+<!-- Method setFontFeatureSettings -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setFontFeatureSettings_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<!-- Method setForegroundTintList -->
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.setForegroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setForegroundTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setForegroundTintMode -->
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.setForegroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setForegroundTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setImageTintList -->
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.setImageTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setImageTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setImageTintMode -->
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.setImageTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setImageTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setIndeterminateTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setIndeterminateTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setIndeterminateTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setIndeterminateTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setIndeterminateTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setIndeterminateTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setInsertionMarkerLocation -->
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.Builder.html#android.view.inputmethod.CursorAnchorInfo.Builder.setInsertionMarkerLocation_changed(float, float, float, float, int)" class="hiddenlink" target="rightframe">setInsertionMarkerLocation
+(<code>float, float, float, float, int</code>)</A></nobr><br>
+<!-- Method setIntValue -->
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.setIntValue_added(int)" class="hiddenlink" target="rightframe"><b>setIntValue</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setLaunchPendingIntent -->
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setLaunchPendingIntent_removed(android.app.PendingIntent)" class="hiddenlink" target="rightframe"><strike>setLaunchPendingIntent</strike>
+(<code>PendingIntent</code>)</A></nobr><br>
+<!-- Method setLetterSpacing -->
+<i>setLetterSpacing</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setLetterSpacing_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+<!-- Method setLetterSpacing -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setLetterSpacing_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<!-- Method setLocation -->
+<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.setLocation_added(android.location.Location)" class="hiddenlink" target="rightframe"><b>setLocation</b>
+(<code>Location</code>)</A></nobr><br>
+<!-- Method setLockTaskComponents -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setLockTaskComponents_removed(android.content.ComponentName[])" class="hiddenlink" target="rightframe"><strike>setLockTaskComponents</strike>
+(<code>ComponentName[]</code>)</A></nobr><br>
+<!-- Method setLockTaskPackages -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setLockTaskPackages_added(android.content.ComponentName, java.lang.String[])" class="hiddenlink" target="rightframe"><b>setLockTaskPackages</b>
+(<code>ComponentName, String[]</code>)</A></nobr><br>
+<!-- Method setMacAddress -->
+<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setMacAddress_removed(java.lang.String)" class="hiddenlink" target="rightframe"><strike>setMacAddress</strike>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setMasterVolumeMuted -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setMasterVolumeMuted_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setMasterVolumeMuted</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<!-- Method setMaxTextLength -->
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.setMaxTextLength_added(int)" class="hiddenlink" target="rightframe"><b>setMaxTextLength</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setMediaButtonReceiver -->
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setMediaButtonReceiver_added(android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>setMediaButtonReceiver</b>
+(<code>PendingIntent</code>)</A></nobr><br>
+<!-- Method setMediaController -->
+<i>setMediaController</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setMediaController_added(android.media.session.MediaController)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>MediaController</code>)</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+<!-- Method setMediaController -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setMediaController_added(android.media.session.MediaController)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>MediaController</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setMediaSession -->
+<nobr><A HREF="android.app.Notification.MediaStyle.html#android.app.Notification.MediaStyle.setMediaSession_changed(android.media.session.MediaSession.Token)" class="hiddenlink" target="rightframe">setMediaSession
+(<code>Token</code>)</A></nobr><br>
+<!-- Method setMode -->
+<i>setMode</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.PorterDuffColorFilter.html#android.graphics.PorterDuffColorFilter.setMode_removed(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Mode</code>)</strike>&nbsp;in&nbsp;android.graphics.PorterDuffColorFilter
+</A></nobr><br>
+<!-- Method setMode -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.setMode_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.transition.Visibility
+</A></nobr><br>
+<!-- Method setName -->
+<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setName_removed(java.lang.String)" class="hiddenlink" target="rightframe"><strike>setName</strike>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setNavigationDescription -->
+<i>setNavigationDescription</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.setNavigationDescription_removed(int)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>int</code>)</strike>&nbsp;in&nbsp;android.widget.Toolbar
+</A></nobr><br>
+<!-- Method setNavigationDescription -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.setNavigationDescription_removed(java.lang.CharSequence)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>CharSequence</code>)</strike>&nbsp;in&nbsp;android.widget.Toolbar
+</A></nobr><br>
+<!-- Method setNetworkSpecifier -->
+<nobr><A HREF="android.net.NetworkRequest.Builder.html#android.net.NetworkRequest.Builder.setNetworkSpecifier_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setNetworkSpecifier</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setOrientation -->
+<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.setOrientation_added(int)" class="hiddenlink" target="rightframe"><b>setOrientation</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setOutline -->
+<nobr><A HREF="android.view.View.html#android.view.View.setOutline_removed(android.graphics.Outline)" class="hiddenlink" target="rightframe"><strike>setOutline</strike>
+(<code>Outline</code>)</A></nobr><br>
+<!-- Method setOutlineProvider -->
+<nobr><A HREF="android.view.View.html#android.view.View.setOutlineProvider_added(android.view.ViewOutlineProvider)" class="hiddenlink" target="rightframe"><b>setOutlineProvider</b>
+(<code>ViewOutlineProvider</code>)</A></nobr><br>
+<!-- Method setPathMotion -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.setPathMotion_added(android.transition.PathMotion)" class="hiddenlink" target="rightframe"><b>setPathMotion</b>
+(<code>PathMotion</code>)</A></nobr><br>
+<!-- Method setPermittedAccessibilityServices -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setPermittedAccessibilityServices_added(android.content.ComponentName, java.util.List<java.lang.String>)" class="hiddenlink" target="rightframe"><b>setPermittedAccessibilityServices</b>
+(<code>ComponentName, List&lt;String&gt;</code>)</A></nobr><br>
+<!-- Method setPermittedInputMethods -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setPermittedInputMethods_added(android.content.ComponentName, java.util.List<java.lang.String>)" class="hiddenlink" target="rightframe"><b>setPermittedInputMethods</b>
+(<code>ComponentName, List&lt;String&gt;</code>)</A></nobr><br>
+<!-- Method setPersisted -->
+<nobr><A HREF="android.app.job.JobInfo.Builder.html#android.app.job.JobInfo.Builder.setPersisted_added(boolean)" class="hiddenlink" target="rightframe"><b>setPersisted</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setPlaybackToLocal -->
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setPlaybackToLocal_changed(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">setPlaybackToLocal
+(<code>AudioAttributes</code>)</A></nobr><br>
+<!-- Method setPlaybackToRemote -->
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setPlaybackToRemote_changed(android.media.VolumeProvider)" class="hiddenlink" target="rightframe">setPlaybackToRemote
+(<code>VolumeProvider</code>)</A></nobr><br>
+<!-- Method setPopupTheme -->
+<i>setPopupTheme</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.ActionMenuView.html#android.widget.ActionMenuView.setPopupTheme_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.widget.ActionMenuView
+</A></nobr><br>
+<!-- Method setPopupTheme -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.setPopupTheme_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.widget.Toolbar
+</A></nobr><br>
+<!-- Method setProfileName -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setProfileName_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>setProfileName</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method setProgressBackgroundTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressBackgroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setProgressBackgroundTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setProgressBackgroundTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressBackgroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setProgressBackgroundTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setProgressTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setProgressTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setProgressTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setProgressTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setQueue -->
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setQueue_added(java.util.List<android.media.session.MediaSession.QueueItem>)" class="hiddenlink" target="rightframe"><b>setQueue</b>
+(<code>List&lt;QueueItem&gt;</code>)</A></nobr><br>
+<!-- Method setQueueTitle -->
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setQueueTitle_added(java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>setQueueTitle</b>
+(<code>CharSequence</code>)</A></nobr><br>
+<!-- Method setRecommendedGlobalProxy -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setRecommendedGlobalProxy_added(android.content.ComponentName, android.net.ProxyInfo)" class="hiddenlink" target="rightframe"><b>setRecommendedGlobalProxy</b>
+(<code>ComponentName, ProxyInfo</code>)</A></nobr><br>
+<!-- Method setReenterTransition -->
+<i>setReenterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setReenterTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setRemoveOnCancelPolicy -->
+<nobr><A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html#java.util.concurrent.ScheduledThreadPoolExecutor.setRemoveOnCancelPolicy_added(boolean)" class="hiddenlink" target="rightframe"><b>setRemoveOnCancelPolicy</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setReparent -->
+<i>setReparent</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.transition.ChangeBounds.html#android.transition.ChangeBounds.setReparent_changed(boolean)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>boolean</code>)&nbsp;in&nbsp;android.transition.ChangeBounds
+</A></nobr><br>
+<!-- Method setReparent -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.ChangeTransform.html#android.transition.ChangeTransform.setReparent_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.transition.ChangeTransform
+</A></nobr><br>
+<!-- Method setReparentWithOverlay -->
+<nobr><A HREF="android.transition.ChangeTransform.html#android.transition.ChangeTransform.setReparentWithOverlay_added(boolean)" class="hiddenlink" target="rightframe"><b>setReparentWithOverlay</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setRepeatingBurst -->
+<i>setRepeatingBurst</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CameraCaptureSession.html#android.hardware.camera2.CameraCaptureSession.setRepeatingBurst_changed(java.util.List<android.hardware.camera2.CaptureRequest>, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>List&lt;CaptureRequest&gt;, CaptureCallback, Handler</code>)&nbsp;in&nbsp;android.hardware.camera2.CameraCaptureSession
+</A></nobr><br>
+<!-- Method setRepeatingBurst -->
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.setRepeatingBurst_removed(java.util.List<android.hardware.camera2.CaptureRequest>, android.hardware.camera2.CameraDevice.CaptureListener, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>List&lt;CaptureRequest&gt;, CaptureListener, Handler</code>)</strike>&nbsp;in&nbsp;android.hardware.camera2.CameraDevice
+</A></nobr><br>
+<!-- Method setRepeatingRequest -->
+<i>setRepeatingRequest</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CameraCaptureSession.html#android.hardware.camera2.CameraCaptureSession.setRepeatingRequest_changed(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>CaptureRequest, CaptureCallback, Handler</code>)&nbsp;in&nbsp;android.hardware.camera2.CameraCaptureSession
+</A></nobr><br>
+<!-- Method setRepeatingRequest -->
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.setRepeatingRequest_removed(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraDevice.CaptureListener, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>CaptureRequest, CaptureListener, Handler</code>)</strike>&nbsp;in&nbsp;android.hardware.camera2.CameraDevice
+</A></nobr><br>
+<!-- Method setReportDelay -->
+<nobr><A HREF="android.bluetooth.le.ScanSettings.Builder.html#android.bluetooth.le.ScanSettings.Builder.setReportDelay_added(long)" class="hiddenlink" target="rightframe"><b>setReportDelay</b>
+(<code>long</code>)</A></nobr><br>
+<!-- Method setReportDelayNanos -->
+<nobr><A HREF="android.bluetooth.le.ScanSettings.Builder.html#android.bluetooth.le.ScanSettings.Builder.setReportDelayNanos_removed(long)" class="hiddenlink" target="rightframe"><strike>setReportDelayNanos</strike>
+(<code>long</code>)</A></nobr><br>
+<!-- Method setRequiredNetworkCapabilities -->
+<nobr><A HREF="android.app.job.JobInfo.Builder.html#android.app.job.JobInfo.Builder.setRequiredNetworkCapabilities_removed(int)" class="hiddenlink" target="rightframe"><strike>setRequiredNetworkCapabilities</strike>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setRequiredNetworkType -->
+<nobr><A HREF="android.app.job.JobInfo.Builder.html#android.app.job.JobInfo.Builder.setRequiredNetworkType_added(int)" class="hiddenlink" target="rightframe"><b>setRequiredNetworkType</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setResponseHeaders -->
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.setResponseHeaders_added(java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe"><b>setResponseHeaders</b>
+(<code>Map&lt;String, String&gt;</code>)</A></nobr><br>
+<!-- Method setRestrictionsProvider -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setRestrictionsProvider_added(android.content.ComponentName, android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>setRestrictionsProvider</b>
+(<code>ComponentName, ComponentName</code>)</A></nobr><br>
+<!-- Method setReturnTransition -->
+<i>setReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setReturnTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setRssiRange -->
+<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setRssiRange_removed(int, int)" class="hiddenlink" target="rightframe"><strike>setRssiRange</strike>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Method setScreenCaptureDisabled -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setScreenCaptureDisabled_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setScreenCaptureDisabled</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<!-- Method setSecondaryProgressTintList -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setSecondaryProgressTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setSecondaryProgressTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setSecondaryProgressTintMode -->
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setSecondaryProgressTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setSecondaryProgressTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setServiceData -->
+<i>setServiceData</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setServiceData_removed(byte[])" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>byte[]</code>)</strike>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter.Builder
+</A></nobr><br>
+<!-- Method setServiceData -->
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setServiceData_removed(byte[], byte[])" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>byte[], byte[]</code>)</strike>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter.Builder
+</A></nobr><br>
+<!-- Method setServiceData -->
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setServiceData_added(android.os.ParcelUuid, byte[])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ParcelUuid, byte[]</code>)</b>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter.Builder
+</A></nobr><br>
+<!-- Method setServiceData -->
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setServiceData_added(android.os.ParcelUuid, byte[], byte[])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ParcelUuid, byte[], byte[]</code>)</b>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter.Builder
+</A></nobr><br>
+<!-- Method setSessionActivity -->
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setSessionActivity_added(android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>setSessionActivity</b>
+(<code>PendingIntent</code>)</A></nobr><br>
+<!-- Method setSharedElementEnterTransition -->
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setSharedElementEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setSharedElementEnterTransition</b>
+(<code>Transition</code>)</A></nobr><br>
+<!-- Method setSharedElementReenterTransition -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setSharedElementReenterTransition</b>
+(<code>Transition</code>)</A></nobr><br>
+<!-- Method setSharedElementReturnTransition -->
+<i>setSharedElementReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setSharedElementReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<!-- Method setSharedElementReturnTransition -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<!-- Method setSharedElementsUseOverlay -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementsUseOverlay_added(boolean)" class="hiddenlink" target="rightframe"><b>setSharedElementsUseOverlay</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setShowSoftInputOnFocus -->
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setShowSoftInputOnFocus_added(boolean)" class="hiddenlink" target="rightframe"><b>setShowSoftInputOnFocus</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setShowText -->
+<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.setShowText_added(boolean)" class="hiddenlink" target="rightframe"><b>setShowText</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setSound -->
+<i>setSound</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_removed(android.net.Uri, int)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Uri, int</code>)</strike>&nbsp;in&nbsp;android.app.Notification.Builder
+</A></nobr><br>
+<!-- Method setSound -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_added(android.net.Uri, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Uri, AudioAttributes</code>)</b>&nbsp;in&nbsp;android.app.Notification.Builder
+</A></nobr><br>
+<!-- Method setSound -->
+&nbsp;&nbsp;<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_added(android.net.Uri, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Uri, int</code>)</b>&nbsp;in&nbsp;android.app.Notification.Builder
+</A></nobr><br>
+<!-- Method setState -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.setState_removed(int, long, float)" class="hiddenlink" target="rightframe"><strike>setState</strike>
+(<code>int, long, float</code>)</A></nobr><br>
+<!-- Method setStatusCodeAndReasonPhrase -->
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.setStatusCodeAndReasonPhrase_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>setStatusCodeAndReasonPhrase</b>
+(<code>int, String</code>)</A></nobr><br>
+<!-- Method setStreamType -->
+<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.setStreamType_changed(int)" class="hiddenlink" target="rightframe">setStreamType
+(<code>int</code>)</A></nobr><br>
+<!-- Method setSubtitleTextColor -->
+<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.setSubtitleTextColor_added(int)" class="hiddenlink" target="rightframe"><b>setSubtitleTextColor</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setTheme -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.setTheme_removed(int)" class="hiddenlink" target="rightframe"><strike>setTheme</strike>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setThumbnail -->
+<i>setThumbnail</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.setThumbnail_added(android.graphics.Bitmap)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Bitmap</code>)</b>&nbsp;in&nbsp;android.hardware.camera2.DngCreator
+</A></nobr><br>
+<!-- Method setThumbnail -->
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.setThumbnail_added(android.media.Image)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Image</code>)</b>&nbsp;in&nbsp;android.hardware.camera2.DngCreator
+</A></nobr><br>
+<!-- Method setThumbTintList -->
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.setThumbTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setThumbTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setThumbTintMode -->
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.setThumbTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setThumbTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setTicker -->
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setTicker_changed(java.lang.CharSequence, android.widget.RemoteViews)" class="hiddenlink" target="rightframe">setTicker
+(<code>CharSequence, RemoteViews</code>)</A></nobr><br>
+<!-- Method setTimeout -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.Builder.html#android.bluetooth.le.AdvertiseSettings.Builder.setTimeout_added(int)" class="hiddenlink" target="rightframe"><b>setTimeout</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Class SettingInjectorService -->
+<A HREF="android.location.SettingInjectorService.html" class="hiddenlink" target="rightframe">SettingInjectorService</A><br>
+<!-- Class Settings -->
+<A HREF="android.provider.Settings.html" class="hiddenlink" target="rightframe">Settings</A><br>
+<!-- Class Settings.Secure -->
+<A HREF="android.provider.Settings.Secure.html" class="hiddenlink" target="rightframe">Settings.Secure</A><br>
+<!-- Class Settings.System -->
+<A HREF="android.provider.Settings.System.html" class="hiddenlink" target="rightframe">Settings.System</A><br>
+<!-- Method setTint -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTint_changed(int)" class="hiddenlink" target="rightframe">setTint
+(<code>int</code>)</A></nobr><br>
+<!-- Method setTintList -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<!-- Method setTintMode -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setTitleTextColor -->
+<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.setTitleTextColor_added(int)" class="hiddenlink" target="rightframe"><b>setTitleTextColor</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setTouchscreenBlocksFocus -->
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.setTouchscreenBlocksFocus_added(boolean)" class="hiddenlink" target="rightframe"><b>setTouchscreenBlocksFocus</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setTransitionBackgroundFadeDuration -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.setTransitionBackgroundFadeDuration_added(long)" class="hiddenlink" target="rightframe"><b>setTransitionBackgroundFadeDuration</b>
+(<code>long</code>)</A></nobr><br>
+<!-- Method setTransitionName -->
+<nobr><A HREF="android.view.View.html#android.view.View.setTransitionName_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setTransitionName</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setTvInputListener -->
+<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.setTvInputListener_removed(android.media.tv.TvView.TvInputListener)" class="hiddenlink" target="rightframe"><strike>setTvInputListener</strike>
+(<code>TvInputListener</code>)</A></nobr><br>
+<!-- Method setType -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.Builder.html#android.bluetooth.le.AdvertiseSettings.Builder.setType_removed(int)" class="hiddenlink" target="rightframe"><strike>setType</strike>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setUninstallBlocked -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setUninstallBlocked_added(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setUninstallBlocked</b>
+(<code>ComponentName, String, boolean</code>)</A></nobr><br>
+<!-- Method setUserRestriction -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestriction_changed(java.lang.String, boolean)" class="hiddenlink" target="rightframe">setUserRestriction
+(<code>String, boolean</code>)</A></nobr><br>
+<!-- Method setUserRestrictions -->
+<i>setUserRestrictions</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestrictions_changed(android.os.Bundle)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Bundle</code>)&nbsp;in&nbsp;android.os.UserManager
+</A></nobr><br>
+<!-- Method setUserRestrictions -->
+&nbsp;&nbsp;<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestrictions_changed(android.os.Bundle, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Bundle, UserHandle</code>)&nbsp;in&nbsp;android.os.UserManager
+</A></nobr><br>
+<!-- Method setVideoURI -->
+<nobr><A HREF="android.widget.VideoView.html#android.widget.VideoView.setVideoURI_added(android.net.Uri, java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe"><b>setVideoURI</b>
+(<code>Uri, Map&lt;String, String&gt;</code>)</A></nobr><br>
+<!-- Method setViewName -->
+<nobr><A HREF="android.view.View.html#android.view.View.setViewName_removed(java.lang.String)" class="hiddenlink" target="rightframe"><strike>setViewName</strike>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setVoice -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.setVoice_added(android.speech.tts.Voice)" class="hiddenlink" target="rightframe"><b>setVoice</b>
+(<code>Voice</code>)</A></nobr><br>
+<!-- Method setVolumeTo -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.setVolumeTo_added(int, int)" class="hiddenlink" target="rightframe"><b>setVolumeTo</b>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Class Shape -->
+<A HREF="android.graphics.drawable.shapes.Shape.html" class="hiddenlink" target="rightframe">Shape</A><br>
+<!-- Class SharedElementCallback -->
+<A HREF="pkg_android.app.html#SharedElementCallback" class="hiddenlink" target="rightframe"><b>SharedElementCallback</b></A><br>
+<!-- Class SharedElementListener -->
+<A HREF="pkg_android.app.html#SharedElementListener" class="hiddenlink" target="rightframe"><strike>SharedElementListener</strike></A><br>
+<!-- Field SHOPPING -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.SHOPPING" class="hiddenlink" target="rightframe">SHOPPING</A>
+</nobr><br>
+<!-- Method shouldInterceptRequest -->
+<i>shouldInterceptRequest</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_removed(android.webkit.WebView, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>WebView, String</code>)</strike>&nbsp;in&nbsp;android.webkit.WebViewClient
+</A></nobr><br>
+<!-- Method shouldInterceptRequest -->
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, android.webkit.WebResourceRequest)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>WebView, WebResourceRequest</code>)</b>&nbsp;in&nbsp;android.webkit.WebViewClient
+</A></nobr><br>
+<!-- Method shouldInterceptRequest -->
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>WebView, String</code>)</b>&nbsp;in&nbsp;android.webkit.WebViewClient
+</A></nobr><br>
+<!-- Field showText -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.showText" class="hiddenlink" target="rightframe">showText</A>
+</nobr><br>
+<!-- Method showWindow -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.showWindow_removed()" class="hiddenlink" target="rightframe"><strike>showWindow</strike>
+()</A></nobr><br>
+<!-- Class Size -->
+<A HREF="android.util.Size.html" class="hiddenlink" target="rightframe">Size</A><br>
+<!-- Class SizeF -->
+<A HREF="android.util.SizeF.html" class="hiddenlink" target="rightframe">SizeF</A><br>
+<!-- Field SKIP_FIRST_USE_HINTS -->
+<nobr><A HREF="android.provider.Settings.Secure.html#android.provider.Settings.Secure.SKIP_FIRST_USE_HINTS" class="hiddenlink" target="rightframe">SKIP_FIRST_USE_HINTS</A>
+</nobr><br>
+<!-- Method skipToQueueItem -->
+<nobr><A HREF="android.media.session.MediaController.TransportControls.html#android.media.session.MediaController.TransportControls.skipToQueueItem_added(long)" class="hiddenlink" target="rightframe"><b>skipToQueueItem</b>
+(<code>long</code>)</A></nobr><br>
+<!-- Class Slide -->
+<i>Slide</i><br>
+&nbsp;&nbsp;<A HREF="android.transition.Slide.html" class="hiddenlink" target="rightframe">android.transition</A><br>
+<!-- Constructor Slide -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Slide.html#android.transition.Slide.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Slide</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field slide_bottom -->
+<nobr><A HREF="android.R.transition.html#android.R.transition.slide_bottom" class="hiddenlink" target="rightframe">slide_bottom</A>
+</nobr><br>
+<!-- Field slide_left -->
+<nobr><A HREF="android.R.transition.html#android.R.transition.slide_left" class="hiddenlink" target="rightframe">slide_left</A>
+</nobr><br>
+<!-- Field slide_right -->
+<nobr><A HREF="android.R.transition.html#android.R.transition.slide_right" class="hiddenlink" target="rightframe">slide_right</A>
+</nobr><br>
+<!-- Field slide_top -->
+<nobr><A HREF="android.R.transition.html#android.R.transition.slide_top" class="hiddenlink" target="rightframe">slide_top</A>
+</nobr><br>
+<!-- Field slideEdge -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.slideEdge" class="hiddenlink" target="rightframe">slideEdge</A>
+</nobr><br>
+<!-- Class SmsManager -->
+<A HREF="android.telephony.SmsManager.html" class="hiddenlink" target="rightframe">SmsManager</A><br>
+<!-- Field SORT_INDEX -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SORT_INDEX" class="hiddenlink" target="rightframe">SORT_INDEX</A>
+</nobr><br>
+<!-- Class SoundPool -->
+<i>SoundPool</i><br>
+&nbsp;&nbsp;<A HREF="android.media.SoundPool.html" class="hiddenlink" target="rightframe">android.media</A><br>
+<!-- Constructor SoundPool -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.SoundPool.html#android.media.SoundPool.ctor_changed(int, int, int)" class="hiddenlink" target="rightframe">SoundPool
+(<code>int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class SoundPool.Builder -->
+<A HREF="pkg_android.media.html#SoundPool.Builder" class="hiddenlink" target="rightframe"><b>SoundPool.Builder</b></A><br>
+<!-- Class SpannableStringBuilder -->
+<A HREF="android.text.SpannableStringBuilder.html" class="hiddenlink" target="rightframe">SpannableStringBuilder</A><br>
+<!-- Method speak -->
+<i>speak</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.speak_added(java.lang.CharSequence, int, android.os.Bundle, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, int, Bundle, String</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method speak -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.speak_changed(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>String, int, HashMap&lt;String, String&gt;</code>)&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method spec -->
+<i>spec</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, android.widget.GridLayout.Alignment, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, Alignment, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+<!-- Method spec -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+<!-- Method spec -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, int, android.widget.GridLayout.Alignment, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, Alignment, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+<!-- Method spec -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, int, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+<!-- Field splitNames -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.splitNames" class="hiddenlink" target="rightframe">splitNames</A>
+</nobr><br>
+<!-- Field splitPublicSourceDirs -->
+<i>splitPublicSourceDirs</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.splitPublicSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.ApplicationInfo</A>
+</nobr><br>
+<!-- Field splitPublicSourceDirs -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.InstrumentationInfo.html#android.content.pm.InstrumentationInfo.splitPublicSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.InstrumentationInfo</A>
+</nobr><br>
+<!-- Field splitSourceDirs -->
+<i>splitSourceDirs</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.splitSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.ApplicationInfo</A>
+</nobr><br>
+<!-- Field splitSourceDirs -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.InstrumentationInfo.html#android.content.pm.InstrumentationInfo.splitSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.InstrumentationInfo</A>
+</nobr><br>
+<!-- Field splitTrack -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.splitTrack" class="hiddenlink" target="rightframe">splitTrack</A>
+</nobr><br>
+<!-- Field SPORTS -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.SPORTS" class="hiddenlink" target="rightframe">SPORTS</A>
+</nobr><br>
+<!-- Field spotShadowAlpha -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.spotShadowAlpha" class="hiddenlink" target="rightframe">spotShadowAlpha</A>
+</nobr><br>
+<!-- Field stackViewStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.stackViewStyle" class="hiddenlink" target="rightframe">stackViewStyle</A>
+</nobr><br>
+<!-- Method startActivity -->
+<nobr><A HREF="android.app.ActivityManager.AppTask.html#android.app.ActivityManager.AppTask.startActivity_added(android.content.Context, android.content.Intent, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>startActivity</b>
+(<code>Context, Intent, Bundle</code>)</A></nobr><br>
+<!-- Method startActivityForProfile -->
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.startActivityForProfile_removed(android.content.ComponentName, android.os.UserHandle, android.graphics.Rect, android.os.Bundle)" class="hiddenlink" target="rightframe"><strike>startActivityForProfile</strike>
+(<code>ComponentName, UserHandle, Rect, Bundle</code>)</A></nobr><br>
+<!-- Method startAdvertising -->
+<i>startAdvertising</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.BluetoothLeAdvertiser.html#android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising_removed(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertisementData, android.bluetooth.le.AdvertiseCallback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>AdvertiseSettings, AdvertisementData, AdvertiseCallback</code>)</strike>&nbsp;in&nbsp;android.bluetooth.le.BluetoothLeAdvertiser
+</A></nobr><br>
+<!-- Method startAdvertising -->
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.BluetoothLeAdvertiser.html#android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising_removed(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertisementData, android.bluetooth.le.AdvertisementData, android.bluetooth.le.AdvertiseCallback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>AdvertiseSettings, AdvertisementData, AdvertisementData, AdvertiseCallback</code>)</strike>&nbsp;in&nbsp;android.bluetooth.le.BluetoothLeAdvertiser
+</A></nobr><br>
+<!-- Method startAdvertising -->
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.BluetoothLeAdvertiser.html#android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising_added(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AdvertiseSettings, AdvertiseData, AdvertiseCallback</code>)</b>&nbsp;in&nbsp;android.bluetooth.le.BluetoothLeAdvertiser
+</A></nobr><br>
+<!-- Method startAdvertising -->
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.BluetoothLeAdvertiser.html#android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising_added(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AdvertiseSettings, AdvertiseData, AdvertiseData, AdvertiseCallback</code>)</b>&nbsp;in&nbsp;android.bluetooth.le.BluetoothLeAdvertiser
+</A></nobr><br>
+<!-- Method startAppDetailsActivity -->
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.startAppDetailsActivity_added(android.content.ComponentName, android.os.UserHandle, android.graphics.Rect, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>startAppDetailsActivity</b>
+(<code>ComponentName, UserHandle, Rect, Bundle</code>)</A></nobr><br>
+<!-- Method startAppWidgetConfigureActivityForResult -->
+<nobr><A HREF="android.appwidget.AppWidgetHost.html#android.appwidget.AppWidgetHost.startAppWidgetConfigureActivityForResult_added(android.app.Activity, int, int, int, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>startAppWidgetConfigureActivityForResult</b>
+(<code>Activity, int, int, int, Bundle</code>)</A></nobr><br>
+<!-- Method startLeScan -->
+<i>startLeScan</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.startLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>LeScanCallback</code>)&nbsp;in&nbsp;android.bluetooth.BluetoothAdapter
+</A></nobr><br>
+<!-- Method startLeScan -->
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.startLeScan_changed(java.util.UUID[], android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>UUID[], LeScanCallback</code>)&nbsp;in&nbsp;android.bluetooth.BluetoothAdapter
+</A></nobr><br>
+<!-- Method startMainActivity -->
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.startMainActivity_added(android.content.ComponentName, android.os.UserHandle, android.graphics.Rect, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>startMainActivity</b>
+(<code>ComponentName, UserHandle, Rect, Bundle</code>)</A></nobr><br>
+<!-- Method startScan -->
+<nobr><A HREF="android.bluetooth.le.BluetoothLeScanner.html#android.bluetooth.le.BluetoothLeScanner.startScan_added(android.bluetooth.le.ScanCallback)" class="hiddenlink" target="rightframe"><b>startScan</b>
+(<code>ScanCallback</code>)</A></nobr><br>
+<!-- Method startVoiceActivity -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.startVoiceActivity_removed(android.content.Intent)" class="hiddenlink" target="rightframe"><strike>startVoiceActivity</strike>
+(<code>Intent</code>)</A></nobr><br>
+<!-- Method startWps -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.startWps_added(android.net.wifi.WpsInfo, android.net.wifi.WifiManager.WpsCallback)" class="hiddenlink" target="rightframe"><b>startWps</b>
+(<code>WpsInfo, WpsCallback</code>)</A></nobr><br>
+<!-- Field STATE_CONNECTING -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.STATE_CONNECTING" class="hiddenlink" target="rightframe">STATE_CONNECTING</A>
+</nobr><br>
+<!-- Field STATE_DOZE -->
+<nobr><A HREF="android.view.Display.html#android.view.Display.STATE_DOZE" class="hiddenlink" target="rightframe">STATE_DOZE</A>
+</nobr><br>
+<!-- Field STATE_DOZE_SUSPEND -->
+<nobr><A HREF="android.view.Display.html#android.view.Display.STATE_DOZE_SUSPEND" class="hiddenlink" target="rightframe">STATE_DOZE_SUSPEND</A>
+</nobr><br>
+<!-- Field STATE_DOZING -->
+<nobr><A HREF="android.view.Display.html#android.view.Display.STATE_DOZING" class="hiddenlink" target="rightframe"><strike>STATE_DOZING</strike></A>
+</nobr><br>
+<!-- Field STATE_SKIPPING_TO_QUEUE_ITEM -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.STATE_SKIPPING_TO_QUEUE_ITEM" class="hiddenlink" target="rightframe">STATE_SKIPPING_TO_QUEUE_ITEM</A>
+</nobr><br>
+<!-- Field stateListAnimator -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.stateListAnimator" class="hiddenlink" target="rightframe">stateListAnimator</A>
+</nobr><br>
+<!-- Field STATUS_BAR_BACKGROUND_TRANSITION_NAME -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.STATUS_BAR_BACKGROUND_TRANSITION_NAME" class="hiddenlink" target="rightframe">STATUS_BAR_BACKGROUND_TRANSITION_NAME</A>
+</nobr><br>
+<!-- Field statusBarBackground -->
+<nobr><A HREF="android.R.id.html#android.R.id.statusBarBackground" class="hiddenlink" target="rightframe">statusBarBackground</A>
+</nobr><br>
+<!-- Field statusBarColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.statusBarColor" class="hiddenlink" target="rightframe">statusBarColor</A>
+</nobr><br>
+<!-- Class StatusBarNotification -->
+<A HREF="android.service.notification.StatusBarNotification.html" class="hiddenlink" target="rightframe">StatusBarNotification</A><br>
+<!-- Method stopLeScan -->
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.stopLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">stopLeScan
+(<code>LeScanCallback</code>)</A></nobr><br>
+<!-- Field STOPPED -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.STOPPED" class="hiddenlink" target="rightframe">STOPPED</A>
+</nobr><br>
+<!-- Method stopRepeating -->
+<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.stopRepeating_removed()" class="hiddenlink" target="rightframe"><strike>stopRepeating</strike>
+()</A></nobr><br>
+<!-- Field STREAM_DEFAULT -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.STREAM_DEFAULT" class="hiddenlink" target="rightframe">STREAM_DEFAULT</A>
+</nobr><br>
+<!-- Field STREAM_ITEM_ID -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.STREAM_ITEM_ID" class="hiddenlink" target="rightframe">STREAM_ITEM_ID</A>
+</nobr><br>
+<!-- Class StreamConfigurationMap -->
+<A HREF="android.hardware.camera2.params.StreamConfigurationMap.html" class="hiddenlink" target="rightframe">StreamConfigurationMap</A><br>
+<!-- Field stroke -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.stroke" class="hiddenlink" target="rightframe"><strike>stroke</strike></A>
+</nobr><br>
+<!-- Field strokeAlpha -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeAlpha" class="hiddenlink" target="rightframe">strokeAlpha</A>
+</nobr><br>
+<!-- Field strokeColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeColor" class="hiddenlink" target="rightframe">strokeColor</A>
+</nobr><br>
+<!-- Field strokeLineCap -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeLineCap" class="hiddenlink" target="rightframe">strokeLineCap</A>
+</nobr><br>
+<!-- Field strokeLineJoin -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeLineJoin" class="hiddenlink" target="rightframe">strokeLineJoin</A>
+</nobr><br>
+<!-- Field strokeMiterLimit -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeMiterLimit" class="hiddenlink" target="rightframe">strokeMiterLimit</A>
+</nobr><br>
+<!-- Field strokeOpacity -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeOpacity" class="hiddenlink" target="rightframe"><strike>strokeOpacity</strike></A>
+</nobr><br>
+<!-- Field strokeWidth -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeWidth" class="hiddenlink" target="rightframe">strokeWidth</A>
+</nobr><br>
+<!-- Field submitBackground -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.submitBackground" class="hiddenlink" target="rightframe">submitBackground</A>
+</nobr><br>
+<!-- Field subtitleTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.subtitleTextAppearance" class="hiddenlink" target="rightframe">subtitleTextAppearance</A>
+</nobr><br>
+<!-- Field suggestionRowLayout -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.suggestionRowLayout" class="hiddenlink" target="rightframe">suggestionRowLayout</A>
+</nobr><br>
+<!-- Field SUPPORTED_32_BIT_ABIS -->
+<nobr><A HREF="android.os.Build.html#android.os.Build.SUPPORTED_32_BIT_ABIS" class="hiddenlink" target="rightframe">SUPPORTED_32_BIT_ABIS</A>
+</nobr><br>
+<!-- Field SUPPORTED_64_BIT_ABIS -->
+<nobr><A HREF="android.os.Build.html#android.os.Build.SUPPORTED_64_BIT_ABIS" class="hiddenlink" target="rightframe">SUPPORTED_64_BIT_ABIS</A>
+</nobr><br>
+<!-- Field SUPPORTED_ABIS -->
+<nobr><A HREF="android.os.Build.html#android.os.Build.SUPPORTED_ABIS" class="hiddenlink" target="rightframe">SUPPORTED_ABIS</A>
+</nobr><br>
+<!-- Method supportsAidPrefixRegistration -->
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.supportsAidPrefixRegistration_added()" class="hiddenlink" target="rightframe"><b>supportsAidPrefixRegistration</b>
+()</A></nobr><br>
+<!-- Class Switch -->
+<A HREF="android.widget.Switch.html" class="hiddenlink" target="rightframe">Switch</A><br>
+<!-- Field switchStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.switchStyle" class="hiddenlink" target="rightframe">switchStyle</A>
+</nobr><br>
+<!-- Method switchUser -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.switchUser_added(android.content.ComponentName, android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>switchUser</b>
+(<code>ComponentName, UserHandle</code>)</A></nobr><br>
+<!-- Field SYNC1 -->
+<i>SYNC1</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC1" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<!-- Field SYNC1 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC1" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<!-- Field SYNC2 -->
+<i>SYNC2</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC2" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<!-- Field SYNC2 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC2" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<!-- Field SYNC3 -->
+<i>SYNC3</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC3" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<!-- Field SYNC3 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC3" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<!-- Field SYNC4 -->
+<i>SYNC4</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC4" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<!-- Field SYNC4 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC4" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<!-- Method syncFromRamToFlash -->
+<nobr><A HREF="android.webkit.CookieSyncManager.html#android.webkit.CookieSyncManager.syncFromRamToFlash_changed()" class="hiddenlink" target="rightframe">syncFromRamToFlash
+()</A></nobr><br>
+<!-- Class SynthesisCallback -->
+<A HREF="android.speech.tts.SynthesisCallback.html" class="hiddenlink" target="rightframe"><i>SynthesisCallback</i></A><br>
+<!-- Class SynthesisRequest -->
+<i>SynthesisRequest</i><br>
+&nbsp;&nbsp;<A HREF="android.speech.tts.SynthesisRequest.html" class="hiddenlink" target="rightframe">android.speech.tts</A><br>
+<!-- Constructor SynthesisRequest -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.ctor_added(java.lang.CharSequence, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>SynthesisRequest</b>
+(<code>CharSequence, Bundle</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Method synthesizeToFile -->
+<i>synthesizeToFile</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.synthesizeToFile_added(java.lang.CharSequence, android.os.Bundle, java.io.File, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, Bundle, File, String</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Method synthesizeToFile -->
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.synthesizeToFile_changed(java.lang.String, java.util.HashMap<java.lang.String, java.lang.String>, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>String, HashMap&lt;String, String&gt;, String</code>)&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<!-- Field targetName -->
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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.R.attr.html#android.R.attr.targetName" class="hiddenlink" target="rightframe">targetName</A>
+</nobr><br>
+<!-- Field targetViewName -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.targetViewName" class="hiddenlink" target="rightframe"><strike>targetViewName</strike></A>
+</nobr><br>
+<!-- Field taskDescription -->
+<nobr><A HREF="android.app.ActivityManager.RecentTaskInfo.html#android.app.ActivityManager.RecentTaskInfo.taskDescription" class="hiddenlink" target="rightframe">taskDescription</A>
+</nobr><br>
+<!-- Field TELECOM_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.TELECOM_SERVICE" class="hiddenlink" target="rightframe">TELECOM_SERVICE</A>
+</nobr><br>
+<!-- Class Telephony.BaseMmsColumns -->
+<A HREF="android.provider.Telephony.BaseMmsColumns.html" class="hiddenlink" target="rightframe"><i>Telephony.BaseMmsColumns</i></A><br>
+<!-- Class Telephony.TextBasedSmsColumns -->
+<A HREF="android.provider.Telephony.TextBasedSmsColumns.html" class="hiddenlink" target="rightframe"><i>Telephony.TextBasedSmsColumns</i></A><br>
+<!-- Class Telephony.ThreadsColumns -->
+<A HREF="android.provider.Telephony.ThreadsColumns.html" class="hiddenlink" target="rightframe"><i>Telephony.ThreadsColumns</i></A><br>
+<!-- Class TelephonyManager -->
+<A HREF="android.telephony.TelephonyManager.html" class="hiddenlink" target="rightframe">TelephonyManager</A><br>
+<!-- Field TEXT -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.TEXT" class="hiddenlink" target="rightframe">TEXT</A>
+</nobr><br>
+<!-- Field TextAppearance_Material -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material" class="hiddenlink" target="rightframe">TextAppearance_Material</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Body1 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Body1" class="hiddenlink" target="rightframe">TextAppearance_Material_Body1</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Body2 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Body2" class="hiddenlink" target="rightframe">TextAppearance_Material_Body2</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Button -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Button" class="hiddenlink" target="rightframe">TextAppearance_Material_Button</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Caption -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Caption" class="hiddenlink" target="rightframe">TextAppearance_Material_Caption</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_DialogWindowTitle -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_DialogWindowTitle" class="hiddenlink" target="rightframe">TextAppearance_Material_DialogWindowTitle</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Display1 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display1" class="hiddenlink" target="rightframe">TextAppearance_Material_Display1</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Display2 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display2" class="hiddenlink" target="rightframe">TextAppearance_Material_Display2</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Display3 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display3" class="hiddenlink" target="rightframe">TextAppearance_Material_Display3</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Display4 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display4" class="hiddenlink" target="rightframe">TextAppearance_Material_Display4</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Headline -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Headline" class="hiddenlink" target="rightframe">TextAppearance_Material_Headline</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Large -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Large" class="hiddenlink" target="rightframe">TextAppearance_Material_Large</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Large_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Large_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Large_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Medium -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Medium" class="hiddenlink" target="rightframe">TextAppearance_Material_Medium</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Medium_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Medium_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Medium_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Menu -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Menu" class="hiddenlink" target="rightframe">TextAppearance_Material_Menu</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Notification -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Notification_Emphasis -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Emphasis" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Emphasis</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Notification_Info -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Info" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Info</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Notification_Line2 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Line2" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Line2</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Notification_Time -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Time" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Time</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Notification_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Title</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_SearchResult_Subtitle -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_SearchResult_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_SearchResult_Subtitle</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_SearchResult_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_SearchResult_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_SearchResult_Title</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Small" class="hiddenlink" target="rightframe">TextAppearance_Material_Small</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Small_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Small_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Small_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Subhead -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Subhead" class="hiddenlink" target="rightframe">TextAppearance_Material_Subhead</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Title</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionBar_Menu -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Menu" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Menu</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionBar_Subtitle -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Subtitle</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionBar_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Title</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionBar_Title_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Title_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Title_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionMode_Subtitle -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Subtitle</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionMode_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Title</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionMode_Title_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Title_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Title_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_Button -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_Button" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_Button</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_DropDownHint -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_DropDownHint" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_DropDownHint</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_DropDownItem -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_DropDownItem" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_DropDownItem</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_EditText -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_EditText" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_EditText</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_IconMenu_Item -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_IconMenu_Item" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_IconMenu_Item</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_PopupMenu -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_PopupMenu" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_PopupMenu</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_PopupMenu_Large -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_PopupMenu_Large" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_PopupMenu_Large</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_PopupMenu_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_PopupMenu_Small" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_PopupMenu_Small</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_TabWidget -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TabWidget" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TabWidget</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_TextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TextView" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TextView</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_TextView_PopupMenu -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TextView_PopupMenu" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TextView_PopupMenu</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_TextView_SpinnerItem -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TextView_SpinnerItem" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TextView_SpinnerItem</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_Toolbar_Subtitle -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_Toolbar_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_Toolbar_Subtitle</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_Toolbar_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_Toolbar_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_Toolbar_Title</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_WindowTitle -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_WindowTitle" class="hiddenlink" target="rightframe">TextAppearance_Material_WindowTitle</A>
+</nobr><br>
+<!-- Field textAppearanceListItemSecondary -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.textAppearanceListItemSecondary" class="hiddenlink" target="rightframe">textAppearanceListItemSecondary</A>
+</nobr><br>
+<!-- Class TextInfo -->
+<i>TextInfo</i><br>
+&nbsp;&nbsp;<A HREF="android.view.textservice.TextInfo.html" class="hiddenlink" target="rightframe">android.view.textservice</A><br>
+<!-- Constructor TextInfo -->
+&nbsp;&nbsp;<nobr><A HREF="android.view.textservice.TextInfo.html#android.view.textservice.TextInfo.ctor_added(java.lang.CharSequence, int, int, int, int)" class="hiddenlink" target="rightframe"><b>TextInfo</b>
+(<code>CharSequence, int, int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class TextToSpeech -->
+<A HREF="android.speech.tts.TextToSpeech.html" class="hiddenlink" target="rightframe">TextToSpeech</A><br>
+<!-- Class TextToSpeech.Engine -->
+<A HREF="android.speech.tts.TextToSpeech.Engine.html" class="hiddenlink" target="rightframe">TextToSpeech.Engine</A><br>
+<!-- Class TextToSpeechService -->
+<A HREF="android.speech.tts.TextToSpeechService.html" class="hiddenlink" target="rightframe">TextToSpeechService</A><br>
+<!-- Class TextView -->
+<A HREF="android.widget.TextView.html" class="hiddenlink" target="rightframe">TextView</A><br>
+<!-- Field Theme_DeviceDefault_Settings -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_DeviceDefault_Settings" class="hiddenlink" target="rightframe">Theme_DeviceDefault_Settings</A>
+</nobr><br>
+<!-- Field Theme_Material -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material" class="hiddenlink" target="rightframe">Theme_Material</A>
+</nobr><br>
+<!-- Field Theme_Material_Dialog -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog" class="hiddenlink" target="rightframe">Theme_Material_Dialog</A>
+</nobr><br>
+<!-- Field Theme_Material_Dialog_Alert -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_Alert" class="hiddenlink" target="rightframe">Theme_Material_Dialog_Alert</A>
+</nobr><br>
+<!-- Field Theme_Material_Dialog_MinWidth -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Dialog_MinWidth</A>
+</nobr><br>
+<!-- Field Theme_Material_Dialog_NoActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Dialog_NoActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_Dialog_NoActionBar_MinWidth -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_NoActionBar_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Dialog_NoActionBar_MinWidth</A>
+</nobr><br>
+<!-- Field Theme_Material_Dialog_Presentation -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_Presentation" class="hiddenlink" target="rightframe">Theme_Material_Dialog_Presentation</A>
+</nobr><br>
+<!-- Field Theme_Material_DialogWhenLarge -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_DialogWhenLarge" class="hiddenlink" target="rightframe">Theme_Material_DialogWhenLarge</A>
+</nobr><br>
+<!-- Field Theme_Material_DialogWhenLarge_NoActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_DialogWhenLarge_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_DialogWhenLarge_NoActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_InputMethod -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_InputMethod" class="hiddenlink" target="rightframe">Theme_Material_InputMethod</A>
+</nobr><br>
+<!-- Field Theme_Material_Light -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light" class="hiddenlink" target="rightframe">Theme_Material_Light</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_DarkActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_DarkActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_DarkActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Dialog -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Dialog_Alert -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_Alert" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_Alert</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Dialog_MinWidth -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_MinWidth</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Dialog_NoActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_NoActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Dialog_NoActionBar_MinWidth -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_NoActionBar_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_NoActionBar_MinWidth</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Dialog_Presentation -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_Presentation" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_Presentation</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_DialogWhenLarge -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_DialogWhenLarge" class="hiddenlink" target="rightframe">Theme_Material_Light_DialogWhenLarge</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_DialogWhenLarge_NoActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_DialogWhenLarge_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_DialogWhenLarge_NoActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_NoActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_NoActionBar_Fullscreen -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar_Fullscreen" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar_Fullscreen</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_NoActionBar_Overscan -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar_Overscan" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar_Overscan</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_NoActionBar_TranslucentDecor -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar_TranslucentDecor" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar_TranslucentDecor</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Panel -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Panel" class="hiddenlink" target="rightframe">Theme_Material_Light_Panel</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Voice -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Voice" class="hiddenlink" target="rightframe">Theme_Material_Light_Voice</A>
+</nobr><br>
+<!-- Field Theme_Material_NoActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_NoActionBar_Fullscreen -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar_Fullscreen" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar_Fullscreen</A>
+</nobr><br>
+<!-- Field Theme_Material_NoActionBar_Overscan -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar_Overscan" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar_Overscan</A>
+</nobr><br>
+<!-- Field Theme_Material_NoActionBar_TranslucentDecor -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar_TranslucentDecor" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar_TranslucentDecor</A>
+</nobr><br>
+<!-- Field Theme_Material_Panel -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Panel" class="hiddenlink" target="rightframe">Theme_Material_Panel</A>
+</nobr><br>
+<!-- Field Theme_Material_Settings -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Settings" class="hiddenlink" target="rightframe">Theme_Material_Settings</A>
+</nobr><br>
+<!-- Field Theme_Material_Voice -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Voice" class="hiddenlink" target="rightframe">Theme_Material_Voice</A>
+</nobr><br>
+<!-- Field Theme_Material_Wallpaper -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Wallpaper" class="hiddenlink" target="rightframe">Theme_Material_Wallpaper</A>
+</nobr><br>
+<!-- Field Theme_Material_Wallpaper_NoTitleBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Wallpaper_NoTitleBar" class="hiddenlink" target="rightframe">Theme_Material_Wallpaper_NoTitleBar</A>
+</nobr><br>
+<!-- Field ThemeOverlay -->
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay" class="hiddenlink" target="rightframe">ThemeOverlay</A>
+</nobr><br>
+<!-- Field ThemeOverlay_Material -->
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material" class="hiddenlink" target="rightframe">ThemeOverlay_Material</A>
+</nobr><br>
+<!-- Field ThemeOverlay_Material_ActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_ActionBar" class="hiddenlink" target="rightframe">ThemeOverlay_Material_ActionBar</A>
+</nobr><br>
+<!-- Field ThemeOverlay_Material_Dark -->
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_Dark" class="hiddenlink" target="rightframe">ThemeOverlay_Material_Dark</A>
+</nobr><br>
+<!-- Field ThemeOverlay_Material_Dark_ActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_Dark_ActionBar" class="hiddenlink" target="rightframe">ThemeOverlay_Material_Dark_ActionBar</A>
+</nobr><br>
+<!-- Field ThemeOverlay_Material_Light -->
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_Light" class="hiddenlink" target="rightframe">ThemeOverlay_Material_Light</A>
+</nobr><br>
+<!-- Class ThreadLocalRandom -->
+<A HREF="pkg_java.util.concurrent.html#ThreadLocalRandom" class="hiddenlink" target="rightframe"><b>ThreadLocalRandom</b></A><br>
+<!-- Field thumbTint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.thumbTint" class="hiddenlink" target="rightframe">thumbTint</A>
+</nobr><br>
+<!-- Field thumbTintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.thumbTintMode" class="hiddenlink" target="rightframe">thumbTintMode</A>
+</nobr><br>
+<!-- Field tickerView -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.tickerView" class="hiddenlink" target="rightframe">tickerView</A>
+</nobr><br>
+<!-- Field tileModeX -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.tileModeX" class="hiddenlink" target="rightframe">tileModeX</A>
+</nobr><br>
+<!-- Field tileModeY -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.tileModeY" class="hiddenlink" target="rightframe">tileModeY</A>
+</nobr><br>
+<!-- Field timePickerDialogTheme -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.timePickerDialogTheme" class="hiddenlink" target="rightframe">timePickerDialogTheme</A>
+</nobr><br>
+<!-- Field timePickerMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.timePickerMode" class="hiddenlink" target="rightframe">timePickerMode</A>
+</nobr><br>
+<!-- Field timePickerStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.timePickerStyle" class="hiddenlink" target="rightframe">timePickerStyle</A>
+</nobr><br>
+<!-- Field TIMESTAMP -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.TIMESTAMP" class="hiddenlink" target="rightframe">TIMESTAMP</A>
+</nobr><br>
+<!-- Field tintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.tintMode" class="hiddenlink" target="rightframe">tintMode</A>
+</nobr><br>
+<!-- Field TITLE_RES -->
+<nobr><A HREF="android.provider.ContactsContract.GroupsColumns.html#android.provider.ContactsContract.GroupsColumns.TITLE_RES" class="hiddenlink" target="rightframe">TITLE_RES</A>
+</nobr><br>
+<!-- Field titleTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.titleTextAppearance" class="hiddenlink" target="rightframe">titleTextAppearance</A>
+</nobr><br>
+<!-- Field toId -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.toId" class="hiddenlink" target="rightframe">toId</A>
+</nobr><br>
+<!-- Method toLanguageTag -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.toLanguageTag_added()" class="hiddenlink" target="rightframe"><b>toLanguageTag</b>
+()</A></nobr><br>
+<!-- Class Toolbar -->
+<A HREF="android.widget.Toolbar.html" class="hiddenlink" target="rightframe">Toolbar</A><br>
+<!-- Field toolbarStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.toolbarStyle" class="hiddenlink" target="rightframe">toolbarStyle</A>
+</nobr><br>
+<!-- Field touchscreenBlocksFocus -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.touchscreenBlocksFocus" class="hiddenlink" target="rightframe">touchscreenBlocksFocus</A>
+</nobr><br>
+<!-- Field TRANSCRIPTION -->
+<i>TRANSCRIPTION</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.TRANSCRIPTION" class="hiddenlink" target="rightframe">android.provider.CallLog.Calls</A>
+</nobr><br>
+<!-- Field TRANSCRIPTION -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.VoicemailContract.Voicemails.html#android.provider.VoicemailContract.Voicemails.TRANSCRIPTION" class="hiddenlink" target="rightframe">android.provider.VoicemailContract.Voicemails</A>
+</nobr><br>
+<!-- Class TransferQueue -->
+<A HREF="pkg_java.util.concurrent.html#TransferQueue" class="hiddenlink" target="rightframe"><b><i>TransferQueue</i></b></A><br>
+<!-- Class Transition -->
+<i>Transition</i><br>
+&nbsp;&nbsp;<A HREF="android.transition.Transition.html" class="hiddenlink" target="rightframe">android.transition</A><br>
+<!-- Constructor Transition -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Transition</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field transitionGroup -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.transitionGroup" class="hiddenlink" target="rightframe">transitionGroup</A>
+</nobr><br>
+<!-- Field transitionName -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.transitionName" class="hiddenlink" target="rightframe">transitionName</A>
+</nobr><br>
+<!-- Class TransitionSet -->
+<i>TransitionSet</i><br>
+&nbsp;&nbsp;<A HREF="android.transition.TransitionSet.html" class="hiddenlink" target="rightframe">android.transition</A><br>
+<!-- Constructor TransitionSet -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>TransitionSet</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field transitionVisibilityMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.transitionVisibilityMode" class="hiddenlink" target="rightframe">transitionVisibilityMode</A>
+</nobr><br>
+<!-- Field translateX -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.translateX" class="hiddenlink" target="rightframe">translateX</A>
+</nobr><br>
+<!-- Field translateY -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.translateY" class="hiddenlink" target="rightframe">translateY</A>
+</nobr><br>
+<!-- Field translationZ -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.translationZ" class="hiddenlink" target="rightframe">translationZ</A>
+</nobr><br>
+<!-- Field TRANSPORT_VPN -->
+<nobr><A HREF="android.net.NetworkCapabilities.html#android.net.NetworkCapabilities.TRANSPORT_VPN" class="hiddenlink" target="rightframe">TRANSPORT_VPN</A>
+</nobr><br>
+<!-- Field TRAVEL -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.TRAVEL" class="hiddenlink" target="rightframe">TRAVEL</A>
+</nobr><br>
+<!-- Field trimPathEnd -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.trimPathEnd" class="hiddenlink" target="rightframe">trimPathEnd</A>
+</nobr><br>
+<!-- Field trimPathOffset -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.trimPathOffset" class="hiddenlink" target="rightframe">trimPathOffset</A>
+</nobr><br>
+<!-- Field trimPathStart -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.trimPathStart" class="hiddenlink" target="rightframe">trimPathStart</A>
+</nobr><br>
+<!-- Class TtsSpan -->
+<A HREF="pkg_android.text.style.html#TtsSpan" class="hiddenlink" target="rightframe"><b>TtsSpan</b></A><br>
+<!-- Class TtsSpan.Builder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.Builder" class="hiddenlink" target="rightframe"><b>TtsSpan.Builder</b></A><br>
+<!-- Class TtsSpan.CardinalBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.CardinalBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.CardinalBuilder</b></A><br>
+<!-- Class TtsSpan.DateBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.DateBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.DateBuilder</b></A><br>
+<!-- Class TtsSpan.DecimalBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.DecimalBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.DecimalBuilder</b></A><br>
+<!-- Class TtsSpan.DigitsBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.DigitsBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.DigitsBuilder</b></A><br>
+<!-- Class TtsSpan.ElectronicBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.ElectronicBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.ElectronicBuilder</b></A><br>
+<!-- Class TtsSpan.FractionBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.FractionBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.FractionBuilder</b></A><br>
+<!-- Class TtsSpan.MeasureBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.MeasureBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.MeasureBuilder</b></A><br>
+<!-- Class TtsSpan.MoneyBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.MoneyBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.MoneyBuilder</b></A><br>
+<!-- Class TtsSpan.OrdinalBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.OrdinalBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.OrdinalBuilder</b></A><br>
+<!-- Class TtsSpan.SemioticClassBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.SemioticClassBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.SemioticClassBuilder</b></A><br>
+<!-- Class TtsSpan.TelephoneBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.TelephoneBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.TelephoneBuilder</b></A><br>
+<!-- Class TtsSpan.TextBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.TextBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.TextBuilder</b></A><br>
+<!-- Class TtsSpan.TimeBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.TimeBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.TimeBuilder</b></A><br>
+<!-- Class TtsSpan.VerbatimBuilder -->
+<A HREF="pkg_android.text.style.html#TtsSpan.VerbatimBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.VerbatimBuilder</b></A><br>
+<!-- Class TvContentRating -->
+<A HREF="pkg_android.media.tv.html#TvContentRating" class="hiddenlink" target="rightframe"><b>TvContentRating</b></A><br>
+<!-- Class TvContract -->
+<A HREF="android.media.tv.TvContract.html" class="hiddenlink" target="rightframe">TvContract</A><br>
+<!-- Class TvContract.Channels -->
+<A HREF="android.media.tv.TvContract.Channels.html" class="hiddenlink" target="rightframe">TvContract.Channels</A><br>
+<!-- Class TvContract.Programs -->
+<A HREF="android.media.tv.TvContract.Programs.html" class="hiddenlink" target="rightframe">TvContract.Programs</A><br>
+<!-- Class TvContract.Programs.Genres -->
+<A HREF="android.media.tv.TvContract.Programs.Genres.html" class="hiddenlink" target="rightframe">TvContract.Programs.Genres</A><br>
+<!-- Class TvInputInfo -->
+<A HREF="android.media.tv.TvInputInfo.html" class="hiddenlink" target="rightframe">TvInputInfo</A><br>
+<!-- Class TvInputManager -->
+<A HREF="android.media.tv.TvInputManager.html" class="hiddenlink" target="rightframe">TvInputManager</A><br>
+<!-- Class TvInputManager.TvInputCallback -->
+<A HREF="pkg_android.media.tv.html#TvInputManager.TvInputCallback" class="hiddenlink" target="rightframe"><b>TvInputManager.TvInputCallback</b></A><br>
+<!-- Class TvInputManager.TvInputListener -->
+<A HREF="pkg_android.media.tv.html#TvInputManager.TvInputListener" class="hiddenlink" target="rightframe"><strike>TvInputManager.TvInputListener</strike></A><br>
+<!-- Class TvInputService -->
+<A HREF="android.media.tv.TvInputService.html" class="hiddenlink" target="rightframe">TvInputService</A><br>
+<!-- Class TvInputService.HardwareSession -->
+<A HREF="pkg_android.media.tv.html#TvInputService.HardwareSession" class="hiddenlink" target="rightframe"><b>TvInputService.HardwareSession</b></A><br>
+<!-- Class TvInputService.Session -->
+<i>TvInputService.Session</i><br>
+&nbsp;&nbsp;<A HREF="android.media.tv.TvInputService.Session.html" class="hiddenlink" target="rightframe">android.media.tv</A><br>
+<!-- Constructor TvInputService.Session -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.ctor_changed(android.content.Context)" class="hiddenlink" target="rightframe">TvInputService.Session
+(<code>Context</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Field tvInputType -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.tvInputType" class="hiddenlink" target="rightframe"><strike>tvInputType</strike></A>
+</nobr><br>
+<!-- Class TvTrackInfo -->
+<A HREF="pkg_android.media.tv.html#TvTrackInfo" class="hiddenlink" target="rightframe"><b>TvTrackInfo</b></A><br>
+<!-- Class TvTrackInfo.Builder -->
+<A HREF="pkg_android.media.tv.html#TvTrackInfo.Builder" class="hiddenlink" target="rightframe"><b>TvTrackInfo.Builder</b></A><br>
+<!-- Class TvView -->
+<A HREF="android.media.tv.TvView.html" class="hiddenlink" target="rightframe">TvView</A><br>
+<!-- Class TvView.TvInputCallback -->
+<A HREF="pkg_android.media.tv.html#TvView.TvInputCallback" class="hiddenlink" target="rightframe"><b>TvView.TvInputCallback</b></A><br>
+<!-- Class TvView.TvInputListener -->
+<A HREF="pkg_android.media.tv.html#TvView.TvInputListener" class="hiddenlink" target="rightframe"><strike>TvView.TvInputListener</strike></A><br>
+<!-- Field TYPE_1SEG -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_1SEG" class="hiddenlink" target="rightframe">TYPE_1SEG</A>
+</nobr><br>
+<!-- Field TYPE_ATSC_C -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ATSC_C" class="hiddenlink" target="rightframe">TYPE_ATSC_C</A>
+</nobr><br>
+<!-- Field TYPE_ATSC_M_H -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ATSC_M_H" class="hiddenlink" target="rightframe">TYPE_ATSC_M_H</A>
+</nobr><br>
+<!-- Field TYPE_ATSC_T -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ATSC_T" class="hiddenlink" target="rightframe">TYPE_ATSC_T</A>
+</nobr><br>
+<!-- Field TYPE_CMMB -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_CMMB" class="hiddenlink" target="rightframe">TYPE_CMMB</A>
+</nobr><br>
+<!-- Field TYPE_COMPONENT -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_COMPONENT" class="hiddenlink" target="rightframe">TYPE_COMPONENT</A>
+</nobr><br>
+<!-- Field TYPE_COMPOSITE -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_COMPOSITE" class="hiddenlink" target="rightframe">TYPE_COMPOSITE</A>
+</nobr><br>
+<!-- Field TYPE_DISPLAY_PORT -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_DISPLAY_PORT" class="hiddenlink" target="rightframe">TYPE_DISPLAY_PORT</A>
+</nobr><br>
+<!-- Field TYPE_DTMB -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DTMB" class="hiddenlink" target="rightframe">TYPE_DTMB</A>
+</nobr><br>
+<!-- Field TYPE_DVB_C -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_C" class="hiddenlink" target="rightframe">TYPE_DVB_C</A>
+</nobr><br>
+<!-- Field TYPE_DVB_C2 -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_C2" class="hiddenlink" target="rightframe">TYPE_DVB_C2</A>
+</nobr><br>
+<!-- Field TYPE_DVB_H -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_H" class="hiddenlink" target="rightframe">TYPE_DVB_H</A>
+</nobr><br>
+<!-- Field TYPE_DVB_S -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_S" class="hiddenlink" target="rightframe">TYPE_DVB_S</A>
+</nobr><br>
+<!-- Field TYPE_DVB_S2 -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_S2" class="hiddenlink" target="rightframe">TYPE_DVB_S2</A>
+</nobr><br>
+<!-- Field TYPE_DVB_SH -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_SH" class="hiddenlink" target="rightframe">TYPE_DVB_SH</A>
+</nobr><br>
+<!-- Field TYPE_DVB_T -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_T" class="hiddenlink" target="rightframe">TYPE_DVB_T</A>
+</nobr><br>
+<!-- Field TYPE_DVB_T2 -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_T2" class="hiddenlink" target="rightframe">TYPE_DVB_T2</A>
+</nobr><br>
+<!-- Field TYPE_DVI -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_DVI" class="hiddenlink" target="rightframe">TYPE_DVI</A>
+</nobr><br>
+<!-- Field TYPE_HDMI -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_HDMI" class="hiddenlink" target="rightframe">TYPE_HDMI</A>
+</nobr><br>
+<!-- Field TYPE_INTEGER -->
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.TYPE_INTEGER" class="hiddenlink" target="rightframe">TYPE_INTEGER</A>
+</nobr><br>
+<!-- Field TYPE_ISDB_C -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ISDB_C" class="hiddenlink" target="rightframe">TYPE_ISDB_C</A>
+</nobr><br>
+<!-- Field TYPE_ISDB_S -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ISDB_S" class="hiddenlink" target="rightframe">TYPE_ISDB_S</A>
+</nobr><br>
+<!-- Field TYPE_ISDB_T -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ISDB_T" class="hiddenlink" target="rightframe">TYPE_ISDB_T</A>
+</nobr><br>
+<!-- Field TYPE_ISDB_TB -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ISDB_TB" class="hiddenlink" target="rightframe">TYPE_ISDB_TB</A>
+</nobr><br>
+<!-- Field TYPE_KEYGUARD -->
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.TYPE_KEYGUARD" class="hiddenlink" target="rightframe"><strike>TYPE_KEYGUARD</strike></A>
+</nobr><br>
+<!-- Field TYPE_NTSC -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_NTSC" class="hiddenlink" target="rightframe">TYPE_NTSC</A>
+</nobr><br>
+<!-- Field TYPE_OTHER -->
+<i>TYPE_OTHER</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_OTHER" class="hiddenlink" target="rightframe">android.media.tv.TvContract.Channels</A>
+</nobr><br>
+<!-- Field TYPE_OTHER -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_OTHER" class="hiddenlink" target="rightframe">android.media.tv.TvInputInfo</A>
+</nobr><br>
+<!-- Field TYPE_PAL -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_PAL" class="hiddenlink" target="rightframe">TYPE_PAL</A>
+</nobr><br>
+<!-- Field TYPE_PASSTHROUGH -->
+<i>TYPE_PASSTHROUGH</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_PASSTHROUGH" class="hiddenlink" target="rightframe"><strike>android.media.tv.TvContract.Channels</strike></A>
+</nobr><br>
+<!-- Field TYPE_PASSTHROUGH -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_PASSTHROUGH" class="hiddenlink" target="rightframe"><strike>android.media.tv.TvInputInfo</strike></A>
+</nobr><br>
+<!-- Field TYPE_S_DMB -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_S_DMB" class="hiddenlink" target="rightframe">TYPE_S_DMB</A>
+</nobr><br>
+<!-- Field TYPE_SCART -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_SCART" class="hiddenlink" target="rightframe">TYPE_SCART</A>
+</nobr><br>
+<!-- Field TYPE_SECAM -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_SECAM" class="hiddenlink" target="rightframe">TYPE_SECAM</A>
+</nobr><br>
+<!-- Field TYPE_STRING -->
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.TYPE_STRING" class="hiddenlink" target="rightframe">TYPE_STRING</A>
+</nobr><br>
+<!-- Field TYPE_SVIDEO -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_SVIDEO" class="hiddenlink" target="rightframe">TYPE_SVIDEO</A>
+</nobr><br>
+<!-- Field TYPE_T_DMB -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_T_DMB" class="hiddenlink" target="rightframe">TYPE_T_DMB</A>
+</nobr><br>
+<!-- Field TYPE_TUNER -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_TUNER" class="hiddenlink" target="rightframe">TYPE_TUNER</A>
+</nobr><br>
+<!-- Field TYPE_VGA -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_VGA" class="hiddenlink" target="rightframe">TYPE_VGA</A>
+</nobr><br>
+<!-- Field TYPE_VIRTUAL -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_VIRTUAL" class="hiddenlink" target="rightframe"><strike>TYPE_VIRTUAL</strike></A>
+</nobr><br>
+<!-- Field TYPE_VPN -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.TYPE_VPN" class="hiddenlink" target="rightframe">TYPE_VPN</A>
+</nobr><br>
+<!-- Class TypedArray -->
+<A HREF="android.content.res.TypedArray.html" class="hiddenlink" target="rightframe">TypedArray</A><br>
+<!-- Class UiModeManager -->
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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">
+<A HREF="android.app.UiModeManager.html" class="hiddenlink" target="rightframe">UiModeManager</A><br>
+<!-- Field UNICODE_LOCALE_EXTENSION -->
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.UNICODE_LOCALE_EXTENSION" class="hiddenlink" target="rightframe">UNICODE_LOCALE_EXTENSION</A>
+</nobr><br>
+<!-- Method uninstallAllUserCaCerts -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.uninstallAllUserCaCerts_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>uninstallAllUserCaCerts</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method uninstallCaCert -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.uninstallCaCert_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>uninstallCaCert</b>
+(<code>ComponentName, byte[]</code>)</A></nobr><br>
+<!-- Method unregisterAvailabilityCallback -->
+<nobr><A HREF="android.hardware.camera2.CameraManager.html#android.hardware.camera2.CameraManager.unregisterAvailabilityCallback_added(android.hardware.camera2.CameraManager.AvailabilityCallback)" class="hiddenlink" target="rightframe"><b>unregisterAvailabilityCallback</b>
+(<code>AvailabilityCallback</code>)</A></nobr><br>
+<!-- Method unregisterCallback -->
+<i>unregisterCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.unregisterCallback_added(android.content.pm.LauncherApps.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback</code>)</b>&nbsp;in&nbsp;android.content.pm.LauncherApps
+</A></nobr><br>
+<!-- Method unregisterCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.unregisterCallback_added(android.media.session.MediaController.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback</code>)</b>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+<!-- Method unregisterCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.unregisterCallback_added(android.media.tv.TvInputManager.TvInputCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>TvInputCallback</code>)</b>&nbsp;in&nbsp;android.media.tv.TvInputManager
+</A></nobr><br>
+<!-- Method unregisterDefaultNetworkActiveListener -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.unregisterDefaultNetworkActiveListener_removed(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><strike>unregisterDefaultNetworkActiveListener</strike>
+(<code>OnNetworkActiveListener</code>)</A></nobr><br>
+<!-- Method unregisterMediaButtonEventReceiver -->
+<i>unregisterMediaButtonEventReceiver</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.app.PendingIntent)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>PendingIntent</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+<!-- Method unregisterMediaButtonEventReceiver -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.content.ComponentName)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>ComponentName</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+<!-- Method unregisterRemoteControlClient -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterRemoteControlClient_changed(android.media.RemoteControlClient)" class="hiddenlink" target="rightframe">unregisterRemoteControlClient
+(<code>RemoteControlClient</code>)</A></nobr><br>
+<!-- Method unregisterRemoteController -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterRemoteController_changed(android.media.RemoteController)" class="hiddenlink" target="rightframe">unregisterRemoteController
+(<code>RemoteController</code>)</A></nobr><br>
+<!-- Method updateCursor -->
+<nobr><A HREF="android.view.inputmethod.InputMethodManager.html#android.view.inputmethod.InputMethodManager.updateCursor_changed(android.view.View, int, int, int, int)" class="hiddenlink" target="rightframe">updateCursor
+(<code>View, int, int, int, int</code>)</A></nobr><br>
+<!-- Method userActivity -->
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.userActivity_removed(long, boolean)" class="hiddenlink" target="rightframe"><strike>userActivity</strike>
+(<code>long, boolean</code>)</A></nobr><br>
+<!-- Class UserManager -->
+<A HREF="android.os.UserManager.html" class="hiddenlink" target="rightframe">UserManager</A><br>
+<!-- Class UtteranceProgressListener -->
+<A HREF="android.speech.tts.UtteranceProgressListener.html" class="hiddenlink" target="rightframe">UtteranceProgressListener</A><br>
+<!-- Class VectorDrawable -->
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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">
+<A HREF="pkg_android.graphics.drawable.html#VectorDrawable" class="hiddenlink" target="rightframe"><b>VectorDrawable</b></A><br>
+<!-- Method vibrate -->
+<i>vibrate</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_added(long, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long, AudioAttributes</code>)</b>&nbsp;in&nbsp;android.os.Vibrator
+</A></nobr><br>
+<!-- Method vibrate -->
+&nbsp;&nbsp;<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_added(long[], int, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long[], int, AudioAttributes</code>)</b>&nbsp;in&nbsp;android.os.Vibrator
+</A></nobr><br>
+<!-- Class Vibrator -->
+<A HREF="android.os.Vibrator.html" class="hiddenlink" target="rightframe">Vibrator</A><br>
+<!-- Field VIDEO_FORMAT_1080I -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_1080I" class="hiddenlink" target="rightframe">VIDEO_FORMAT_1080I</A>
+</nobr><br>
+<!-- Field VIDEO_FORMAT_1080P -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_1080P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_1080P</A>
+</nobr><br>
+<!-- Field VIDEO_FORMAT_2160P -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_2160P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_2160P</A>
+</nobr><br>
+<!-- Field VIDEO_FORMAT_240P -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_240P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_240P</A>
+</nobr><br>
+<!-- Field VIDEO_FORMAT_360P -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_360P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_360P</A>
+</nobr><br>
+<!-- Field VIDEO_FORMAT_4320P -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_4320P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_4320P</A>
+</nobr><br>
+<!-- Field VIDEO_FORMAT_480I -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_480I" class="hiddenlink" target="rightframe">VIDEO_FORMAT_480I</A>
+</nobr><br>
+<!-- Field VIDEO_FORMAT_480P -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_480P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_480P</A>
+</nobr><br>
+<!-- Field VIDEO_FORMAT_576I -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_576I" class="hiddenlink" target="rightframe">VIDEO_FORMAT_576I</A>
+</nobr><br>
+<!-- Field VIDEO_FORMAT_576P -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_576P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_576P</A>
+</nobr><br>
+<!-- Field VIDEO_FORMAT_720P -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_720P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_720P</A>
+</nobr><br>
+<!-- Field VIDEO_RESOLUTION_ED -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_ED" class="hiddenlink" target="rightframe">VIDEO_RESOLUTION_ED</A>
+</nobr><br>
+<!-- Field VIDEO_RESOLUTION_FHD -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_FHD" class="hiddenlink" target="rightframe">VIDEO_RESOLUTION_FHD</A>
+</nobr><br>
+<!-- Field VIDEO_RESOLUTION_HD -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_HD" class="hiddenlink" target="rightframe">VIDEO_RESOLUTION_HD</A>
+</nobr><br>
+<!-- Field VIDEO_RESOLUTION_SD -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_SD" class="hiddenlink" target="rightframe">VIDEO_RESOLUTION_SD</A>
+</nobr><br>
+<!-- Field VIDEO_RESOLUTION_UHD -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_UHD" class="hiddenlink" target="rightframe">VIDEO_RESOLUTION_UHD</A>
+</nobr><br>
+<!-- Field VIDEO_UNAVAILABLE_REASON_BUFFERING -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.VIDEO_UNAVAILABLE_REASON_BUFFERING" class="hiddenlink" target="rightframe">VIDEO_UNAVAILABLE_REASON_BUFFERING</A>
+</nobr><br>
+<!-- Field VIDEO_UNAVAILABLE_REASON_TUNING -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.VIDEO_UNAVAILABLE_REASON_TUNING" class="hiddenlink" target="rightframe">VIDEO_UNAVAILABLE_REASON_TUNING</A>
+</nobr><br>
+<!-- Field VIDEO_UNAVAILABLE_REASON_UNKNOWN -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.VIDEO_UNAVAILABLE_REASON_UNKNOWN" class="hiddenlink" target="rightframe">VIDEO_UNAVAILABLE_REASON_UNKNOWN</A>
+</nobr><br>
+<!-- Field VIDEO_UNAVAILABLE_REASON_WEAK_SIGNAL -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.VIDEO_UNAVAILABLE_REASON_WEAK_SIGNAL" class="hiddenlink" target="rightframe">VIDEO_UNAVAILABLE_REASON_WEAK_SIGNAL</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 ViewAnimationUtils -->
+<A HREF="android.view.ViewAnimationUtils.html" class="hiddenlink" target="rightframe">ViewAnimationUtils</A><br>
+<!-- Class ViewGroup -->
+<A HREF="android.view.ViewGroup.html" class="hiddenlink" target="rightframe">ViewGroup</A><br>
+<!-- Field viewName -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.viewName" class="hiddenlink" target="rightframe"><strike>viewName</strike></A>
+</nobr><br>
+<!-- Class ViewOutlineProvider -->
+<A HREF="pkg_android.view.html#ViewOutlineProvider" class="hiddenlink" target="rightframe"><b>ViewOutlineProvider</b></A><br>
+<!-- Class ViewParent -->
+<A HREF="android.view.ViewParent.html" class="hiddenlink" target="rightframe"><i>ViewParent</i></A><br>
+<!-- Field viewportHeight -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.viewportHeight" class="hiddenlink" target="rightframe">viewportHeight</A>
+</nobr><br>
+<!-- Field viewportWidth -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.viewportWidth" class="hiddenlink" target="rightframe">viewportWidth</A>
+</nobr><br>
+<!-- Field VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR -->
+<nobr><A HREF="android.hardware.display.DisplayManager.html#android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR" class="hiddenlink" target="rightframe">VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR</A>
+</nobr><br>
+<!-- Class VirtualDisplay -->
+<A HREF="android.hardware.display.VirtualDisplay.html" class="hiddenlink" target="rightframe">VirtualDisplay</A><br>
+<!-- Class VirtualDisplay.Callback -->
+<A HREF="pkg_android.hardware.display.html#VirtualDisplay.Callback" class="hiddenlink" target="rightframe"><b>VirtualDisplay.Callback</b></A><br>
+<!-- Field VIRTUALIZATION_MODE_AUTO -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_AUTO" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_AUTO</A>
+</nobr><br>
+<!-- Field VIRTUALIZATION_MODE_BINAURAL -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_BINAURAL" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_BINAURAL</A>
+</nobr><br>
+<!-- Field VIRTUALIZATION_MODE_OFF -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_OFF" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_OFF</A>
+</nobr><br>
+<!-- Field VIRTUALIZATION_MODE_TRANSAURAL -->
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_TRANSAURAL" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_TRANSAURAL</A>
+</nobr><br>
+<!-- Class Virtualizer -->
+<A HREF="android.media.audiofx.Virtualizer.html" class="hiddenlink" target="rightframe">Virtualizer</A><br>
+<!-- Class Visibility -->
+<i>Visibility</i><br>
+&nbsp;&nbsp;<A HREF="android.transition.Visibility.html" class="hiddenlink" target="rightframe">android.transition</A><br>
+<!-- Constructor Visibility -->
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Visibility</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class Voice -->
+<A HREF="pkg_android.speech.tts.html#Voice" class="hiddenlink" target="rightframe"><b>Voice</b></A><br>
+<!-- Field voiceIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.voiceIcon" class="hiddenlink" target="rightframe">voiceIcon</A>
+</nobr><br>
+<!-- Class VoiceInteractionService -->
+<A HREF="android.service.voice.VoiceInteractionService.html" class="hiddenlink" target="rightframe">VoiceInteractionService</A><br>
+<!-- Class VoiceInteractionSession -->
+<A HREF="android.service.voice.VoiceInteractionSession.html" class="hiddenlink" target="rightframe">VoiceInteractionSession</A><br>
+<!-- Class VoiceInteractionSession.Caller -->
+<A HREF="pkg_android.service.voice.html#VoiceInteractionSession.Caller" class="hiddenlink" target="rightframe"><strike>VoiceInteractionSession.Caller</strike></A><br>
+<!-- Class VoiceInteractionSession.Insets -->
+<A HREF="pkg_android.service.voice.html#VoiceInteractionSession.Insets" class="hiddenlink" target="rightframe"><strike>VoiceInteractionSession.Insets</strike></A><br>
+<!-- Class VoiceInteractionSession.Request -->
+<A HREF="pkg_android.service.voice.html#VoiceInteractionSession.Request" class="hiddenlink" target="rightframe"><strike>VoiceInteractionSession.Request</strike></A><br>
+<!-- Class VoiceInteractor -->
+<A HREF="pkg_android.app.html#VoiceInteractor" class="hiddenlink" target="rightframe"><strike>VoiceInteractor</strike></A><br>
+<!-- Class VoiceInteractor.AbortVoiceRequest -->
+<A HREF="pkg_android.app.html#VoiceInteractor.AbortVoiceRequest" class="hiddenlink" target="rightframe"><strike>VoiceInteractor.AbortVoiceRequest</strike></A><br>
+<!-- Class VoiceInteractor.CommandRequest -->
+<A HREF="pkg_android.app.html#VoiceInteractor.CommandRequest" class="hiddenlink" target="rightframe"><strike>VoiceInteractor.CommandRequest</strike></A><br>
+<!-- Class VoiceInteractor.ConfirmationRequest -->
+<A HREF="pkg_android.app.html#VoiceInteractor.ConfirmationRequest" class="hiddenlink" target="rightframe"><strike>VoiceInteractor.ConfirmationRequest</strike></A><br>
+<!-- Class VoiceInteractor.Request -->
+<A HREF="pkg_android.app.html#VoiceInteractor.Request" class="hiddenlink" target="rightframe"><strike>VoiceInteractor.Request</strike></A><br>
+<!-- Class VoicemailContract.Voicemails -->
+<A HREF="android.provider.VoicemailContract.Voicemails.html" class="hiddenlink" target="rightframe">VoicemailContract.Voicemails</A><br>
+<!-- Class VolumeProvider -->
+<A HREF="pkg_android.media.html#VolumeProvider" class="hiddenlink" target="rightframe"><b>VolumeProvider</b></A><br>
+<!-- Field VORBIS -->
+<nobr><A HREF="android.media.MediaRecorder.AudioEncoder.html#android.media.MediaRecorder.AudioEncoder.VORBIS" class="hiddenlink" target="rightframe">VORBIS</A>
+</nobr><br>
+<!-- Field VP8 -->
+<nobr><A HREF="android.media.MediaRecorder.VideoEncoder.html#android.media.MediaRecorder.VideoEncoder.VP8" class="hiddenlink" target="rightframe">VP8</A>
+</nobr><br>
+<!-- Class VpnService.Builder -->
+<A HREF="android.net.VpnService.Builder.html" class="hiddenlink" target="rightframe">VpnService.Builder</A><br>
+<!-- Method wakeUp -->
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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">
+<i>wakeUp</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.wakeUp_removed(long)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>long</code>)</strike>&nbsp;in&nbsp;android.os.PowerManager
+</A></nobr><br>
+<!-- Method wakeUp -->
+&nbsp;&nbsp;<nobr><A HREF="android.service.dreams.DreamService.html#android.service.dreams.DreamService.wakeUp_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.service.dreams.DreamService
+</A></nobr><br>
+<!-- Class WallpaperService.Engine -->
+<A HREF="android.service.wallpaper.WallpaperService.Engine.html" class="hiddenlink" target="rightframe">WallpaperService.Engine</A><br>
+<!-- Class WebChromeClient -->
+<A HREF="android.webkit.WebChromeClient.html" class="hiddenlink" target="rightframe">WebChromeClient</A><br>
+<!-- Class WebChromeClient.FileChooserParams -->
+<A HREF="pkg_android.webkit.html#WebChromeClient.FileChooserParams" class="hiddenlink" target="rightframe"><b>WebChromeClient.FileChooserParams</b></A><br>
+<!-- Field WEBM -->
+<nobr><A HREF="android.media.MediaRecorder.OutputFormat.html#android.media.MediaRecorder.OutputFormat.WEBM" class="hiddenlink" target="rightframe">WEBM</A>
+</nobr><br>
+<!-- Class WebResourceRequest -->
+<A HREF="pkg_android.webkit.html#WebResourceRequest" class="hiddenlink" target="rightframe"><b><i>WebResourceRequest</i></b></A><br>
+<!-- Class WebResourceResponse -->
+<i>WebResourceResponse</i><br>
+&nbsp;&nbsp;<A HREF="android.webkit.WebResourceResponse.html" class="hiddenlink" target="rightframe">android.webkit</A><br>
+<!-- Constructor WebResourceResponse -->
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.ctor_added(java.lang.String, java.lang.String, int, java.lang.String, java.util.Map<java.lang.String, java.lang.String>, java.io.InputStream)" class="hiddenlink" target="rightframe"><b>WebResourceResponse</b>
+(<code>String, String, int, String, Map&lt;String, String&gt;, InputStream</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class WebSyncManager -->
+<A HREF="android.webkit.WebSyncManager.html" class="hiddenlink" target="rightframe">WebSyncManager</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 WIDGET_CATEGORY_RECENTS -->
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.WIDGET_CATEGORY_RECENTS" class="hiddenlink" target="rightframe"><strike>WIDGET_CATEGORY_RECENTS</strike></A>
+</nobr><br>
+<!-- Field WIDGET_CATEGORY_SEARCHBOX -->
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX" class="hiddenlink" target="rightframe">WIDGET_CATEGORY_SEARCHBOX</A>
+</nobr><br>
+<!-- Field Widget_DeviceDefault_FastScroll -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_FastScroll" class="hiddenlink" target="rightframe">Widget_DeviceDefault_FastScroll</A>
+</nobr><br>
+<!-- Field Widget_DeviceDefault_Light_FastScroll -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_FastScroll" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_FastScroll</A>
+</nobr><br>
+<!-- Field Widget_DeviceDefault_Light_StackView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_StackView" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_StackView</A>
+</nobr><br>
+<!-- Field Widget_DeviceDefault_StackView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_StackView" class="hiddenlink" target="rightframe">Widget_DeviceDefault_StackView</A>
+</nobr><br>
+<!-- Field Widget_FastScroll -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_FastScroll" class="hiddenlink" target="rightframe">Widget_FastScroll</A>
+</nobr><br>
+<!-- Field Widget_Holo_FastScroll -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Holo_FastScroll" class="hiddenlink" target="rightframe"><strike>Widget_Holo_FastScroll</strike></A>
+</nobr><br>
+<!-- Field Widget_Holo_Light_Button_Borderless -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Holo_Light_Button_Borderless" class="hiddenlink" target="rightframe"><strike>Widget_Holo_Light_Button_Borderless</strike></A>
+</nobr><br>
+<!-- Field Widget_Holo_Light_FastScroll -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Holo_Light_FastScroll" class="hiddenlink" target="rightframe"><strike>Widget_Holo_Light_FastScroll</strike></A>
+</nobr><br>
+<!-- Field Widget_Holo_Light_StackView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Holo_Light_StackView" class="hiddenlink" target="rightframe"><strike>Widget_Holo_Light_StackView</strike></A>
+</nobr><br>
+<!-- Field Widget_Holo_StackView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Holo_StackView" class="hiddenlink" target="rightframe"><strike>Widget_Holo_StackView</strike></A>
+</nobr><br>
+<!-- Field Widget_Material -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material" class="hiddenlink" target="rightframe">Widget_Material</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar" class="hiddenlink" target="rightframe">Widget_Material_ActionBar</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionBar_Solid -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_Solid" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_Solid</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionBar_TabBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_TabBar" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_TabBar</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionBar_TabText -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_TabText" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_TabText</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionBar_TabView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_TabView" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_TabView</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionButton" class="hiddenlink" target="rightframe">Widget_Material_ActionButton</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionButton_CloseMode -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionButton_CloseMode" class="hiddenlink" target="rightframe">Widget_Material_ActionButton_CloseMode</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionButton_Overflow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionButton_Overflow" class="hiddenlink" target="rightframe">Widget_Material_ActionButton_Overflow</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionMode -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionMode" class="hiddenlink" target="rightframe">Widget_Material_ActionMode</A>
+</nobr><br>
+<!-- Field Widget_Material_AutoCompleteTextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_AutoCompleteTextView" class="hiddenlink" target="rightframe">Widget_Material_AutoCompleteTextView</A>
+</nobr><br>
+<!-- Field Widget_Material_Button -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button" class="hiddenlink" target="rightframe">Widget_Material_Button</A>
+</nobr><br>
+<!-- Field Widget_Material_Button_Borderless -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Borderless" class="hiddenlink" target="rightframe">Widget_Material_Button_Borderless</A>
+</nobr><br>
+<!-- Field Widget_Material_Button_Borderless_Colored -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Borderless_Colored" class="hiddenlink" target="rightframe">Widget_Material_Button_Borderless_Colored</A>
+</nobr><br>
+<!-- Field Widget_Material_Button_Borderless_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Borderless_Small" class="hiddenlink" target="rightframe">Widget_Material_Button_Borderless_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_Button_Inset -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Inset" class="hiddenlink" target="rightframe">Widget_Material_Button_Inset</A>
+</nobr><br>
+<!-- Field Widget_Material_Button_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Small" class="hiddenlink" target="rightframe">Widget_Material_Button_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_Button_Toggle -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Toggle" class="hiddenlink" target="rightframe">Widget_Material_Button_Toggle</A>
+</nobr><br>
+<!-- Field Widget_Material_ButtonBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ButtonBar" class="hiddenlink" target="rightframe">Widget_Material_ButtonBar</A>
+</nobr><br>
+<!-- Field Widget_Material_ButtonBar_AlertDialog -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ButtonBar_AlertDialog" class="hiddenlink" target="rightframe">Widget_Material_ButtonBar_AlertDialog</A>
+</nobr><br>
+<!-- Field Widget_Material_CalendarView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CalendarView" class="hiddenlink" target="rightframe">Widget_Material_CalendarView</A>
+</nobr><br>
+<!-- Field Widget_Material_CheckedTextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CheckedTextView" class="hiddenlink" target="rightframe">Widget_Material_CheckedTextView</A>
+</nobr><br>
+<!-- Field Widget_Material_CompoundButton_CheckBox -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CompoundButton_CheckBox" class="hiddenlink" target="rightframe">Widget_Material_CompoundButton_CheckBox</A>
+</nobr><br>
+<!-- Field Widget_Material_CompoundButton_RadioButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CompoundButton_RadioButton" class="hiddenlink" target="rightframe">Widget_Material_CompoundButton_RadioButton</A>
+</nobr><br>
+<!-- Field Widget_Material_CompoundButton_Star -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CompoundButton_Star" class="hiddenlink" target="rightframe">Widget_Material_CompoundButton_Star</A>
+</nobr><br>
+<!-- Field Widget_Material_DatePicker -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_DatePicker" class="hiddenlink" target="rightframe">Widget_Material_DatePicker</A>
+</nobr><br>
+<!-- Field Widget_Material_DropDownItem -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_DropDownItem" class="hiddenlink" target="rightframe">Widget_Material_DropDownItem</A>
+</nobr><br>
+<!-- Field Widget_Material_DropDownItem_Spinner -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_DropDownItem_Spinner" class="hiddenlink" target="rightframe">Widget_Material_DropDownItem_Spinner</A>
+</nobr><br>
+<!-- Field Widget_Material_EditText -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_EditText" class="hiddenlink" target="rightframe">Widget_Material_EditText</A>
+</nobr><br>
+<!-- Field Widget_Material_ExpandableListView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ExpandableListView" class="hiddenlink" target="rightframe">Widget_Material_ExpandableListView</A>
+</nobr><br>
+<!-- Field Widget_Material_FastScroll -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_FastScroll" class="hiddenlink" target="rightframe">Widget_Material_FastScroll</A>
+</nobr><br>
+<!-- Field Widget_Material_GridView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_GridView" class="hiddenlink" target="rightframe">Widget_Material_GridView</A>
+</nobr><br>
+<!-- Field Widget_Material_HorizontalScrollView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_HorizontalScrollView" class="hiddenlink" target="rightframe">Widget_Material_HorizontalScrollView</A>
+</nobr><br>
+<!-- Field Widget_Material_ImageButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ImageButton" class="hiddenlink" target="rightframe">Widget_Material_ImageButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Light -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light" class="hiddenlink" target="rightframe">Widget_Material_Light</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionBar_Solid -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_Solid" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_Solid</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionBar_TabBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_TabBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_TabBar</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionBar_TabText -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_TabText" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_TabText</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionBar_TabView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_TabView" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_TabView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionButton" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionButton_CloseMode -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionButton_CloseMode" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionButton_CloseMode</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionButton_Overflow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionButton_Overflow" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionButton_Overflow</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionMode -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionMode" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionMode</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_AutoCompleteTextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_AutoCompleteTextView" class="hiddenlink" target="rightframe">Widget_Material_Light_AutoCompleteTextView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button" class="hiddenlink" target="rightframe">Widget_Material_Light_Button</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button_Borderless -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Borderless" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Borderless</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button_Borderless_Colored -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Borderless_Colored" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Borderless_Colored</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button_Borderless_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Borderless_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Borderless_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button_Inset -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Inset" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Inset</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button_Toggle -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Toggle" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Toggle</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ButtonBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ButtonBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ButtonBar</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ButtonBar_AlertDialog -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ButtonBar_AlertDialog" class="hiddenlink" target="rightframe">Widget_Material_Light_ButtonBar_AlertDialog</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_CalendarView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CalendarView" class="hiddenlink" target="rightframe">Widget_Material_Light_CalendarView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_CheckedTextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CheckedTextView" class="hiddenlink" target="rightframe">Widget_Material_Light_CheckedTextView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_CompoundButton_CheckBox -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CompoundButton_CheckBox" class="hiddenlink" target="rightframe">Widget_Material_Light_CompoundButton_CheckBox</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_CompoundButton_RadioButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CompoundButton_RadioButton" class="hiddenlink" target="rightframe">Widget_Material_Light_CompoundButton_RadioButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_CompoundButton_Star -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CompoundButton_Star" class="hiddenlink" target="rightframe">Widget_Material_Light_CompoundButton_Star</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_DatePicker -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_DatePicker" class="hiddenlink" target="rightframe">Widget_Material_Light_DatePicker</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_DropDownItem -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_DropDownItem" class="hiddenlink" target="rightframe">Widget_Material_Light_DropDownItem</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_DropDownItem_Spinner -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_DropDownItem_Spinner" class="hiddenlink" target="rightframe">Widget_Material_Light_DropDownItem_Spinner</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_EditText -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_EditText" class="hiddenlink" target="rightframe">Widget_Material_Light_EditText</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ExpandableListView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ExpandableListView" class="hiddenlink" target="rightframe">Widget_Material_Light_ExpandableListView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_FastScroll -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_FastScroll" class="hiddenlink" target="rightframe">Widget_Material_Light_FastScroll</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_GridView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_GridView" class="hiddenlink" target="rightframe">Widget_Material_Light_GridView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_HorizontalScrollView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_HorizontalScrollView" class="hiddenlink" target="rightframe">Widget_Material_Light_HorizontalScrollView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ImageButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ImageButton" class="hiddenlink" target="rightframe">Widget_Material_Light_ImageButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ListPopupWindow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ListPopupWindow" class="hiddenlink" target="rightframe">Widget_Material_Light_ListPopupWindow</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ListView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ListView" class="hiddenlink" target="rightframe">Widget_Material_Light_ListView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ListView_DropDown -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ListView_DropDown" class="hiddenlink" target="rightframe">Widget_Material_Light_ListView_DropDown</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_MediaRouteButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_MediaRouteButton" class="hiddenlink" target="rightframe">Widget_Material_Light_MediaRouteButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_PopupMenu -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_PopupMenu" class="hiddenlink" target="rightframe">Widget_Material_Light_PopupMenu</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_PopupMenu_Overflow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_PopupMenu_Overflow" class="hiddenlink" target="rightframe">Widget_Material_Light_PopupMenu_Overflow</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_PopupWindow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_PopupWindow" class="hiddenlink" target="rightframe">Widget_Material_Light_PopupWindow</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Horizontal -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Horizontal" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Horizontal</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Inverse" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Inverse</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Large -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Large" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Large</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Large_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Large_Inverse" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Large_Inverse</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Small_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Small_Inverse" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Small_Inverse</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Small_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Small_Title" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Small_Title</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_RatingBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_RatingBar" class="hiddenlink" target="rightframe">Widget_Material_Light_RatingBar</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_RatingBar_Indicator -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_RatingBar_Indicator" class="hiddenlink" target="rightframe">Widget_Material_Light_RatingBar_Indicator</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_RatingBar_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_RatingBar_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_RatingBar_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ScrollView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ScrollView" class="hiddenlink" target="rightframe">Widget_Material_Light_ScrollView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_SearchView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_SearchView" class="hiddenlink" target="rightframe">Widget_Material_Light_SearchView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_SeekBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_SeekBar" class="hiddenlink" target="rightframe">Widget_Material_Light_SeekBar</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_SegmentedButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_SegmentedButton" class="hiddenlink" target="rightframe">Widget_Material_Light_SegmentedButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Spinner -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Spinner" class="hiddenlink" target="rightframe">Widget_Material_Light_Spinner</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Spinner_Underlined -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Spinner_Underlined" class="hiddenlink" target="rightframe">Widget_Material_Light_Spinner_Underlined</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_StackView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_StackView" class="hiddenlink" target="rightframe">Widget_Material_Light_StackView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Tab -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Tab" class="hiddenlink" target="rightframe">Widget_Material_Light_Tab</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_TabWidget -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TabWidget" class="hiddenlink" target="rightframe">Widget_Material_Light_TabWidget</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_TextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TextView" class="hiddenlink" target="rightframe">Widget_Material_Light_TextView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_TextView_SpinnerItem -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TextView_SpinnerItem" class="hiddenlink" target="rightframe">Widget_Material_Light_TextView_SpinnerItem</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_TimePicker -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TimePicker" class="hiddenlink" target="rightframe">Widget_Material_Light_TimePicker</A>
+</nobr><br>
+<!-- Field Widget_Material_ListPopupWindow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ListPopupWindow" class="hiddenlink" target="rightframe">Widget_Material_ListPopupWindow</A>
+</nobr><br>
+<!-- Field Widget_Material_ListView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ListView" class="hiddenlink" target="rightframe">Widget_Material_ListView</A>
+</nobr><br>
+<!-- Field Widget_Material_ListView_DropDown -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ListView_DropDown" class="hiddenlink" target="rightframe">Widget_Material_ListView_DropDown</A>
+</nobr><br>
+<!-- Field Widget_Material_MediaRouteButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_MediaRouteButton" class="hiddenlink" target="rightframe">Widget_Material_MediaRouteButton</A>
+</nobr><br>
+<!-- Field Widget_Material_PopupMenu -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_PopupMenu" class="hiddenlink" target="rightframe">Widget_Material_PopupMenu</A>
+</nobr><br>
+<!-- Field Widget_Material_PopupMenu_Overflow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_PopupMenu_Overflow" class="hiddenlink" target="rightframe">Widget_Material_PopupMenu_Overflow</A>
+</nobr><br>
+<!-- Field Widget_Material_PopupWindow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_PopupWindow" class="hiddenlink" target="rightframe">Widget_Material_PopupWindow</A>
+</nobr><br>
+<!-- Field Widget_Material_ProgressBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar</A>
+</nobr><br>
+<!-- Field Widget_Material_ProgressBar_Horizontal -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Horizontal" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Horizontal</A>
+</nobr><br>
+<!-- Field Widget_Material_ProgressBar_Large -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Large" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Large</A>
+</nobr><br>
+<!-- Field Widget_Material_ProgressBar_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Small" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_ProgressBar_Small_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Small_Title" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Small_Title</A>
+</nobr><br>
+<!-- Field Widget_Material_RatingBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_RatingBar" class="hiddenlink" target="rightframe">Widget_Material_RatingBar</A>
+</nobr><br>
+<!-- Field Widget_Material_RatingBar_Indicator -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_RatingBar_Indicator" class="hiddenlink" target="rightframe">Widget_Material_RatingBar_Indicator</A>
+</nobr><br>
+<!-- Field Widget_Material_RatingBar_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_RatingBar_Small" class="hiddenlink" target="rightframe">Widget_Material_RatingBar_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_ScrollView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ScrollView" class="hiddenlink" target="rightframe">Widget_Material_ScrollView</A>
+</nobr><br>
+<!-- Field Widget_Material_SearchView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_SearchView" class="hiddenlink" target="rightframe">Widget_Material_SearchView</A>
+</nobr><br>
+<!-- Field Widget_Material_SeekBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_SeekBar" class="hiddenlink" target="rightframe">Widget_Material_SeekBar</A>
+</nobr><br>
+<!-- Field Widget_Material_SegmentedButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_SegmentedButton" class="hiddenlink" target="rightframe">Widget_Material_SegmentedButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Spinner -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Spinner" class="hiddenlink" target="rightframe">Widget_Material_Spinner</A>
+</nobr><br>
+<!-- Field Widget_Material_Spinner_Underlined -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Spinner_Underlined" class="hiddenlink" target="rightframe">Widget_Material_Spinner_Underlined</A>
+</nobr><br>
+<!-- Field Widget_Material_StackView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_StackView" class="hiddenlink" target="rightframe">Widget_Material_StackView</A>
+</nobr><br>
+<!-- Field Widget_Material_Tab -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Tab" class="hiddenlink" target="rightframe">Widget_Material_Tab</A>
+</nobr><br>
+<!-- Field Widget_Material_TabWidget -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TabWidget" class="hiddenlink" target="rightframe">Widget_Material_TabWidget</A>
+</nobr><br>
+<!-- Field Widget_Material_TextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TextView" class="hiddenlink" target="rightframe">Widget_Material_TextView</A>
+</nobr><br>
+<!-- Field Widget_Material_TextView_SpinnerItem -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TextView_SpinnerItem" class="hiddenlink" target="rightframe">Widget_Material_TextView_SpinnerItem</A>
+</nobr><br>
+<!-- Field Widget_Material_TimePicker -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TimePicker" class="hiddenlink" target="rightframe">Widget_Material_TimePicker</A>
+</nobr><br>
+<!-- Field Widget_Material_Toolbar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Toolbar" class="hiddenlink" target="rightframe">Widget_Material_Toolbar</A>
+</nobr><br>
+<!-- Field Widget_Material_Toolbar_Button_Navigation -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Toolbar_Button_Navigation" class="hiddenlink" target="rightframe">Widget_Material_Toolbar_Button_Navigation</A>
+</nobr><br>
+<!-- Field Widget_Material_WebTextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_WebTextView" class="hiddenlink" target="rightframe">Widget_Material_WebTextView</A>
+</nobr><br>
+<!-- Field Widget_Material_WebView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_WebView" class="hiddenlink" target="rightframe">Widget_Material_WebView</A>
+</nobr><br>
+<!-- Field Widget_StackView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_StackView" class="hiddenlink" target="rightframe">Widget_StackView</A>
+</nobr><br>
+<!-- Field Widget_Toolbar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Toolbar" class="hiddenlink" target="rightframe">Widget_Toolbar</A>
+</nobr><br>
+<!-- Field Widget_Toolbar_Button_Navigation -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Toolbar_Button_Navigation" class="hiddenlink" target="rightframe">Widget_Toolbar_Button_Navigation</A>
+</nobr><br>
+<!-- Class WifiConfiguration -->
+<A HREF="android.net.wifi.WifiConfiguration.html" class="hiddenlink" target="rightframe">WifiConfiguration</A><br>
+<!-- Class WifiManager -->
+<A HREF="android.net.wifi.WifiManager.html" class="hiddenlink" target="rightframe">WifiManager</A><br>
+<!-- Class WifiManager.WpsCallback -->
+<A HREF="pkg_android.net.wifi.html#WifiManager.WpsCallback" class="hiddenlink" target="rightframe"><b>WifiManager.WpsCallback</b></A><br>
+<!-- Class Window -->
+<A HREF="android.view.Window.html" class="hiddenlink" target="rightframe">Window</A><br>
+<!-- Field windowActivityTransitions -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowActivityTransitions" class="hiddenlink" target="rightframe">windowActivityTransitions</A>
+</nobr><br>
+<!-- Field windowAllowEnterTransitionOverlap -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowAllowEnterTransitionOverlap" class="hiddenlink" target="rightframe">windowAllowEnterTransitionOverlap</A>
+</nobr><br>
+<!-- Field windowAllowExitTransitionOverlap -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowAllowExitTransitionOverlap" class="hiddenlink" target="rightframe"><strike>windowAllowExitTransitionOverlap</strike></A>
+</nobr><br>
+<!-- Field windowAllowReturnTransitionOverlap -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowAllowReturnTransitionOverlap" class="hiddenlink" target="rightframe">windowAllowReturnTransitionOverlap</A>
+</nobr><br>
+<!-- Field windowClipToOutline -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowClipToOutline" class="hiddenlink" target="rightframe">windowClipToOutline</A>
+</nobr><br>
+<!-- Field windowContentTransitionManager -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowContentTransitionManager" class="hiddenlink" target="rightframe">windowContentTransitionManager</A>
+</nobr><br>
+<!-- Field windowContentTransitions -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowContentTransitions" class="hiddenlink" target="rightframe">windowContentTransitions</A>
+</nobr><br>
+<!-- Field windowDrawsSystemBarBackgrounds -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowDrawsSystemBarBackgrounds" class="hiddenlink" target="rightframe">windowDrawsSystemBarBackgrounds</A>
+</nobr><br>
+<!-- Field windowElevation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowElevation" class="hiddenlink" target="rightframe">windowElevation</A>
+</nobr><br>
+<!-- Field windowEnterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowEnterTransition" class="hiddenlink" target="rightframe">windowEnterTransition</A>
+</nobr><br>
+<!-- Field windowExitTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowExitTransition" class="hiddenlink" target="rightframe">windowExitTransition</A>
+</nobr><br>
+<!-- Class WindowInsets -->
+<A HREF="android.view.WindowInsets.html" class="hiddenlink" target="rightframe">WindowInsets</A><br>
+<!-- Class WindowManager.LayoutParams -->
+<A HREF="android.view.WindowManager.LayoutParams.html" class="hiddenlink" target="rightframe">WindowManager.LayoutParams</A><br>
+<!-- Field windowReenterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowReenterTransition" class="hiddenlink" target="rightframe">windowReenterTransition</A>
+</nobr><br>
+<!-- Field windowReturnTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowReturnTransition" class="hiddenlink" target="rightframe">windowReturnTransition</A>
+</nobr><br>
+<!-- Field windowSharedElementEnterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementEnterTransition" class="hiddenlink" target="rightframe">windowSharedElementEnterTransition</A>
+</nobr><br>
+<!-- Field windowSharedElementExitTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementExitTransition" class="hiddenlink" target="rightframe">windowSharedElementExitTransition</A>
+</nobr><br>
+<!-- Field windowSharedElementReenterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementReenterTransition" class="hiddenlink" target="rightframe">windowSharedElementReenterTransition</A>
+</nobr><br>
+<!-- Field windowSharedElementReturnTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementReturnTransition" class="hiddenlink" target="rightframe">windowSharedElementReturnTransition</A>
+</nobr><br>
+<!-- Field windowSharedElementsUseOverlay -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementsUseOverlay" class="hiddenlink" target="rightframe">windowSharedElementsUseOverlay</A>
+</nobr><br>
+<!-- Field windowTransitionBackgroundFadeDuration -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowTransitionBackgroundFadeDuration" class="hiddenlink" target="rightframe">windowTransitionBackgroundFadeDuration</A>
+</nobr><br>
+<!-- Field WPS_AUTH_FAILURE -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_AUTH_FAILURE" class="hiddenlink" target="rightframe">WPS_AUTH_FAILURE</A>
+</nobr><br>
+<!-- Field WPS_OVERLAP_ERROR -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_OVERLAP_ERROR" class="hiddenlink" target="rightframe">WPS_OVERLAP_ERROR</A>
+</nobr><br>
+<!-- Field WPS_TIMED_OUT -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_TIMED_OUT" class="hiddenlink" target="rightframe">WPS_TIMED_OUT</A>
+</nobr><br>
+<!-- Field WPS_TKIP_ONLY_PROHIBITED -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_TKIP_ONLY_PROHIBITED" class="hiddenlink" target="rightframe">WPS_TKIP_ONLY_PROHIBITED</A>
+</nobr><br>
+<!-- Field WPS_WEP_PROHIBITED -->
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_WEP_PROHIBITED" class="hiddenlink" target="rightframe">WPS_WEP_PROHIBITED</A>
+</nobr><br>
+<!-- Class WpsInfo -->
+<A HREF="android.net.wifi.WpsInfo.html" class="hiddenlink" target="rightframe">WpsInfo</A><br>
+<!-- Field WRITE_SOCIAL_STREAM -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.WRITE_SOCIAL_STREAM" class="hiddenlink" target="rightframe">WRITE_SOCIAL_STREAM</A>
+</nobr><br>
+<!-- Field WRITE_VOICEMAIL -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.WRITE_VOICEMAIL" class="hiddenlink" target="rightframe">WRITE_VOICEMAIL</A>
+</nobr><br>
+<!-- Method writeByteBuffer -->
+<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.writeByteBuffer_added(java.io.OutputStream, android.util.Size, java.nio.ByteBuffer, long)" class="hiddenlink" target="rightframe"><b>writeByteBuffer</b>
+(<code>OutputStream, Size, ByteBuffer, long</code>)</A></nobr><br>
+<!-- Method writeInputStream -->
+<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.writeInputStream_added(java.io.OutputStream, android.util.Size, java.io.InputStream, long)" class="hiddenlink" target="rightframe"><b>writeInputStream</b>
+(<code>OutputStream, Size, InputStream, long</code>)</A></nobr><br>
+<!-- Method writeSize -->
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.writeSize_added(android.util.Size)" class="hiddenlink" target="rightframe"><b>writeSize</b>
+(<code>Size</code>)</A></nobr><br>
+<!-- Method writeSizeF -->
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.writeSizeF_added(android.util.SizeF)" class="hiddenlink" target="rightframe"><b>writeSizeF</b>
+(<code>SizeF</code>)</A></nobr><br>
+<!-- Field yearListItemTextAppearance -->
+<A NAME="Y"></A>
+<br><font size="+2">Y</font>&nbsp;
+<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.R.attr.html#android.R.attr.yearListItemTextAppearance" class="hiddenlink" target="rightframe">yearListItemTextAppearance</A>
+</nobr><br>
+<!-- Field yearListSelectorColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.yearListSelectorColor" class="hiddenlink" target="rightframe">yearListSelectorColor</A>
+</nobr><br>
+<!-- Method zoomBy -->
+<A NAME="Z"></A>
+<br><font size="+2">Z</font>&nbsp;
+<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">
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.zoomBy_added(float)" class="hiddenlink" target="rightframe"><b>zoomBy</b>
+(<code>float</code>)</A></nobr><br>
+<script src="//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/preview-21/changes/alldiffs_index_changes.html b/docs/html/sdk/api_diff/preview-21/changes/alldiffs_index_changes.html
new file mode 100644
index 0000000..6314b63
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/alldiffs_index_changes.html
@@ -0,0 +1,2743 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<!-- Class AbsListView -->
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.widget.AbsListView.html" class="hiddenlink" target="rightframe">AbsListView</A><br>
+<!-- Class AbsSeekBar -->
+<A HREF="android.widget.AbsSeekBar.html" class="hiddenlink" target="rightframe">AbsSeekBar</A><br>
+<!-- Class AbstractQueuedLongSynchronizer -->
+<A HREF="java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html" class="hiddenlink" target="rightframe">AbstractQueuedLongSynchronizer</A><br>
+<!-- Class AbstractQueuedSynchronizer -->
+<A HREF="java.util.concurrent.locks.AbstractQueuedSynchronizer.html" class="hiddenlink" target="rightframe">AbstractQueuedSynchronizer</A><br>
+<!-- Class AccessibilityNodeInfo -->
+<A HREF="android.view.accessibility.AccessibilityNodeInfo.html" class="hiddenlink" target="rightframe">AccessibilityNodeInfo</A><br>
+<!-- Class AccessibilityService -->
+<A HREF="android.accessibilityservice.AccessibilityService.html" class="hiddenlink" target="rightframe">AccessibilityService</A><br>
+<!-- Class AccessibilityWindowInfo -->
+<A HREF="android.view.accessibility.AccessibilityWindowInfo.html" class="hiddenlink" target="rightframe">AccessibilityWindowInfo</A><br>
+<!-- Field ACCOUNT_NAME -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.ACCOUNT_NAME" class="hiddenlink" target="rightframe">ACCOUNT_NAME</A>
+</nobr><br>
+<!-- Field ACCOUNT_TYPE -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.ACCOUNT_TYPE" class="hiddenlink" target="rightframe">ACCOUNT_TYPE</A>
+</nobr><br>
+<!-- Class AccountManager -->
+<A HREF="android.accounts.AccountManager.html" class="hiddenlink" target="rightframe">AccountManager</A><br>
+<!-- Field ACTION_PROFILE_PROVISIONING_COMPLETE -->
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.ACTION_PROFILE_PROVISIONING_COMPLETE" class="hiddenlink" target="rightframe">ACTION_PROFILE_PROVISIONING_COMPLETE</A>
+</nobr><br>
+<!-- Field ACTION_PROVISION_MANAGED_PROFILE -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.ACTION_PROVISION_MANAGED_PROFILE" class="hiddenlink" target="rightframe">ACTION_PROVISION_MANAGED_PROFILE</A>
+</nobr><br>
+<!-- Class ActionBar -->
+<A HREF="android.app.ActionBar.html" class="hiddenlink" target="rightframe">ActionBar</A><br>
+<!-- Class ActionBar.LayoutParams -->
+<A HREF="android.app.ActionBar.LayoutParams.html" class="hiddenlink" target="rightframe">ActionBar.LayoutParams</A><br>
+<!-- Field actionBarTheme -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionBarTheme" class="hiddenlink" target="rightframe">actionBarTheme</A>
+</nobr><br>
+<!-- Class ActionMenuView -->
+<A HREF="android.widget.ActionMenuView.html" class="hiddenlink" target="rightframe">ActionMenuView</A><br>
+<!-- Field actionOverflowMenuStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionOverflowMenuStyle" class="hiddenlink" target="rightframe">actionOverflowMenuStyle</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.AppTask -->
+<A HREF="android.app.ActivityManager.AppTask.html" class="hiddenlink" target="rightframe">ActivityManager.AppTask</A><br>
+<!-- Class ActivityManager.RecentTaskInfo -->
+<A HREF="android.app.ActivityManager.RecentTaskInfo.html" class="hiddenlink" target="rightframe">ActivityManager.RecentTaskInfo</A><br>
+<!-- Class ActivityManager.RunningAppProcessInfo -->
+<A HREF="android.app.ActivityManager.RunningAppProcessInfo.html" class="hiddenlink" target="rightframe">ActivityManager.RunningAppProcessInfo</A><br>
+<!-- Class ActivityOptions -->
+<A HREF="android.app.ActivityOptions.html" class="hiddenlink" target="rightframe">ActivityOptions</A><br>
+<!-- Method addTransition -->
+<nobr><A HREF="android.graphics.drawable.AnimatedStateListDrawable.html#android.graphics.drawable.AnimatedStateListDrawable.addTransition_changed(int, int, T, boolean)" class="hiddenlink" target="rightframe">addTransition
+(<code>int, int, T, boolean</code>)</A></nobr><br>
+<!-- Class AdvertiseCallback -->
+<A HREF="android.bluetooth.le.AdvertiseCallback.html" class="hiddenlink" target="rightframe">AdvertiseCallback</A><br>
+<!-- Class AdvertiseSettings -->
+<A HREF="android.bluetooth.le.AdvertiseSettings.html" class="hiddenlink" target="rightframe">AdvertiseSettings</A><br>
+<!-- Class AdvertiseSettings.Builder -->
+<A HREF="android.bluetooth.le.AdvertiseSettings.Builder.html" class="hiddenlink" target="rightframe">AdvertiseSettings.Builder</A><br>
+<!-- Class AlarmManager -->
+<A HREF="android.app.AlarmManager.html" class="hiddenlink" target="rightframe">AlarmManager</A><br>
+<!-- Package android -->
+<A HREF="pkg_android.html" class="hiddenlink" target="rightframe">android</A><br>
+<!-- Package android.accessibilityservice -->
+<A HREF="pkg_android.accessibilityservice.html" class="hiddenlink" target="rightframe">android.accessibilityservice</A><br>
+<!-- Package android.accounts -->
+<A HREF="pkg_android.accounts.html" class="hiddenlink" target="rightframe">android.accounts</A><br>
+<!-- Package android.app -->
+<A HREF="pkg_android.app.html" class="hiddenlink" target="rightframe">android.app</A><br>
+<!-- Package android.app.admin -->
+<A HREF="pkg_android.app.admin.html" class="hiddenlink" target="rightframe">android.app.admin</A><br>
+<!-- Package android.app.backup -->
+<A HREF="pkg_android.app.backup.html" class="hiddenlink" target="rightframe">android.app.backup</A><br>
+<!-- Package android.app.job -->
+<A HREF="pkg_android.app.job.html" class="hiddenlink" target="rightframe">android.app.job</A><br>
+<!-- Package android.appwidget -->
+<A HREF="pkg_android.appwidget.html" class="hiddenlink" target="rightframe">android.appwidget</A><br>
+<!-- Package android.bluetooth -->
+<A HREF="pkg_android.bluetooth.html" class="hiddenlink" target="rightframe">android.bluetooth</A><br>
+<!-- Package android.bluetooth.le -->
+<A HREF="pkg_android.bluetooth.le.html" class="hiddenlink" target="rightframe">android.bluetooth.le</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.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.graphics.drawable.shapes -->
+<A HREF="pkg_android.graphics.drawable.shapes.html" class="hiddenlink" target="rightframe">android.graphics.drawable.shapes</A><br>
+<!-- Package android.hardware -->
+<A HREF="pkg_android.hardware.html" class="hiddenlink" target="rightframe">android.hardware</A><br>
+<!-- Package android.hardware.camera2 -->
+<A HREF="pkg_android.hardware.camera2.html" class="hiddenlink" target="rightframe">android.hardware.camera2</A><br>
+<!-- Package android.hardware.camera2.params -->
+<A HREF="pkg_android.hardware.camera2.params.html" class="hiddenlink" target="rightframe">android.hardware.camera2.params</A><br>
+<!-- Package android.hardware.display -->
+<A HREF="pkg_android.hardware.display.html" class="hiddenlink" target="rightframe">android.hardware.display</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.media.audiofx -->
+<A HREF="pkg_android.media.audiofx.html" class="hiddenlink" target="rightframe">android.media.audiofx</A><br>
+<!-- Package android.media.session -->
+<A HREF="pkg_android.media.session.html" class="hiddenlink" target="rightframe">android.media.session</A><br>
+<!-- Package android.media.tv -->
+<A HREF="pkg_android.media.tv.html" class="hiddenlink" target="rightframe">android.media.tv</A><br>
+<!-- Package android.net -->
+<A HREF="pkg_android.net.html" class="hiddenlink" target="rightframe">android.net</A><br>
+<!-- Package android.net.wifi -->
+<A HREF="pkg_android.net.wifi.html" class="hiddenlink" target="rightframe">android.net.wifi</A><br>
+<!-- Package android.nfc.cardemulation -->
+<A HREF="pkg_android.nfc.cardemulation.html" class="hiddenlink" target="rightframe">android.nfc.cardemulation</A><br>
+<!-- Package android.os -->
+<A HREF="pkg_android.os.html" class="hiddenlink" target="rightframe">android.os</A><br>
+<!-- Package android.printservice -->
+<A HREF="pkg_android.printservice.html" class="hiddenlink" target="rightframe">android.printservice</A><br>
+<!-- Package android.provider -->
+<A HREF="pkg_android.provider.html" class="hiddenlink" target="rightframe">android.provider</A><br>
+<!-- Package android.renderscript -->
+<A HREF="pkg_android.renderscript.html" class="hiddenlink" target="rightframe">android.renderscript</A><br>
+<!-- Package android.service.dreams -->
+<A HREF="pkg_android.service.dreams.html" class="hiddenlink" target="rightframe">android.service.dreams</A><br>
+<!-- Package android.service.notification -->
+<A HREF="pkg_android.service.notification.html" class="hiddenlink" target="rightframe">android.service.notification</A><br>
+<!-- Package android.service.voice -->
+<A HREF="pkg_android.service.voice.html" class="hiddenlink" target="rightframe">android.service.voice</A><br>
+<!-- Package android.service.wallpaper -->
+<A HREF="pkg_android.service.wallpaper.html" class="hiddenlink" target="rightframe">android.service.wallpaper</A><br>
+<!-- Package android.speech.tts -->
+<A HREF="pkg_android.speech.tts.html" class="hiddenlink" target="rightframe">android.speech.tts</A><br>
+<!-- Package android.system -->
+<A HREF="pkg_android.system.html" class="hiddenlink" target="rightframe">android.system</A><br>
+<!-- Package android.telephony -->
+<A HREF="pkg_android.telephony.html" class="hiddenlink" target="rightframe">android.telephony</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.style -->
+<A HREF="pkg_android.text.style.html" class="hiddenlink" target="rightframe">android.text.style</A><br>
+<!-- Package android.transition -->
+<A HREF="pkg_android.transition.html" class="hiddenlink" target="rightframe">android.transition</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.accessibility -->
+<A HREF="pkg_android.view.accessibility.html" class="hiddenlink" target="rightframe">android.view.accessibility</A><br>
+<!-- Package android.view.inputmethod -->
+<A HREF="pkg_android.view.inputmethod.html" class="hiddenlink" target="rightframe">android.view.inputmethod</A><br>
+<!-- Package android.view.textservice -->
+<A HREF="pkg_android.view.textservice.html" class="hiddenlink" target="rightframe">android.view.textservice</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>
+<!-- Field ANIMAL_WILDLIFE -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.ANIMAL_WILDLIFE" class="hiddenlink" target="rightframe">ANIMAL_WILDLIFE</A>
+</nobr><br>
+<!-- Class AnimatedStateListDrawable -->
+<A HREF="android.graphics.drawable.AnimatedStateListDrawable.html" class="hiddenlink" target="rightframe">AnimatedStateListDrawable</A><br>
+<!-- Class ApplicationInfo -->
+<A HREF="android.content.pm.ApplicationInfo.html" class="hiddenlink" target="rightframe">ApplicationInfo</A><br>
+<!-- Class AppOpsManager -->
+<A HREF="android.app.AppOpsManager.html" class="hiddenlink" target="rightframe">AppOpsManager</A><br>
+<!-- Class AppWidgetHost -->
+<A HREF="android.appwidget.AppWidgetHost.html" class="hiddenlink" target="rightframe">AppWidgetHost</A><br>
+<!-- Class AppWidgetManager -->
+<A HREF="android.appwidget.AppWidgetManager.html" class="hiddenlink" target="rightframe">AppWidgetManager</A><br>
+<!-- Class AppWidgetProviderInfo -->
+<A HREF="android.appwidget.AppWidgetProviderInfo.html" class="hiddenlink" target="rightframe">AppWidgetProviderInfo</A><br>
+<!-- Method areDefaultsEnforced -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.areDefaultsEnforced_changed()" class="hiddenlink" target="rightframe">areDefaultsEnforced
+()</A></nobr><br>
+<!-- Class ArrayMap -->
+<A HREF="android.util.ArrayMap.html" class="hiddenlink" target="rightframe">ArrayMap</A><br>
+<!-- Class AssetManager -->
+<A HREF="android.content.res.AssetManager.html" class="hiddenlink" target="rightframe">AssetManager</A><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 audioStreamType -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.audioStreamType" class="hiddenlink" target="rightframe">audioStreamType</A>
+</nobr><br>
+<!-- Class AudioTrack -->
+<A HREF="android.media.AudioTrack.html" class="hiddenlink" target="rightframe">AudioTrack</A><br>
+<!-- Field autoRemoveFromRecents -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.autoRemoveFromRecents" class="hiddenlink" target="rightframe">autoRemoveFromRecents</A>
+</nobr><br>
+<!-- Class AutoTransition -->
+<A HREF="android.transition.AutoTransition.html" class="hiddenlink" target="rightframe">AutoTransition</A><br>
+<!-- Class BackupAgent -->
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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="#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="android.app.backup.BackupAgent.html" class="hiddenlink" target="rightframe">BackupAgent</A><br>
+<!-- Class BaseInputConnection -->
+<A HREF="android.view.inputmethod.BaseInputConnection.html" class="hiddenlink" target="rightframe">BaseInputConnection</A><br>
+<!-- Class BitmapFactory.Options -->
+<A HREF="android.graphics.BitmapFactory.Options.html" class="hiddenlink" target="rightframe">BitmapFactory.Options</A><br>
+<!-- Class BluetoothAdapter -->
+<A HREF="android.bluetooth.BluetoothAdapter.html" class="hiddenlink" target="rightframe">BluetoothAdapter</A><br>
+<!-- Class BluetoothGatt -->
+<A HREF="android.bluetooth.BluetoothGatt.html" class="hiddenlink" target="rightframe">BluetoothGatt</A><br>
+<!-- Class BluetoothGattCallback -->
+<A HREF="android.bluetooth.BluetoothGattCallback.html" class="hiddenlink" target="rightframe">BluetoothGattCallback</A><br>
+<!-- Class BluetoothGattServerCallback -->
+<A HREF="android.bluetooth.BluetoothGattServerCallback.html" class="hiddenlink" target="rightframe">BluetoothGattServerCallback</A><br>
+<!-- Class BluetoothLeAdvertiser -->
+<A HREF="android.bluetooth.le.BluetoothLeAdvertiser.html" class="hiddenlink" target="rightframe">BluetoothLeAdvertiser</A><br>
+<!-- Class BluetoothLeScanner -->
+<A HREF="android.bluetooth.le.BluetoothLeScanner.html" class="hiddenlink" target="rightframe">BluetoothLeScanner</A><br>
+<!-- Field BUFFER_FLAG_SYNC_FRAME -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.BUFFER_FLAG_SYNC_FRAME" class="hiddenlink" target="rightframe">BUFFER_FLAG_SYNC_FRAME</A>
+</nobr><br>
+<!-- Class Build -->
+<A HREF="android.os.Build.html" class="hiddenlink" target="rightframe">Build</A><br>
+<!-- Class Build.VERSION_CODES -->
+<A HREF="android.os.Build.VERSION_CODES.html" class="hiddenlink" target="rightframe">Build.VERSION_CODES</A><br>
+<!-- Class Bundle -->
+<A HREF="android.os.Bundle.html" class="hiddenlink" target="rightframe">Bundle</A><br>
+<!-- Class CallLog.Calls -->
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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="#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="android.provider.CallLog.Calls.html" class="hiddenlink" target="rightframe">CallLog.Calls</A><br>
+<!-- Class CamcorderProfile -->
+<A HREF="android.media.CamcorderProfile.html" class="hiddenlink" target="rightframe">CamcorderProfile</A><br>
+<!-- Class Camera -->
+<A HREF="android.hardware.Camera.html" class="hiddenlink" target="rightframe">Camera</A><br>
+<!-- Class Camera.Area -->
+<A HREF="android.hardware.Camera.Area.html" class="hiddenlink" target="rightframe">Camera.Area</A><br>
+<!-- Class Camera.AutoFocusCallback -->
+<A HREF="android.hardware.Camera.AutoFocusCallback.html" class="hiddenlink" target="rightframe"><i>Camera.AutoFocusCallback</i></A><br>
+<!-- Class Camera.AutoFocusMoveCallback -->
+<A HREF="android.hardware.Camera.AutoFocusMoveCallback.html" class="hiddenlink" target="rightframe"><i>Camera.AutoFocusMoveCallback</i></A><br>
+<!-- Class Camera.CameraInfo -->
+<A HREF="android.hardware.Camera.CameraInfo.html" class="hiddenlink" target="rightframe">Camera.CameraInfo</A><br>
+<!-- Class Camera.ErrorCallback -->
+<A HREF="android.hardware.Camera.ErrorCallback.html" class="hiddenlink" target="rightframe"><i>Camera.ErrorCallback</i></A><br>
+<!-- Class Camera.Face -->
+<A HREF="android.hardware.Camera.Face.html" class="hiddenlink" target="rightframe">Camera.Face</A><br>
+<!-- Class Camera.FaceDetectionListener -->
+<A HREF="android.hardware.Camera.FaceDetectionListener.html" class="hiddenlink" target="rightframe"><i>Camera.FaceDetectionListener</i></A><br>
+<!-- Class Camera.OnZoomChangeListener -->
+<A HREF="android.hardware.Camera.OnZoomChangeListener.html" class="hiddenlink" target="rightframe"><i>Camera.OnZoomChangeListener</i></A><br>
+<!-- Class Camera.Parameters -->
+<A HREF="android.hardware.Camera.Parameters.html" class="hiddenlink" target="rightframe">Camera.Parameters</A><br>
+<!-- Class Camera.PictureCallback -->
+<A HREF="android.hardware.Camera.PictureCallback.html" class="hiddenlink" target="rightframe"><i>Camera.PictureCallback</i></A><br>
+<!-- Class Camera.PreviewCallback -->
+<A HREF="android.hardware.Camera.PreviewCallback.html" class="hiddenlink" target="rightframe"><i>Camera.PreviewCallback</i></A><br>
+<!-- Class Camera.ShutterCallback -->
+<A HREF="android.hardware.Camera.ShutterCallback.html" class="hiddenlink" target="rightframe"><i>Camera.ShutterCallback</i></A><br>
+<!-- Class Camera.Size -->
+<A HREF="android.hardware.Camera.Size.html" class="hiddenlink" target="rightframe">Camera.Size</A><br>
+<!-- Class CameraCaptureSession -->
+<A HREF="android.hardware.camera2.CameraCaptureSession.html" class="hiddenlink" target="rightframe">CameraCaptureSession</A><br>
+<!-- Class CameraCharacteristics -->
+<A HREF="android.hardware.camera2.CameraCharacteristics.html" class="hiddenlink" target="rightframe">CameraCharacteristics</A><br>
+<!-- Class CameraDevice -->
+<A HREF="android.hardware.camera2.CameraDevice.html" class="hiddenlink" target="rightframe">CameraDevice</A><br>
+<!-- Class CameraManager -->
+<A HREF="android.hardware.camera2.CameraManager.html" class="hiddenlink" target="rightframe">CameraManager</A><br>
+<!-- Class CameraMetadata -->
+<A HREF="android.hardware.camera2.CameraMetadata.html" class="hiddenlink" target="rightframe">CameraMetadata</A><br>
+<!-- Class Canvas -->
+<A HREF="android.graphics.Canvas.html" class="hiddenlink" target="rightframe">Canvas</A><br>
+<!-- Method capture -->
+<nobr><A HREF="android.hardware.camera2.CameraCaptureSession.html#android.hardware.camera2.CameraCaptureSession.capture_changed(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)" class="hiddenlink" target="rightframe">capture
+(<code>CaptureRequest, CaptureCallback, Handler</code>)</A></nobr><br>
+<!-- Method captureBurst -->
+<nobr><A HREF="android.hardware.camera2.CameraCaptureSession.html#android.hardware.camera2.CameraCaptureSession.captureBurst_changed(java.util.List<android.hardware.camera2.CaptureRequest>, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)" class="hiddenlink" target="rightframe">captureBurst
+(<code>List&lt;CaptureRequest&gt;, CaptureCallback, Handler</code>)</A></nobr><br>
+<!-- Class CaptureFailure -->
+<A HREF="android.hardware.camera2.CaptureFailure.html" class="hiddenlink" target="rightframe">CaptureFailure</A><br>
+<!-- Class CaptureRequest -->
+<A HREF="android.hardware.camera2.CaptureRequest.html" class="hiddenlink" target="rightframe">CaptureRequest</A><br>
+<!-- Class CaptureResult -->
+<A HREF="android.hardware.camera2.CaptureResult.html" class="hiddenlink" target="rightframe">CaptureResult</A><br>
+<!-- Class CardEmulation -->
+<A HREF="android.nfc.cardemulation.CardEmulation.html" class="hiddenlink" target="rightframe">CardEmulation</A><br>
+<!-- Class ChangeBounds -->
+<A HREF="android.transition.ChangeBounds.html" class="hiddenlink" target="rightframe">ChangeBounds</A><br>
+<!-- Class ChangeClipBounds -->
+<A HREF="android.transition.ChangeClipBounds.html" class="hiddenlink" target="rightframe">ChangeClipBounds</A><br>
+<!-- Class ChangeTransform -->
+<A HREF="android.transition.ChangeTransform.html" class="hiddenlink" target="rightframe">ChangeTransform</A><br>
+<!-- Class CheckedTextView -->
+<A HREF="android.widget.CheckedTextView.html" class="hiddenlink" target="rightframe">CheckedTextView</A><br>
+<!-- Method clipRegion -->
+<i>clipRegion</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.clipRegion_changed(android.graphics.Region)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Region</code>)&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<!-- Method clipRegion -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.clipRegion_changed(android.graphics.Region, android.graphics.Region.Op)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Region, Op</code>)&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<!-- Field colorAccent -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorAccent" class="hiddenlink" target="rightframe">colorAccent</A>
+</nobr><br>
+<!-- Field colorButtonNormal -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorButtonNormal" class="hiddenlink" target="rightframe">colorButtonNormal</A>
+</nobr><br>
+<!-- Field colorControlActivated -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorControlActivated" class="hiddenlink" target="rightframe">colorControlActivated</A>
+</nobr><br>
+<!-- Field colorControlHighlight -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorControlHighlight" class="hiddenlink" target="rightframe">colorControlHighlight</A>
+</nobr><br>
+<!-- Field colorControlNormal -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorControlNormal" class="hiddenlink" target="rightframe">colorControlNormal</A>
+</nobr><br>
+<!-- Class ColorMatrixColorFilter -->
+<A HREF="android.graphics.ColorMatrixColorFilter.html" class="hiddenlink" target="rightframe">ColorMatrixColorFilter</A><br>
+<!-- Field colorPrimary -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorPrimary" class="hiddenlink" target="rightframe">colorPrimary</A>
+</nobr><br>
+<!-- Field colorPrimaryDark -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorPrimaryDark" class="hiddenlink" target="rightframe">colorPrimaryDark</A>
+</nobr><br>
+<!-- Field COMEDY -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.COMEDY" class="hiddenlink" target="rightframe">COMEDY</A>
+</nobr><br>
+<!-- Field COMMENTS -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.COMMENTS" class="hiddenlink" target="rightframe">COMMENTS</A>
+</nobr><br>
+<!-- Class CompoundButton -->
+<A HREF="android.widget.CompoundButton.html" class="hiddenlink" target="rightframe">CompoundButton</A><br>
+<!-- Class ConnectivityManager -->
+<A HREF="android.net.ConnectivityManager.html" class="hiddenlink" target="rightframe">ConnectivityManager</A><br>
+<!-- Field CONTACT_ID -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.CONTACT_ID" class="hiddenlink" target="rightframe">CONTACT_ID</A>
+</nobr><br>
+<!-- Field CONTACT_LOOKUP_KEY -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.CONTACT_LOOKUP_KEY" class="hiddenlink" target="rightframe">CONTACT_LOOKUP_KEY</A>
+</nobr><br>
+<!-- Class ContactsContract -->
+<A HREF="android.provider.ContactsContract.html" class="hiddenlink" target="rightframe">ContactsContract</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Callable -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Callable.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Callable</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Contactables -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Contactables</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Email -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Email</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Event -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Event</A><br>
+<!-- Class ContactsContract.CommonDataKinds.GroupMembership -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.GroupMembership</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Identity -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Identity</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Im -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Im</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Nickname -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Nickname</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Note -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Note</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Organization -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Organization</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Phone -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Phone</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Photo -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Photo</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Relation -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Relation</A><br>
+<!-- Class ContactsContract.CommonDataKinds.SipAddress -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.SipAddress</A><br>
+<!-- Class ContactsContract.CommonDataKinds.StructuredName -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.StructuredName</A><br>
+<!-- Class ContactsContract.CommonDataKinds.StructuredPostal -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.StructuredPostal</A><br>
+<!-- Class ContactsContract.CommonDataKinds.Website -->
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Website</A><br>
+<!-- Class ContactsContract.ContactOptionsColumns -->
+<A HREF="android.provider.ContactsContract.ContactOptionsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.ContactOptionsColumns</i></A><br>
+<!-- Class ContactsContract.Contacts -->
+<A HREF="android.provider.ContactsContract.Contacts.html" class="hiddenlink" target="rightframe">ContactsContract.Contacts</A><br>
+<!-- Class ContactsContract.Contacts.Entity -->
+<A HREF="android.provider.ContactsContract.Contacts.Entity.html" class="hiddenlink" target="rightframe">ContactsContract.Contacts.Entity</A><br>
+<!-- Class ContactsContract.Contacts.StreamItems -->
+<A HREF="android.provider.ContactsContract.Contacts.StreamItems.html" class="hiddenlink" target="rightframe">ContactsContract.Contacts.StreamItems</A><br>
+<!-- Class ContactsContract.ContactsColumns -->
+<A HREF="android.provider.ContactsContract.ContactsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.ContactsColumns</i></A><br>
+<!-- Class ContactsContract.Data -->
+<A HREF="android.provider.ContactsContract.Data.html" class="hiddenlink" target="rightframe">ContactsContract.Data</A><br>
+<!-- Class ContactsContract.DataColumns -->
+<A HREF="android.provider.ContactsContract.DataColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.DataColumns</i></A><br>
+<!-- Class ContactsContract.GroupsColumns -->
+<A HREF="android.provider.ContactsContract.GroupsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.GroupsColumns</i></A><br>
+<!-- Class ContactsContract.PhoneLookup -->
+<A HREF="android.provider.ContactsContract.PhoneLookup.html" class="hiddenlink" target="rightframe">ContactsContract.PhoneLookup</A><br>
+<!-- Class ContactsContract.QuickContact -->
+<A HREF="android.provider.ContactsContract.QuickContact.html" class="hiddenlink" target="rightframe">ContactsContract.QuickContact</A><br>
+<!-- Class ContactsContract.RawContacts.StreamItems -->
+<A HREF="android.provider.ContactsContract.RawContacts.StreamItems.html" class="hiddenlink" target="rightframe">ContactsContract.RawContacts.StreamItems</A><br>
+<!-- Class ContactsContract.RawContactsColumns -->
+<A HREF="android.provider.ContactsContract.RawContactsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.RawContactsColumns</i></A><br>
+<!-- Class ContactsContract.StreamItemPhotos -->
+<A HREF="android.provider.ContactsContract.StreamItemPhotos.html" class="hiddenlink" target="rightframe">ContactsContract.StreamItemPhotos</A><br>
+<!-- Class ContactsContract.StreamItemPhotosColumns -->
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.StreamItemPhotosColumns</i></A><br>
+<!-- Class ContactsContract.StreamItems -->
+<A HREF="android.provider.ContactsContract.StreamItems.html" class="hiddenlink" target="rightframe">ContactsContract.StreamItems</A><br>
+<!-- Class ContactsContract.StreamItems.StreamItemPhotos -->
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html" class="hiddenlink" target="rightframe">ContactsContract.StreamItems.StreamItemPhotos</A><br>
+<!-- Class ContactsContract.StreamItemsColumns -->
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.StreamItemsColumns</i></A><br>
+<!-- Field CONTENT_DIRECTORY -->
+<i>CONTENT_DIRECTORY</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.StreamItems.html#android.provider.ContactsContract.Contacts.StreamItems.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts.StreamItems</A>
+</nobr><br>
+<!-- Field CONTENT_DIRECTORY -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.RawContacts.StreamItems.html#android.provider.ContactsContract.RawContacts.StreamItems.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.ContactsContract.RawContacts.StreamItems</A>
+</nobr><br>
+<!-- Field CONTENT_DIRECTORY -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html#android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems.StreamItemPhotos</A>
+</nobr><br>
+<!-- Field CONTENT_ITEM_TYPE -->
+<i>CONTENT_ITEM_TYPE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems</A>
+</nobr><br>
+<!-- Field CONTENT_ITEM_TYPE -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html#android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems.StreamItemPhotos</A>
+</nobr><br>
+<!-- Field CONTENT_LIMIT_URI -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_LIMIT_URI" class="hiddenlink" target="rightframe">CONTENT_LIMIT_URI</A>
+</nobr><br>
+<!-- Field CONTENT_PHOTO_URI -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_PHOTO_URI" class="hiddenlink" target="rightframe">CONTENT_PHOTO_URI</A>
+</nobr><br>
+<!-- Field CONTENT_TYPE -->
+<i>CONTENT_TYPE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems</A>
+</nobr><br>
+<!-- Field CONTENT_TYPE -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html#android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems.StreamItemPhotos</A>
+</nobr><br>
+<!-- Field CONTENT_URI -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_URI" class="hiddenlink" target="rightframe">CONTENT_URI</A>
+</nobr><br>
+<!-- Field contentInsetEnd -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetEnd" class="hiddenlink" target="rightframe">contentInsetEnd</A>
+</nobr><br>
+<!-- Field contentInsetLeft -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetLeft" class="hiddenlink" target="rightframe">contentInsetLeft</A>
+</nobr><br>
+<!-- Field contentInsetRight -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetRight" class="hiddenlink" target="rightframe">contentInsetRight</A>
+</nobr><br>
+<!-- Field contentInsetStart -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetStart" class="hiddenlink" target="rightframe">contentInsetStart</A>
+</nobr><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>
+<!-- Field controlX1 -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlX1" class="hiddenlink" target="rightframe">controlX1</A>
+</nobr><br>
+<!-- Field controlX2 -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlX2" class="hiddenlink" target="rightframe">controlX2</A>
+</nobr><br>
+<!-- Field controlY1 -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlY1" class="hiddenlink" target="rightframe">controlY1</A>
+</nobr><br>
+<!-- Field controlY2 -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlY2" class="hiddenlink" target="rightframe">controlY2</A>
+</nobr><br>
+<!-- Class CookieManager -->
+<A HREF="android.webkit.CookieManager.html" class="hiddenlink" target="rightframe">CookieManager</A><br>
+<!-- Class CookieSyncManager -->
+<A HREF="android.webkit.CookieSyncManager.html" class="hiddenlink" target="rightframe">CookieSyncManager</A><br>
+<!-- Field CPU_ABI -->
+<nobr><A HREF="android.os.Build.html#android.os.Build.CPU_ABI" class="hiddenlink" target="rightframe">CPU_ABI</A>
+</nobr><br>
+<!-- Field CPU_ABI2 -->
+<nobr><A HREF="android.os.Build.html#android.os.Build.CPU_ABI2" class="hiddenlink" target="rightframe">CPU_ABI2</A>
+</nobr><br>
+<!-- Method createCaptureSession -->
+<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.createCaptureSession_changed(java.util.List<android.view.Surface>, android.hardware.camera2.CameraCaptureSession.StateCallback, android.os.Handler)" class="hiddenlink" target="rightframe">createCaptureSession
+(<code>List&lt;Surface&gt;, StateCallback, Handler</code>)</A></nobr><br>
+<!-- Method createCircularReveal -->
+<nobr><A HREF="android.view.ViewAnimationUtils.html#android.view.ViewAnimationUtils.createCircularReveal_changed(android.view.View, int, int, float, float)" class="hiddenlink" target="rightframe">createCircularReveal
+(<code>View, int, int, float, float</code>)</A></nobr><br>
+<!-- Class CursorAnchorInfo -->
+<A HREF="android.view.inputmethod.CursorAnchorInfo.html" class="hiddenlink" target="rightframe">CursorAnchorInfo</A><br>
+<!-- Class CursorAnchorInfo.Builder -->
+<A HREF="android.view.inputmethod.CursorAnchorInfo.Builder.html" class="hiddenlink" target="rightframe">CursorAnchorInfo.Builder</A><br>
+<!-- Field DATA_SET -->
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.DATA_SET" class="hiddenlink" target="rightframe">DATA_SET</A>
+</nobr><br>
+<!-- Class DatePicker -->
+<A HREF="android.widget.DatePicker.html" class="hiddenlink" target="rightframe">DatePicker</A><br>
+<!-- Class DeviceAdminReceiver -->
+<A HREF="android.app.admin.DeviceAdminReceiver.html" class="hiddenlink" target="rightframe">DeviceAdminReceiver</A><br>
+<!-- Class DevicePolicyManager -->
+<A HREF="android.app.admin.DevicePolicyManager.html" class="hiddenlink" target="rightframe">DevicePolicyManager</A><br>
+<!-- Class Display -->
+<A HREF="android.view.Display.html" class="hiddenlink" target="rightframe">Display</A><br>
+<!-- Class DisplayManager -->
+<A HREF="android.hardware.display.DisplayManager.html" class="hiddenlink" target="rightframe">DisplayManager</A><br>
+<!-- Class DisplayMetrics -->
+<A HREF="android.util.DisplayMetrics.html" class="hiddenlink" target="rightframe">DisplayMetrics</A><br>
+<!-- Class DngCreator -->
+<A HREF="android.hardware.camera2.DngCreator.html" class="hiddenlink" target="rightframe">DngCreator</A><br>
+<!-- Field documentLaunchMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.documentLaunchMode" class="hiddenlink" target="rightframe">documentLaunchMode</A>
+</nobr><br>
+<!-- Field DRAMA -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.DRAMA" class="hiddenlink" target="rightframe">DRAMA</A>
+</nobr><br>
+<!-- Class Drawable -->
+<A HREF="android.graphics.drawable.Drawable.html" class="hiddenlink" target="rightframe">Drawable</A><br>
+<!-- Class DreamService -->
+<A HREF="android.service.dreams.DreamService.html" class="hiddenlink" target="rightframe">DreamService</A><br>
+<!-- Class EdgeEffect -->
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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="#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="android.widget.EdgeEffect.html" class="hiddenlink" target="rightframe">EdgeEffect</A><br>
+<!-- Field EDUCATION -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.EDUCATION" class="hiddenlink" target="rightframe">EDUCATION</A>
+</nobr><br>
+<!-- Field elegantTextHeight -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.elegantTextHeight" class="hiddenlink" target="rightframe">elegantTextHeight</A>
+</nobr><br>
+<!-- Field elevation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.elevation" class="hiddenlink" target="rightframe">elevation</A>
+</nobr><br>
+<!-- Method enableHardwareAcceleration -->
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.enableHardwareAcceleration_changed()" class="hiddenlink" target="rightframe">enableHardwareAcceleration
+()</A></nobr><br>
+<!-- Field excludeClass -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeClass" class="hiddenlink" target="rightframe">excludeClass</A>
+</nobr><br>
+<!-- Field excludeId -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeId" class="hiddenlink" target="rightframe">excludeId</A>
+</nobr><br>
+<!-- Class Explode -->
+<A HREF="android.transition.Explode.html" class="hiddenlink" target="rightframe">Explode</A><br>
+<!-- Field EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME</A>
+</nobr><br>
+<!-- Field EXTRA_USER -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_USER" class="hiddenlink" target="rightframe">EXTRA_USER</A>
+</nobr><br>
+<!-- Class Fade -->
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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="#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="android.transition.Fade.html" class="hiddenlink" target="rightframe">Fade</A><br>
+<!-- Field FAMILY_KIDS -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.FAMILY_KIDS" class="hiddenlink" target="rightframe">FAMILY_KIDS</A>
+</nobr><br>
+<!-- Field fast_out_linear_in -->
+<nobr><A HREF="android.R.interpolator.html#android.R.interpolator.fast_out_linear_in" class="hiddenlink" target="rightframe">fast_out_linear_in</A>
+</nobr><br>
+<!-- Field fast_out_slow_in -->
+<nobr><A HREF="android.R.interpolator.html#android.R.interpolator.fast_out_slow_in" class="hiddenlink" target="rightframe">fast_out_slow_in</A>
+</nobr><br>
+<!-- Field fastScrollStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fastScrollStyle" class="hiddenlink" target="rightframe">fastScrollStyle</A>
+</nobr><br>
+<!-- Class Fragment -->
+<A HREF="android.app.Fragment.html" class="hiddenlink" target="rightframe">Fragment</A><br>
+<!-- Class FragmentTransaction -->
+<A HREF="android.app.FragmentTransaction.html" class="hiddenlink" target="rightframe">FragmentTransaction</A><br>
+<!-- Class FrameLayout -->
+<A HREF="android.widget.FrameLayout.html" class="hiddenlink" target="rightframe">FrameLayout</A><br>
+<!-- Class FrameStats -->
+<A HREF="android.view.FrameStats.html" class="hiddenlink" target="rightframe">FrameStats</A><br>
+<!-- Field fromId -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fromId" class="hiddenlink" target="rightframe">fromId</A>
+</nobr><br>
+<!-- Field GAMING -->
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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="#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.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.GAMING" class="hiddenlink" target="rightframe">GAMING</A>
+</nobr><br>
+<!-- Field GET_TASKS -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.GET_TASKS" class="hiddenlink" target="rightframe">GET_TASKS</A>
+</nobr><br>
+<!-- Method getCodecCount -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecCount_changed()" class="hiddenlink" target="rightframe">getCodecCount
+()</A></nobr><br>
+<!-- Method getCodecInfoAt -->
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecInfoAt_changed(int)" class="hiddenlink" target="rightframe">getCodecInfoAt
+(<code>int</code>)</A></nobr><br>
+<!-- Method getComposingText -->
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.getComposingText_changed()" class="hiddenlink" target="rightframe">getComposingText
+()</A></nobr><br>
+<!-- Method getDefaultLanguage -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getDefaultLanguage_changed()" class="hiddenlink" target="rightframe">getDefaultLanguage
+()</A></nobr><br>
+<!-- Method getFeatures -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getFeatures_changed(java.util.Locale)" class="hiddenlink" target="rightframe">getFeatures
+(<code>Locale</code>)</A></nobr><br>
+<!-- Method getFrameNumber -->
+<i>getFrameNumber</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CaptureFailure.html#android.hardware.camera2.CaptureFailure.getFrameNumber_changed()" class="hiddenlink" target="rightframe">type&nbsp;
+()&nbsp;in&nbsp;android.hardware.camera2.CaptureFailure
+</A></nobr><br>
+<!-- Method getFrameNumber -->
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CaptureResult.html#android.hardware.camera2.CaptureResult.getFrameNumber_changed()" class="hiddenlink" target="rightframe">type&nbsp;
+()&nbsp;in&nbsp;android.hardware.camera2.CaptureResult
+</A></nobr><br>
+<!-- Method getInputBuffers -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputBuffers_changed()" class="hiddenlink" target="rightframe">getInputBuffers
+()</A></nobr><br>
+<!-- Method getLanguage -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getLanguage_changed()" class="hiddenlink" target="rightframe">getLanguage
+()</A></nobr><br>
+<!-- Method getManufacturerSpecificData -->
+<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getManufacturerSpecificData_changed()" class="hiddenlink" target="rightframe">getManufacturerSpecificData
+()</A></nobr><br>
+<!-- Method getOutline -->
+<i>getOutline</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.getOutline_changed(android.graphics.Outline)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Outline</code>)&nbsp;in&nbsp;android.graphics.drawable.Drawable
+</A></nobr><br>
+<!-- Method getOutline -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.shapes.Shape.html#android.graphics.drawable.shapes.Shape.getOutline_changed(android.graphics.Outline)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Outline</code>)&nbsp;in&nbsp;android.graphics.drawable.shapes.Shape
+</A></nobr><br>
+<!-- Method getOutputBuffers -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputBuffers_changed()" class="hiddenlink" target="rightframe">getOutputBuffers
+()</A></nobr><br>
+<!-- Method getRanking -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.RankingMap.html#android.service.notification.NotificationListenerService.RankingMap.getRanking_changed(java.lang.String, android.service.notification.NotificationListenerService.Ranking)" class="hiddenlink" target="rightframe">getRanking
+(<code>String, Ranking</code>)</A></nobr><br>
+<!-- Method getResources -->
+<nobr><A HREF="android.webkit.PermissionRequest.html#android.webkit.PermissionRequest.getResources_changed()" class="hiddenlink" target="rightframe">getResources
+()</A></nobr><br>
+<!-- Method getScanRecord -->
+<nobr><A HREF="android.bluetooth.le.ScanResult.html#android.bluetooth.le.ScanResult.getScanRecord_changed()" class="hiddenlink" target="rightframe">getScanRecord
+()</A></nobr><br>
+<!-- Method getSessionToken -->
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.getSessionToken_changed()" class="hiddenlink" target="rightframe">getSessionToken
+()</A></nobr><br>
+<!-- Method getStreamType -->
+<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.getStreamType_changed()" class="hiddenlink" target="rightframe">getStreamType
+()</A></nobr><br>
+<!-- Method getText -->
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getText_changed()" class="hiddenlink" target="rightframe">getText
+()</A></nobr><br>
+<!-- Method grant -->
+<nobr><A HREF="android.webkit.PermissionRequest.html#android.webkit.PermissionRequest.grant_changed(java.lang.String[])" class="hiddenlink" target="rightframe">grant
+(<code>String[]</code>)</A></nobr><br>
+<!-- Class GridLayout -->
+<A HREF="android.widget.GridLayout.html" class="hiddenlink" target="rightframe">GridLayout</A><br>
+<!-- Field hideOnContentScroll -->
+<A NAME="H"></A>
+<br><font size="+2">H</font>&nbsp;
+<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="#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.R.attr.html#android.R.attr.hideOnContentScroll" class="hiddenlink" target="rightframe">hideOnContentScroll</A>
+</nobr><br>
+<!-- Class Image -->
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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="#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="android.media.Image.html" class="hiddenlink" target="rightframe">Image</A><br>
+<!-- Class ImageFormat -->
+<A HREF="android.graphics.ImageFormat.html" class="hiddenlink" target="rightframe">ImageFormat</A><br>
+<!-- Class ImageView -->
+<A HREF="android.widget.ImageView.html" class="hiddenlink" target="rightframe">ImageView</A><br>
+<!-- Field INFO_OUTPUT_BUFFERS_CHANGED -->
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.INFO_OUTPUT_BUFFERS_CHANGED" class="hiddenlink" target="rightframe">INFO_OUTPUT_BUFFERS_CHANGED</A>
+</nobr><br>
+<!-- Field inInputShareable -->
+<nobr><A HREF="android.graphics.BitmapFactory.Options.html#android.graphics.BitmapFactory.Options.inInputShareable" class="hiddenlink" target="rightframe">inInputShareable</A>
+</nobr><br>
+<!-- Field inPurgeable -->
+<nobr><A HREF="android.graphics.BitmapFactory.Options.html#android.graphics.BitmapFactory.Options.inPurgeable" class="hiddenlink" target="rightframe">inPurgeable</A>
+</nobr><br>
+<!-- Class InputConnection -->
+<A HREF="android.view.inputmethod.InputConnection.html" class="hiddenlink" target="rightframe"><i>InputConnection</i></A><br>
+<!-- Class InputConnectionWrapper -->
+<A HREF="android.view.inputmethod.InputConnectionWrapper.html" class="hiddenlink" target="rightframe">InputConnectionWrapper</A><br>
+<!-- Class InputFilter.LengthFilter -->
+<A HREF="android.text.InputFilter.LengthFilter.html" class="hiddenlink" target="rightframe">InputFilter.LengthFilter</A><br>
+<!-- Class InputMethodManager -->
+<A HREF="android.view.inputmethod.InputMethodManager.html" class="hiddenlink" target="rightframe">InputMethodManager</A><br>
+<!-- Class InputMethodService -->
+<A HREF="android.inputmethodservice.InputMethodService.html" class="hiddenlink" target="rightframe">InputMethodService</A><br>
+<!-- Class InstrumentationInfo -->
+<A HREF="android.content.pm.InstrumentationInfo.html" class="hiddenlink" target="rightframe">InstrumentationInfo</A><br>
+<!-- Class Intent -->
+<A HREF="android.content.Intent.html" class="hiddenlink" target="rightframe">Intent</A><br>
+<!-- Method isLockTaskPermitted -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isLockTaskPermitted_changed(java.lang.String)" class="hiddenlink" target="rightframe">isLockTaskPermitted
+(<code>String</code>)</A></nobr><br>
+<!-- Method isWatchingCursor -->
+<nobr><A HREF="android.view.inputmethod.InputMethodManager.html#android.view.inputmethod.InputMethodManager.isWatchingCursor_changed(android.view.View)" class="hiddenlink" target="rightframe">isWatchingCursor
+(<code>View</code>)</A></nobr><br>
+<!-- Package java.util -->
+<A NAME="J"></A>
+<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>
+<!-- Class JobInfo -->
+<A HREF="android.app.job.JobInfo.html" class="hiddenlink" target="rightframe">JobInfo</A><br>
+<!-- Class JobInfo.Builder -->
+<A HREF="android.app.job.JobInfo.Builder.html" class="hiddenlink" target="rightframe">JobInfo.Builder</A><br>
+<!-- Class JobParameters -->
+<A HREF="android.app.job.JobParameters.html" class="hiddenlink" target="rightframe">JobParameters</A><br>
+<!-- Field KEY_FEATURE_EMBEDDED_SYNTHESIS -->
+<A NAME="K"></A>
+<br><font size="+2">K</font>&nbsp;
+<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="#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.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_EMBEDDED_SYNTHESIS" class="hiddenlink" target="rightframe">KEY_FEATURE_EMBEDDED_SYNTHESIS</A>
+</nobr><br>
+<!-- Field KEY_FEATURE_NETWORK_SYNTHESIS -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_SYNTHESIS" class="hiddenlink" target="rightframe">KEY_FEATURE_NETWORK_SYNTHESIS</A>
+</nobr><br>
+<!-- Class KeyEvent -->
+<A HREF="android.view.KeyEvent.html" class="hiddenlink" target="rightframe">KeyEvent</A><br>
+<!-- Class KeyguardManager -->
+<A HREF="android.app.KeyguardManager.html" class="hiddenlink" target="rightframe">KeyguardManager</A><br>
+<!-- Field L -->
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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="#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.os.Build.VERSION_CODES.html#android.os.Build.VERSION_CODES.L" class="hiddenlink" target="rightframe">L</A>
+</nobr><br>
+<!-- Field label -->
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.label" class="hiddenlink" target="rightframe">label</A>
+</nobr><br>
+<!-- Class LauncherApps -->
+<A HREF="android.content.pm.LauncherApps.html" class="hiddenlink" target="rightframe">LauncherApps</A><br>
+<!-- Class LightingColorFilter -->
+<A HREF="android.graphics.LightingColorFilter.html" class="hiddenlink" target="rightframe">LightingColorFilter</A><br>
+<!-- Field linear_out_slow_in -->
+<nobr><A HREF="android.R.interpolator.html#android.R.interpolator.linear_out_slow_in" class="hiddenlink" target="rightframe">linear_out_slow_in</A>
+</nobr><br>
+<!-- Class LinkAddress -->
+<A HREF="android.net.LinkAddress.html" class="hiddenlink" target="rightframe">LinkAddress</A><br>
+<!-- Method loadLabel -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.loadLabel_changed(android.content.Context)" class="hiddenlink" target="rightframe">loadLabel
+(<code>Context</code>)</A></nobr><br>
+<!-- Class Locale -->
+<A HREF="java.util.Locale.html" class="hiddenlink" target="rightframe">Locale</A><br>
+<!-- Class Manifest.permission -->
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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="#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="android.Manifest.permission.html" class="hiddenlink" target="rightframe">Manifest.permission</A><br>
+<!-- Field mask -->
+<nobr><A HREF="android.R.id.html#android.R.id.mask" class="hiddenlink" target="rightframe">mask</A>
+</nobr><br>
+<!-- Field matchOrder -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.matchOrder" class="hiddenlink" target="rightframe">matchOrder</A>
+</nobr><br>
+<!-- Field MAX_ITEMS -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.MAX_ITEMS" class="hiddenlink" target="rightframe">MAX_ITEMS</A>
+</nobr><br>
+<!-- Field maxRecents -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.maxRecents" class="hiddenlink" target="rightframe">maxRecents</A>
+</nobr><br>
+<!-- Class MediaCodec -->
+<A HREF="android.media.MediaCodec.html" class="hiddenlink" target="rightframe">MediaCodec</A><br>
+<!-- Class MediaCodec.CryptoException -->
+<A HREF="android.media.MediaCodec.CryptoException.html" class="hiddenlink" target="rightframe">MediaCodec.CryptoException</A><br>
+<!-- Class MediaCodecInfo.CodecCapabilities -->
+<A HREF="android.media.MediaCodecInfo.CodecCapabilities.html" class="hiddenlink" target="rightframe">MediaCodecInfo.CodecCapabilities</A><br>
+<!-- Class MediaCodecInfo.CodecProfileLevel -->
+<A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html" class="hiddenlink" target="rightframe">MediaCodecInfo.CodecProfileLevel</A><br>
+<!-- Class MediaCodecList -->
+<A HREF="android.media.MediaCodecList.html" class="hiddenlink" target="rightframe">MediaCodecList</A><br>
+<!-- Class MediaController -->
+<A HREF="android.media.session.MediaController.html" class="hiddenlink" target="rightframe">MediaController</A><br>
+<!-- Class MediaController.Callback -->
+<A HREF="android.media.session.MediaController.Callback.html" class="hiddenlink" target="rightframe">MediaController.Callback</A><br>
+<!-- Class MediaController.TransportControls -->
+<A HREF="android.media.session.MediaController.TransportControls.html" class="hiddenlink" target="rightframe">MediaController.TransportControls</A><br>
+<!-- Class MediaDrm -->
+<A HREF="android.media.MediaDrm.html" class="hiddenlink" target="rightframe">MediaDrm</A><br>
+<!-- Class MediaFormat -->
+<A HREF="android.media.MediaFormat.html" class="hiddenlink" target="rightframe">MediaFormat</A><br>
+<!-- Class MediaMetadata -->
+<A HREF="android.media.MediaMetadata.html" class="hiddenlink" target="rightframe">MediaMetadata</A><br>
+<!-- Class MediaMetadata.Builder -->
+<A HREF="android.media.MediaMetadata.Builder.html" class="hiddenlink" target="rightframe">MediaMetadata.Builder</A><br>
+<!-- Class MediaMetadataEditor -->
+<A HREF="android.media.MediaMetadataEditor.html" class="hiddenlink" target="rightframe">MediaMetadataEditor</A><br>
+<!-- Class MediaPlayer -->
+<A HREF="android.media.MediaPlayer.html" class="hiddenlink" target="rightframe">MediaPlayer</A><br>
+<!-- Class MediaPlayer.TrackInfo -->
+<A HREF="android.media.MediaPlayer.TrackInfo.html" class="hiddenlink" target="rightframe">MediaPlayer.TrackInfo</A><br>
+<!-- Class MediaRecorder -->
+<A HREF="android.media.MediaRecorder.html" class="hiddenlink" target="rightframe">MediaRecorder</A><br>
+<!-- Class MediaRecorder.AudioEncoder -->
+<A HREF="android.media.MediaRecorder.AudioEncoder.html" class="hiddenlink" target="rightframe">MediaRecorder.AudioEncoder</A><br>
+<!-- Class MediaRecorder.OutputFormat -->
+<A HREF="android.media.MediaRecorder.OutputFormat.html" class="hiddenlink" target="rightframe">MediaRecorder.OutputFormat</A><br>
+<!-- Class MediaRecorder.VideoEncoder -->
+<A HREF="android.media.MediaRecorder.VideoEncoder.html" class="hiddenlink" target="rightframe">MediaRecorder.VideoEncoder</A><br>
+<!-- Class MediaSession -->
+<A HREF="android.media.session.MediaSession.html" class="hiddenlink" target="rightframe">MediaSession</A><br>
+<!-- Class MediaSession.Callback -->
+<A HREF="android.media.session.MediaSession.Callback.html" class="hiddenlink" target="rightframe">MediaSession.Callback</A><br>
+<!-- Class MediaSessionManager -->
+<A HREF="android.media.session.MediaSessionManager.html" class="hiddenlink" target="rightframe">MediaSessionManager</A><br>
+<!-- Class MediaStore.Audio.Radio -->
+<A HREF="android.provider.MediaStore.Audio.Radio.html" class="hiddenlink" target="rightframe">MediaStore.Audio.Radio</A><br>
+<!-- Class Message -->
+<A HREF="android.os.Message.html" class="hiddenlink" target="rightframe">Message</A><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 MOVIES -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.MOVIES" class="hiddenlink" target="rightframe">MOVIES</A>
+</nobr><br>
+<!-- Field navigationBarColor -->
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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="#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.R.attr.html#android.R.attr.navigationBarColor" class="hiddenlink" target="rightframe">navigationBarColor</A>
+</nobr><br>
+<!-- Field nestedScrollingEnabled -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.nestedScrollingEnabled" class="hiddenlink" target="rightframe">nestedScrollingEnabled</A>
+</nobr><br>
+<!-- Class Network -->
+<A HREF="android.net.Network.html" class="hiddenlink" target="rightframe">Network</A><br>
+<!-- Class NetworkCapabilities -->
+<A HREF="android.net.NetworkCapabilities.html" class="hiddenlink" target="rightframe">NetworkCapabilities</A><br>
+<!-- Class NetworkRequest.Builder -->
+<A HREF="android.net.NetworkRequest.Builder.html" class="hiddenlink" target="rightframe">NetworkRequest.Builder</A><br>
+<!-- Field NEWS -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.NEWS" class="hiddenlink" target="rightframe">NEWS</A>
+</nobr><br>
+<!-- Field NEXT_ALARM_FORMATTED -->
+<nobr><A HREF="android.provider.Settings.System.html#android.provider.Settings.System.NEXT_ALARM_FORMATTED" class="hiddenlink" target="rightframe">NEXT_ALARM_FORMATTED</A>
+</nobr><br>
+<!-- Class Notification -->
+<A HREF="android.app.Notification.html" class="hiddenlink" target="rightframe">Notification</A><br>
+<!-- Class Notification.Builder -->
+<A HREF="android.app.Notification.Builder.html" class="hiddenlink" target="rightframe">Notification.Builder</A><br>
+<!-- Class Notification.MediaStyle -->
+<A HREF="android.app.Notification.MediaStyle.html" class="hiddenlink" target="rightframe">Notification.MediaStyle</A><br>
+<!-- Class NotificationListenerService -->
+<A HREF="android.service.notification.NotificationListenerService.html" class="hiddenlink" target="rightframe">NotificationListenerService</A><br>
+<!-- Class NotificationListenerService.Ranking -->
+<A HREF="android.service.notification.NotificationListenerService.Ranking.html" class="hiddenlink" target="rightframe">NotificationListenerService.Ranking</A><br>
+<!-- Class NotificationListenerService.RankingMap -->
+<A HREF="android.service.notification.NotificationListenerService.RankingMap.html" class="hiddenlink" target="rightframe">NotificationListenerService.RankingMap</A><br>
+<!-- Method onActivityReenter -->
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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="#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.app.Activity.html#android.app.Activity.onActivityReenter_changed(int, android.content.Intent)" class="hiddenlink" target="rightframe">onActivityReenter
+(<code>int, Intent</code>)</A></nobr><br>
+<!-- Method onCreate -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onCreate_changed(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe">onCreate
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<!-- Method onCreateSession -->
+<nobr><A HREF="android.media.tv.TvInputService.html#android.media.tv.TvInputService.onCreateSession_changed(java.lang.String)" class="hiddenlink" target="rightframe">onCreateSession
+(<code>String</code>)</A></nobr><br>
+<!-- Method onGetSummary -->
+<nobr><A HREF="android.location.SettingInjectorService.html#android.location.SettingInjectorService.onGetSummary_changed()" class="hiddenlink" target="rightframe">onGetSummary
+()</A></nobr><br>
+<!-- Method onMediaButtonEvent -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onMediaButtonEvent_changed(android.content.Intent)" class="hiddenlink" target="rightframe">onMediaButtonEvent
+(<code>Intent</code>)</A></nobr><br>
+<!-- Method onPostCreate -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onPostCreate_changed(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe">onPostCreate
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<!-- Method onRestoreInstanceState -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onRestoreInstanceState_changed(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe">onRestoreInstanceState
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<!-- Method onSaveInstanceState -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onSaveInstanceState_changed(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe">onSaveInstanceState
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<!-- Method onScanFailed -->
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.onScanFailed_changed(int)" class="hiddenlink" target="rightframe">onScanFailed
+(<code>int</code>)</A></nobr><br>
+<!-- Method onUpdateCursor -->
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.onUpdateCursor_changed(android.graphics.Rect)" class="hiddenlink" target="rightframe">onUpdateCursor
+(<code>Rect</code>)</A></nobr><br>
+<!-- Method openCamera -->
+<nobr><A HREF="android.hardware.camera2.CameraManager.html#android.hardware.camera2.CameraManager.openCamera_changed(java.lang.String, android.hardware.camera2.CameraDevice.StateCallback, android.os.Handler)" class="hiddenlink" target="rightframe">openCamera
+(<code>String, StateCallback, Handler</code>)</A></nobr><br>
+<!-- Method openSession -->
+<nobr><A HREF="android.media.MediaDrm.html#android.media.MediaDrm.openSession_changed()" class="hiddenlink" target="rightframe">openSession
+()</A></nobr><br>
+<!-- Class OsConstants -->
+<A HREF="android.system.OsConstants.html" class="hiddenlink" target="rightframe">OsConstants</A><br>
+<!-- Class Outline -->
+<A HREF="android.graphics.Outline.html" class="hiddenlink" target="rightframe">Outline</A><br>
+<!-- Class PackageInfo -->
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#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="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>
+<!-- Field paddingMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.paddingMode" class="hiddenlink" target="rightframe">paddingMode</A>
+</nobr><br>
+<!-- Class Paint -->
+<A HREF="android.graphics.Paint.html" class="hiddenlink" target="rightframe">Paint</A><br>
+<!-- Class Parcel -->
+<A HREF="android.os.Parcel.html" class="hiddenlink" target="rightframe">Parcel</A><br>
+<!-- Class Path -->
+<A HREF="android.graphics.Path.html" class="hiddenlink" target="rightframe">Path</A><br>
+<!-- Field pathData -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.pathData" class="hiddenlink" target="rightframe">pathData</A>
+</nobr><br>
+<!-- Class PermissionInfo -->
+<A HREF="android.content.pm.PermissionInfo.html" class="hiddenlink" target="rightframe">PermissionInfo</A><br>
+<!-- Class PermissionRequest -->
+<A HREF="android.webkit.PermissionRequest.html" class="hiddenlink" target="rightframe">PermissionRequest</A><br>
+<!-- Field PHOTO -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotos.html#android.provider.ContactsContract.StreamItemPhotos.PHOTO" class="hiddenlink" target="rightframe">PHOTO</A>
+</nobr><br>
+<!-- Field PHOTO_FILE_ID -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.PHOTO_FILE_ID" class="hiddenlink" target="rightframe">PHOTO_FILE_ID</A>
+</nobr><br>
+<!-- Field PHOTO_URI -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.PHOTO_URI" class="hiddenlink" target="rightframe">PHOTO_URI</A>
+</nobr><br>
+<!-- Class PlaybackState -->
+<A HREF="android.media.session.PlaybackState.html" class="hiddenlink" target="rightframe">PlaybackState</A><br>
+<!-- Method playEarcon -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playEarcon_changed(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">playEarcon
+(<code>String, int, HashMap&lt;String, String&gt;</code>)</A></nobr><br>
+<!-- Method playSilence -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playSilence_changed(long, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">playSilence
+(<code>long, int, HashMap&lt;String, String&gt;</code>)</A></nobr><br>
+<!-- Class PopupWindow -->
+<A HREF="android.widget.PopupWindow.html" class="hiddenlink" target="rightframe">PopupWindow</A><br>
+<!-- Class PorterDuffColorFilter -->
+<A HREF="android.graphics.PorterDuffColorFilter.html" class="hiddenlink" target="rightframe">PorterDuffColorFilter</A><br>
+<!-- Class PowerManager -->
+<A HREF="android.os.PowerManager.html" class="hiddenlink" target="rightframe">PowerManager</A><br>
+<!-- Class PowerManager.WakeLock -->
+<A HREF="android.os.PowerManager.WakeLock.html" class="hiddenlink" target="rightframe">PowerManager.WakeLock</A><br>
+<!-- Class PrintService -->
+<A HREF="android.printservice.PrintService.html" class="hiddenlink" target="rightframe">PrintService</A><br>
+<!-- Class ProgressBar -->
+<A HREF="android.widget.ProgressBar.html" class="hiddenlink" target="rightframe">ProgressBar</A><br>
+<!-- Class ProxyInfo -->
+<A HREF="android.net.ProxyInfo.html" class="hiddenlink" target="rightframe">ProxyInfo</A><br>
+<!-- Class R.attr -->
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#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="android.R.attr.html" class="hiddenlink" target="rightframe">R.attr</A><br>
+<!-- Class R.dimen -->
+<A HREF="android.R.dimen.html" class="hiddenlink" target="rightframe">R.dimen</A><br>
+<!-- Class R.id -->
+<A HREF="android.R.id.html" class="hiddenlink" target="rightframe">R.id</A><br>
+<!-- Class R.interpolator -->
+<A HREF="android.R.interpolator.html" class="hiddenlink" target="rightframe">R.interpolator</A><br>
+<!-- Class R.style -->
+<A HREF="android.R.style.html" class="hiddenlink" target="rightframe">R.style</A><br>
+<!-- Class R.transition -->
+<A HREF="android.R.transition.html" class="hiddenlink" target="rightframe">R.transition</A><br>
+<!-- Class Range -->
+<A HREF="android.util.Range.html" class="hiddenlink" target="rightframe">Range</A><br>
+<!-- Class Rational -->
+<A HREF="android.util.Rational.html" class="hiddenlink" target="rightframe">Rational</A><br>
+<!-- Field RAW_CONTACT_ID -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RAW_CONTACT_ID" class="hiddenlink" target="rightframe">RAW_CONTACT_ID</A>
+</nobr><br>
+<!-- Field RAW_CONTACT_SOURCE_ID -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RAW_CONTACT_SOURCE_ID" class="hiddenlink" target="rightframe">RAW_CONTACT_SOURCE_ID</A>
+</nobr><br>
+<!-- Field READ_SOCIAL_STREAM -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.READ_SOCIAL_STREAM" class="hiddenlink" target="rightframe">READ_SOCIAL_STREAM</A>
+</nobr><br>
+<!-- Method registerMediaButtonEventReceiver -->
+<i>registerMediaButtonEventReceiver</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.app.PendingIntent)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>PendingIntent</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+<!-- Method registerMediaButtonEventReceiver -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.content.ComponentName)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>ComponentName</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+<!-- Method registerRemoteControlClient -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerRemoteControlClient_changed(android.media.RemoteControlClient)" class="hiddenlink" target="rightframe">registerRemoteControlClient
+(<code>RemoteControlClient</code>)</A></nobr><br>
+<!-- Method registerRemoteController -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerRemoteController_changed(android.media.RemoteController)" class="hiddenlink" target="rightframe">registerRemoteController
+(<code>RemoteController</code>)</A></nobr><br>
+<!-- Class RemoteControlClient -->
+<A HREF="android.media.RemoteControlClient.html" class="hiddenlink" target="rightframe">RemoteControlClient</A><br>
+<!-- Class RemoteControlClient.MetadataEditor -->
+<A HREF="android.media.RemoteControlClient.MetadataEditor.html" class="hiddenlink" target="rightframe">RemoteControlClient.MetadataEditor</A><br>
+<!-- Class RemoteController -->
+<A HREF="android.media.RemoteController.html" class="hiddenlink" target="rightframe">RemoteController</A><br>
+<!-- Method removeAllCookie -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeAllCookie_changed()" class="hiddenlink" target="rightframe">removeAllCookie
+()</A></nobr><br>
+<!-- Method removeExpiredCookie -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeExpiredCookie_changed()" class="hiddenlink" target="rightframe">removeExpiredCookie
+()</A></nobr><br>
+<!-- Method removeSessionCookie -->
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeSessionCookie_changed()" class="hiddenlink" target="rightframe">removeSessionCookie
+()</A></nobr><br>
+<!-- Method removeStickyBroadcast -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.removeStickyBroadcast_changed(android.content.Intent)" class="hiddenlink" target="rightframe">removeStickyBroadcast
+(<code>Intent</code>)</A></nobr><br>
+<!-- Method removeStickyBroadcastAsUser -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.removeStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)" class="hiddenlink" target="rightframe">removeStickyBroadcastAsUser
+(<code>Intent, UserHandle</code>)</A></nobr><br>
+<!-- Field REQUEST_AVAILABLE_CAPABILITIES_MANUAL_POST_PROCESSING -->
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_MANUAL_POST_PROCESSING" class="hiddenlink" target="rightframe">REQUEST_AVAILABLE_CAPABILITIES_MANUAL_POST_PROCESSING</A>
+</nobr><br>
+<!-- Field REQUEST_AVAILABLE_CAPABILITIES_MANUAL_SENSOR -->
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_MANUAL_SENSOR" class="hiddenlink" target="rightframe">REQUEST_AVAILABLE_CAPABILITIES_MANUAL_SENSOR</A>
+</nobr><br>
+<!-- Field RES_ICON -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RES_ICON" class="hiddenlink" target="rightframe">RES_ICON</A>
+</nobr><br>
+<!-- Field RES_LABEL -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RES_LABEL" class="hiddenlink" target="rightframe">RES_LABEL</A>
+</nobr><br>
+<!-- Field RES_PACKAGE -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RES_PACKAGE" class="hiddenlink" target="rightframe">RES_PACKAGE</A>
+</nobr><br>
+<!-- Field RESOURCE_AUDIO_CAPTURE -->
+<nobr><A HREF="android.webkit.PermissionRequest.html#android.webkit.PermissionRequest.RESOURCE_AUDIO_CAPTURE" class="hiddenlink" target="rightframe">RESOURCE_AUDIO_CAPTURE</A>
+</nobr><br>
+<!-- Field RESOURCE_VIDEO_CAPTURE -->
+<nobr><A HREF="android.webkit.PermissionRequest.html#android.webkit.PermissionRequest.RESOURCE_VIDEO_CAPTURE" class="hiddenlink" target="rightframe">RESOURCE_VIDEO_CAPTURE</A>
+</nobr><br>
+<!-- Class RestrictionEntry -->
+<A HREF="android.content.RestrictionEntry.html" class="hiddenlink" target="rightframe">RestrictionEntry</A><br>
+<!-- Field reversible -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.reversible" class="hiddenlink" target="rightframe">reversible</A>
+</nobr><br>
+<!-- Class Ringtone -->
+<A HREF="android.media.Ringtone.html" class="hiddenlink" target="rightframe">Ringtone</A><br>
+<!-- Class RippleDrawable -->
+<i>RippleDrawable</i><br>
+&nbsp;&nbsp;<A HREF="android.graphics.drawable.RippleDrawable.html" class="hiddenlink" target="rightframe">android.graphics.drawable</A><br>
+<!-- Constructor RippleDrawable -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.RippleDrawable.html#android.graphics.drawable.RippleDrawable.ctor_changed(android.content.res.ColorStateList, android.graphics.drawable.Drawable, android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe">RippleDrawable
+(<code>ColorStateList, Drawable, Drawable</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class ScanCallback -->
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#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="android.bluetooth.le.ScanCallback.html" class="hiddenlink" target="rightframe">ScanCallback</A><br>
+<!-- Class ScanFilter -->
+<A HREF="android.bluetooth.le.ScanFilter.html" class="hiddenlink" target="rightframe">ScanFilter</A><br>
+<!-- Class ScanFilter.Builder -->
+<A HREF="android.bluetooth.le.ScanFilter.Builder.html" class="hiddenlink" target="rightframe">ScanFilter.Builder</A><br>
+<!-- Class ScanRecord -->
+<A HREF="android.bluetooth.le.ScanRecord.html" class="hiddenlink" target="rightframe">ScanRecord</A><br>
+<!-- Class ScanResult -->
+<A HREF="android.bluetooth.le.ScanResult.html" class="hiddenlink" target="rightframe">ScanResult</A><br>
+<!-- Class ScanSettings -->
+<A HREF="android.bluetooth.le.ScanSettings.html" class="hiddenlink" target="rightframe">ScanSettings</A><br>
+<!-- Class ScanSettings.Builder -->
+<A HREF="android.bluetooth.le.ScanSettings.Builder.html" class="hiddenlink" target="rightframe">ScanSettings.Builder</A><br>
+<!-- Class ScheduledThreadPoolExecutor -->
+<A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html" class="hiddenlink" target="rightframe">ScheduledThreadPoolExecutor</A><br>
+<!-- Class ScriptC -->
+<A HREF="android.renderscript.ScriptC.html" class="hiddenlink" target="rightframe">ScriptC</A><br>
+<!-- Field selectableItemBackgroundBorderless -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.selectableItemBackgroundBorderless" class="hiddenlink" target="rightframe">selectableItemBackgroundBorderless</A>
+</nobr><br>
+<!-- Method sendStickyBroadcast -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyBroadcast_changed(android.content.Intent)" class="hiddenlink" target="rightframe">sendStickyBroadcast
+(<code>Intent</code>)</A></nobr><br>
+<!-- Method sendStickyBroadcastAsUser -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)" class="hiddenlink" target="rightframe">sendStickyBroadcastAsUser
+(<code>Intent, UserHandle</code>)</A></nobr><br>
+<!-- Method sendStickyOrderedBroadcast -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyOrderedBroadcast_changed(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">sendStickyOrderedBroadcast
+(<code>Intent, BroadcastReceiver, Handler, int, String, Bundle</code>)</A></nobr><br>
+<!-- Method sendStickyOrderedBroadcastAsUser -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyOrderedBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">sendStickyOrderedBroadcastAsUser
+(<code>Intent, UserHandle, BroadcastReceiver, Handler, int, String, Bundle</code>)</A></nobr><br>
+<!-- Class Sensor -->
+<A HREF="android.hardware.Sensor.html" class="hiddenlink" target="rightframe">Sensor</A><br>
+<!-- Class SensorManager -->
+<A HREF="android.hardware.SensorManager.html" class="hiddenlink" target="rightframe">SensorManager</A><br>
+<!-- Field SERVICE_TYPE_AUDIO -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.SERVICE_TYPE_AUDIO" class="hiddenlink" target="rightframe">SERVICE_TYPE_AUDIO</A>
+</nobr><br>
+<!-- Field SERVICE_TYPE_AUDIO_VIDEO -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.SERVICE_TYPE_AUDIO_VIDEO" class="hiddenlink" target="rightframe">SERVICE_TYPE_AUDIO_VIDEO</A>
+</nobr><br>
+<!-- Field SERVICE_TYPE_OTHER -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.SERVICE_TYPE_OTHER" class="hiddenlink" target="rightframe">SERVICE_TYPE_OTHER</A>
+</nobr><br>
+<!-- Field sessionService -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.sessionService" class="hiddenlink" target="rightframe">sessionService</A>
+</nobr><br>
+<!-- Method setCamera -->
+<nobr><A HREF="android.media.MediaRecorder.html#android.media.MediaRecorder.setCamera_changed(android.hardware.Camera)" class="hiddenlink" target="rightframe">setCamera
+(<code>Camera</code>)</A></nobr><br>
+<!-- Method setInsertionMarkerLocation -->
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.Builder.html#android.view.inputmethod.CursorAnchorInfo.Builder.setInsertionMarkerLocation_changed(float, float, float, float, int)" class="hiddenlink" target="rightframe">setInsertionMarkerLocation
+(<code>float, float, float, float, int</code>)</A></nobr><br>
+<!-- Method setMediaSession -->
+<nobr><A HREF="android.app.Notification.MediaStyle.html#android.app.Notification.MediaStyle.setMediaSession_changed(android.media.session.MediaSession.Token)" class="hiddenlink" target="rightframe">setMediaSession
+(<code>Token</code>)</A></nobr><br>
+<!-- Method setPlaybackToLocal -->
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setPlaybackToLocal_changed(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">setPlaybackToLocal
+(<code>AudioAttributes</code>)</A></nobr><br>
+<!-- Method setPlaybackToRemote -->
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setPlaybackToRemote_changed(android.media.VolumeProvider)" class="hiddenlink" target="rightframe">setPlaybackToRemote
+(<code>VolumeProvider</code>)</A></nobr><br>
+<!-- Method setReparent -->
+<nobr><A HREF="android.transition.ChangeBounds.html#android.transition.ChangeBounds.setReparent_changed(boolean)" class="hiddenlink" target="rightframe">setReparent
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setRepeatingBurst -->
+<nobr><A HREF="android.hardware.camera2.CameraCaptureSession.html#android.hardware.camera2.CameraCaptureSession.setRepeatingBurst_changed(java.util.List<android.hardware.camera2.CaptureRequest>, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)" class="hiddenlink" target="rightframe">setRepeatingBurst
+(<code>List&lt;CaptureRequest&gt;, CaptureCallback, Handler</code>)</A></nobr><br>
+<!-- Method setRepeatingRequest -->
+<nobr><A HREF="android.hardware.camera2.CameraCaptureSession.html#android.hardware.camera2.CameraCaptureSession.setRepeatingRequest_changed(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)" class="hiddenlink" target="rightframe">setRepeatingRequest
+(<code>CaptureRequest, CaptureCallback, Handler</code>)</A></nobr><br>
+<!-- Method setStreamType -->
+<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.setStreamType_changed(int)" class="hiddenlink" target="rightframe">setStreamType
+(<code>int</code>)</A></nobr><br>
+<!-- Method setTicker -->
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setTicker_changed(java.lang.CharSequence, android.widget.RemoteViews)" class="hiddenlink" target="rightframe">setTicker
+(<code>CharSequence, RemoteViews</code>)</A></nobr><br>
+<!-- Class SettingInjectorService -->
+<A HREF="android.location.SettingInjectorService.html" class="hiddenlink" target="rightframe">SettingInjectorService</A><br>
+<!-- Class Settings -->
+<A HREF="android.provider.Settings.html" class="hiddenlink" target="rightframe">Settings</A><br>
+<!-- Class Settings.Secure -->
+<A HREF="android.provider.Settings.Secure.html" class="hiddenlink" target="rightframe">Settings.Secure</A><br>
+<!-- Class Settings.System -->
+<A HREF="android.provider.Settings.System.html" class="hiddenlink" target="rightframe">Settings.System</A><br>
+<!-- Method setTint -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTint_changed(int)" class="hiddenlink" target="rightframe">setTint
+(<code>int</code>)</A></nobr><br>
+<!-- Method setUserRestriction -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestriction_changed(java.lang.String, boolean)" class="hiddenlink" target="rightframe">setUserRestriction
+(<code>String, boolean</code>)</A></nobr><br>
+<!-- Method setUserRestrictions -->
+<i>setUserRestrictions</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestrictions_changed(android.os.Bundle)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Bundle</code>)&nbsp;in&nbsp;android.os.UserManager
+</A></nobr><br>
+<!-- Method setUserRestrictions -->
+&nbsp;&nbsp;<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestrictions_changed(android.os.Bundle, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Bundle, UserHandle</code>)&nbsp;in&nbsp;android.os.UserManager
+</A></nobr><br>
+<!-- Class Shape -->
+<A HREF="android.graphics.drawable.shapes.Shape.html" class="hiddenlink" target="rightframe">Shape</A><br>
+<!-- Field SHOPPING -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.SHOPPING" class="hiddenlink" target="rightframe">SHOPPING</A>
+</nobr><br>
+<!-- Class Size -->
+<A HREF="android.util.Size.html" class="hiddenlink" target="rightframe">Size</A><br>
+<!-- Class SizeF -->
+<A HREF="android.util.SizeF.html" class="hiddenlink" target="rightframe">SizeF</A><br>
+<!-- Class Slide -->
+<A HREF="android.transition.Slide.html" class="hiddenlink" target="rightframe">Slide</A><br>
+<!-- Field slideEdge -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.slideEdge" class="hiddenlink" target="rightframe">slideEdge</A>
+</nobr><br>
+<!-- Class SmsManager -->
+<A HREF="android.telephony.SmsManager.html" class="hiddenlink" target="rightframe">SmsManager</A><br>
+<!-- Field SORT_INDEX -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SORT_INDEX" class="hiddenlink" target="rightframe">SORT_INDEX</A>
+</nobr><br>
+<!-- Class SoundPool -->
+<i>SoundPool</i><br>
+&nbsp;&nbsp;<A HREF="android.media.SoundPool.html" class="hiddenlink" target="rightframe">android.media</A><br>
+<!-- Constructor SoundPool -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.SoundPool.html#android.media.SoundPool.ctor_changed(int, int, int)" class="hiddenlink" target="rightframe">SoundPool
+(<code>int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class SpannableStringBuilder -->
+<A HREF="android.text.SpannableStringBuilder.html" class="hiddenlink" target="rightframe">SpannableStringBuilder</A><br>
+<!-- Method speak -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.speak_changed(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">speak
+(<code>String, int, HashMap&lt;String, String&gt;</code>)</A></nobr><br>
+<!-- Field splitTrack -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.splitTrack" class="hiddenlink" target="rightframe">splitTrack</A>
+</nobr><br>
+<!-- Field SPORTS -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.SPORTS" class="hiddenlink" target="rightframe">SPORTS</A>
+</nobr><br>
+<!-- Field stackViewStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.stackViewStyle" class="hiddenlink" target="rightframe">stackViewStyle</A>
+</nobr><br>
+<!-- Method startLeScan -->
+<i>startLeScan</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.startLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>LeScanCallback</code>)&nbsp;in&nbsp;android.bluetooth.BluetoothAdapter
+</A></nobr><br>
+<!-- Method startLeScan -->
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.startLeScan_changed(java.util.UUID[], android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>UUID[], LeScanCallback</code>)&nbsp;in&nbsp;android.bluetooth.BluetoothAdapter
+</A></nobr><br>
+<!-- Field stateListAnimator -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.stateListAnimator" class="hiddenlink" target="rightframe">stateListAnimator</A>
+</nobr><br>
+<!-- Field statusBarColor -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.statusBarColor" class="hiddenlink" target="rightframe">statusBarColor</A>
+</nobr><br>
+<!-- Class StatusBarNotification -->
+<A HREF="android.service.notification.StatusBarNotification.html" class="hiddenlink" target="rightframe">StatusBarNotification</A><br>
+<!-- Method stopLeScan -->
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.stopLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">stopLeScan
+(<code>LeScanCallback</code>)</A></nobr><br>
+<!-- Field STREAM_DEFAULT -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.STREAM_DEFAULT" class="hiddenlink" target="rightframe">STREAM_DEFAULT</A>
+</nobr><br>
+<!-- Field STREAM_ITEM_ID -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.STREAM_ITEM_ID" class="hiddenlink" target="rightframe">STREAM_ITEM_ID</A>
+</nobr><br>
+<!-- Class StreamConfigurationMap -->
+<A HREF="android.hardware.camera2.params.StreamConfigurationMap.html" class="hiddenlink" target="rightframe">StreamConfigurationMap</A><br>
+<!-- Field strokeLineCap -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeLineCap" class="hiddenlink" target="rightframe">strokeLineCap</A>
+</nobr><br>
+<!-- Field strokeLineJoin -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeLineJoin" class="hiddenlink" target="rightframe">strokeLineJoin</A>
+</nobr><br>
+<!-- Field strokeWidth -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeWidth" class="hiddenlink" target="rightframe">strokeWidth</A>
+</nobr><br>
+<!-- Field subtitleTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.subtitleTextAppearance" class="hiddenlink" target="rightframe">subtitleTextAppearance</A>
+</nobr><br>
+<!-- Class Switch -->
+<A HREF="android.widget.Switch.html" class="hiddenlink" target="rightframe">Switch</A><br>
+<!-- Field switchStyle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.switchStyle" class="hiddenlink" target="rightframe">switchStyle</A>
+</nobr><br>
+<!-- Field SYNC1 -->
+<i>SYNC1</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC1" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<!-- Field SYNC1 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC1" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<!-- Field SYNC2 -->
+<i>SYNC2</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC2" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<!-- Field SYNC2 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC2" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<!-- Field SYNC3 -->
+<i>SYNC3</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC3" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<!-- Field SYNC3 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC3" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<!-- Field SYNC4 -->
+<i>SYNC4</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC4" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<!-- Field SYNC4 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC4" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<!-- Method syncFromRamToFlash -->
+<nobr><A HREF="android.webkit.CookieSyncManager.html#android.webkit.CookieSyncManager.syncFromRamToFlash_changed()" class="hiddenlink" target="rightframe">syncFromRamToFlash
+()</A></nobr><br>
+<!-- Class SynthesisCallback -->
+<A HREF="android.speech.tts.SynthesisCallback.html" class="hiddenlink" target="rightframe"><i>SynthesisCallback</i></A><br>
+<!-- Class SynthesisRequest -->
+<A HREF="android.speech.tts.SynthesisRequest.html" class="hiddenlink" target="rightframe">SynthesisRequest</A><br>
+<!-- Method synthesizeToFile -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.synthesizeToFile_changed(java.lang.String, java.util.HashMap<java.lang.String, java.lang.String>, java.lang.String)" class="hiddenlink" target="rightframe">synthesizeToFile
+(<code>String, HashMap&lt;String, String&gt;, String</code>)</A></nobr><br>
+<!-- Class Telephony.BaseMmsColumns -->
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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="#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="android.provider.Telephony.BaseMmsColumns.html" class="hiddenlink" target="rightframe"><i>Telephony.BaseMmsColumns</i></A><br>
+<!-- Class Telephony.TextBasedSmsColumns -->
+<A HREF="android.provider.Telephony.TextBasedSmsColumns.html" class="hiddenlink" target="rightframe"><i>Telephony.TextBasedSmsColumns</i></A><br>
+<!-- Class Telephony.ThreadsColumns -->
+<A HREF="android.provider.Telephony.ThreadsColumns.html" class="hiddenlink" target="rightframe"><i>Telephony.ThreadsColumns</i></A><br>
+<!-- Class TelephonyManager -->
+<A HREF="android.telephony.TelephonyManager.html" class="hiddenlink" target="rightframe">TelephonyManager</A><br>
+<!-- Field TEXT -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.TEXT" class="hiddenlink" target="rightframe">TEXT</A>
+</nobr><br>
+<!-- Field TextAppearance_Material -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material" class="hiddenlink" target="rightframe">TextAppearance_Material</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Body1 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Body1" class="hiddenlink" target="rightframe">TextAppearance_Material_Body1</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Body2 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Body2" class="hiddenlink" target="rightframe">TextAppearance_Material_Body2</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Button -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Button" class="hiddenlink" target="rightframe">TextAppearance_Material_Button</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Caption -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Caption" class="hiddenlink" target="rightframe">TextAppearance_Material_Caption</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_DialogWindowTitle -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_DialogWindowTitle" class="hiddenlink" target="rightframe">TextAppearance_Material_DialogWindowTitle</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Display1 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display1" class="hiddenlink" target="rightframe">TextAppearance_Material_Display1</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Display2 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display2" class="hiddenlink" target="rightframe">TextAppearance_Material_Display2</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Display3 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display3" class="hiddenlink" target="rightframe">TextAppearance_Material_Display3</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Display4 -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display4" class="hiddenlink" target="rightframe">TextAppearance_Material_Display4</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Headline -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Headline" class="hiddenlink" target="rightframe">TextAppearance_Material_Headline</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Large -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Large" class="hiddenlink" target="rightframe">TextAppearance_Material_Large</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Large_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Large_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Large_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Medium -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Medium" class="hiddenlink" target="rightframe">TextAppearance_Material_Medium</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Medium_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Medium_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Medium_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Menu -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Menu" class="hiddenlink" target="rightframe">TextAppearance_Material_Menu</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_SearchResult_Subtitle -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_SearchResult_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_SearchResult_Subtitle</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_SearchResult_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_SearchResult_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_SearchResult_Title</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Small" class="hiddenlink" target="rightframe">TextAppearance_Material_Small</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Small_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Small_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Small_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Subhead -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Subhead" class="hiddenlink" target="rightframe">TextAppearance_Material_Subhead</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Title</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionBar_Menu -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Menu" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Menu</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionBar_Subtitle -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Subtitle</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionBar_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Title</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionBar_Title_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Title_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Title_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionMode_Subtitle -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Subtitle</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionMode_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Title</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_ActionMode_Title_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Title_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Title_Inverse</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_Button -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_Button" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_Button</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_DropDownHint -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_DropDownHint" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_DropDownHint</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_DropDownItem -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_DropDownItem" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_DropDownItem</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_EditText -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_EditText" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_EditText</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_IconMenu_Item -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_IconMenu_Item" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_IconMenu_Item</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_PopupMenu -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_PopupMenu" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_PopupMenu</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_PopupMenu_Large -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_PopupMenu_Large" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_PopupMenu_Large</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_PopupMenu_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_PopupMenu_Small" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_PopupMenu_Small</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_TabWidget -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TabWidget" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TabWidget</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_TextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TextView" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TextView</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_TextView_PopupMenu -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TextView_PopupMenu" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TextView_PopupMenu</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_Widget_TextView_SpinnerItem -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TextView_SpinnerItem" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TextView_SpinnerItem</A>
+</nobr><br>
+<!-- Field TextAppearance_Material_WindowTitle -->
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_WindowTitle" class="hiddenlink" target="rightframe">TextAppearance_Material_WindowTitle</A>
+</nobr><br>
+<!-- Field textAppearanceListItemSecondary -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.textAppearanceListItemSecondary" class="hiddenlink" target="rightframe">textAppearanceListItemSecondary</A>
+</nobr><br>
+<!-- Class TextInfo -->
+<A HREF="android.view.textservice.TextInfo.html" class="hiddenlink" target="rightframe">TextInfo</A><br>
+<!-- Class TextToSpeech -->
+<A HREF="android.speech.tts.TextToSpeech.html" class="hiddenlink" target="rightframe">TextToSpeech</A><br>
+<!-- Class TextToSpeech.Engine -->
+<A HREF="android.speech.tts.TextToSpeech.Engine.html" class="hiddenlink" target="rightframe">TextToSpeech.Engine</A><br>
+<!-- Class TextToSpeechService -->
+<A HREF="android.speech.tts.TextToSpeechService.html" class="hiddenlink" target="rightframe">TextToSpeechService</A><br>
+<!-- Class TextView -->
+<A HREF="android.widget.TextView.html" class="hiddenlink" target="rightframe">TextView</A><br>
+<!-- Field Theme_DeviceDefault_Settings -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_DeviceDefault_Settings" class="hiddenlink" target="rightframe">Theme_DeviceDefault_Settings</A>
+</nobr><br>
+<!-- Field Theme_Material -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material" class="hiddenlink" target="rightframe">Theme_Material</A>
+</nobr><br>
+<!-- Field Theme_Material_Dialog -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog" class="hiddenlink" target="rightframe">Theme_Material_Dialog</A>
+</nobr><br>
+<!-- Field Theme_Material_Dialog_MinWidth -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Dialog_MinWidth</A>
+</nobr><br>
+<!-- Field Theme_Material_Dialog_NoActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Dialog_NoActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_Dialog_NoActionBar_MinWidth -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_NoActionBar_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Dialog_NoActionBar_MinWidth</A>
+</nobr><br>
+<!-- Field Theme_Material_DialogWhenLarge -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_DialogWhenLarge" class="hiddenlink" target="rightframe">Theme_Material_DialogWhenLarge</A>
+</nobr><br>
+<!-- Field Theme_Material_DialogWhenLarge_NoActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_DialogWhenLarge_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_DialogWhenLarge_NoActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_InputMethod -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_InputMethod" class="hiddenlink" target="rightframe">Theme_Material_InputMethod</A>
+</nobr><br>
+<!-- Field Theme_Material_Light -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light" class="hiddenlink" target="rightframe">Theme_Material_Light</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_DarkActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_DarkActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_DarkActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Dialog -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Dialog_MinWidth -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_MinWidth</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Dialog_NoActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_NoActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Dialog_NoActionBar_MinWidth -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_NoActionBar_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_NoActionBar_MinWidth</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_DialogWhenLarge -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_DialogWhenLarge" class="hiddenlink" target="rightframe">Theme_Material_Light_DialogWhenLarge</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_DialogWhenLarge_NoActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_DialogWhenLarge_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_DialogWhenLarge_NoActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_NoActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_NoActionBar_Fullscreen -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar_Fullscreen" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar_Fullscreen</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_NoActionBar_Overscan -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar_Overscan" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar_Overscan</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_NoActionBar_TranslucentDecor -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar_TranslucentDecor" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar_TranslucentDecor</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Panel -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Panel" class="hiddenlink" target="rightframe">Theme_Material_Light_Panel</A>
+</nobr><br>
+<!-- Field Theme_Material_Light_Voice -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Voice" class="hiddenlink" target="rightframe">Theme_Material_Light_Voice</A>
+</nobr><br>
+<!-- Field Theme_Material_NoActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar</A>
+</nobr><br>
+<!-- Field Theme_Material_NoActionBar_Fullscreen -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar_Fullscreen" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar_Fullscreen</A>
+</nobr><br>
+<!-- Field Theme_Material_NoActionBar_Overscan -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar_Overscan" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar_Overscan</A>
+</nobr><br>
+<!-- Field Theme_Material_NoActionBar_TranslucentDecor -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar_TranslucentDecor" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar_TranslucentDecor</A>
+</nobr><br>
+<!-- Field Theme_Material_Panel -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Panel" class="hiddenlink" target="rightframe">Theme_Material_Panel</A>
+</nobr><br>
+<!-- Field Theme_Material_Settings -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Settings" class="hiddenlink" target="rightframe">Theme_Material_Settings</A>
+</nobr><br>
+<!-- Field Theme_Material_Voice -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Voice" class="hiddenlink" target="rightframe">Theme_Material_Voice</A>
+</nobr><br>
+<!-- Field Theme_Material_Wallpaper -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Wallpaper" class="hiddenlink" target="rightframe">Theme_Material_Wallpaper</A>
+</nobr><br>
+<!-- Field Theme_Material_Wallpaper_NoTitleBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Wallpaper_NoTitleBar" class="hiddenlink" target="rightframe">Theme_Material_Wallpaper_NoTitleBar</A>
+</nobr><br>
+<!-- Field ThemeOverlay -->
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay" class="hiddenlink" target="rightframe">ThemeOverlay</A>
+</nobr><br>
+<!-- Field ThemeOverlay_Material -->
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material" class="hiddenlink" target="rightframe">ThemeOverlay_Material</A>
+</nobr><br>
+<!-- Field ThemeOverlay_Material_ActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_ActionBar" class="hiddenlink" target="rightframe">ThemeOverlay_Material_ActionBar</A>
+</nobr><br>
+<!-- Field ThemeOverlay_Material_Dark -->
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_Dark" class="hiddenlink" target="rightframe">ThemeOverlay_Material_Dark</A>
+</nobr><br>
+<!-- Field ThemeOverlay_Material_Dark_ActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_Dark_ActionBar" class="hiddenlink" target="rightframe">ThemeOverlay_Material_Dark_ActionBar</A>
+</nobr><br>
+<!-- Field ThemeOverlay_Material_Light -->
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_Light" class="hiddenlink" target="rightframe">ThemeOverlay_Material_Light</A>
+</nobr><br>
+<!-- Field tickerView -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.tickerView" class="hiddenlink" target="rightframe">tickerView</A>
+</nobr><br>
+<!-- Field TIMESTAMP -->
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.TIMESTAMP" class="hiddenlink" target="rightframe">TIMESTAMP</A>
+</nobr><br>
+<!-- Field tintMode -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.tintMode" class="hiddenlink" target="rightframe">tintMode</A>
+</nobr><br>
+<!-- Field titleTextAppearance -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.titleTextAppearance" class="hiddenlink" target="rightframe">titleTextAppearance</A>
+</nobr><br>
+<!-- Field toId -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.toId" class="hiddenlink" target="rightframe">toId</A>
+</nobr><br>
+<!-- Class Toolbar -->
+<A HREF="android.widget.Toolbar.html" class="hiddenlink" target="rightframe">Toolbar</A><br>
+<!-- Class Transition -->
+<A HREF="android.transition.Transition.html" class="hiddenlink" target="rightframe">Transition</A><br>
+<!-- Field transitionGroup -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.transitionGroup" class="hiddenlink" target="rightframe">transitionGroup</A>
+</nobr><br>
+<!-- Class TransitionSet -->
+<A HREF="android.transition.TransitionSet.html" class="hiddenlink" target="rightframe">TransitionSet</A><br>
+<!-- Field translationZ -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.translationZ" class="hiddenlink" target="rightframe">translationZ</A>
+</nobr><br>
+<!-- Field TRAVEL -->
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.TRAVEL" class="hiddenlink" target="rightframe">TRAVEL</A>
+</nobr><br>
+<!-- Field trimPathEnd -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.trimPathEnd" class="hiddenlink" target="rightframe">trimPathEnd</A>
+</nobr><br>
+<!-- Field trimPathOffset -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.trimPathOffset" class="hiddenlink" target="rightframe">trimPathOffset</A>
+</nobr><br>
+<!-- Field trimPathStart -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.trimPathStart" class="hiddenlink" target="rightframe">trimPathStart</A>
+</nobr><br>
+<!-- Class TvContract -->
+<A HREF="android.media.tv.TvContract.html" class="hiddenlink" target="rightframe">TvContract</A><br>
+<!-- Class TvContract.Channels -->
+<A HREF="android.media.tv.TvContract.Channels.html" class="hiddenlink" target="rightframe">TvContract.Channels</A><br>
+<!-- Class TvContract.Programs -->
+<A HREF="android.media.tv.TvContract.Programs.html" class="hiddenlink" target="rightframe">TvContract.Programs</A><br>
+<!-- Class TvContract.Programs.Genres -->
+<A HREF="android.media.tv.TvContract.Programs.Genres.html" class="hiddenlink" target="rightframe">TvContract.Programs.Genres</A><br>
+<!-- Class TvInputInfo -->
+<A HREF="android.media.tv.TvInputInfo.html" class="hiddenlink" target="rightframe">TvInputInfo</A><br>
+<!-- Class TvInputManager -->
+<A HREF="android.media.tv.TvInputManager.html" class="hiddenlink" target="rightframe">TvInputManager</A><br>
+<!-- Class TvInputService -->
+<A HREF="android.media.tv.TvInputService.html" class="hiddenlink" target="rightframe">TvInputService</A><br>
+<!-- Class TvInputService.Session -->
+<i>TvInputService.Session</i><br>
+&nbsp;&nbsp;<A HREF="android.media.tv.TvInputService.Session.html" class="hiddenlink" target="rightframe">android.media.tv</A><br>
+<!-- Constructor TvInputService.Session -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.ctor_changed(android.content.Context)" class="hiddenlink" target="rightframe">TvInputService.Session
+(<code>Context</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Class TvView -->
+<A HREF="android.media.tv.TvView.html" class="hiddenlink" target="rightframe">TvView</A><br>
+<!-- Field TYPE_1SEG -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_1SEG" class="hiddenlink" target="rightframe">TYPE_1SEG</A>
+</nobr><br>
+<!-- Field TYPE_ATSC_C -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ATSC_C" class="hiddenlink" target="rightframe">TYPE_ATSC_C</A>
+</nobr><br>
+<!-- Field TYPE_ATSC_M_H -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ATSC_M_H" class="hiddenlink" target="rightframe">TYPE_ATSC_M_H</A>
+</nobr><br>
+<!-- Field TYPE_ATSC_T -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ATSC_T" class="hiddenlink" target="rightframe">TYPE_ATSC_T</A>
+</nobr><br>
+<!-- Field TYPE_CMMB -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_CMMB" class="hiddenlink" target="rightframe">TYPE_CMMB</A>
+</nobr><br>
+<!-- Field TYPE_DTMB -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DTMB" class="hiddenlink" target="rightframe">TYPE_DTMB</A>
+</nobr><br>
+<!-- Field TYPE_DVB_C -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_C" class="hiddenlink" target="rightframe">TYPE_DVB_C</A>
+</nobr><br>
+<!-- Field TYPE_DVB_C2 -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_C2" class="hiddenlink" target="rightframe">TYPE_DVB_C2</A>
+</nobr><br>
+<!-- Field TYPE_DVB_H -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_H" class="hiddenlink" target="rightframe">TYPE_DVB_H</A>
+</nobr><br>
+<!-- Field TYPE_DVB_S -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_S" class="hiddenlink" target="rightframe">TYPE_DVB_S</A>
+</nobr><br>
+<!-- Field TYPE_DVB_S2 -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_S2" class="hiddenlink" target="rightframe">TYPE_DVB_S2</A>
+</nobr><br>
+<!-- Field TYPE_DVB_SH -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_SH" class="hiddenlink" target="rightframe">TYPE_DVB_SH</A>
+</nobr><br>
+<!-- Field TYPE_DVB_T -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_T" class="hiddenlink" target="rightframe">TYPE_DVB_T</A>
+</nobr><br>
+<!-- Field TYPE_DVB_T2 -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_T2" class="hiddenlink" target="rightframe">TYPE_DVB_T2</A>
+</nobr><br>
+<!-- Field TYPE_HDMI -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_HDMI" class="hiddenlink" target="rightframe">TYPE_HDMI</A>
+</nobr><br>
+<!-- Field TYPE_ISDB_C -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ISDB_C" class="hiddenlink" target="rightframe">TYPE_ISDB_C</A>
+</nobr><br>
+<!-- Field TYPE_ISDB_S -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ISDB_S" class="hiddenlink" target="rightframe">TYPE_ISDB_S</A>
+</nobr><br>
+<!-- Field TYPE_ISDB_T -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ISDB_T" class="hiddenlink" target="rightframe">TYPE_ISDB_T</A>
+</nobr><br>
+<!-- Field TYPE_ISDB_TB -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ISDB_TB" class="hiddenlink" target="rightframe">TYPE_ISDB_TB</A>
+</nobr><br>
+<!-- Field TYPE_OTHER -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_OTHER" class="hiddenlink" target="rightframe">TYPE_OTHER</A>
+</nobr><br>
+<!-- Field TYPE_S_DMB -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_S_DMB" class="hiddenlink" target="rightframe">TYPE_S_DMB</A>
+</nobr><br>
+<!-- Field TYPE_T_DMB -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_T_DMB" class="hiddenlink" target="rightframe">TYPE_T_DMB</A>
+</nobr><br>
+<!-- Field TYPE_TUNER -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_TUNER" class="hiddenlink" target="rightframe">TYPE_TUNER</A>
+</nobr><br>
+<!-- Class TypedArray -->
+<A HREF="android.content.res.TypedArray.html" class="hiddenlink" target="rightframe">TypedArray</A><br>
+<!-- Class UiModeManager -->
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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="#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="android.app.UiModeManager.html" class="hiddenlink" target="rightframe">UiModeManager</A><br>
+<!-- Method unregisterMediaButtonEventReceiver -->
+<i>unregisterMediaButtonEventReceiver</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.app.PendingIntent)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>PendingIntent</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+<!-- Method unregisterMediaButtonEventReceiver -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.content.ComponentName)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>ComponentName</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+<!-- Method unregisterRemoteControlClient -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterRemoteControlClient_changed(android.media.RemoteControlClient)" class="hiddenlink" target="rightframe">unregisterRemoteControlClient
+(<code>RemoteControlClient</code>)</A></nobr><br>
+<!-- Method unregisterRemoteController -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterRemoteController_changed(android.media.RemoteController)" class="hiddenlink" target="rightframe">unregisterRemoteController
+(<code>RemoteController</code>)</A></nobr><br>
+<!-- Method updateCursor -->
+<nobr><A HREF="android.view.inputmethod.InputMethodManager.html#android.view.inputmethod.InputMethodManager.updateCursor_changed(android.view.View, int, int, int, int)" class="hiddenlink" target="rightframe">updateCursor
+(<code>View, int, int, int, int</code>)</A></nobr><br>
+<!-- Class UserManager -->
+<A HREF="android.os.UserManager.html" class="hiddenlink" target="rightframe">UserManager</A><br>
+<!-- Class UtteranceProgressListener -->
+<A HREF="android.speech.tts.UtteranceProgressListener.html" class="hiddenlink" target="rightframe">UtteranceProgressListener</A><br>
+<!-- Class Vibrator -->
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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="#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="android.os.Vibrator.html" class="hiddenlink" target="rightframe">Vibrator</A><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 ViewAnimationUtils -->
+<A HREF="android.view.ViewAnimationUtils.html" class="hiddenlink" target="rightframe">ViewAnimationUtils</A><br>
+<!-- Class ViewGroup -->
+<A HREF="android.view.ViewGroup.html" class="hiddenlink" target="rightframe">ViewGroup</A><br>
+<!-- Class ViewParent -->
+<A HREF="android.view.ViewParent.html" class="hiddenlink" target="rightframe"><i>ViewParent</i></A><br>
+<!-- Field viewportHeight -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.viewportHeight" class="hiddenlink" target="rightframe">viewportHeight</A>
+</nobr><br>
+<!-- Field viewportWidth -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.viewportWidth" class="hiddenlink" target="rightframe">viewportWidth</A>
+</nobr><br>
+<!-- Class VirtualDisplay -->
+<A HREF="android.hardware.display.VirtualDisplay.html" class="hiddenlink" target="rightframe">VirtualDisplay</A><br>
+<!-- Class Virtualizer -->
+<A HREF="android.media.audiofx.Virtualizer.html" class="hiddenlink" target="rightframe">Virtualizer</A><br>
+<!-- Class Visibility -->
+<A HREF="android.transition.Visibility.html" class="hiddenlink" target="rightframe">Visibility</A><br>
+<!-- Class VoiceInteractionService -->
+<A HREF="android.service.voice.VoiceInteractionService.html" class="hiddenlink" target="rightframe">VoiceInteractionService</A><br>
+<!-- Class VoiceInteractionSession -->
+<A HREF="android.service.voice.VoiceInteractionSession.html" class="hiddenlink" target="rightframe">VoiceInteractionSession</A><br>
+<!-- Class VoicemailContract.Voicemails -->
+<A HREF="android.provider.VoicemailContract.Voicemails.html" class="hiddenlink" target="rightframe">VoicemailContract.Voicemails</A><br>
+<!-- Class VpnService.Builder -->
+<A HREF="android.net.VpnService.Builder.html" class="hiddenlink" target="rightframe">VpnService.Builder</A><br>
+<!-- Class WallpaperService.Engine -->
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.service.wallpaper.WallpaperService.Engine.html" class="hiddenlink" target="rightframe">WallpaperService.Engine</A><br>
+<!-- Class WebChromeClient -->
+<A HREF="android.webkit.WebChromeClient.html" class="hiddenlink" target="rightframe">WebChromeClient</A><br>
+<!-- Class WebResourceResponse -->
+<A HREF="android.webkit.WebResourceResponse.html" class="hiddenlink" target="rightframe">WebResourceResponse</A><br>
+<!-- Class WebSyncManager -->
+<A HREF="android.webkit.WebSyncManager.html" class="hiddenlink" target="rightframe">WebSyncManager</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 Widget_DeviceDefault_FastScroll -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_FastScroll" class="hiddenlink" target="rightframe">Widget_DeviceDefault_FastScroll</A>
+</nobr><br>
+<!-- Field Widget_DeviceDefault_Light_FastScroll -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_FastScroll" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_FastScroll</A>
+</nobr><br>
+<!-- Field Widget_DeviceDefault_Light_StackView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_StackView" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_StackView</A>
+</nobr><br>
+<!-- Field Widget_DeviceDefault_StackView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_StackView" class="hiddenlink" target="rightframe">Widget_DeviceDefault_StackView</A>
+</nobr><br>
+<!-- Field Widget_FastScroll -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_FastScroll" class="hiddenlink" target="rightframe">Widget_FastScroll</A>
+</nobr><br>
+<!-- Field Widget_Material -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material" class="hiddenlink" target="rightframe">Widget_Material</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar" class="hiddenlink" target="rightframe">Widget_Material_ActionBar</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionBar_Solid -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_Solid" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_Solid</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionBar_TabBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_TabBar" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_TabBar</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionBar_TabText -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_TabText" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_TabText</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionBar_TabView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_TabView" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_TabView</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionButton" class="hiddenlink" target="rightframe">Widget_Material_ActionButton</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionButton_CloseMode -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionButton_CloseMode" class="hiddenlink" target="rightframe">Widget_Material_ActionButton_CloseMode</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionButton_Overflow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionButton_Overflow" class="hiddenlink" target="rightframe">Widget_Material_ActionButton_Overflow</A>
+</nobr><br>
+<!-- Field Widget_Material_ActionMode -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionMode" class="hiddenlink" target="rightframe">Widget_Material_ActionMode</A>
+</nobr><br>
+<!-- Field Widget_Material_AutoCompleteTextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_AutoCompleteTextView" class="hiddenlink" target="rightframe">Widget_Material_AutoCompleteTextView</A>
+</nobr><br>
+<!-- Field Widget_Material_Button -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button" class="hiddenlink" target="rightframe">Widget_Material_Button</A>
+</nobr><br>
+<!-- Field Widget_Material_Button_Borderless -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Borderless" class="hiddenlink" target="rightframe">Widget_Material_Button_Borderless</A>
+</nobr><br>
+<!-- Field Widget_Material_Button_Borderless_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Borderless_Small" class="hiddenlink" target="rightframe">Widget_Material_Button_Borderless_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_Button_Inset -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Inset" class="hiddenlink" target="rightframe">Widget_Material_Button_Inset</A>
+</nobr><br>
+<!-- Field Widget_Material_Button_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Small" class="hiddenlink" target="rightframe">Widget_Material_Button_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_Button_Toggle -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Toggle" class="hiddenlink" target="rightframe">Widget_Material_Button_Toggle</A>
+</nobr><br>
+<!-- Field Widget_Material_ButtonBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ButtonBar" class="hiddenlink" target="rightframe">Widget_Material_ButtonBar</A>
+</nobr><br>
+<!-- Field Widget_Material_ButtonBar_AlertDialog -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ButtonBar_AlertDialog" class="hiddenlink" target="rightframe">Widget_Material_ButtonBar_AlertDialog</A>
+</nobr><br>
+<!-- Field Widget_Material_CalendarView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CalendarView" class="hiddenlink" target="rightframe">Widget_Material_CalendarView</A>
+</nobr><br>
+<!-- Field Widget_Material_CheckedTextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CheckedTextView" class="hiddenlink" target="rightframe">Widget_Material_CheckedTextView</A>
+</nobr><br>
+<!-- Field Widget_Material_CompoundButton_CheckBox -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CompoundButton_CheckBox" class="hiddenlink" target="rightframe">Widget_Material_CompoundButton_CheckBox</A>
+</nobr><br>
+<!-- Field Widget_Material_CompoundButton_RadioButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CompoundButton_RadioButton" class="hiddenlink" target="rightframe">Widget_Material_CompoundButton_RadioButton</A>
+</nobr><br>
+<!-- Field Widget_Material_CompoundButton_Star -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CompoundButton_Star" class="hiddenlink" target="rightframe">Widget_Material_CompoundButton_Star</A>
+</nobr><br>
+<!-- Field Widget_Material_DatePicker -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_DatePicker" class="hiddenlink" target="rightframe">Widget_Material_DatePicker</A>
+</nobr><br>
+<!-- Field Widget_Material_DropDownItem -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_DropDownItem" class="hiddenlink" target="rightframe">Widget_Material_DropDownItem</A>
+</nobr><br>
+<!-- Field Widget_Material_DropDownItem_Spinner -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_DropDownItem_Spinner" class="hiddenlink" target="rightframe">Widget_Material_DropDownItem_Spinner</A>
+</nobr><br>
+<!-- Field Widget_Material_EditText -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_EditText" class="hiddenlink" target="rightframe">Widget_Material_EditText</A>
+</nobr><br>
+<!-- Field Widget_Material_ExpandableListView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ExpandableListView" class="hiddenlink" target="rightframe">Widget_Material_ExpandableListView</A>
+</nobr><br>
+<!-- Field Widget_Material_FastScroll -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_FastScroll" class="hiddenlink" target="rightframe">Widget_Material_FastScroll</A>
+</nobr><br>
+<!-- Field Widget_Material_GridView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_GridView" class="hiddenlink" target="rightframe">Widget_Material_GridView</A>
+</nobr><br>
+<!-- Field Widget_Material_HorizontalScrollView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_HorizontalScrollView" class="hiddenlink" target="rightframe">Widget_Material_HorizontalScrollView</A>
+</nobr><br>
+<!-- Field Widget_Material_ImageButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ImageButton" class="hiddenlink" target="rightframe">Widget_Material_ImageButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Light -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light" class="hiddenlink" target="rightframe">Widget_Material_Light</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionBar_Solid -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_Solid" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_Solid</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionBar_TabBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_TabBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_TabBar</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionBar_TabText -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_TabText" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_TabText</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionBar_TabView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_TabView" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_TabView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionButton" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionButton_CloseMode -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionButton_CloseMode" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionButton_CloseMode</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionButton_Overflow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionButton_Overflow" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionButton_Overflow</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ActionMode -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionMode" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionMode</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_AutoCompleteTextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_AutoCompleteTextView" class="hiddenlink" target="rightframe">Widget_Material_Light_AutoCompleteTextView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button" class="hiddenlink" target="rightframe">Widget_Material_Light_Button</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button_Borderless -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Borderless" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Borderless</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button_Borderless_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Borderless_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Borderless_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button_Inset -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Inset" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Inset</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Button_Toggle -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Toggle" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Toggle</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ButtonBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ButtonBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ButtonBar</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ButtonBar_AlertDialog -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ButtonBar_AlertDialog" class="hiddenlink" target="rightframe">Widget_Material_Light_ButtonBar_AlertDialog</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_CalendarView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CalendarView" class="hiddenlink" target="rightframe">Widget_Material_Light_CalendarView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_CheckedTextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CheckedTextView" class="hiddenlink" target="rightframe">Widget_Material_Light_CheckedTextView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_CompoundButton_CheckBox -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CompoundButton_CheckBox" class="hiddenlink" target="rightframe">Widget_Material_Light_CompoundButton_CheckBox</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_CompoundButton_RadioButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CompoundButton_RadioButton" class="hiddenlink" target="rightframe">Widget_Material_Light_CompoundButton_RadioButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_CompoundButton_Star -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CompoundButton_Star" class="hiddenlink" target="rightframe">Widget_Material_Light_CompoundButton_Star</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_DropDownItem -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_DropDownItem" class="hiddenlink" target="rightframe">Widget_Material_Light_DropDownItem</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_DropDownItem_Spinner -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_DropDownItem_Spinner" class="hiddenlink" target="rightframe">Widget_Material_Light_DropDownItem_Spinner</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_EditText -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_EditText" class="hiddenlink" target="rightframe">Widget_Material_Light_EditText</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ExpandableListView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ExpandableListView" class="hiddenlink" target="rightframe">Widget_Material_Light_ExpandableListView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_FastScroll -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_FastScroll" class="hiddenlink" target="rightframe">Widget_Material_Light_FastScroll</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_GridView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_GridView" class="hiddenlink" target="rightframe">Widget_Material_Light_GridView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_HorizontalScrollView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_HorizontalScrollView" class="hiddenlink" target="rightframe">Widget_Material_Light_HorizontalScrollView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ImageButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ImageButton" class="hiddenlink" target="rightframe">Widget_Material_Light_ImageButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ListPopupWindow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ListPopupWindow" class="hiddenlink" target="rightframe">Widget_Material_Light_ListPopupWindow</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ListView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ListView" class="hiddenlink" target="rightframe">Widget_Material_Light_ListView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ListView_DropDown -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ListView_DropDown" class="hiddenlink" target="rightframe">Widget_Material_Light_ListView_DropDown</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_MediaRouteButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_MediaRouteButton" class="hiddenlink" target="rightframe">Widget_Material_Light_MediaRouteButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_PopupMenu -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_PopupMenu" class="hiddenlink" target="rightframe">Widget_Material_Light_PopupMenu</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_PopupMenu_Overflow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_PopupMenu_Overflow" class="hiddenlink" target="rightframe">Widget_Material_Light_PopupMenu_Overflow</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_PopupWindow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_PopupWindow" class="hiddenlink" target="rightframe">Widget_Material_Light_PopupWindow</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Horizontal -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Horizontal" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Horizontal</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Inverse" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Inverse</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Large -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Large" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Large</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Large_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Large_Inverse" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Large_Inverse</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Small_Inverse -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Small_Inverse" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Small_Inverse</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ProgressBar_Small_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Small_Title" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Small_Title</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_RatingBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_RatingBar" class="hiddenlink" target="rightframe">Widget_Material_Light_RatingBar</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_RatingBar_Indicator -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_RatingBar_Indicator" class="hiddenlink" target="rightframe">Widget_Material_Light_RatingBar_Indicator</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_RatingBar_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_RatingBar_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_RatingBar_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_ScrollView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ScrollView" class="hiddenlink" target="rightframe">Widget_Material_Light_ScrollView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_SeekBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_SeekBar" class="hiddenlink" target="rightframe">Widget_Material_Light_SeekBar</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_SegmentedButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_SegmentedButton" class="hiddenlink" target="rightframe">Widget_Material_Light_SegmentedButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Spinner -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Spinner" class="hiddenlink" target="rightframe">Widget_Material_Light_Spinner</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_StackView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_StackView" class="hiddenlink" target="rightframe">Widget_Material_Light_StackView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_Tab -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Tab" class="hiddenlink" target="rightframe">Widget_Material_Light_Tab</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_TabWidget -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TabWidget" class="hiddenlink" target="rightframe">Widget_Material_Light_TabWidget</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_TextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TextView" class="hiddenlink" target="rightframe">Widget_Material_Light_TextView</A>
+</nobr><br>
+<!-- Field Widget_Material_Light_TextView_SpinnerItem -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TextView_SpinnerItem" class="hiddenlink" target="rightframe">Widget_Material_Light_TextView_SpinnerItem</A>
+</nobr><br>
+<!-- Field Widget_Material_ListPopupWindow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ListPopupWindow" class="hiddenlink" target="rightframe">Widget_Material_ListPopupWindow</A>
+</nobr><br>
+<!-- Field Widget_Material_ListView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ListView" class="hiddenlink" target="rightframe">Widget_Material_ListView</A>
+</nobr><br>
+<!-- Field Widget_Material_ListView_DropDown -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ListView_DropDown" class="hiddenlink" target="rightframe">Widget_Material_ListView_DropDown</A>
+</nobr><br>
+<!-- Field Widget_Material_MediaRouteButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_MediaRouteButton" class="hiddenlink" target="rightframe">Widget_Material_MediaRouteButton</A>
+</nobr><br>
+<!-- Field Widget_Material_PopupMenu -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_PopupMenu" class="hiddenlink" target="rightframe">Widget_Material_PopupMenu</A>
+</nobr><br>
+<!-- Field Widget_Material_PopupMenu_Overflow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_PopupMenu_Overflow" class="hiddenlink" target="rightframe">Widget_Material_PopupMenu_Overflow</A>
+</nobr><br>
+<!-- Field Widget_Material_PopupWindow -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_PopupWindow" class="hiddenlink" target="rightframe">Widget_Material_PopupWindow</A>
+</nobr><br>
+<!-- Field Widget_Material_ProgressBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar</A>
+</nobr><br>
+<!-- Field Widget_Material_ProgressBar_Horizontal -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Horizontal" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Horizontal</A>
+</nobr><br>
+<!-- Field Widget_Material_ProgressBar_Large -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Large" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Large</A>
+</nobr><br>
+<!-- Field Widget_Material_ProgressBar_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Small" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_ProgressBar_Small_Title -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Small_Title" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Small_Title</A>
+</nobr><br>
+<!-- Field Widget_Material_RatingBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_RatingBar" class="hiddenlink" target="rightframe">Widget_Material_RatingBar</A>
+</nobr><br>
+<!-- Field Widget_Material_RatingBar_Indicator -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_RatingBar_Indicator" class="hiddenlink" target="rightframe">Widget_Material_RatingBar_Indicator</A>
+</nobr><br>
+<!-- Field Widget_Material_RatingBar_Small -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_RatingBar_Small" class="hiddenlink" target="rightframe">Widget_Material_RatingBar_Small</A>
+</nobr><br>
+<!-- Field Widget_Material_ScrollView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ScrollView" class="hiddenlink" target="rightframe">Widget_Material_ScrollView</A>
+</nobr><br>
+<!-- Field Widget_Material_SeekBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_SeekBar" class="hiddenlink" target="rightframe">Widget_Material_SeekBar</A>
+</nobr><br>
+<!-- Field Widget_Material_SegmentedButton -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_SegmentedButton" class="hiddenlink" target="rightframe">Widget_Material_SegmentedButton</A>
+</nobr><br>
+<!-- Field Widget_Material_Spinner -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Spinner" class="hiddenlink" target="rightframe">Widget_Material_Spinner</A>
+</nobr><br>
+<!-- Field Widget_Material_StackView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_StackView" class="hiddenlink" target="rightframe">Widget_Material_StackView</A>
+</nobr><br>
+<!-- Field Widget_Material_Tab -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Tab" class="hiddenlink" target="rightframe">Widget_Material_Tab</A>
+</nobr><br>
+<!-- Field Widget_Material_TabWidget -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TabWidget" class="hiddenlink" target="rightframe">Widget_Material_TabWidget</A>
+</nobr><br>
+<!-- Field Widget_Material_TextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TextView" class="hiddenlink" target="rightframe">Widget_Material_TextView</A>
+</nobr><br>
+<!-- Field Widget_Material_TextView_SpinnerItem -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TextView_SpinnerItem" class="hiddenlink" target="rightframe">Widget_Material_TextView_SpinnerItem</A>
+</nobr><br>
+<!-- Field Widget_Material_Toolbar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Toolbar" class="hiddenlink" target="rightframe">Widget_Material_Toolbar</A>
+</nobr><br>
+<!-- Field Widget_Material_Toolbar_Button_Navigation -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Toolbar_Button_Navigation" class="hiddenlink" target="rightframe">Widget_Material_Toolbar_Button_Navigation</A>
+</nobr><br>
+<!-- Field Widget_Material_WebTextView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_WebTextView" class="hiddenlink" target="rightframe">Widget_Material_WebTextView</A>
+</nobr><br>
+<!-- Field Widget_Material_WebView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_WebView" class="hiddenlink" target="rightframe">Widget_Material_WebView</A>
+</nobr><br>
+<!-- Field Widget_StackView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_StackView" class="hiddenlink" target="rightframe">Widget_StackView</A>
+</nobr><br>
+<!-- Field Widget_Toolbar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Toolbar" class="hiddenlink" target="rightframe">Widget_Toolbar</A>
+</nobr><br>
+<!-- Field Widget_Toolbar_Button_Navigation -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Toolbar_Button_Navigation" class="hiddenlink" target="rightframe">Widget_Toolbar_Button_Navigation</A>
+</nobr><br>
+<!-- Class WifiConfiguration -->
+<A HREF="android.net.wifi.WifiConfiguration.html" class="hiddenlink" target="rightframe">WifiConfiguration</A><br>
+<!-- Class WifiManager -->
+<A HREF="android.net.wifi.WifiManager.html" class="hiddenlink" target="rightframe">WifiManager</A><br>
+<!-- Class Window -->
+<A HREF="android.view.Window.html" class="hiddenlink" target="rightframe">Window</A><br>
+<!-- Field windowAllowEnterTransitionOverlap -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowAllowEnterTransitionOverlap" class="hiddenlink" target="rightframe">windowAllowEnterTransitionOverlap</A>
+</nobr><br>
+<!-- Field windowContentTransitionManager -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowContentTransitionManager" class="hiddenlink" target="rightframe">windowContentTransitionManager</A>
+</nobr><br>
+<!-- Field windowContentTransitions -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowContentTransitions" class="hiddenlink" target="rightframe">windowContentTransitions</A>
+</nobr><br>
+<!-- Field windowDrawsSystemBarBackgrounds -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowDrawsSystemBarBackgrounds" class="hiddenlink" target="rightframe">windowDrawsSystemBarBackgrounds</A>
+</nobr><br>
+<!-- Field windowEnterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowEnterTransition" class="hiddenlink" target="rightframe">windowEnterTransition</A>
+</nobr><br>
+<!-- Field windowExitTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowExitTransition" class="hiddenlink" target="rightframe">windowExitTransition</A>
+</nobr><br>
+<!-- Class WindowInsets -->
+<A HREF="android.view.WindowInsets.html" class="hiddenlink" target="rightframe">WindowInsets</A><br>
+<!-- Class WindowManager.LayoutParams -->
+<A HREF="android.view.WindowManager.LayoutParams.html" class="hiddenlink" target="rightframe">WindowManager.LayoutParams</A><br>
+<!-- Field windowSharedElementEnterTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementEnterTransition" class="hiddenlink" target="rightframe">windowSharedElementEnterTransition</A>
+</nobr><br>
+<!-- Field windowSharedElementExitTransition -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementExitTransition" class="hiddenlink" target="rightframe">windowSharedElementExitTransition</A>
+</nobr><br>
+<!-- Class WpsInfo -->
+<A HREF="android.net.wifi.WpsInfo.html" class="hiddenlink" target="rightframe">WpsInfo</A><br>
+<!-- Field WRITE_SOCIAL_STREAM -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.WRITE_SOCIAL_STREAM" class="hiddenlink" target="rightframe">WRITE_SOCIAL_STREAM</A>
+</nobr><br>
+<script src="//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/preview-21/changes/alldiffs_index_removals.html b/docs/html/sdk/api_diff/preview-21/changes/alldiffs_index_removals.html
new file mode 100644
index 0000000..5fb0443
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/alldiffs_index_removals.html
@@ -0,0 +1,1547 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<!-- Constructor ActionBar.LayoutParams -->
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.app.ActionBar.LayoutParams.html#android.app.ActionBar.LayoutParams.ctor_removed(android.view.ViewGroup.MarginLayoutParams)" class="hiddenlink" target="rightframe"><strike>ActionBar.LayoutParams</strike>
+(<code>MarginLayoutParams</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Method addAvailabilityListener -->
+<nobr><A HREF="android.hardware.camera2.CameraManager.html#android.hardware.camera2.CameraManager.addAvailabilityListener_removed(android.hardware.camera2.CameraManager.AvailabilityListener, android.os.Handler)" class="hiddenlink" target="rightframe"><strike>addAvailabilityListener</strike>
+(<code>AvailabilityListener, Handler</code>)</A></nobr><br>
+<!-- Method addCallback -->
+<i>addCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.addCallback_removed(android.media.session.MediaController.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Callback</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+<!-- Method addCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.addCallback_removed(android.media.session.MediaController.Callback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Callback, Handler</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+<!-- Method addCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.addCallback_removed(android.media.session.MediaSession.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Callback</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+<!-- Method addCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.addCallback_removed(android.media.session.MediaSession.Callback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Callback, Handler</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+<!-- Method addCharacterRect -->
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.Builder.html#android.view.inputmethod.CursorAnchorInfo.Builder.addCharacterRect_removed(int, float, float, float, float)" class="hiddenlink" target="rightframe"><strike>addCharacterRect</strike>
+(<code>int, float, float, float, float</code>)</A></nobr><br>
+<!-- Method addEarcon -->
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_removed(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><strike>addEarcon</strike>
+(<code>String, String</code>)</A></nobr><br>
+<!-- Method addForwardingIntentFilter -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addForwardingIntentFilter_removed(android.content.ComponentName, android.content.IntentFilter, int)" class="hiddenlink" target="rightframe"><strike>addForwardingIntentFilter</strike>
+(<code>ComponentName, IntentFilter, int</code>)</A></nobr><br>
+<!-- Method addOnAppsChangedListener -->
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.addOnAppsChangedListener_removed(android.content.pm.LauncherApps.OnAppsChangedListener)" class="hiddenlink" target="rightframe"><strike>addOnAppsChangedListener</strike>
+(<code>OnAppsChangedListener</code>)</A></nobr><br>
+<!-- Method addTransportControlsCallback -->
+<i>addTransportControlsCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.addTransportControlsCallback_removed(android.media.session.MediaSession.TransportControlsCallback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>TransportControlsCallback</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+<!-- Method addTransportControlsCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.addTransportControlsCallback_removed(android.media.session.MediaSession.TransportControlsCallback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>TransportControlsCallback, Handler</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+<!-- Field ADVERTISE_FAILED_CONTROLLER_FAILURE -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_CONTROLLER_FAILURE" class="hiddenlink" target="rightframe"><strike>ADVERTISE_FAILED_CONTROLLER_FAILURE</strike></A>
+</nobr><br>
+<!-- Field ADVERTISE_FAILED_NOT_STARTED -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_NOT_STARTED" class="hiddenlink" target="rightframe"><strike>ADVERTISE_FAILED_NOT_STARTED</strike></A>
+</nobr><br>
+<!-- Field ADVERTISE_FAILED_SERVICE_UNKNOWN -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_SERVICE_UNKNOWN" class="hiddenlink" target="rightframe"><strike>ADVERTISE_FAILED_SERVICE_UNKNOWN</strike></A>
+</nobr><br>
+<!-- Field ADVERTISE_TYPE_CONNECTABLE -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html#android.bluetooth.le.AdvertiseSettings.ADVERTISE_TYPE_CONNECTABLE" class="hiddenlink" target="rightframe"><strike>ADVERTISE_TYPE_CONNECTABLE</strike></A>
+</nobr><br>
+<!-- Field ADVERTISE_TYPE_NON_CONNECTABLE -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html#android.bluetooth.le.AdvertiseSettings.ADVERTISE_TYPE_NON_CONNECTABLE" class="hiddenlink" target="rightframe"><strike>ADVERTISE_TYPE_NON_CONNECTABLE</strike></A>
+</nobr><br>
+<!-- Field ADVERTISE_TYPE_SCANNABLE -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html#android.bluetooth.le.AdvertiseSettings.ADVERTISE_TYPE_SCANNABLE" class="hiddenlink" target="rightframe"><strike>ADVERTISE_TYPE_SCANNABLE</strike></A>
+</nobr><br>
+<!-- Class AdvertisementData -->
+<A HREF="pkg_android.bluetooth.le.html#AdvertisementData" class="hiddenlink" target="rightframe"><strike>AdvertisementData</strike></A><br>
+<!-- Class AdvertisementData.Builder -->
+<A HREF="pkg_android.bluetooth.le.html#AdvertisementData.Builder" class="hiddenlink" target="rightframe"><strike>AdvertisementData.Builder</strike></A><br>
+<!-- Package android.hardware.location -->
+<A HREF="changes-summary.html#android.hardware.location" class="hiddenlink" target="rightframe"><strike>android.hardware.location</strike></A><br>
+<!-- Constructor AudioFormat -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ctor_removed()" class="hiddenlink" target="rightframe"><strike>AudioFormat</strike>
+()</A></nobr>&nbsp;constructor<br>
+<!-- Method buildChannelsUriForInput -->
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>buildChannelsUriForInput</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildChannelsUriForInput_removed(android.content.ComponentName)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>ComponentName</code>)</strike>&nbsp;in&nbsp;android.media.tv.TvContract
+</A></nobr><br>
+<!-- Method buildChannelsUriForInput -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildChannelsUriForInput_removed(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>ComponentName, boolean</code>)</strike>&nbsp;in&nbsp;android.media.tv.TvContract
+</A></nobr><br>
+<!-- Method buildStyled -->
+<nobr><A HREF="android.app.Notification.MediaStyle.html#android.app.Notification.MediaStyle.buildStyled_removed(android.app.Notification)" class="hiddenlink" target="rightframe"><strike>buildStyled</strike>
+(<code>Notification</code>)</A></nobr><br>
+<!-- Field CALLBACK_TYPE_ON_UPDATE -->
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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="#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="#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.bluetooth.le.ScanSettings.html#android.bluetooth.le.ScanSettings.CALLBACK_TYPE_ON_UPDATE" class="hiddenlink" target="rightframe"><strike>CALLBACK_TYPE_ON_UPDATE</strike></A>
+</nobr><br>
+<!-- Class CameraCaptureSession.CaptureListener -->
+<A HREF="pkg_android.hardware.camera2.html#CameraCaptureSession.CaptureListener" class="hiddenlink" target="rightframe"><strike>CameraCaptureSession.CaptureListener</strike></A><br>
+<!-- Class CameraCaptureSession.StateListener -->
+<A HREF="pkg_android.hardware.camera2.html#CameraCaptureSession.StateListener" class="hiddenlink" target="rightframe"><strike>CameraCaptureSession.StateListener</strike></A><br>
+<!-- Class CameraDevice.CaptureListener -->
+<A HREF="pkg_android.hardware.camera2.html#CameraDevice.CaptureListener" class="hiddenlink" target="rightframe"><strike>CameraDevice.CaptureListener</strike></A><br>
+<!-- Class CameraDevice.StateListener -->
+<A HREF="pkg_android.hardware.camera2.html#CameraDevice.StateListener" class="hiddenlink" target="rightframe"><strike>CameraDevice.StateListener</strike></A><br>
+<!-- Class CameraManager.AvailabilityListener -->
+<A HREF="pkg_android.hardware.camera2.html#CameraManager.AvailabilityListener" class="hiddenlink" target="rightframe"><strike>CameraManager.AvailabilityListener</strike></A><br>
+<!-- Method capture -->
+<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.capture_removed(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraDevice.CaptureListener, android.os.Handler)" class="hiddenlink" target="rightframe"><strike>capture</strike>
+(<code>CaptureRequest, CaptureListener, Handler</code>)</A></nobr><br>
+<!-- Method captureBurst -->
+<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.captureBurst_removed(java.util.List<android.hardware.camera2.CaptureRequest>, android.hardware.camera2.CameraDevice.CaptureListener, android.os.Handler)" class="hiddenlink" target="rightframe"><strike>captureBurst</strike>
+(<code>List&lt;CaptureRequest&gt;, CaptureListener, Handler</code>)</A></nobr><br>
+<!-- Field CATEGORY_VOICE -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.CATEGORY_VOICE" class="hiddenlink" target="rightframe"><strike>CATEGORY_VOICE</strike></A>
+</nobr><br>
+<!-- Method clearForwardingIntentFilters -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearForwardingIntentFilters_removed(android.content.ComponentName)" class="hiddenlink" target="rightframe"><strike>clearForwardingIntentFilters</strike>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Field clipToPath -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.clipToPath" class="hiddenlink" target="rightframe"><strike>clipToPath</strike></A>
+</nobr><br>
+<!-- Field COLUMN_BROWSABLE -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.COLUMN_BROWSABLE" class="hiddenlink" target="rightframe"><strike>COLUMN_BROWSABLE</strike></A>
+</nobr><br>
+<!-- Field COLUMN_SERVICE_NAME -->
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.COLUMN_SERVICE_NAME" class="hiddenlink" target="rightframe"><strike>COLUMN_SERVICE_NAME</strike></A>
+</nobr><br>
+<!-- Method configureOutputs -->
+<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.configureOutputs_removed(java.util.List<android.view.Surface>)" class="hiddenlink" target="rightframe"><strike>configureOutputs</strike>
+(<code>List&lt;Surface&gt;</code>)</A></nobr><br>
+<!-- Class ContactsContract.Preferences -->
+<A HREF="pkg_android.provider.html#ContactsContract.Preferences" class="hiddenlink" target="rightframe"><strike>ContactsContract.Preferences</strike></A><br>
+<!-- Method createSession -->
+<nobr><A HREF="android.media.session.MediaSessionManager.html#android.media.session.MediaSessionManager.createSession_removed(java.lang.String)" class="hiddenlink" target="rightframe"><strike>createSession</strike>
+(<code>String</code>)</A></nobr><br>
+<!-- Field CURSOR_ANCHOR_MONITOR_MODE_CURSOR_RECT -->
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.CURSOR_ANCHOR_MONITOR_MODE_CURSOR_RECT" class="hiddenlink" target="rightframe"><strike>CURSOR_ANCHOR_MONITOR_MODE_CURSOR_RECT</strike></A>
+</nobr><br>
+<!-- Field CURSOR_ANCHOR_MONITOR_MODE_NONE -->
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.CURSOR_ANCHOR_MONITOR_MODE_NONE" class="hiddenlink" target="rightframe"><strike>CURSOR_ANCHOR_MONITOR_MODE_NONE</strike></A>
+</nobr><br>
+<!-- Field DISALLOW_CONFIG_APPS -->
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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="#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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CONFIG_APPS" class="hiddenlink" target="rightframe"><strike>DISALLOW_CONFIG_APPS</strike></A>
+</nobr><br>
+<!-- Field DISALLOW_TELEPHONY -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_TELEPHONY" class="hiddenlink" target="rightframe"><strike>DISALLOW_TELEPHONY</strike></A>
+</nobr><br>
+<!-- Field ERROR_BUSY -->
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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="#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="#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.media.tv.TvView.html#android.media.tv.TvView.ERROR_BUSY" class="hiddenlink" target="rightframe"><strike>ERROR_BUSY</strike></A>
+</nobr><br>
+<!-- Field ERROR_TV_INPUT_DISCONNECTED -->
+<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.ERROR_TV_INPUT_DISCONNECTED" class="hiddenlink" target="rightframe"><strike>ERROR_TV_INPUT_DISCONNECTED</strike></A>
+</nobr><br>
+<!-- Field excludeViewName -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeViewName" class="hiddenlink" target="rightframe"><strike>excludeViewName</strike></A>
+</nobr><br>
+<!-- Field EXTRA_PROVISIONING_DEFAULT_MANAGED_PROFILE_NAME -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEFAULT_MANAGED_PROFILE_NAME" class="hiddenlink" target="rightframe"><strike>EXTRA_PROVISIONING_DEFAULT_MANAGED_PROFILE_NAME</strike></A>
+</nobr><br>
+<!-- Field EXTRA_SERVICE_NAME -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.EXTRA_SERVICE_NAME" class="hiddenlink" target="rightframe"><strike>EXTRA_SERVICE_NAME</strike></A>
+</nobr><br>
+<!-- Field FEATURE_MANAGED_PROFILES -->
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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="#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="#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.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_MANAGED_PROFILES" class="hiddenlink" target="rightframe"><strike>FEATURE_MANAGED_PROFILES</strike></A>
+</nobr><br>
+<!-- Field fill -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fill" class="hiddenlink" target="rightframe"><strike>fill</strike></A>
+</nobr><br>
+<!-- Field fillOpacity -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.fillOpacity" class="hiddenlink" target="rightframe"><strike>fillOpacity</strike></A>
+</nobr><br>
+<!-- Field FLAG_ACTIVITY_AUTO_REMOVE_FROM_RECENTS -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_ACTIVITY_AUTO_REMOVE_FROM_RECENTS" class="hiddenlink" target="rightframe"><strike>FLAG_ACTIVITY_AUTO_REMOVE_FROM_RECENTS</strike></A>
+</nobr><br>
+<!-- Field FLAG_PERSISTABLE -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_PERSISTABLE" class="hiddenlink" target="rightframe"><strike>FLAG_PERSISTABLE</strike></A>
+</nobr><br>
+<!-- Field FLAG_TO_MANAGED_PROFILE -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.FLAG_TO_MANAGED_PROFILE" class="hiddenlink" target="rightframe"><strike>FLAG_TO_MANAGED_PROFILE</strike></A>
+</nobr><br>
+<!-- Field FLAG_TO_PRIMARY_USER -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.FLAG_TO_PRIMARY_USER" class="hiddenlink" target="rightframe"><strike>FLAG_TO_PRIMARY_USER</strike></A>
+</nobr><br>
+<!-- Method flush -->
+<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.flush_removed()" class="hiddenlink" target="rightframe"><strike>flush</strike>
+()</A></nobr><br>
+<!-- Method fromToken -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.fromToken_removed(android.media.session.MediaSessionToken)" class="hiddenlink" target="rightframe"><strike>fromToken</strike>
+(<code>MediaSessionToken</code>)</A></nobr><br>
+<!-- Method getAllowExitTransitionOverlap -->
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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="#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="#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.view.Window.html#android.view.Window.getAllowExitTransitionOverlap_removed()" class="hiddenlink" target="rightframe"><strike>getAllowExitTransitionOverlap</strike>
+()</A></nobr><br>
+<!-- Method getAvailability -->
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.getAvailability_removed(java.lang.String)" class="hiddenlink" target="rightframe"><strike>getAvailability</strike>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getBadgedDrawableForUser -->
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.getBadgedDrawableForUser_removed(android.graphics.drawable.Drawable, android.os.UserHandle)" class="hiddenlink" target="rightframe"><strike>getBadgedDrawableForUser</strike>
+(<code>Drawable, UserHandle</code>)</A></nobr><br>
+<!-- Method getBufferPosition -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getBufferPosition_removed()" class="hiddenlink" target="rightframe"><strike>getBufferPosition</strike>
+()</A></nobr><br>
+<!-- Method getCharacterRect -->
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.getCharacterRect_removed(int)" class="hiddenlink" target="rightframe"><strike>getCharacterRect</strike>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getColor -->
+<nobr><A HREF="android.graphics.PorterDuffColorFilter.html#android.graphics.PorterDuffColorFilter.getColor_removed()" class="hiddenlink" target="rightframe"><strike>getColor</strike>
+()</A></nobr><br>
+<!-- Method getColorAdd -->
+<nobr><A HREF="android.graphics.LightingColorFilter.html#android.graphics.LightingColorFilter.getColorAdd_removed()" class="hiddenlink" target="rightframe"><strike>getColorAdd</strike>
+()</A></nobr><br>
+<!-- Method getColorMatrix -->
+<nobr><A HREF="android.graphics.ColorMatrixColorFilter.html#android.graphics.ColorMatrixColorFilter.getColorMatrix_removed()" class="hiddenlink" target="rightframe"><strike>getColorMatrix</strike>
+()</A></nobr><br>
+<!-- Method getColorMultiply -->
+<nobr><A HREF="android.graphics.LightingColorFilter.html#android.graphics.LightingColorFilter.getColorMultiply_removed()" class="hiddenlink" target="rightframe"><strike>getColorMultiply</strike>
+()</A></nobr><br>
+<!-- Method getIntentForSettingsActivity -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.getIntentForSettingsActivity_removed()" class="hiddenlink" target="rightframe"><strike>getIntentForSettingsActivity</strike>
+()</A></nobr><br>
+<!-- Method getIntentForSetupActivity -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.getIntentForSetupActivity_removed()" class="hiddenlink" target="rightframe"><strike>getIntentForSetupActivity</strike>
+()</A></nobr><br>
+<!-- Method getLayoutInflater -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.getLayoutInflater_removed()" class="hiddenlink" target="rightframe"><strike>getLayoutInflater</strike>
+()</A></nobr><br>
+<!-- Method getLocalName -->
+<i>getLocalName</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.html#android.bluetooth.le.ScanFilter.getLocalName_removed()" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+()</strike>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter
+</A></nobr><br>
+<!-- Method getLocalName -->
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getLocalName_removed()" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+()</strike>&nbsp;in&nbsp;android.bluetooth.le.ScanRecord
+</A></nobr><br>
+<!-- Method getManufacturerId -->
+<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getManufacturerId_removed()" class="hiddenlink" target="rightframe"><strike>getManufacturerId</strike>
+()</A></nobr><br>
+<!-- Method getMaxRssi -->
+<nobr><A HREF="android.bluetooth.le.ScanFilter.html#android.bluetooth.le.ScanFilter.getMaxRssi_removed()" class="hiddenlink" target="rightframe"><strike>getMaxRssi</strike>
+()</A></nobr><br>
+<!-- Method getMinRssi -->
+<nobr><A HREF="android.bluetooth.le.ScanFilter.html#android.bluetooth.le.ScanFilter.getMinRssi_removed()" class="hiddenlink" target="rightframe"><strike>getMinRssi</strike>
+()</A></nobr><br>
+<!-- Method getMode -->
+<nobr><A HREF="android.graphics.PorterDuffColorFilter.html#android.graphics.PorterDuffColorFilter.getMode_removed()" class="hiddenlink" target="rightframe"><strike>getMode</strike>
+()</A></nobr><br>
+<!-- Method getNetworkCapabilities -->
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.getNetworkCapabilities_removed()" class="hiddenlink" target="rightframe"><strike>getNetworkCapabilities</strike>
+()</A></nobr><br>
+<!-- Method getPlaybackRate -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getPlaybackRate_removed()" class="hiddenlink" target="rightframe"><strike>getPlaybackRate</strike>
+()</A></nobr><br>
+<!-- Method getReportDelayNanos -->
+<nobr><A HREF="android.bluetooth.le.ScanSettings.html#android.bluetooth.le.ScanSettings.getReportDelayNanos_removed()" class="hiddenlink" target="rightframe"><strike>getReportDelayNanos</strike>
+()</A></nobr><br>
+<!-- Method getServiceData -->
+<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getServiceData_removed()" class="hiddenlink" target="rightframe"><strike>getServiceData</strike>
+()</A></nobr><br>
+<!-- Method getServiceDataUuid -->
+<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getServiceDataUuid_removed()" class="hiddenlink" target="rightframe"><strike>getServiceDataUuid</strike>
+()</A></nobr><br>
+<!-- Method getTargetViewNames -->
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getTargetViewNames_removed()" class="hiddenlink" target="rightframe"><strike>getTargetViewNames</strike>
+()</A></nobr><br>
+<!-- Method getTextColor -->
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getTextColor_removed(android.content.Context, android.content.res.TypedArray, int)" class="hiddenlink" target="rightframe"><strike>getTextColor</strike>
+(<code>Context, TypedArray, int</code>)</A></nobr><br>
+<!-- Method getTextColors -->
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getTextColors_removed(android.content.Context, android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>getTextColors</strike>
+(<code>Context, TypedArray</code>)</A></nobr><br>
+<!-- Method getType -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html#android.bluetooth.le.AdvertiseSettings.getType_removed()" class="hiddenlink" target="rightframe"><strike>getType</strike>
+()</A></nobr><br>
+<!-- Method getViewName -->
+<nobr><A HREF="android.view.View.html#android.view.View.getViewName_removed()" class="hiddenlink" target="rightframe"><strike>getViewName</strike>
+()</A></nobr><br>
+<!-- Method getVoiceInteractor -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.getVoiceInteractor_removed()" class="hiddenlink" target="rightframe"><strike>getVoiceInteractor</strike>
+()</A></nobr><br>
+<!-- Method getWindow -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.getWindow_removed()" class="hiddenlink" target="rightframe"><strike>getWindow</strike>
+()</A></nobr><br>
+<!-- Method goToSleep -->
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.goToSleep_removed(long)" class="hiddenlink" target="rightframe"><strike>goToSleep</strike>
+(<code>long</code>)</A></nobr><br>
+<!-- Method hideWindow -->
+<A NAME="H"></A>
+<br><font size="+2">H</font>&nbsp;
+<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="#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="#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.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.hideWindow_removed()" class="hiddenlink" target="rightframe"><strike>hideWindow</strike>
+()</A></nobr><br>
+<!-- Method initializeFadingEdge -->
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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="#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="#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.view.View.html#android.view.View.initializeFadingEdge_removed(android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>initializeFadingEdge</strike>
+(<code>TypedArray</code>)</A></nobr><br>
+<!-- Method initializeScrollbars -->
+<nobr><A HREF="android.view.View.html#android.view.View.initializeScrollbars_removed(android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>initializeScrollbars</strike>
+(<code>TypedArray</code>)</A></nobr><br>
+<!-- Method inRange -->
+<nobr><A HREF="android.util.Range.html#android.util.Range.inRange_removed(T)" class="hiddenlink" target="rightframe"><strike>inRange</strike>
+(<code>T</code>)</A></nobr><br>
+<!-- Method isActivityEnabledForProfile -->
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.isActivityEnabledForProfile_removed(android.content.ComponentName, android.os.UserHandle)" class="hiddenlink" target="rightframe"><strike>isActivityEnabledForProfile</strike>
+(<code>ComponentName, UserHandle</code>)</A></nobr><br>
+<!-- Method isApplicationBlocked -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isApplicationBlocked_removed(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><strike>isApplicationBlocked</strike>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<!-- Method isInterceptedByDoNotDisturb -->
+<nobr><A HREF="android.service.notification.NotificationListenerService.Ranking.html#android.service.notification.NotificationListenerService.Ranking.isInterceptedByDoNotDisturb_removed()" class="hiddenlink" target="rightframe"><strike>isInterceptedByDoNotDisturb</strike>
+()</A></nobr><br>
+<!-- Method isPackageEnabledForProfile -->
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.isPackageEnabledForProfile_removed(java.lang.String, android.os.UserHandle)" class="hiddenlink" target="rightframe"><strike>isPackageEnabledForProfile</strike>
+(<code>String, UserHandle</code>)</A></nobr><br>
+<!-- Method isVoiceInteraction -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.isVoiceInteraction_removed()" class="hiddenlink" target="rightframe"><strike>isVoiceInteraction</strike>
+()</A></nobr><br>
+<!-- Class JobInfo.BackoffPolicy -->
+<A NAME="J"></A>
+<br><font size="+2">J</font>&nbsp;
+<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="#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="pkg_android.app.job.html#JobInfo.BackoffPolicy" class="hiddenlink" target="rightframe"><strike>JobInfo.BackoffPolicy</strike></A><br>
+<!-- Class JobInfo.NetworkType -->
+<A HREF="pkg_android.app.job.html#JobInfo.NetworkType" class="hiddenlink" target="rightframe"><strike>JobInfo.NetworkType</strike></A><br>
+<!-- Field l_resource_pad1 -->
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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="#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="#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">
+<i>l_resource_pad1</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad1" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad1 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad1" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad1 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad1" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad1 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.interpolator.html#android.R.interpolator.l_resource_pad1" class="hiddenlink" target="rightframe"><strike>android.R.interpolator</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad1 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad1" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad10 -->
+<i>l_resource_pad10</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad10" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad10 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad10" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad10 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad10" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad10 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad10" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad11 -->
+<i>l_resource_pad11</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad11" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad11 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad11" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad11 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad11" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad12 -->
+<i>l_resource_pad12</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad12" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad12 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad12" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad12 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad12" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad13 -->
+<i>l_resource_pad13</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad13" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad13 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad13" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad13 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad13" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad14 -->
+<i>l_resource_pad14</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad14" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad14 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad14" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad14 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad14" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad15 -->
+<i>l_resource_pad15</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad15" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad15 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad15" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad15 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad15" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad16 -->
+<i>l_resource_pad16</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad16" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad16 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad16" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad16 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad16" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad17 -->
+<i>l_resource_pad17</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad17" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad17 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad17" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad17 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad17" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad18 -->
+<i>l_resource_pad18</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad18" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad18 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad18" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad18 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad18" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad19 -->
+<i>l_resource_pad19</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad19" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad19 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad19" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad19 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad19" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad2 -->
+<i>l_resource_pad2</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad2" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad2 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad2" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad2 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad2" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad2 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.interpolator.html#android.R.interpolator.l_resource_pad2" class="hiddenlink" target="rightframe"><strike>android.R.interpolator</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad2 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad2" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad20 -->
+<i>l_resource_pad20</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad20" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad20 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad20" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad21 -->
+<i>l_resource_pad21</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad21" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad21 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad21" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad22 -->
+<i>l_resource_pad22</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad22" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad22 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad22" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad23 -->
+<i>l_resource_pad23</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad23" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad23 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad23" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad24 -->
+<i>l_resource_pad24</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad24" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad24 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad24" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad25 -->
+<i>l_resource_pad25</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad25" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad25 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad25" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad26 -->
+<nobr><A HREF="android.R.style.html#android.R.style.l_resource_pad26" class="hiddenlink" target="rightframe"><strike>l_resource_pad26</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad27 -->
+<nobr><A HREF="android.R.style.html#android.R.style.l_resource_pad27" class="hiddenlink" target="rightframe"><strike>l_resource_pad27</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad28 -->
+<nobr><A HREF="android.R.style.html#android.R.style.l_resource_pad28" class="hiddenlink" target="rightframe"><strike>l_resource_pad28</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad3 -->
+<i>l_resource_pad3</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad3" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad3 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad3" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad3 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad3" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad3 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.interpolator.html#android.R.interpolator.l_resource_pad3" class="hiddenlink" target="rightframe"><strike>android.R.interpolator</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad3 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad3" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad4 -->
+<i>l_resource_pad4</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad4" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad4 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad4" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad4 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad4" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad4 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.interpolator.html#android.R.interpolator.l_resource_pad4" class="hiddenlink" target="rightframe"><strike>android.R.interpolator</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad4 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad4" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad5 -->
+<i>l_resource_pad5</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad5" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad5 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad5" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad5 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad5" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad5 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad5" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad6 -->
+<i>l_resource_pad6</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad6" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad6 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad6" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad6 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad6" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad6 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad6" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad7 -->
+<i>l_resource_pad7</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad7" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad7 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad7" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad7 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad7" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad7 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad7" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad8 -->
+<i>l_resource_pad8</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad8" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad8 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad8" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad8 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad8" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad8 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad8" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad9 -->
+<i>l_resource_pad9</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad9" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad9 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad9" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad9 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad9" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<!-- Field l_resource_pad9 -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad9" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<!-- Class LauncherApps.OnAppsChangedListener -->
+<A HREF="pkg_android.content.pm.html#LauncherApps.OnAppsChangedListener" class="hiddenlink" target="rightframe"><strike>LauncherApps.OnAppsChangedListener</strike></A><br>
+<!-- Field MATCH_VIEW_NAME -->
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.MATCH_VIEW_NAME" class="hiddenlink" target="rightframe"><strike>MATCH_VIEW_NAME</strike></A>
+</nobr><br>
+<!-- Class MediaSession.TransportControlsCallback -->
+<A HREF="pkg_android.media.session.html#MediaSession.TransportControlsCallback" class="hiddenlink" target="rightframe"><strike>MediaSession.TransportControlsCallback</strike></A><br>
+<!-- Class MediaSessionToken -->
+<A HREF="pkg_android.media.session.html#MediaSessionToken" class="hiddenlink" target="rightframe"><strike>MediaSessionToken</strike></A><br>
+<!-- Constructor MediaStore.Audio.Radio -->
+<nobr><A HREF="android.provider.MediaStore.Audio.Radio.html#android.provider.MediaStore.Audio.Radio.ctor_removed()" class="hiddenlink" target="rightframe"><strike>MediaStore.Audio.Radio</strike>
+()</A></nobr>&nbsp;constructor<br>
+<!-- Field mFramesPresentedTimeNano -->
+<nobr><A HREF="android.view.FrameStats.html#android.view.FrameStats.mFramesPresentedTimeNano" class="hiddenlink" target="rightframe"><strike>mFramesPresentedTimeNano</strike></A>
+</nobr><br>
+<!-- Class MoveImage -->
+<A HREF="pkg_android.transition.html#MoveImage" class="hiddenlink" target="rightframe"><strike>MoveImage</strike></A><br>
+<!-- Field mRefreshPeriodNano -->
+<nobr><A HREF="android.view.FrameStats.html#android.view.FrameStats.mRefreshPeriodNano" class="hiddenlink" target="rightframe"><strike>mRefreshPeriodNano</strike></A>
+</nobr><br>
+<!-- Method onAbortVoice -->
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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="#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.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onAbortVoice_removed(android.service.voice.VoiceInteractionSession.Caller, android.service.voice.VoiceInteractionSession.Request, java.lang.CharSequence, android.os.Bundle)" class="hiddenlink" target="rightframe"><strike>onAbortVoice</strike>
+(<code>Caller, Request, CharSequence, Bundle</code>)</A></nobr><br>
+<!-- Method onAdvertisementUpdate -->
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.onAdvertisementUpdate_removed(android.bluetooth.le.ScanResult)" class="hiddenlink" target="rightframe"><strike>onAdvertisementUpdate</strike>
+(<code>ScanResult</code>)</A></nobr><br>
+<!-- Method onBackPressed -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onBackPressed_removed()" class="hiddenlink" target="rightframe"><strike>onBackPressed</strike>
+()</A></nobr><br>
+<!-- Method onCancel -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onCancel_removed(android.service.voice.VoiceInteractionSession.Request)" class="hiddenlink" target="rightframe"><strike>onCancel</strike>
+(<code>Request</code>)</A></nobr><br>
+<!-- Method onCommand -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onCommand_removed(android.service.voice.VoiceInteractionSession.Caller, android.service.voice.VoiceInteractionSession.Request, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><strike>onCommand</strike>
+(<code>Caller, Request, String, Bundle</code>)</A></nobr><br>
+<!-- Method onComputeInsets -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onComputeInsets_removed(android.service.voice.VoiceInteractionSession.Insets)" class="hiddenlink" target="rightframe"><strike>onComputeInsets</strike>
+(<code>Insets</code>)</A></nobr><br>
+<!-- Method onConfirm -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onConfirm_removed(android.service.voice.VoiceInteractionSession.Caller, android.service.voice.VoiceInteractionSession.Request, java.lang.CharSequence, android.os.Bundle)" class="hiddenlink" target="rightframe"><strike>onConfirm</strike>
+(<code>Caller, Request, CharSequence, Bundle</code>)</A></nobr><br>
+<!-- Method onControlCommand -->
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onControlCommand_removed(java.lang.String, android.os.Bundle, android.os.ResultReceiver)" class="hiddenlink" target="rightframe"><strike>onControlCommand</strike>
+(<code>String, Bundle, ResultReceiver</code>)</A></nobr><br>
+<!-- Method onCreateContentView -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onCreateContentView_removed()" class="hiddenlink" target="rightframe"><strike>onCreateContentView</strike>
+()</A></nobr><br>
+<!-- Method onError -->
+<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_removed(java.lang.String)" class="hiddenlink" target="rightframe"><strike>onError</strike>
+(<code>String</code>)</A></nobr><br>
+<!-- Method onFailure -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.onFailure_removed(int)" class="hiddenlink" target="rightframe"><strike>onFailure</strike>
+(<code>int</code>)</A></nobr><br>
+<!-- Method onGetSupportedCommands -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onGetSupportedCommands_removed(android.service.voice.VoiceInteractionSession.Caller, java.lang.String[])" class="hiddenlink" target="rightframe"><strike>onGetSupportedCommands</strike>
+(<code>Caller, String[]</code>)</A></nobr><br>
+<!-- Method onSuccess -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.onSuccess_removed(android.bluetooth.le.AdvertiseSettings)" class="hiddenlink" target="rightframe"><strike>onSuccess</strike>
+(<code>AdvertiseSettings</code>)</A></nobr><br>
+<!-- Method onTaskFinished -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onTaskFinished_removed(android.content.Intent, int)" class="hiddenlink" target="rightframe"><strike>onTaskFinished</strike>
+(<code>Intent, int</code>)</A></nobr><br>
+<!-- Method onTaskStarted -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onTaskStarted_removed(android.content.Intent, int)" class="hiddenlink" target="rightframe"><strike>onTaskStarted</strike>
+(<code>Intent, int</code>)</A></nobr><br>
+<!-- Method parseFromBytes -->
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#O"><font size="-2">O</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.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.parseFromBytes_removed(byte[])" class="hiddenlink" target="rightframe"><strike>parseFromBytes</strike>
+(<code>byte[]</code>)</A></nobr><br>
+<!-- Field persistable -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.persistable" class="hiddenlink" target="rightframe"><strike>persistable</strike></A>
+</nobr><br>
+<!-- Constructor PlaybackState -->
+<i>PlaybackState</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.ctor_removed()" class="hiddenlink" target="rightframe"><strike>PlaybackState</strike>
+()</A></nobr>&nbsp;constructor<br>
+<!-- Constructor PlaybackState -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.ctor_removed(android.media.session.PlaybackState)" class="hiddenlink" target="rightframe"><strike>PlaybackState</strike>
+(<code>PlaybackState</code>)</A></nobr>&nbsp;constructor<br>
+<!-- Method preauthorizePermission -->
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.preauthorizePermission_removed(android.net.Uri, long)" class="hiddenlink" target="rightframe"><strike>preauthorizePermission</strike>
+(<code>Uri, long</code>)</A></nobr><br>
+<!-- Field REBOOT_RECOVERY -->
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#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="#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.os.PowerManager.html#android.os.PowerManager.REBOOT_RECOVERY" class="hiddenlink" target="rightframe"><strike>REBOOT_RECOVERY</strike></A>
+</nobr><br>
+<!-- Method registerDefaultNetworkActiveListener -->
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.registerDefaultNetworkActiveListener_removed(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><strike>registerDefaultNetworkActiveListener</strike>
+(<code>OnNetworkActiveListener</code>)</A></nobr><br>
+<!-- Class RemoteVolumeProvider -->
+<A HREF="pkg_android.media.session.html#RemoteVolumeProvider" class="hiddenlink" target="rightframe"><strike>RemoteVolumeProvider</strike></A><br>
+<!-- Method removeAvailabilityListener -->
+<nobr><A HREF="android.hardware.camera2.CameraManager.html#android.hardware.camera2.CameraManager.removeAvailabilityListener_removed(android.hardware.camera2.CameraManager.AvailabilityListener)" class="hiddenlink" target="rightframe"><strike>removeAvailabilityListener</strike>
+(<code>AvailabilityListener</code>)</A></nobr><br>
+<!-- Method removeCallback -->
+<i>removeCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.removeCallback_removed(android.media.session.MediaController.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Callback</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+<!-- Method removeCallback -->
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.removeCallback_removed(android.media.session.MediaSession.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Callback</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+<!-- Method removeOnAppsChangedListener -->
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.removeOnAppsChangedListener_removed(android.content.pm.LauncherApps.OnAppsChangedListener)" class="hiddenlink" target="rightframe"><strike>removeOnAppsChangedListener</strike>
+(<code>OnAppsChangedListener</code>)</A></nobr><br>
+<!-- Method removeTransportControlsCallback -->
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.removeTransportControlsCallback_removed(android.media.session.MediaSession.TransportControlsCallback)" class="hiddenlink" target="rightframe"><strike>removeTransportControlsCallback</strike>
+(<code>TransportControlsCallback</code>)</A></nobr><br>
+<!-- Field REQUEST_AVAILABLE_CAPABILITIES_DNG -->
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_DNG" class="hiddenlink" target="rightframe"><strike>REQUEST_AVAILABLE_CAPABILITIES_DNG</strike></A>
+</nobr><br>
+<!-- Field REQUEST_FRAME_COUNT -->
+<nobr><A HREF="android.hardware.camera2.CaptureResult.html#android.hardware.camera2.CaptureResult.REQUEST_FRAME_COUNT" class="hiddenlink" target="rightframe"><strike>REQUEST_FRAME_COUNT</strike></A>
+</nobr><br>
+<!-- Field requiredForProfile -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.requiredForProfile" class="hiddenlink" target="rightframe"><strike>requiredForProfile</strike></A>
+</nobr><br>
+<!-- Field SCAN_FAILED_CONTROLLER_FAILURE -->
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#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="#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.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.SCAN_FAILED_CONTROLLER_FAILURE" class="hiddenlink" target="rightframe"><strike>SCAN_FAILED_CONTROLLER_FAILURE</strike></A>
+</nobr><br>
+<!-- Field SCAN_FAILED_GATT_SERVICE_FAILURE -->
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.SCAN_FAILED_GATT_SERVICE_FAILURE" class="hiddenlink" target="rightframe"><strike>SCAN_FAILED_GATT_SERVICE_FAILURE</strike></A>
+</nobr><br>
+<!-- Field SCAN_RESULT_TYPE_FULL -->
+<nobr><A HREF="android.bluetooth.le.ScanSettings.html#android.bluetooth.le.ScanSettings.SCAN_RESULT_TYPE_FULL" class="hiddenlink" target="rightframe"><strike>SCAN_RESULT_TYPE_FULL</strike></A>
+</nobr><br>
+<!-- Method sendControlCommand -->
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.sendControlCommand_removed(java.lang.String, android.os.Bundle, android.os.ResultReceiver)" class="hiddenlink" target="rightframe"><strike>sendControlCommand</strike>
+(<code>String, Bundle, ResultReceiver</code>)</A></nobr><br>
+<!-- Method setActions -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.setActions_removed(long)" class="hiddenlink" target="rightframe"><strike>setActions</strike>
+(<code>long</code>)</A></nobr><br>
+<!-- Method setAllowExitTransitionOverlap -->
+<nobr><A HREF="android.view.Window.html#android.view.Window.setAllowExitTransitionOverlap_removed(boolean)" class="hiddenlink" target="rightframe"><strike>setAllowExitTransitionOverlap</strike>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setApplicationBlocked -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setApplicationBlocked_removed(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><strike>setApplicationBlocked</strike>
+(<code>ComponentName, String, boolean</code>)</A></nobr><br>
+<!-- Method setApplicationsBlocked -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setApplicationsBlocked_removed(android.content.ComponentName, android.content.Intent, boolean)" class="hiddenlink" target="rightframe"><strike>setApplicationsBlocked</strike>
+(<code>ComponentName, Intent, boolean</code>)</A></nobr><br>
+<!-- Method setBufferPosition -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.setBufferPosition_removed(long)" class="hiddenlink" target="rightframe"><strike>setBufferPosition</strike>
+(<code>long</code>)</A></nobr><br>
+<!-- Method setCallbackType -->
+<nobr><A HREF="android.bluetooth.le.ScanSettings.Builder.html#android.bluetooth.le.ScanSettings.Builder.setCallbackType_removed(int)" class="hiddenlink" target="rightframe"><strike>setCallbackType</strike>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setColor -->
+<nobr><A HREF="android.graphics.PorterDuffColorFilter.html#android.graphics.PorterDuffColorFilter.setColor_removed(int)" class="hiddenlink" target="rightframe"><strike>setColor</strike>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setColorAdd -->
+<nobr><A HREF="android.graphics.LightingColorFilter.html#android.graphics.LightingColorFilter.setColorAdd_removed(int)" class="hiddenlink" target="rightframe"><strike>setColorAdd</strike>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setColorMatrix -->
+<i>setColorMatrix</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.ColorMatrixColorFilter.html#android.graphics.ColorMatrixColorFilter.setColorMatrix_removed(android.graphics.ColorMatrix)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>ColorMatrix</code>)</strike>&nbsp;in&nbsp;android.graphics.ColorMatrixColorFilter
+</A></nobr><br>
+<!-- Method setColorMatrix -->
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.ColorMatrixColorFilter.html#android.graphics.ColorMatrixColorFilter.setColorMatrix_removed(float[])" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>float[]</code>)</strike>&nbsp;in&nbsp;android.graphics.ColorMatrixColorFilter
+</A></nobr><br>
+<!-- Method setColorMultiply -->
+<nobr><A HREF="android.graphics.LightingColorFilter.html#android.graphics.LightingColorFilter.setColorMultiply_removed(int)" class="hiddenlink" target="rightframe"><strike>setColorMultiply</strike>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setCursorAnchorMonitorMode -->
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.setCursorAnchorMonitorMode_removed(int)" class="hiddenlink" target="rightframe"><strike>setCursorAnchorMonitorMode</strike>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setEnterSharedElementListener -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.setEnterSharedElementListener_removed(android.app.SharedElementListener)" class="hiddenlink" target="rightframe"><strike>setEnterSharedElementListener</strike>
+(<code>SharedElementListener</code>)</A></nobr><br>
+<!-- Method setErrorMessage -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.setErrorMessage_removed(java.lang.CharSequence)" class="hiddenlink" target="rightframe"><strike>setErrorMessage</strike>
+(<code>CharSequence</code>)</A></nobr><br>
+<!-- Method setExitSharedElementListener -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.setExitSharedElementListener_removed(android.app.SharedElementListener)" class="hiddenlink" target="rightframe"><strike>setExitSharedElementListener</strike>
+(<code>SharedElementListener</code>)</A></nobr><br>
+<!-- Method setLaunchPendingIntent -->
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setLaunchPendingIntent_removed(android.app.PendingIntent)" class="hiddenlink" target="rightframe"><strike>setLaunchPendingIntent</strike>
+(<code>PendingIntent</code>)</A></nobr><br>
+<!-- Method setLockTaskComponents -->
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setLockTaskComponents_removed(android.content.ComponentName[])" class="hiddenlink" target="rightframe"><strike>setLockTaskComponents</strike>
+(<code>ComponentName[]</code>)</A></nobr><br>
+<!-- Method setMacAddress -->
+<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setMacAddress_removed(java.lang.String)" class="hiddenlink" target="rightframe"><strike>setMacAddress</strike>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setMode -->
+<nobr><A HREF="android.graphics.PorterDuffColorFilter.html#android.graphics.PorterDuffColorFilter.setMode_removed(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><strike>setMode</strike>
+(<code>Mode</code>)</A></nobr><br>
+<!-- Method setName -->
+<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setName_removed(java.lang.String)" class="hiddenlink" target="rightframe"><strike>setName</strike>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setNavigationDescription -->
+<i>setNavigationDescription</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.setNavigationDescription_removed(int)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>int</code>)</strike>&nbsp;in&nbsp;android.widget.Toolbar
+</A></nobr><br>
+<!-- Method setNavigationDescription -->
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.setNavigationDescription_removed(java.lang.CharSequence)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>CharSequence</code>)</strike>&nbsp;in&nbsp;android.widget.Toolbar
+</A></nobr><br>
+<!-- Method setOutline -->
+<nobr><A HREF="android.view.View.html#android.view.View.setOutline_removed(android.graphics.Outline)" class="hiddenlink" target="rightframe"><strike>setOutline</strike>
+(<code>Outline</code>)</A></nobr><br>
+<!-- Method setRepeatingBurst -->
+<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.setRepeatingBurst_removed(java.util.List<android.hardware.camera2.CaptureRequest>, android.hardware.camera2.CameraDevice.CaptureListener, android.os.Handler)" class="hiddenlink" target="rightframe"><strike>setRepeatingBurst</strike>
+(<code>List&lt;CaptureRequest&gt;, CaptureListener, Handler</code>)</A></nobr><br>
+<!-- Method setRepeatingRequest -->
+<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.setRepeatingRequest_removed(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraDevice.CaptureListener, android.os.Handler)" class="hiddenlink" target="rightframe"><strike>setRepeatingRequest</strike>
+(<code>CaptureRequest, CaptureListener, Handler</code>)</A></nobr><br>
+<!-- Method setReportDelayNanos -->
+<nobr><A HREF="android.bluetooth.le.ScanSettings.Builder.html#android.bluetooth.le.ScanSettings.Builder.setReportDelayNanos_removed(long)" class="hiddenlink" target="rightframe"><strike>setReportDelayNanos</strike>
+(<code>long</code>)</A></nobr><br>
+<!-- Method setRequiredNetworkCapabilities -->
+<nobr><A HREF="android.app.job.JobInfo.Builder.html#android.app.job.JobInfo.Builder.setRequiredNetworkCapabilities_removed(int)" class="hiddenlink" target="rightframe"><strike>setRequiredNetworkCapabilities</strike>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setRssiRange -->
+<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setRssiRange_removed(int, int)" class="hiddenlink" target="rightframe"><strike>setRssiRange</strike>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Method setServiceData -->
+<i>setServiceData</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setServiceData_removed(byte[])" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>byte[]</code>)</strike>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter.Builder
+</A></nobr><br>
+<!-- Method setServiceData -->
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setServiceData_removed(byte[], byte[])" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>byte[], byte[]</code>)</strike>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter.Builder
+</A></nobr><br>
+<!-- Method setSound -->
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_removed(android.net.Uri, int)" class="hiddenlink" target="rightframe"><strike>setSound</strike>
+(<code>Uri, int</code>)</A></nobr><br>
+<!-- Method setState -->
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.setState_removed(int, long, float)" class="hiddenlink" target="rightframe"><strike>setState</strike>
+(<code>int, long, float</code>)</A></nobr><br>
+<!-- Method setTheme -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.setTheme_removed(int)" class="hiddenlink" target="rightframe"><strike>setTheme</strike>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setTvInputListener -->
+<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.setTvInputListener_removed(android.media.tv.TvView.TvInputListener)" class="hiddenlink" target="rightframe"><strike>setTvInputListener</strike>
+(<code>TvInputListener</code>)</A></nobr><br>
+<!-- Method setType -->
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.Builder.html#android.bluetooth.le.AdvertiseSettings.Builder.setType_removed(int)" class="hiddenlink" target="rightframe"><strike>setType</strike>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setViewName -->
+<nobr><A HREF="android.view.View.html#android.view.View.setViewName_removed(java.lang.String)" class="hiddenlink" target="rightframe"><strike>setViewName</strike>
+(<code>String</code>)</A></nobr><br>
+<!-- Class SharedElementListener -->
+<A HREF="pkg_android.app.html#SharedElementListener" class="hiddenlink" target="rightframe"><strike>SharedElementListener</strike></A><br>
+<!-- Method shouldInterceptRequest -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_removed(android.webkit.WebView, java.lang.String)" class="hiddenlink" target="rightframe"><strike>shouldInterceptRequest</strike>
+(<code>WebView, String</code>)</A></nobr><br>
+<!-- Method showWindow -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.showWindow_removed()" class="hiddenlink" target="rightframe"><strike>showWindow</strike>
+()</A></nobr><br>
+<!-- Method startActivityForProfile -->
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.startActivityForProfile_removed(android.content.ComponentName, android.os.UserHandle, android.graphics.Rect, android.os.Bundle)" class="hiddenlink" target="rightframe"><strike>startActivityForProfile</strike>
+(<code>ComponentName, UserHandle, Rect, Bundle</code>)</A></nobr><br>
+<!-- Method startAdvertising -->
+<i>startAdvertising</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.BluetoothLeAdvertiser.html#android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising_removed(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertisementData, android.bluetooth.le.AdvertiseCallback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>AdvertiseSettings, AdvertisementData, AdvertiseCallback</code>)</strike>&nbsp;in&nbsp;android.bluetooth.le.BluetoothLeAdvertiser
+</A></nobr><br>
+<!-- Method startAdvertising -->
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.BluetoothLeAdvertiser.html#android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising_removed(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertisementData, android.bluetooth.le.AdvertisementData, android.bluetooth.le.AdvertiseCallback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>AdvertiseSettings, AdvertisementData, AdvertisementData, AdvertiseCallback</code>)</strike>&nbsp;in&nbsp;android.bluetooth.le.BluetoothLeAdvertiser
+</A></nobr><br>
+<!-- Method startVoiceActivity -->
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.startVoiceActivity_removed(android.content.Intent)" class="hiddenlink" target="rightframe"><strike>startVoiceActivity</strike>
+(<code>Intent</code>)</A></nobr><br>
+<!-- Field STATE_DOZING -->
+<nobr><A HREF="android.view.Display.html#android.view.Display.STATE_DOZING" class="hiddenlink" target="rightframe"><strike>STATE_DOZING</strike></A>
+</nobr><br>
+<!-- Method stopRepeating -->
+<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.stopRepeating_removed()" class="hiddenlink" target="rightframe"><strike>stopRepeating</strike>
+()</A></nobr><br>
+<!-- Field stroke -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.stroke" class="hiddenlink" target="rightframe"><strike>stroke</strike></A>
+</nobr><br>
+<!-- Field strokeOpacity -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeOpacity" class="hiddenlink" target="rightframe"><strike>strokeOpacity</strike></A>
+</nobr><br>
+<!-- Field targetViewName -->
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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="#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="#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.R.attr.html#android.R.attr.targetViewName" class="hiddenlink" target="rightframe"><strike>targetViewName</strike></A>
+</nobr><br>
+<!-- Class TvInputManager.TvInputListener -->
+<A HREF="pkg_android.media.tv.html#TvInputManager.TvInputListener" class="hiddenlink" target="rightframe"><strike>TvInputManager.TvInputListener</strike></A><br>
+<!-- Field tvInputType -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.tvInputType" class="hiddenlink" target="rightframe"><strike>tvInputType</strike></A>
+</nobr><br>
+<!-- Class TvView.TvInputListener -->
+<A HREF="pkg_android.media.tv.html#TvView.TvInputListener" class="hiddenlink" target="rightframe"><strike>TvView.TvInputListener</strike></A><br>
+<!-- Field TYPE_KEYGUARD -->
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.TYPE_KEYGUARD" class="hiddenlink" target="rightframe"><strike>TYPE_KEYGUARD</strike></A>
+</nobr><br>
+<!-- Field TYPE_PASSTHROUGH -->
+<i>TYPE_PASSTHROUGH</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_PASSTHROUGH" class="hiddenlink" target="rightframe"><strike>android.media.tv.TvContract.Channels</strike></A>
+</nobr><br>
+<!-- Field TYPE_PASSTHROUGH -->
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_PASSTHROUGH" class="hiddenlink" target="rightframe"><strike>android.media.tv.TvInputInfo</strike></A>
+</nobr><br>
+<!-- Field TYPE_VIRTUAL -->
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_VIRTUAL" class="hiddenlink" target="rightframe"><strike>TYPE_VIRTUAL</strike></A>
+</nobr><br>
+<!-- Method unregisterDefaultNetworkActiveListener -->
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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="#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="#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.net.ConnectivityManager.html#android.net.ConnectivityManager.unregisterDefaultNetworkActiveListener_removed(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><strike>unregisterDefaultNetworkActiveListener</strike>
+(<code>OnNetworkActiveListener</code>)</A></nobr><br>
+<!-- Method userActivity -->
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.userActivity_removed(long, boolean)" class="hiddenlink" target="rightframe"><strike>userActivity</strike>
+(<code>long, boolean</code>)</A></nobr><br>
+<!-- Field viewName -->
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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="#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="#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.viewName" class="hiddenlink" target="rightframe"><strike>viewName</strike></A>
+</nobr><br>
+<!-- Class VoiceInteractionSession.Caller -->
+<A HREF="pkg_android.service.voice.html#VoiceInteractionSession.Caller" class="hiddenlink" target="rightframe"><strike>VoiceInteractionSession.Caller</strike></A><br>
+<!-- Class VoiceInteractionSession.Insets -->
+<A HREF="pkg_android.service.voice.html#VoiceInteractionSession.Insets" class="hiddenlink" target="rightframe"><strike>VoiceInteractionSession.Insets</strike></A><br>
+<!-- Class VoiceInteractionSession.Request -->
+<A HREF="pkg_android.service.voice.html#VoiceInteractionSession.Request" class="hiddenlink" target="rightframe"><strike>VoiceInteractionSession.Request</strike></A><br>
+<!-- Class VoiceInteractor -->
+<A HREF="pkg_android.app.html#VoiceInteractor" class="hiddenlink" target="rightframe"><strike>VoiceInteractor</strike></A><br>
+<!-- Class VoiceInteractor.AbortVoiceRequest -->
+<A HREF="pkg_android.app.html#VoiceInteractor.AbortVoiceRequest" class="hiddenlink" target="rightframe"><strike>VoiceInteractor.AbortVoiceRequest</strike></A><br>
+<!-- Class VoiceInteractor.CommandRequest -->
+<A HREF="pkg_android.app.html#VoiceInteractor.CommandRequest" class="hiddenlink" target="rightframe"><strike>VoiceInteractor.CommandRequest</strike></A><br>
+<!-- Class VoiceInteractor.ConfirmationRequest -->
+<A HREF="pkg_android.app.html#VoiceInteractor.ConfirmationRequest" class="hiddenlink" target="rightframe"><strike>VoiceInteractor.ConfirmationRequest</strike></A><br>
+<!-- Class VoiceInteractor.Request -->
+<A HREF="pkg_android.app.html#VoiceInteractor.Request" class="hiddenlink" target="rightframe"><strike>VoiceInteractor.Request</strike></A><br>
+<!-- Method wakeUp -->
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.wakeUp_removed(long)" class="hiddenlink" target="rightframe"><strike>wakeUp</strike>
+(<code>long</code>)</A></nobr><br>
+<!-- Field WIDGET_CATEGORY_RECENTS -->
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.WIDGET_CATEGORY_RECENTS" class="hiddenlink" target="rightframe"><strike>WIDGET_CATEGORY_RECENTS</strike></A>
+</nobr><br>
+<!-- Field Widget_Holo_FastScroll -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Holo_FastScroll" class="hiddenlink" target="rightframe"><strike>Widget_Holo_FastScroll</strike></A>
+</nobr><br>
+<!-- Field Widget_Holo_Light_Button_Borderless -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Holo_Light_Button_Borderless" class="hiddenlink" target="rightframe"><strike>Widget_Holo_Light_Button_Borderless</strike></A>
+</nobr><br>
+<!-- Field Widget_Holo_Light_FastScroll -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Holo_Light_FastScroll" class="hiddenlink" target="rightframe"><strike>Widget_Holo_Light_FastScroll</strike></A>
+</nobr><br>
+<!-- Field Widget_Holo_Light_StackView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Holo_Light_StackView" class="hiddenlink" target="rightframe"><strike>Widget_Holo_Light_StackView</strike></A>
+</nobr><br>
+<!-- Field Widget_Holo_StackView -->
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Holo_StackView" class="hiddenlink" target="rightframe"><strike>Widget_Holo_StackView</strike></A>
+</nobr><br>
+<!-- Field windowAllowExitTransitionOverlap -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowAllowExitTransitionOverlap" class="hiddenlink" target="rightframe"><strike>windowAllowExitTransitionOverlap</strike></A>
+</nobr><br>
+<script src="//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/preview-21/changes/android.Manifest.permission.html b/docs/html/sdk/api_diff/preview-21/changes/android.Manifest.permission.html
new file mode 100644
index 0000000..1bb21d2
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.Manifest.permission.html
@@ -0,0 +1,171 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.BIND_DREAM_SERVICE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#BIND_DREAM_SERVICE" target="_top"><code>BIND_DREAM_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.Manifest.permission.READ_VOICEMAIL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#READ_VOICEMAIL" target="_top"><code>READ_VOICEMAIL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.Manifest.permission.WRITE_VOICEMAIL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#WRITE_VOICEMAIL" target="_top"><code>WRITE_VOICEMAIL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Manifest.permission.GET_TASKS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#GET_TASKS" target="_top"><code>GET_TASKS</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.Manifest.permission.READ_SOCIAL_STREAM"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#READ_SOCIAL_STREAM" target="_top"><code>READ_SOCIAL_STREAM</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.Manifest.permission.WRITE_SOCIAL_STREAM"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/Manifest.permission.html#WRITE_SOCIAL_STREAM" target="_top"><code>WRITE_SOCIAL_STREAM</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.R.attr.html b/docs/html/sdk/api_diff/preview-21/changes/android.R.attr.html
new file mode 100644
index 0000000..5f9733d
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.R.attr.html
@@ -0,0 +1,1813 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.clipToPath"></A>
+  <code>int</code>&nbsp;clipToPath
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.excludeViewName"></A>
+  <code>int</code>&nbsp;excludeViewName
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fill"></A>
+  <code>int</code>&nbsp;fill
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fillOpacity"></A>
+  <code>int</code>&nbsp;fillOpacity
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad1"></A>
+  <code>int</code>&nbsp;l_resource_pad1
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad10"></A>
+  <code>int</code>&nbsp;l_resource_pad10
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad11"></A>
+  <code>int</code>&nbsp;l_resource_pad11
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad12"></A>
+  <code>int</code>&nbsp;l_resource_pad12
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad13"></A>
+  <code>int</code>&nbsp;l_resource_pad13
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad14"></A>
+  <code>int</code>&nbsp;l_resource_pad14
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad15"></A>
+  <code>int</code>&nbsp;l_resource_pad15
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad16"></A>
+  <code>int</code>&nbsp;l_resource_pad16
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad17"></A>
+  <code>int</code>&nbsp;l_resource_pad17
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad18"></A>
+  <code>int</code>&nbsp;l_resource_pad18
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad19"></A>
+  <code>int</code>&nbsp;l_resource_pad19
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad2"></A>
+  <code>int</code>&nbsp;l_resource_pad2
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad20"></A>
+  <code>int</code>&nbsp;l_resource_pad20
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad21"></A>
+  <code>int</code>&nbsp;l_resource_pad21
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad22"></A>
+  <code>int</code>&nbsp;l_resource_pad22
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad23"></A>
+  <code>int</code>&nbsp;l_resource_pad23
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad24"></A>
+  <code>int</code>&nbsp;l_resource_pad24
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad25"></A>
+  <code>int</code>&nbsp;l_resource_pad25
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad3"></A>
+  <code>int</code>&nbsp;l_resource_pad3
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad4"></A>
+  <code>int</code>&nbsp;l_resource_pad4
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad5"></A>
+  <code>int</code>&nbsp;l_resource_pad5
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad6"></A>
+  <code>int</code>&nbsp;l_resource_pad6
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad7"></A>
+  <code>int</code>&nbsp;l_resource_pad7
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad8"></A>
+  <code>int</code>&nbsp;l_resource_pad8
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.l_resource_pad9"></A>
+  <code>int</code>&nbsp;l_resource_pad9
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.persistable"></A>
+  <code>int</code>&nbsp;persistable
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.requiredForProfile"></A>
+  <code>int</code>&nbsp;requiredForProfile
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.stroke"></A>
+  <code>int</code>&nbsp;stroke
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.strokeOpacity"></A>
+  <code>int</code>&nbsp;strokeOpacity
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.targetViewName"></A>
+  <code>int</code>&nbsp;targetViewName
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.tvInputType"></A>
+  <code>int</code>&nbsp;tvInputType
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.viewName"></A>
+  <code>int</code>&nbsp;viewName
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowAllowExitTransitionOverlap"></A>
+  <code>int</code>&nbsp;windowAllowExitTransitionOverlap
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.actionBarPopupTheme"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#actionBarPopupTheme" target="_top"><code>actionBarPopupTheme</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.actionModeFindDrawable"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#actionModeFindDrawable" target="_top"><code>actionModeFindDrawable</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.actionModeShareDrawable"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#actionModeShareDrawable" target="_top"><code>actionModeShareDrawable</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.actionModeWebSearchDrawable"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#actionModeWebSearchDrawable" target="_top"><code>actionModeWebSearchDrawable</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.amPmBackgroundColor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#amPmBackgroundColor" target="_top"><code>amPmBackgroundColor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.amPmTextColor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#amPmTextColor" target="_top"><code>amPmTextColor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.ambientShadowAlpha"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#ambientShadowAlpha" target="_top"><code>ambientShadowAlpha</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.backgroundTint"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#backgroundTint" target="_top"><code>backgroundTint</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.backgroundTintMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#backgroundTintMode" target="_top"><code>backgroundTintMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.buttonBarNegativeButtonStyle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#buttonBarNegativeButtonStyle" target="_top"><code>buttonBarNegativeButtonStyle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.buttonBarNeutralButtonStyle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#buttonBarNeutralButtonStyle" target="_top"><code>buttonBarNeutralButtonStyle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.buttonBarPositiveButtonStyle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#buttonBarPositiveButtonStyle" target="_top"><code>buttonBarPositiveButtonStyle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.buttonTint"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#buttonTint" target="_top"><code>buttonTint</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.buttonTintMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#buttonTintMode" target="_top"><code>buttonTintMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.calendarTextColor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#calendarTextColor" target="_top"><code>calendarTextColor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.checkMarkTint"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#checkMarkTint" target="_top"><code>checkMarkTint</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.checkMarkTintMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#checkMarkTintMode" target="_top"><code>checkMarkTintMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.closeIcon"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#closeIcon" target="_top"><code>closeIcon</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.colorEdgeEffect"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#colorEdgeEffect" target="_top"><code>colorEdgeEffect</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.commitIcon"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#commitIcon" target="_top"><code>commitIcon</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.contentAgeHint"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#contentAgeHint" target="_top"><code>contentAgeHint</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.country"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#country" target="_top"><code>country</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.datePickerDialogTheme"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#datePickerDialogTheme" target="_top"><code>datePickerDialogTheme</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.datePickerMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#datePickerMode" target="_top"><code>datePickerMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.dayOfWeekBackground"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#dayOfWeekBackground" target="_top"><code>dayOfWeekBackground</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.dayOfWeekTextAppearance"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#dayOfWeekTextAppearance" target="_top"><code>dayOfWeekTextAppearance</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.excludeName"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#excludeName" target="_top"><code>excludeName</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fillAlpha"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fillAlpha" target="_top"><code>fillAlpha</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fillColor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fillColor" target="_top"><code>fillColor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fontFeatureSettings"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fontFeatureSettings" target="_top"><code>fontFeatureSettings</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.foregroundTint"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#foregroundTint" target="_top"><code>foregroundTint</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.foregroundTintMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#foregroundTintMode" target="_top"><code>foregroundTintMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fragmentAllowEnterTransitionOverlap"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fragmentAllowEnterTransitionOverlap" target="_top"><code>fragmentAllowEnterTransitionOverlap</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fragmentAllowReturnTransitionOverlap"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fragmentAllowReturnTransitionOverlap" target="_top"><code>fragmentAllowReturnTransitionOverlap</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fragmentEnterTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fragmentEnterTransition" target="_top"><code>fragmentEnterTransition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fragmentExitTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fragmentExitTransition" target="_top"><code>fragmentExitTransition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fragmentReenterTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fragmentReenterTransition" target="_top"><code>fragmentReenterTransition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fragmentReturnTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fragmentReturnTransition" target="_top"><code>fragmentReturnTransition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fragmentSharedElementEnterTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fragmentSharedElementEnterTransition" target="_top"><code>fragmentSharedElementEnterTransition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fragmentSharedElementReturnTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fragmentSharedElementReturnTransition" target="_top"><code>fragmentSharedElementReturnTransition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fullBackupOnly"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fullBackupOnly" target="_top"><code>fullBackupOnly</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.goIcon"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#goIcon" target="_top"><code>goIcon</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.headerAmPmTextAppearance"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#headerAmPmTextAppearance" target="_top"><code>headerAmPmTextAppearance</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.headerDayOfMonthTextAppearance"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#headerDayOfMonthTextAppearance" target="_top"><code>headerDayOfMonthTextAppearance</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.headerMonthTextAppearance"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#headerMonthTextAppearance" target="_top"><code>headerMonthTextAppearance</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.headerTimeTextAppearance"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#headerTimeTextAppearance" target="_top"><code>headerTimeTextAppearance</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.headerYearTextAppearance"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#headerYearTextAppearance" target="_top"><code>headerYearTextAppearance</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.indeterminateTint"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#indeterminateTint" target="_top"><code>indeterminateTint</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.indeterminateTintMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#indeterminateTintMode" target="_top"><code>indeterminateTintMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.inset"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#inset" target="_top"><code>inset</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.launchTaskBehindSourceAnimation"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#launchTaskBehindSourceAnimation" target="_top"><code>launchTaskBehindSourceAnimation</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.launchTaskBehindTargetAnimation"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#launchTaskBehindTargetAnimation" target="_top"><code>launchTaskBehindTargetAnimation</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.layout_columnWeight"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#layout_columnWeight" target="_top"><code>layout_columnWeight</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.layout_rowWeight"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#layout_rowWeight" target="_top"><code>layout_rowWeight</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.letterSpacing"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#letterSpacing" target="_top"><code>letterSpacing</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.maximumAngle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#maximumAngle" target="_top"><code>maximumAngle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.minimumHorizontalAngle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#minimumHorizontalAngle" target="_top"><code>minimumHorizontalAngle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.minimumVerticalAngle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#minimumVerticalAngle" target="_top"><code>minimumVerticalAngle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.multiArch"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#multiArch" target="_top"><code>multiArch</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.navigationContentDescription"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#navigationContentDescription" target="_top"><code>navigationContentDescription</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.navigationIcon"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#navigationIcon" target="_top"><code>navigationIcon</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.numbersBackgroundColor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#numbersBackgroundColor" target="_top"><code>numbersBackgroundColor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.numbersSelectorColor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#numbersSelectorColor" target="_top"><code>numbersSelectorColor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.numbersTextColor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#numbersTextColor" target="_top"><code>numbersTextColor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.outlineProvider"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#outlineProvider" target="_top"><code>outlineProvider</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.overlapAnchor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#overlapAnchor" target="_top"><code>overlapAnchor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.patternPathData"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#patternPathData" target="_top"><code>patternPathData</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.persistableMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#persistableMode" target="_top"><code>persistableMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.popupElevation"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#popupElevation" target="_top"><code>popupElevation</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.popupTheme"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#popupTheme" target="_top"><code>popupTheme</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.progressBackgroundTint"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#progressBackgroundTint" target="_top"><code>progressBackgroundTint</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.progressBackgroundTintMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#progressBackgroundTintMode" target="_top"><code>progressBackgroundTintMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.progressTint"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#progressTint" target="_top"><code>progressTint</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.progressTintMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#progressTintMode" target="_top"><code>progressTintMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.propertyXName"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#propertyXName" target="_top"><code>propertyXName</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.propertyYName"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#propertyYName" target="_top"><code>propertyYName</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.queryBackground"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#queryBackground" target="_top"><code>queryBackground</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.recognitionService"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#recognitionService" target="_top"><code>recognitionService</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.relinquishTaskIdentity"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#relinquishTaskIdentity" target="_top"><code>relinquishTaskIdentity</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.reparent"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#reparent" target="_top"><code>reparent</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.reparentWithOverlay"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#reparentWithOverlay" target="_top"><code>reparentWithOverlay</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.restrictionType"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#restrictionType" target="_top"><code>restrictionType</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.resumeWhilePausing"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#resumeWhilePausing" target="_top"><code>resumeWhilePausing</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.searchIcon"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#searchIcon" target="_top"><code>searchIcon</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.searchViewStyle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#searchViewStyle" target="_top"><code>searchViewStyle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.secondaryProgressTint"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#secondaryProgressTint" target="_top"><code>secondaryProgressTint</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.secondaryProgressTintMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#secondaryProgressTintMode" target="_top"><code>secondaryProgressTintMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.showText"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#showText" target="_top"><code>showText</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.spotShadowAlpha"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#spotShadowAlpha" target="_top"><code>spotShadowAlpha</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.strokeAlpha"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#strokeAlpha" target="_top"><code>strokeAlpha</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.strokeColor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#strokeColor" target="_top"><code>strokeColor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.strokeMiterLimit"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#strokeMiterLimit" target="_top"><code>strokeMiterLimit</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.submitBackground"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#submitBackground" target="_top"><code>submitBackground</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.suggestionRowLayout"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#suggestionRowLayout" target="_top"><code>suggestionRowLayout</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.targetName"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#targetName" target="_top"><code>targetName</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.thumbTint"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#thumbTint" target="_top"><code>thumbTint</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.thumbTintMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#thumbTintMode" target="_top"><code>thumbTintMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.tileModeX"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#tileModeX" target="_top"><code>tileModeX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.tileModeY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#tileModeY" target="_top"><code>tileModeY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.timePickerDialogTheme"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#timePickerDialogTheme" target="_top"><code>timePickerDialogTheme</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.timePickerMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#timePickerMode" target="_top"><code>timePickerMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.timePickerStyle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#timePickerStyle" target="_top"><code>timePickerStyle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.toolbarStyle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#toolbarStyle" target="_top"><code>toolbarStyle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.touchscreenBlocksFocus"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#touchscreenBlocksFocus" target="_top"><code>touchscreenBlocksFocus</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.transitionName"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#transitionName" target="_top"><code>transitionName</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.transitionVisibilityMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#transitionVisibilityMode" target="_top"><code>transitionVisibilityMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.translateX"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#translateX" target="_top"><code>translateX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.translateY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#translateY" target="_top"><code>translateY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.voiceIcon"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#voiceIcon" target="_top"><code>voiceIcon</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowActivityTransitions"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowActivityTransitions" target="_top"><code>windowActivityTransitions</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowAllowReturnTransitionOverlap"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowAllowReturnTransitionOverlap" target="_top"><code>windowAllowReturnTransitionOverlap</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowClipToOutline"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowClipToOutline" target="_top"><code>windowClipToOutline</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowElevation"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowElevation" target="_top"><code>windowElevation</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowReenterTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowReenterTransition" target="_top"><code>windowReenterTransition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowReturnTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowReturnTransition" target="_top"><code>windowReturnTransition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowSharedElementReenterTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowSharedElementReenterTransition" target="_top"><code>windowSharedElementReenterTransition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowSharedElementReturnTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowSharedElementReturnTransition" target="_top"><code>windowSharedElementReturnTransition</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowSharedElementsUseOverlay"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowSharedElementsUseOverlay" target="_top"><code>windowSharedElementsUseOverlay</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowTransitionBackgroundFadeDuration"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowTransitionBackgroundFadeDuration" target="_top"><code>windowTransitionBackgroundFadeDuration</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.yearListItemTextAppearance"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#yearListItemTextAppearance" target="_top"><code>yearListItemTextAppearance</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.yearListSelectorColor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#yearListSelectorColor" target="_top"><code>yearListSelectorColor</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.R.attr.actionBarTheme"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#actionBarTheme" target="_top"><code>actionBarTheme</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843827 to 16843825.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.actionOverflowMenuStyle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#actionOverflowMenuStyle" target="_top"><code>actionOverflowMenuStyle</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843846 to 16843844.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.autoRemoveFromRecents"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#autoRemoveFromRecents" target="_top"><code>autoRemoveFromRecents</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843849 to 16843847.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.colorAccent"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#colorAccent" target="_top"><code>colorAccent</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843831 to 16843829.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.colorButtonNormal"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#colorButtonNormal" target="_top"><code>colorButtonNormal</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843821 to 16843819.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.colorControlActivated"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#colorControlActivated" target="_top"><code>colorControlActivated</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843820 to 16843818.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.colorControlHighlight"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#colorControlHighlight" target="_top"><code>colorControlHighlight</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843822 to 16843820.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.colorControlNormal"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#colorControlNormal" target="_top"><code>colorControlNormal</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843819 to 16843817.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.colorPrimary"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#colorPrimary" target="_top"><code>colorPrimary</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843829 to 16843827.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.colorPrimaryDark"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#colorPrimaryDark" target="_top"><code>colorPrimaryDark</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843830 to 16843828.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.contentInsetEnd"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#contentInsetEnd" target="_top"><code>contentInsetEnd</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843862 to 16843860.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.contentInsetLeft"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#contentInsetLeft" target="_top"><code>contentInsetLeft</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843863 to 16843861.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.contentInsetRight"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#contentInsetRight" target="_top"><code>contentInsetRight</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843864 to 16843862.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.contentInsetStart"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#contentInsetStart" target="_top"><code>contentInsetStart</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843861 to 16843859.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.controlX1"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#controlX1" target="_top"><code>controlX1</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843798 to 16843772.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.controlX2"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#controlX2" target="_top"><code>controlX2</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843800 to 16843774.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.controlY1"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#controlY1" target="_top"><code>controlY1</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843799 to 16843773.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.controlY2"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#controlY2" target="_top"><code>controlY2</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843801 to 16843775.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.documentLaunchMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#documentLaunchMode" target="_top"><code>documentLaunchMode</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843847 to 16843845.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.elegantTextHeight"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#elegantTextHeight" target="_top"><code>elegantTextHeight</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843867 to 16843869.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.elevation"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#elevation" target="_top"><code>elevation</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843842 to 16843840.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.excludeClass"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#excludeClass" target="_top"><code>excludeClass</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843844 to 16843842.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.excludeId"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#excludeId" target="_top"><code>excludeId</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843843 to 16843841.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fastScrollStyle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fastScrollStyle" target="_top"><code>fastScrollStyle</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843793 to 16843767.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.fromId"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#fromId" target="_top"><code>fromId</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843852 to 16843850.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.hideOnContentScroll"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#hideOnContentScroll" target="_top"><code>hideOnContentScroll</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843845 to 16843843.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.matchOrder"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#matchOrder" target="_top"><code>matchOrder</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843857 to 16843855.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.maxRecents"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#maxRecents" target="_top"><code>maxRecents</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843848 to 16843846.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.navigationBarColor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#navigationBarColor" target="_top"><code>navigationBarColor</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843860 to 16843858.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.nestedScrollingEnabled"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#nestedScrollingEnabled" target="_top"><code>nestedScrollingEnabled</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843832 to 16843830.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.paddingMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#paddingMode" target="_top"><code>paddingMode</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843865 to 16843863.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.pathData"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#pathData" target="_top"><code>pathData</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843808 to 16843781.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.reversible"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#reversible" target="_top"><code>reversible</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843853 to 16843851.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.selectableItemBackgroundBorderless"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#selectableItemBackgroundBorderless" target="_top"><code>selectableItemBackgroundBorderless</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843866 to 16843868.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.sessionService"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#sessionService" target="_top"><code>sessionService</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843839 to 16843837.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.slideEdge"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#slideEdge" target="_top"><code>slideEdge</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843826 to 16843824.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.splitTrack"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#splitTrack" target="_top"><code>splitTrack</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843854 to 16843852.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.stackViewStyle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#stackViewStyle" target="_top"><code>stackViewStyle</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843840 to 16843838.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.stateListAnimator"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#stateListAnimator" target="_top"><code>stateListAnimator</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843850 to 16843848.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.statusBarColor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#statusBarColor" target="_top"><code>statusBarColor</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843859 to 16843857.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.strokeLineCap"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#strokeLineCap" target="_top"><code>strokeLineCap</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843815 to 16843787.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.strokeLineJoin"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#strokeLineJoin" target="_top"><code>strokeLineJoin</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843816 to 16843788.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.strokeWidth"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#strokeWidth" target="_top"><code>strokeWidth</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843811 to 16843783.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.subtitleTextAppearance"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#subtitleTextAppearance" target="_top"><code>subtitleTextAppearance</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843825 to 16843823.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.switchStyle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#switchStyle" target="_top"><code>switchStyle</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843841 to 16843839.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.textAppearanceListItemSecondary"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#textAppearanceListItemSecondary" target="_top"><code>textAppearanceListItemSecondary</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843828 to 16843826.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.tintMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#tintMode" target="_top"><code>tintMode</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843797 to 16843771.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.titleTextAppearance"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#titleTextAppearance" target="_top"><code>titleTextAppearance</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843824 to 16843822.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.toId"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#toId" target="_top"><code>toId</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843851 to 16843849.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.transitionGroup"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#transitionGroup" target="_top"><code>transitionGroup</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843803 to 16843777.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.translationZ"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#translationZ" target="_top"><code>translationZ</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843796 to 16843770.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.trimPathEnd"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#trimPathEnd" target="_top"><code>trimPathEnd</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843813 to 16843785.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.trimPathOffset"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#trimPathOffset" target="_top"><code>trimPathOffset</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843814 to 16843786.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.trimPathStart"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#trimPathStart" target="_top"><code>trimPathStart</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843812 to 16843784.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.viewportHeight"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#viewportHeight" target="_top"><code>viewportHeight</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843805 to 16843779.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.viewportWidth"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#viewportWidth" target="_top"><code>viewportWidth</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843804 to 16843778.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowAllowEnterTransitionOverlap"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowAllowEnterTransitionOverlap" target="_top"><code>windowAllowEnterTransitionOverlap</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843838 to 16843836.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowContentTransitionManager"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowContentTransitionManager" target="_top"><code>windowContentTransitionManager</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843795 to 16843769.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowContentTransitions"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowContentTransitions" target="_top"><code>windowContentTransitions</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843794 to 16843768.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowDrawsSystemBarBackgrounds"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowDrawsSystemBarBackgrounds" target="_top"><code>windowDrawsSystemBarBackgrounds</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843858 to 16843856.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowEnterTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowEnterTransition" target="_top"><code>windowEnterTransition</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843833 to 16843831.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowExitTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowExitTransition" target="_top"><code>windowExitTransition</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843834 to 16843832.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowSharedElementEnterTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowSharedElementEnterTransition" target="_top"><code>windowSharedElementEnterTransition</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843835 to 16843833.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.attr.windowSharedElementExitTransition"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.attr.html#windowSharedElementExitTransition" target="_top"><code>windowSharedElementExitTransition</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16843836 to 16843834.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.R.dimen.html b/docs/html/sdk/api_diff/preview-21/changes/android.R.dimen.html
new file mode 100644
index 0000000..f82d1f5
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.R.dimen.html
@@ -0,0 +1,185 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.dimen
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.dimen.html" target="_top"><font size="+2"><code>R.dimen</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.dimen.l_resource_pad1"></A>
+  <code>int</code>&nbsp;l_resource_pad1
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.dimen.l_resource_pad10"></A>
+  <code>int</code>&nbsp;l_resource_pad10
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.dimen.l_resource_pad2"></A>
+  <code>int</code>&nbsp;l_resource_pad2
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.dimen.l_resource_pad3"></A>
+  <code>int</code>&nbsp;l_resource_pad3
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.dimen.l_resource_pad4"></A>
+  <code>int</code>&nbsp;l_resource_pad4
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.dimen.l_resource_pad5"></A>
+  <code>int</code>&nbsp;l_resource_pad5
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.dimen.l_resource_pad6"></A>
+  <code>int</code>&nbsp;l_resource_pad6
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.dimen.l_resource_pad7"></A>
+  <code>int</code>&nbsp;l_resource_pad7
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.dimen.l_resource_pad8"></A>
+  <code>int</code>&nbsp;l_resource_pad8
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.dimen.l_resource_pad9"></A>
+  <code>int</code>&nbsp;l_resource_pad9
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.R.id.html b/docs/html/sdk/api_diff/preview-21/changes/android.R.id.html
new file mode 100644
index 0000000..177de98
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.R.id.html
@@ -0,0 +1,287 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.id
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.id.html" target="_top"><font size="+2"><code>R.id</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.id.l_resource_pad1"></A>
+  <code>int</code>&nbsp;l_resource_pad1
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.id.l_resource_pad10"></A>
+  <code>int</code>&nbsp;l_resource_pad10
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.id.l_resource_pad11"></A>
+  <code>int</code>&nbsp;l_resource_pad11
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.id.l_resource_pad12"></A>
+  <code>int</code>&nbsp;l_resource_pad12
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.id.l_resource_pad13"></A>
+  <code>int</code>&nbsp;l_resource_pad13
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.id.l_resource_pad14"></A>
+  <code>int</code>&nbsp;l_resource_pad14
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.id.l_resource_pad15"></A>
+  <code>int</code>&nbsp;l_resource_pad15
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.id.l_resource_pad16"></A>
+  <code>int</code>&nbsp;l_resource_pad16
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.id.l_resource_pad17"></A>
+  <code>int</code>&nbsp;l_resource_pad17
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.id.l_resource_pad18"></A>
+  <code>int</code>&nbsp;l_resource_pad18
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.id.l_resource_pad19"></A>
+  <code>int</code>&nbsp;l_resource_pad19
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.id.l_resource_pad2"></A>
+  <code>int</code>&nbsp;l_resource_pad2
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.id.l_resource_pad3"></A>
+  <code>int</code>&nbsp;l_resource_pad3
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.id.l_resource_pad4"></A>
+  <code>int</code>&nbsp;l_resource_pad4
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.id.l_resource_pad5"></A>
+  <code>int</code>&nbsp;l_resource_pad5
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.id.l_resource_pad6"></A>
+  <code>int</code>&nbsp;l_resource_pad6
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.id.l_resource_pad7"></A>
+  <code>int</code>&nbsp;l_resource_pad7
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.id.l_resource_pad8"></A>
+  <code>int</code>&nbsp;l_resource_pad8
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.id.l_resource_pad9"></A>
+  <code>int</code>&nbsp;l_resource_pad9
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.id.navigationBarBackground"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.id.html#navigationBarBackground" target="_top"><code>navigationBarBackground</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.id.statusBarBackground"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.id.html#statusBarBackground" target="_top"><code>statusBarBackground</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.R.id.mask"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.id.html#mask" target="_top"><code>mask</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16908353 to 16908334.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.R.interpolator.html b/docs/html/sdk/api_diff/preview-21/changes/android.R.interpolator.html
new file mode 100644
index 0000000..6c04cc1
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.R.interpolator.html
@@ -0,0 +1,178 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.interpolator
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.interpolator.html" target="_top"><font size="+2"><code>R.interpolator</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.interpolator.l_resource_pad1"></A>
+  <code>int</code>&nbsp;l_resource_pad1
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.interpolator.l_resource_pad2"></A>
+  <code>int</code>&nbsp;l_resource_pad2
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.interpolator.l_resource_pad3"></A>
+  <code>int</code>&nbsp;l_resource_pad3
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.interpolator.l_resource_pad4"></A>
+  <code>int</code>&nbsp;l_resource_pad4
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.R.interpolator.fast_out_linear_in"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.interpolator.html#fast_out_linear_in" target="_top"><code>fast_out_linear_in</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 17563667 to 17563663.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.interpolator.fast_out_slow_in"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.interpolator.html#fast_out_slow_in" target="_top"><code>fast_out_slow_in</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 17563665 to 17563661.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.interpolator.linear_out_slow_in"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.interpolator.html#linear_out_slow_in" target="_top"><code>linear_out_slow_in</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 17563666 to 17563662.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.R.style.html b/docs/html/sdk/api_diff/preview-21/changes/android.R.style.html
new file mode 100644
index 0000000..843f52a
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.R.style.html
@@ -0,0 +1,2417 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Holo_FastScroll"></A>
+  <code>int</code>&nbsp;Widget_Holo_FastScroll
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Holo_Light_Button_Borderless"></A>
+  <code>int</code>&nbsp;Widget_Holo_Light_Button_Borderless
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Holo_Light_FastScroll"></A>
+  <code>int</code>&nbsp;Widget_Holo_Light_FastScroll
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Holo_Light_StackView"></A>
+  <code>int</code>&nbsp;Widget_Holo_Light_StackView
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Holo_StackView"></A>
+  <code>int</code>&nbsp;Widget_Holo_StackView
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad1"></A>
+  <code>int</code>&nbsp;l_resource_pad1
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad10"></A>
+  <code>int</code>&nbsp;l_resource_pad10
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad11"></A>
+  <code>int</code>&nbsp;l_resource_pad11
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad12"></A>
+  <code>int</code>&nbsp;l_resource_pad12
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad13"></A>
+  <code>int</code>&nbsp;l_resource_pad13
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad14"></A>
+  <code>int</code>&nbsp;l_resource_pad14
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad15"></A>
+  <code>int</code>&nbsp;l_resource_pad15
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad16"></A>
+  <code>int</code>&nbsp;l_resource_pad16
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad17"></A>
+  <code>int</code>&nbsp;l_resource_pad17
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad18"></A>
+  <code>int</code>&nbsp;l_resource_pad18
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad19"></A>
+  <code>int</code>&nbsp;l_resource_pad19
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad2"></A>
+  <code>int</code>&nbsp;l_resource_pad2
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad20"></A>
+  <code>int</code>&nbsp;l_resource_pad20
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad21"></A>
+  <code>int</code>&nbsp;l_resource_pad21
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad22"></A>
+  <code>int</code>&nbsp;l_resource_pad22
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad23"></A>
+  <code>int</code>&nbsp;l_resource_pad23
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad24"></A>
+  <code>int</code>&nbsp;l_resource_pad24
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad25"></A>
+  <code>int</code>&nbsp;l_resource_pad25
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad26"></A>
+  <code>int</code>&nbsp;l_resource_pad26
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad27"></A>
+  <code>int</code>&nbsp;l_resource_pad27
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad28"></A>
+  <code>int</code>&nbsp;l_resource_pad28
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad3"></A>
+  <code>int</code>&nbsp;l_resource_pad3
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad4"></A>
+  <code>int</code>&nbsp;l_resource_pad4
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad5"></A>
+  <code>int</code>&nbsp;l_resource_pad5
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad6"></A>
+  <code>int</code>&nbsp;l_resource_pad6
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad7"></A>
+  <code>int</code>&nbsp;l_resource_pad7
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad8"></A>
+  <code>int</code>&nbsp;l_resource_pad8
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.l_resource_pad9"></A>
+  <code>int</code>&nbsp;l_resource_pad9
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.TextAppearance_Material_Notification"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Notification" target="_top"><code>TextAppearance_Material_Notification</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Notification_Emphasis"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Notification_Emphasis" target="_top"><code>TextAppearance_Material_Notification_Emphasis</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Notification_Info"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Notification_Info" target="_top"><code>TextAppearance_Material_Notification_Info</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Notification_Line2"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Notification_Line2" target="_top"><code>TextAppearance_Material_Notification_Line2</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Notification_Time"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Notification_Time" target="_top"><code>TextAppearance_Material_Notification_Time</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Notification_Title"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Notification_Title" target="_top"><code>TextAppearance_Material_Notification_Title</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_Toolbar_Subtitle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_Toolbar_Subtitle" target="_top"><code>TextAppearance_Material_Widget_Toolbar_Subtitle</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_Toolbar_Title"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_Toolbar_Title" target="_top"><code>TextAppearance_Material_Widget_Toolbar_Title</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Dialog_Alert"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Dialog_Alert" target="_top"><code>Theme_Material_Dialog_Alert</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Dialog_Presentation"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Dialog_Presentation" target="_top"><code>Theme_Material_Dialog_Presentation</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_Dialog_Alert"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_Dialog_Alert" target="_top"><code>Theme_Material_Light_Dialog_Alert</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_Dialog_Presentation"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_Dialog_Presentation" target="_top"><code>Theme_Material_Light_Dialog_Presentation</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Button_Borderless_Colored"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Button_Borderless_Colored" target="_top"><code>Widget_Material_Button_Borderless_Colored</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_Button_Borderless_Colored"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_Button_Borderless_Colored" target="_top"><code>Widget_Material_Light_Button_Borderless_Colored</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_DatePicker"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_DatePicker" target="_top"><code>Widget_Material_Light_DatePicker</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_SearchView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_SearchView" target="_top"><code>Widget_Material_Light_SearchView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_Spinner_Underlined"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_Spinner_Underlined" target="_top"><code>Widget_Material_Light_Spinner_Underlined</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_TimePicker"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_TimePicker" target="_top"><code>Widget_Material_Light_TimePicker</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_SearchView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_SearchView" target="_top"><code>Widget_Material_SearchView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Spinner_Underlined"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Spinner_Underlined" target="_top"><code>Widget_Material_Spinner_Underlined</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_TimePicker"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_TimePicker" target="_top"><code>Widget_Material_TimePicker</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.R.style.TextAppearance_Material"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material" target="_top"><code>TextAppearance_Material</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974350 to 16974317.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Body1"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Body1" target="_top"><code>TextAppearance_Material_Body1</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974552 to 16974320.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Body2"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Body2" target="_top"><code>TextAppearance_Material_Body2</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974551 to 16974319.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Button"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Button" target="_top"><code>TextAppearance_Material_Button</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974555 to 16974318.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Caption"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Caption" target="_top"><code>TextAppearance_Material_Caption</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974553 to 16974321.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_DialogWindowTitle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_DialogWindowTitle" target="_top"><code>TextAppearance_Material_DialogWindowTitle</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974351 to 16974322.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Display1"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Display1" target="_top"><code>TextAppearance_Material_Display1</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974547 to 16974326.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Display2"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Display2" target="_top"><code>TextAppearance_Material_Display2</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974546 to 16974325.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Display3"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Display3" target="_top"><code>TextAppearance_Material_Display3</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974545 to 16974324.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Display4"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Display4" target="_top"><code>TextAppearance_Material_Display4</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974544 to 16974323.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Headline"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Headline" target="_top"><code>TextAppearance_Material_Headline</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974548 to 16974327.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Inverse" target="_top"><code>TextAppearance_Material_Inverse</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974352 to 16974328.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Large"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Large" target="_top"><code>TextAppearance_Material_Large</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974353 to 16974329.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Large_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Large_Inverse" target="_top"><code>TextAppearance_Material_Large_Inverse</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974354 to 16974330.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Medium"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Medium" target="_top"><code>TextAppearance_Material_Medium</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974355 to 16974331.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Medium_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Medium_Inverse" target="_top"><code>TextAppearance_Material_Medium_Inverse</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974356 to 16974332.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Menu"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Menu" target="_top"><code>TextAppearance_Material_Menu</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974554 to 16974333.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_SearchResult_Subtitle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_SearchResult_Subtitle" target="_top"><code>TextAppearance_Material_SearchResult_Subtitle</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974357 to 16974340.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_SearchResult_Title"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_SearchResult_Title" target="_top"><code>TextAppearance_Material_SearchResult_Title</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974358 to 16974341.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Small"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Small" target="_top"><code>TextAppearance_Material_Small</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974359 to 16974342.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Small_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Small_Inverse" target="_top"><code>TextAppearance_Material_Small_Inverse</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974360 to 16974343.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Subhead"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Subhead" target="_top"><code>TextAppearance_Material_Subhead</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974550 to 16974344.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Title"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Title" target="_top"><code>TextAppearance_Material_Title</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974549 to 16974345.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget" target="_top"><code>TextAppearance_Material_Widget</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974362 to 16974347.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_ActionBar_Menu"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_ActionBar_Menu" target="_top"><code>TextAppearance_Material_Widget_ActionBar_Menu</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974363 to 16974348.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_ActionBar_Subtitle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_ActionBar_Subtitle" target="_top"><code>TextAppearance_Material_Widget_ActionBar_Subtitle</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974364 to 16974349.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse" target="_top"><code>TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974365 to 16974350.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_ActionBar_Title"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_ActionBar_Title" target="_top"><code>TextAppearance_Material_Widget_ActionBar_Title</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974366 to 16974351.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_ActionBar_Title_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_ActionBar_Title_Inverse" target="_top"><code>TextAppearance_Material_Widget_ActionBar_Title_Inverse</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974367 to 16974352.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_ActionMode_Subtitle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_ActionMode_Subtitle" target="_top"><code>TextAppearance_Material_Widget_ActionMode_Subtitle</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974368 to 16974353.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse" target="_top"><code>TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974369 to 16974354.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_ActionMode_Title"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_ActionMode_Title" target="_top"><code>TextAppearance_Material_Widget_ActionMode_Title</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974370 to 16974355.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_ActionMode_Title_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_ActionMode_Title_Inverse" target="_top"><code>TextAppearance_Material_Widget_ActionMode_Title_Inverse</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974371 to 16974356.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_Button"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_Button" target="_top"><code>TextAppearance_Material_Widget_Button</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974372 to 16974357.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_DropDownHint"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_DropDownHint" target="_top"><code>TextAppearance_Material_Widget_DropDownHint</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974373 to 16974358.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_DropDownItem"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_DropDownItem" target="_top"><code>TextAppearance_Material_Widget_DropDownItem</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974374 to 16974359.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_EditText"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_EditText" target="_top"><code>TextAppearance_Material_Widget_EditText</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974375 to 16974360.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_IconMenu_Item"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_IconMenu_Item" target="_top"><code>TextAppearance_Material_Widget_IconMenu_Item</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974376 to 16974361.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_PopupMenu"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_PopupMenu" target="_top"><code>TextAppearance_Material_Widget_PopupMenu</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974377 to 16974362.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_PopupMenu_Large"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_PopupMenu_Large" target="_top"><code>TextAppearance_Material_Widget_PopupMenu_Large</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974378 to 16974363.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_PopupMenu_Small"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_PopupMenu_Small" target="_top"><code>TextAppearance_Material_Widget_PopupMenu_Small</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974379 to 16974364.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_TabWidget"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_TabWidget" target="_top"><code>TextAppearance_Material_Widget_TabWidget</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974380 to 16974365.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_TextView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_TextView" target="_top"><code>TextAppearance_Material_Widget_TextView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974381 to 16974366.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_TextView_PopupMenu"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_TextView_PopupMenu" target="_top"><code>TextAppearance_Material_Widget_TextView_PopupMenu</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974382 to 16974367.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_Widget_TextView_SpinnerItem"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_Widget_TextView_SpinnerItem" target="_top"><code>TextAppearance_Material_Widget_TextView_SpinnerItem</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974383 to 16974368.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.TextAppearance_Material_WindowTitle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#TextAppearance_Material_WindowTitle" target="_top"><code>TextAppearance_Material_WindowTitle</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974361 to 16974346.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.ThemeOverlay"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#ThemeOverlay" target="_top"><code>ThemeOverlay</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974416 to 16974407.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.ThemeOverlay_Material"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#ThemeOverlay_Material" target="_top"><code>ThemeOverlay_Material</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974417 to 16974408.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.ThemeOverlay_Material_ActionBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#ThemeOverlay_Material_ActionBar" target="_top"><code>ThemeOverlay_Material_ActionBar</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974418 to 16974409.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.ThemeOverlay_Material_Dark"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#ThemeOverlay_Material_Dark" target="_top"><code>ThemeOverlay_Material_Dark</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974420 to 16974411.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.ThemeOverlay_Material_Dark_ActionBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#ThemeOverlay_Material_Dark_ActionBar" target="_top"><code>ThemeOverlay_Material_Dark_ActionBar</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974421 to 16974412.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.ThemeOverlay_Material_Light"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#ThemeOverlay_Material_Light" target="_top"><code>ThemeOverlay_Material_Light</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974419 to 16974410.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_DeviceDefault_Settings"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_DeviceDefault_Settings" target="_top"><code>Theme_DeviceDefault_Settings</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974384 to 16974371.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material" target="_top"><code>Theme_Material</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974385 to 16974372.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Dialog"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Dialog" target="_top"><code>Theme_Material_Dialog</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974386 to 16974373.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_DialogWhenLarge"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_DialogWhenLarge" target="_top"><code>Theme_Material_DialogWhenLarge</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974390 to 16974379.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_DialogWhenLarge_NoActionBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_DialogWhenLarge_NoActionBar" target="_top"><code>Theme_Material_DialogWhenLarge_NoActionBar</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974391 to 16974380.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Dialog_MinWidth"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Dialog_MinWidth" target="_top"><code>Theme_Material_Dialog_MinWidth</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974387 to 16974375.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Dialog_NoActionBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Dialog_NoActionBar" target="_top"><code>Theme_Material_Dialog_NoActionBar</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974388 to 16974376.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Dialog_NoActionBar_MinWidth"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Dialog_NoActionBar_MinWidth" target="_top"><code>Theme_Material_Dialog_NoActionBar_MinWidth</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974389 to 16974377.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_InputMethod"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_InputMethod" target="_top"><code>Theme_Material_InputMethod</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974392 to 16974381.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light" target="_top"><code>Theme_Material_Light</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974402 to 16974391.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_DarkActionBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_DarkActionBar" target="_top"><code>Theme_Material_Light_DarkActionBar</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974403 to 16974392.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_Dialog"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_Dialog" target="_top"><code>Theme_Material_Light_Dialog</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974404 to 16974393.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_DialogWhenLarge"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_DialogWhenLarge" target="_top"><code>Theme_Material_Light_DialogWhenLarge</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974408 to 16974399.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_DialogWhenLarge_NoActionBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_DialogWhenLarge_NoActionBar" target="_top"><code>Theme_Material_Light_DialogWhenLarge_NoActionBar</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974409 to 16974400.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_Dialog_MinWidth"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_Dialog_MinWidth" target="_top"><code>Theme_Material_Light_Dialog_MinWidth</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974405 to 16974395.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_Dialog_NoActionBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_Dialog_NoActionBar" target="_top"><code>Theme_Material_Light_Dialog_NoActionBar</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974406 to 16974396.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_Dialog_NoActionBar_MinWidth"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_Dialog_NoActionBar_MinWidth" target="_top"><code>Theme_Material_Light_Dialog_NoActionBar_MinWidth</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974407 to 16974397.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_NoActionBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_NoActionBar" target="_top"><code>Theme_Material_Light_NoActionBar</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974410 to 16974401.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_NoActionBar_Fullscreen"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_NoActionBar_Fullscreen" target="_top"><code>Theme_Material_Light_NoActionBar_Fullscreen</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974411 to 16974402.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_NoActionBar_Overscan"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_NoActionBar_Overscan" target="_top"><code>Theme_Material_Light_NoActionBar_Overscan</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974412 to 16974403.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_NoActionBar_TranslucentDecor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_NoActionBar_TranslucentDecor" target="_top"><code>Theme_Material_Light_NoActionBar_TranslucentDecor</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974413 to 16974404.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_Panel"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_Panel" target="_top"><code>Theme_Material_Light_Panel</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974414 to 16974405.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Light_Voice"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Light_Voice" target="_top"><code>Theme_Material_Light_Voice</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974415 to 16974406.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_NoActionBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_NoActionBar" target="_top"><code>Theme_Material_NoActionBar</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974393 to 16974382.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_NoActionBar_Fullscreen"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_NoActionBar_Fullscreen" target="_top"><code>Theme_Material_NoActionBar_Fullscreen</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974394 to 16974383.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_NoActionBar_Overscan"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_NoActionBar_Overscan" target="_top"><code>Theme_Material_NoActionBar_Overscan</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974395 to 16974384.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_NoActionBar_TranslucentDecor"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_NoActionBar_TranslucentDecor" target="_top"><code>Theme_Material_NoActionBar_TranslucentDecor</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974396 to 16974385.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Panel"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Panel" target="_top"><code>Theme_Material_Panel</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974397 to 16974386.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Settings"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Settings" target="_top"><code>Theme_Material_Settings</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974398 to 16974387.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Voice"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Voice" target="_top"><code>Theme_Material_Voice</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974399 to 16974388.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Wallpaper"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Wallpaper" target="_top"><code>Theme_Material_Wallpaper</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974400 to 16974389.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Theme_Material_Wallpaper_NoTitleBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Theme_Material_Wallpaper_NoTitleBar" target="_top"><code>Theme_Material_Wallpaper_NoTitleBar</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974401 to 16974390.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_DeviceDefault_FastScroll"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_DeviceDefault_FastScroll" target="_top"><code>Widget_DeviceDefault_FastScroll</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974346 to 16974313.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_DeviceDefault_Light_FastScroll"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_DeviceDefault_Light_FastScroll" target="_top"><code>Widget_DeviceDefault_Light_FastScroll</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974348 to 16974315.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_DeviceDefault_Light_StackView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_DeviceDefault_Light_StackView" target="_top"><code>Widget_DeviceDefault_Light_StackView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974349 to 16974316.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_DeviceDefault_StackView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_DeviceDefault_StackView" target="_top"><code>Widget_DeviceDefault_StackView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974347 to 16974314.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_FastScroll"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_FastScroll" target="_top"><code>Widget_FastScroll</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974337 to 16974309.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material" target="_top"><code>Widget_Material</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974422 to 16974413.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ActionBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ActionBar" target="_top"><code>Widget_Material_ActionBar</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974423 to 16974414.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ActionBar_Solid"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ActionBar_Solid" target="_top"><code>Widget_Material_ActionBar_Solid</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974424 to 16974415.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ActionBar_TabBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ActionBar_TabBar" target="_top"><code>Widget_Material_ActionBar_TabBar</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974425 to 16974416.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ActionBar_TabText"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ActionBar_TabText" target="_top"><code>Widget_Material_ActionBar_TabText</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974426 to 16974417.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ActionBar_TabView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ActionBar_TabView" target="_top"><code>Widget_Material_ActionBar_TabView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974427 to 16974418.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ActionButton"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ActionButton" target="_top"><code>Widget_Material_ActionButton</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974428 to 16974419.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ActionButton_CloseMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ActionButton_CloseMode" target="_top"><code>Widget_Material_ActionButton_CloseMode</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974429 to 16974420.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ActionButton_Overflow"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ActionButton_Overflow" target="_top"><code>Widget_Material_ActionButton_Overflow</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974430 to 16974421.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ActionMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ActionMode" target="_top"><code>Widget_Material_ActionMode</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974431 to 16974422.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_AutoCompleteTextView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_AutoCompleteTextView" target="_top"><code>Widget_Material_AutoCompleteTextView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974432 to 16974423.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Button"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Button" target="_top"><code>Widget_Material_Button</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974433 to 16974424.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ButtonBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ButtonBar" target="_top"><code>Widget_Material_ButtonBar</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974439 to 16974431.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ButtonBar_AlertDialog"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ButtonBar_AlertDialog" target="_top"><code>Widget_Material_ButtonBar_AlertDialog</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974440 to 16974432.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Button_Borderless"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Button_Borderless" target="_top"><code>Widget_Material_Button_Borderless</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974434 to 16974425.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Button_Borderless_Small"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Button_Borderless_Small" target="_top"><code>Widget_Material_Button_Borderless_Small</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974435 to 16974427.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Button_Inset"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Button_Inset" target="_top"><code>Widget_Material_Button_Inset</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974436 to 16974428.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Button_Small"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Button_Small" target="_top"><code>Widget_Material_Button_Small</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974437 to 16974429.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Button_Toggle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Button_Toggle" target="_top"><code>Widget_Material_Button_Toggle</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974438 to 16974430.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_CalendarView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_CalendarView" target="_top"><code>Widget_Material_CalendarView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974441 to 16974433.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_CheckedTextView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_CheckedTextView" target="_top"><code>Widget_Material_CheckedTextView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974442 to 16974434.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_CompoundButton_CheckBox"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_CompoundButton_CheckBox" target="_top"><code>Widget_Material_CompoundButton_CheckBox</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974443 to 16974435.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_CompoundButton_RadioButton"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_CompoundButton_RadioButton" target="_top"><code>Widget_Material_CompoundButton_RadioButton</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974444 to 16974436.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_CompoundButton_Star"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_CompoundButton_Star" target="_top"><code>Widget_Material_CompoundButton_Star</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974445 to 16974437.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_DatePicker"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_DatePicker" target="_top"><code>Widget_Material_DatePicker</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974446 to 16974438.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_DropDownItem"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_DropDownItem" target="_top"><code>Widget_Material_DropDownItem</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974447 to 16974439.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_DropDownItem_Spinner"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_DropDownItem_Spinner" target="_top"><code>Widget_Material_DropDownItem_Spinner</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974448 to 16974440.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_EditText"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_EditText" target="_top"><code>Widget_Material_EditText</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974449 to 16974441.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ExpandableListView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ExpandableListView" target="_top"><code>Widget_Material_ExpandableListView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974450 to 16974442.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_FastScroll"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_FastScroll" target="_top"><code>Widget_Material_FastScroll</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974451 to 16974443.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_GridView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_GridView" target="_top"><code>Widget_Material_GridView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974452 to 16974444.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_HorizontalScrollView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_HorizontalScrollView" target="_top"><code>Widget_Material_HorizontalScrollView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974453 to 16974445.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ImageButton"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ImageButton" target="_top"><code>Widget_Material_ImageButton</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974454 to 16974446.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light" target="_top"><code>Widget_Material_Light</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974483 to 16974478.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ActionBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ActionBar" target="_top"><code>Widget_Material_Light_ActionBar</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974484 to 16974479.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ActionBar_Solid"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ActionBar_Solid" target="_top"><code>Widget_Material_Light_ActionBar_Solid</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974485 to 16974480.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ActionBar_TabBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ActionBar_TabBar" target="_top"><code>Widget_Material_Light_ActionBar_TabBar</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974486 to 16974481.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ActionBar_TabText"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ActionBar_TabText" target="_top"><code>Widget_Material_Light_ActionBar_TabText</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974487 to 16974482.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ActionBar_TabView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ActionBar_TabView" target="_top"><code>Widget_Material_Light_ActionBar_TabView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974488 to 16974483.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ActionButton"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ActionButton" target="_top"><code>Widget_Material_Light_ActionButton</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974489 to 16974484.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ActionButton_CloseMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ActionButton_CloseMode" target="_top"><code>Widget_Material_Light_ActionButton_CloseMode</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974490 to 16974485.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ActionButton_Overflow"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ActionButton_Overflow" target="_top"><code>Widget_Material_Light_ActionButton_Overflow</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974491 to 16974486.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ActionMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ActionMode" target="_top"><code>Widget_Material_Light_ActionMode</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974492 to 16974487.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_AutoCompleteTextView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_AutoCompleteTextView" target="_top"><code>Widget_Material_Light_AutoCompleteTextView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974493 to 16974488.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_Button"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_Button" target="_top"><code>Widget_Material_Light_Button</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974494 to 16974489.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ButtonBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ButtonBar" target="_top"><code>Widget_Material_Light_ButtonBar</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974500 to 16974496.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ButtonBar_AlertDialog"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ButtonBar_AlertDialog" target="_top"><code>Widget_Material_Light_ButtonBar_AlertDialog</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974501 to 16974497.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_Button_Borderless"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_Button_Borderless" target="_top"><code>Widget_Material_Light_Button_Borderless</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974495 to 16974490.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_Button_Borderless_Small"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_Button_Borderless_Small" target="_top"><code>Widget_Material_Light_Button_Borderless_Small</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974496 to 16974492.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_Button_Inset"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_Button_Inset" target="_top"><code>Widget_Material_Light_Button_Inset</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974497 to 16974493.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_Button_Small"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_Button_Small" target="_top"><code>Widget_Material_Light_Button_Small</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974498 to 16974494.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_Button_Toggle"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_Button_Toggle" target="_top"><code>Widget_Material_Light_Button_Toggle</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974499 to 16974495.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_CalendarView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_CalendarView" target="_top"><code>Widget_Material_Light_CalendarView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974502 to 16974498.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_CheckedTextView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_CheckedTextView" target="_top"><code>Widget_Material_Light_CheckedTextView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974503 to 16974499.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_CompoundButton_CheckBox"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_CompoundButton_CheckBox" target="_top"><code>Widget_Material_Light_CompoundButton_CheckBox</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974504 to 16974500.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_CompoundButton_RadioButton"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_CompoundButton_RadioButton" target="_top"><code>Widget_Material_Light_CompoundButton_RadioButton</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974505 to 16974501.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_CompoundButton_Star"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_CompoundButton_Star" target="_top"><code>Widget_Material_Light_CompoundButton_Star</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974506 to 16974502.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_DropDownItem"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_DropDownItem" target="_top"><code>Widget_Material_Light_DropDownItem</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974507 to 16974504.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_DropDownItem_Spinner"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_DropDownItem_Spinner" target="_top"><code>Widget_Material_Light_DropDownItem_Spinner</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974508 to 16974505.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_EditText"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_EditText" target="_top"><code>Widget_Material_Light_EditText</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974509 to 16974506.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ExpandableListView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ExpandableListView" target="_top"><code>Widget_Material_Light_ExpandableListView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974510 to 16974507.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_FastScroll"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_FastScroll" target="_top"><code>Widget_Material_Light_FastScroll</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974511 to 16974508.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_GridView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_GridView" target="_top"><code>Widget_Material_Light_GridView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974512 to 16974509.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_HorizontalScrollView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_HorizontalScrollView" target="_top"><code>Widget_Material_Light_HorizontalScrollView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974513 to 16974510.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ImageButton"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ImageButton" target="_top"><code>Widget_Material_Light_ImageButton</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974514 to 16974511.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ListPopupWindow"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ListPopupWindow" target="_top"><code>Widget_Material_Light_ListPopupWindow</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974515 to 16974512.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ListView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ListView" target="_top"><code>Widget_Material_Light_ListView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974516 to 16974513.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ListView_DropDown"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ListView_DropDown" target="_top"><code>Widget_Material_Light_ListView_DropDown</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974517 to 16974514.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_MediaRouteButton"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_MediaRouteButton" target="_top"><code>Widget_Material_Light_MediaRouteButton</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974518 to 16974515.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_PopupMenu"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_PopupMenu" target="_top"><code>Widget_Material_Light_PopupMenu</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974519 to 16974516.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_PopupMenu_Overflow"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_PopupMenu_Overflow" target="_top"><code>Widget_Material_Light_PopupMenu_Overflow</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974520 to 16974517.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_PopupWindow"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_PopupWindow" target="_top"><code>Widget_Material_Light_PopupWindow</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974521 to 16974518.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ProgressBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ProgressBar" target="_top"><code>Widget_Material_Light_ProgressBar</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974522 to 16974519.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ProgressBar_Horizontal"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ProgressBar_Horizontal" target="_top"><code>Widget_Material_Light_ProgressBar_Horizontal</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974523 to 16974520.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ProgressBar_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ProgressBar_Inverse" target="_top"><code>Widget_Material_Light_ProgressBar_Inverse</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974524 to 16974521.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ProgressBar_Large"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ProgressBar_Large" target="_top"><code>Widget_Material_Light_ProgressBar_Large</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974525 to 16974522.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ProgressBar_Large_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ProgressBar_Large_Inverse" target="_top"><code>Widget_Material_Light_ProgressBar_Large_Inverse</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974526 to 16974523.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ProgressBar_Small"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ProgressBar_Small" target="_top"><code>Widget_Material_Light_ProgressBar_Small</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974527 to 16974524.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ProgressBar_Small_Inverse"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ProgressBar_Small_Inverse" target="_top"><code>Widget_Material_Light_ProgressBar_Small_Inverse</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974528 to 16974525.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ProgressBar_Small_Title"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ProgressBar_Small_Title" target="_top"><code>Widget_Material_Light_ProgressBar_Small_Title</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974529 to 16974526.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_RatingBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_RatingBar" target="_top"><code>Widget_Material_Light_RatingBar</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974530 to 16974527.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_RatingBar_Indicator"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_RatingBar_Indicator" target="_top"><code>Widget_Material_Light_RatingBar_Indicator</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974531 to 16974528.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_RatingBar_Small"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_RatingBar_Small" target="_top"><code>Widget_Material_Light_RatingBar_Small</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974532 to 16974529.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_ScrollView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_ScrollView" target="_top"><code>Widget_Material_Light_ScrollView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974533 to 16974530.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_SeekBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_SeekBar" target="_top"><code>Widget_Material_Light_SeekBar</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974534 to 16974532.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_SegmentedButton"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_SegmentedButton" target="_top"><code>Widget_Material_Light_SegmentedButton</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974535 to 16974533.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_Spinner"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_Spinner" target="_top"><code>Widget_Material_Light_Spinner</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974537 to 16974535.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_StackView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_StackView" target="_top"><code>Widget_Material_Light_StackView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974536 to 16974534.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_Tab"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_Tab" target="_top"><code>Widget_Material_Light_Tab</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974538 to 16974537.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_TabWidget"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_TabWidget" target="_top"><code>Widget_Material_Light_TabWidget</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974539 to 16974538.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_TextView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_TextView" target="_top"><code>Widget_Material_Light_TextView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974540 to 16974539.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Light_TextView_SpinnerItem"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Light_TextView_SpinnerItem" target="_top"><code>Widget_Material_Light_TextView_SpinnerItem</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974541 to 16974540.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ListPopupWindow"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ListPopupWindow" target="_top"><code>Widget_Material_ListPopupWindow</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974455 to 16974447.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ListView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ListView" target="_top"><code>Widget_Material_ListView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974456 to 16974448.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ListView_DropDown"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ListView_DropDown" target="_top"><code>Widget_Material_ListView_DropDown</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974457 to 16974449.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_MediaRouteButton"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_MediaRouteButton" target="_top"><code>Widget_Material_MediaRouteButton</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974458 to 16974450.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_PopupMenu"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_PopupMenu" target="_top"><code>Widget_Material_PopupMenu</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974459 to 16974451.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_PopupMenu_Overflow"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_PopupMenu_Overflow" target="_top"><code>Widget_Material_PopupMenu_Overflow</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974460 to 16974452.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_PopupWindow"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_PopupWindow" target="_top"><code>Widget_Material_PopupWindow</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974461 to 16974453.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ProgressBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ProgressBar" target="_top"><code>Widget_Material_ProgressBar</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974462 to 16974454.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ProgressBar_Horizontal"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ProgressBar_Horizontal" target="_top"><code>Widget_Material_ProgressBar_Horizontal</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974463 to 16974455.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ProgressBar_Large"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ProgressBar_Large" target="_top"><code>Widget_Material_ProgressBar_Large</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974464 to 16974456.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ProgressBar_Small"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ProgressBar_Small" target="_top"><code>Widget_Material_ProgressBar_Small</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974465 to 16974457.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ProgressBar_Small_Title"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ProgressBar_Small_Title" target="_top"><code>Widget_Material_ProgressBar_Small_Title</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974466 to 16974458.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_RatingBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_RatingBar" target="_top"><code>Widget_Material_RatingBar</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974467 to 16974459.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_RatingBar_Indicator"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_RatingBar_Indicator" target="_top"><code>Widget_Material_RatingBar_Indicator</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974468 to 16974460.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_RatingBar_Small"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_RatingBar_Small" target="_top"><code>Widget_Material_RatingBar_Small</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974469 to 16974461.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_ScrollView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_ScrollView" target="_top"><code>Widget_Material_ScrollView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974470 to 16974462.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_SeekBar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_SeekBar" target="_top"><code>Widget_Material_SeekBar</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974471 to 16974464.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_SegmentedButton"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_SegmentedButton" target="_top"><code>Widget_Material_SegmentedButton</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974472 to 16974465.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Spinner"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Spinner" target="_top"><code>Widget_Material_Spinner</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974474 to 16974467.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_StackView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_StackView" target="_top"><code>Widget_Material_StackView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974473 to 16974466.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Tab"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Tab" target="_top"><code>Widget_Material_Tab</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974475 to 16974469.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_TabWidget"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_TabWidget" target="_top"><code>Widget_Material_TabWidget</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974476 to 16974470.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_TextView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_TextView" target="_top"><code>Widget_Material_TextView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974477 to 16974471.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_TextView_SpinnerItem"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_TextView_SpinnerItem" target="_top"><code>Widget_Material_TextView_SpinnerItem</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974478 to 16974472.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Toolbar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Toolbar" target="_top"><code>Widget_Material_Toolbar</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974479 to 16974474.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_Toolbar_Button_Navigation"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_Toolbar_Button_Navigation" target="_top"><code>Widget_Material_Toolbar_Button_Navigation</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974480 to 16974475.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_WebTextView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_WebTextView" target="_top"><code>Widget_Material_WebTextView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974481 to 16974476.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Material_WebView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Material_WebView" target="_top"><code>Widget_Material_WebView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974482 to 16974477.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_StackView"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_StackView" target="_top"><code>Widget_StackView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974338 to 16974310.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Toolbar"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Toolbar" target="_top"><code>Widget_Toolbar</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974339 to 16974311.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.style.Widget_Toolbar_Button_Navigation"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.style.html#Widget_Toolbar_Button_Navigation" target="_top"><code>Widget_Toolbar_Button_Navigation</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 16974340 to 16974312.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.R.transition.html b/docs/html/sdk/api_diff/preview-21/changes/android.R.transition.html
new file mode 100644
index 0000000..7b9adfc
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.R.transition.html
@@ -0,0 +1,164 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.transition
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.transition.html" target="_top"><font size="+2"><code>R.transition</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.transition.explode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.transition.html#explode" target="_top"><code>explode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.transition.fade"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.transition.html#fade" target="_top"><code>fade</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.transition.move"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.transition.html#move" target="_top"><code>move</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.transition.slide_bottom"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.transition.html#slide_bottom" target="_top"><code>slide_bottom</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.transition.slide_left"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.transition.html#slide_left" target="_top"><code>slide_left</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.transition.slide_right"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.transition.html#slide_right" target="_top"><code>slide_right</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.R.transition.slide_top"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/R.transition.html#slide_top" target="_top"><code>slide_top</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.accessibilityservice.AccessibilityService.html b/docs/html/sdk/api_diff/preview-21/changes/android.accessibilityservice.AccessibilityService.html
new file mode 100644
index 0000000..74d4553
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.accessibilityservice.AccessibilityService.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.accessibilityservice.AccessibilityService
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.accessibilityservice.<A HREF="../../../../reference/android/accessibilityservice/AccessibilityService.html" target="_top"><font size="+2"><code>AccessibilityService</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.accessibilityservice.AccessibilityService.GLOBAL_ACTION_POWER_DIALOG"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/accessibilityservice/AccessibilityService.html#GLOBAL_ACTION_POWER_DIALOG" target="_top"><code>GLOBAL_ACTION_POWER_DIALOG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.accounts.AccountManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.accounts.AccountManager.html
new file mode 100644
index 0000000..a55d5f1
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.accounts.AccountManager.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.accounts.AccountManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.accounts.<A HREF="../../../../reference/android/accounts/AccountManager.html" target="_top"><font size="+2"><code>AccountManager</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.accounts.AccountManager.getPreviousName_added(android.accounts.Account)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/accounts/AccountManager.html#getPreviousName(android.accounts.Account)" target="_top"><code>getPreviousName</code></A>(<code>Account</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.accounts.AccountManager.renameAccount_added(android.accounts.Account, java.lang.String, android.accounts.AccountManagerCallback<android.accounts.Account>, android.os.Handler)"></A>
+  <nobr><code>AccountManagerFuture&lt;Account&gt;</code>&nbsp;<A HREF="../../../../reference/android/accounts/AccountManager.html#renameAccount(android.accounts.Account, java.lang.String, android.accounts.AccountManagerCallback<android.accounts.Account>, android.os.Handler)" target="_top"><code>renameAccount</code></A>(<code>Account,</nobr> String<nobr>,</nobr> AccountManagerCallback&lt;Account&gt;<nobr>,</nobr> Handler<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.app.ActionBar.LayoutParams.html b/docs/html/sdk/api_diff/preview-21/changes/android.app.ActionBar.LayoutParams.html
new file mode 100644
index 0000000..ec2527e
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.app.ActionBar.LayoutParams.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ActionBar.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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ActionBar.LayoutParams.html" target="_top"><font size="+2"><code>ActionBar.LayoutParams</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.app.ActionBar.LayoutParams.ctor_removed(android.view.ViewGroup.MarginLayoutParams)"></A>
+  <nobr>ActionBar.LayoutParams(<code>MarginLayoutParams</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.app.ActionBar.html b/docs/html/sdk/api_diff/preview-21/changes/android.app.ActionBar.html
new file mode 100644
index 0000000..14a1f12
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.app.ActionBar.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ActionBar
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ActionBar.html" target="_top"><font size="+2"><code>ActionBar</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.ActionBar.getElevation_added()"></A>
+  <nobr><code>float</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#getElevation()" target="_top"><code>getElevation</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActionBar.setElevation_added(float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/ActionBar.html#setElevation(float)" target="_top"><code>setElevation</code></A>(<code>float</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.app.Activity.html b/docs/html/sdk/api_diff/preview-21/changes/android.app.Activity.html
new file mode 100644
index 0000000..9601048
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.app.Activity.html
@@ -0,0 +1,265 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.getVoiceInteractor_removed()"></A>
+  <nobr><code>VoiceInteractor</code>&nbsp;getVoiceInteractor()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.isVoiceInteraction_removed()"></A>
+  <nobr><code>boolean</code>&nbsp;isVoiceInteraction()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.setEnterSharedElementListener_removed(android.app.SharedElementListener)"></A>
+  <nobr><code>void</code>&nbsp;setEnterSharedElementListener(<code>SharedElementListener</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.setExitSharedElementListener_removed(android.app.SharedElementListener)"></A>
+  <nobr><code>void</code>&nbsp;setExitSharedElementListener(<code>SharedElementListener</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.getMediaController_added()"></A>
+  <nobr><code>MediaController</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#getMediaController()" target="_top"><code>getMediaController</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.onEnterAnimationComplete_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#onEnterAnimationComplete()" target="_top"><code>onEnterAnimationComplete</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.onVisibleBehindCanceled_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#onVisibleBehindCanceled()" target="_top"><code>onVisibleBehindCanceled</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.releaseInstance_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#releaseInstance()" target="_top"><code>releaseInstance</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.requestVisibleBehind_added(boolean)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#requestVisibleBehind(boolean)" target="_top"><code>requestVisibleBehind</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.setEnterSharedElementCallback_added(android.app.SharedElementCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#setEnterSharedElementCallback(android.app.SharedElementCallback)" target="_top"><code>setEnterSharedElementCallback</code></A>(<code>SharedElementCallback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.setExitSharedElementCallback_added(android.app.SharedElementCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#setExitSharedElementCallback(android.app.SharedElementCallback)" target="_top"><code>setExitSharedElementCallback</code></A>(<code>SharedElementCallback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.setMediaController_added(android.media.session.MediaController)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#setMediaController(android.media.session.MediaController)" target="_top"><code>setMediaController</code></A>(<code>MediaController</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Activity.onActivityReenter_changed(int, android.content.Intent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#onActivityReenter(int, android.content.Intent)" target="_top"><code>onActivityReenter</code></A>(<code>int,</nobr> Intent<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change of visibility from protected to public.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.onCreate_changed(android.os.Bundle, android.os.PersistableBundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#onCreate(android.os.Bundle, android.os.PersistableBundle)" target="_top"><code>onCreate</code></A>(<code>Bundle,</nobr> PersistableBundle<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change of visibility from protected to public.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.onPostCreate_changed(android.os.Bundle, android.os.PersistableBundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#onPostCreate(android.os.Bundle, android.os.PersistableBundle)" target="_top"><code>onPostCreate</code></A>(<code>Bundle,</nobr> PersistableBundle<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change of visibility from protected to public.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.onRestoreInstanceState_changed(android.os.Bundle, android.os.PersistableBundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#onRestoreInstanceState(android.os.Bundle, android.os.PersistableBundle)" target="_top"><code>onRestoreInstanceState</code></A>(<code>Bundle,</nobr> PersistableBundle<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change of visibility from protected to public.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Activity.onSaveInstanceState_changed(android.os.Bundle, android.os.PersistableBundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#onSaveInstanceState(android.os.Bundle, android.os.PersistableBundle)" target="_top"><code>onSaveInstanceState</code></A>(<code>Bundle,</nobr> PersistableBundle<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change of visibility from protected to public.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.app.ActivityManager.AppTask.html b/docs/html/sdk/api_diff/preview-21/changes/android.app.ActivityManager.AppTask.html
new file mode 100644
index 0000000..6f84462
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.app.ActivityManager.AppTask.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AppTask
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.AppTask.html" target="_top"><font size="+2"><code>ActivityManager.AppTask</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.AppTask.moveToFront_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/ActivityManager.AppTask.html#moveToFront()" target="_top"><code>moveToFront</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActivityManager.AppTask.setExcludeFromRecents_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/ActivityManager.AppTask.html#setExcludeFromRecents(boolean)" target="_top"><code>setExcludeFromRecents</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActivityManager.AppTask.startActivity_added(android.content.Context, android.content.Intent, android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/ActivityManager.AppTask.html#startActivity(android.content.Context, android.content.Intent, android.os.Bundle)" target="_top"><code>startActivity</code></A>(<code>Context,</nobr> Intent<nobr>,</nobr> Bundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.app.ActivityManager.RecentTaskInfo.html b/docs/html/sdk/api_diff/preview-21/changes/android.app.ActivityManager.RecentTaskInfo.html
new file mode 100644
index 0000000..9021aed
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.app.ActivityManager.RecentTaskInfo.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.RecentTaskInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.RecentTaskInfo.html" target="_top"><font size="+2"><code>ActivityManager.RecentTaskInfo</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.RecentTaskInfo.affiliatedTaskId"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/ActivityManager.RecentTaskInfo.html#affiliatedTaskId" target="_top"><code>affiliatedTaskId</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActivityManager.RecentTaskInfo.taskDescription"></A>
+  <nobr><code>TaskDescription</code>&nbsp;<A HREF="../../../../reference/android/app/ActivityManager.RecentTaskInfo.html#taskDescription" target="_top"><code>taskDescription</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.app.ActivityManager.RunningAppProcessInfo.html b/docs/html/sdk/api_diff/preview-21/changes/android.app.ActivityManager.RunningAppProcessInfo.html
new file mode 100644
index 0000000..774c9f0
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.app.ActivityManager.RunningAppProcessInfo.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.IMPORTANCE_GONE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/ActivityManager.RunningAppProcessInfo.html#IMPORTANCE_GONE" target="_top"><code>IMPORTANCE_GONE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.app.ActivityManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.app.ActivityManager.html
new file mode 100644
index 0000000..af42209
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.app.ActivityManager.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.addAppTask_added(android.app.Activity, android.content.Intent, android.app.ActivityManager.TaskDescription, android.graphics.Bitmap)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/ActivityManager.html#addAppTask(android.app.Activity, android.content.Intent, android.app.ActivityManager.TaskDescription, android.graphics.Bitmap)" target="_top"><code>addAppTask</code></A>(<code>Activity,</nobr> Intent<nobr>,</nobr> TaskDescription<nobr>,</nobr> Bitmap<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActivityManager.getAppTaskThumbnailSize_added()"></A>
+  <nobr><code>Size</code>&nbsp;<A HREF="../../../../reference/android/app/ActivityManager.html#getAppTaskThumbnailSize()" target="_top"><code>getAppTaskThumbnailSize</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.ActivityManager.isInLockTaskMode_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/ActivityManager.html#isInLockTaskMode()" target="_top"><code>isInLockTaskMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.app.ActivityOptions.html b/docs/html/sdk/api_diff/preview-21/changes/android.app.ActivityOptions.html
new file mode 100644
index 0000000..0c53ad1
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.app.ActivityOptions.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ActivityOptions
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ActivityOptions.html" target="_top"><font size="+2"><code>ActivityOptions</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.ActivityOptions.makeTaskLaunchBehind_added()"></A>
+  <nobr><code>ActivityOptions</code>&nbsp;<A HREF="../../../../reference/android/app/ActivityOptions.html#makeTaskLaunchBehind()" target="_top"><code>makeTaskLaunchBehind</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.app.AlarmManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.app.AlarmManager.html
new file mode 100644
index 0000000..4059448
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.app.AlarmManager.html
@@ -0,0 +1,144 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AlarmManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/AlarmManager.html" target="_top"><font size="+2"><code>AlarmManager</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.AlarmManager.getNextAlarmClock_added()"></A>
+  <nobr><code>AlarmClockInfo</code>&nbsp;<A HREF="../../../../reference/android/app/AlarmManager.html#getNextAlarmClock()" target="_top"><code>getNextAlarmClock</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.AlarmManager.setAlarmClock_added(android.app.AlarmManager.AlarmClockInfo, android.app.PendingIntent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/AlarmManager.html#setAlarmClock(android.app.AlarmManager.AlarmClockInfo, android.app.PendingIntent)" target="_top"><code>setAlarmClock</code></A>(<code>AlarmClockInfo,</nobr> PendingIntent<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.AlarmManager.ACTION_NEXT_ALARM_CLOCK_CHANGED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/AlarmManager.html#ACTION_NEXT_ALARM_CLOCK_CHANGED" target="_top"><code>ACTION_NEXT_ALARM_CLOCK_CHANGED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.app.AppOpsManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.app.AppOpsManager.html
new file mode 100644
index 0000000..9019cee
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.app.AppOpsManager.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AppOpsManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/AppOpsManager.html" target="_top"><font size="+2"><code>AppOpsManager</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.AppOpsManager.MODE_DEFAULT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/AppOpsManager.html#MODE_DEFAULT" target="_top"><code>MODE_DEFAULT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.AppOpsManager.OPSTR_GET_USAGE_STATS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/AppOpsManager.html#OPSTR_GET_USAGE_STATS" target="_top"><code>OPSTR_GET_USAGE_STATS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.app.Fragment.html b/docs/html/sdk/api_diff/preview-21/changes/android.app.Fragment.html
new file mode 100644
index 0000000..8ae7c00
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.app.Fragment.html
@@ -0,0 +1,241 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Fragment
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/Fragment.html" target="_top"><font size="+2"><code>Fragment</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.Fragment.getAllowEnterTransitionOverlap_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#getAllowEnterTransitionOverlap()" target="_top"><code>getAllowEnterTransitionOverlap</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.getAllowReturnTransitionOverlap_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#getAllowReturnTransitionOverlap()" target="_top"><code>getAllowReturnTransitionOverlap</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.getEnterTransition_added()"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#getEnterTransition()" target="_top"><code>getEnterTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.getExitTransition_added()"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#getExitTransition()" target="_top"><code>getExitTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.getReenterTransition_added()"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#getReenterTransition()" target="_top"><code>getReenterTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.getReturnTransition_added()"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#getReturnTransition()" target="_top"><code>getReturnTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.getSharedElementEnterTransition_added()"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#getSharedElementEnterTransition()" target="_top"><code>getSharedElementEnterTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.getSharedElementReturnTransition_added()"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#getSharedElementReturnTransition()" target="_top"><code>getSharedElementReturnTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.setAllowEnterTransitionOverlap_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#setAllowEnterTransitionOverlap(boolean)" target="_top"><code>setAllowEnterTransitionOverlap</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.setAllowReturnTransitionOverlap_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#setAllowReturnTransitionOverlap(boolean)" target="_top"><code>setAllowReturnTransitionOverlap</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.setEnterSharedElementCallback_added(android.app.SharedElementCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#setEnterSharedElementCallback(android.app.SharedElementCallback)" target="_top"><code>setEnterSharedElementCallback</code></A>(<code>SharedElementCallback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.setEnterTransition_added(android.transition.Transition)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#setEnterTransition(android.transition.Transition)" target="_top"><code>setEnterTransition</code></A>(<code>Transition</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.setExitSharedElementCallback_added(android.app.SharedElementCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#setExitSharedElementCallback(android.app.SharedElementCallback)" target="_top"><code>setExitSharedElementCallback</code></A>(<code>SharedElementCallback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.setExitTransition_added(android.transition.Transition)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#setExitTransition(android.transition.Transition)" target="_top"><code>setExitTransition</code></A>(<code>Transition</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.setReenterTransition_added(android.transition.Transition)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#setReenterTransition(android.transition.Transition)" target="_top"><code>setReenterTransition</code></A>(<code>Transition</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.setReturnTransition_added(android.transition.Transition)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#setReturnTransition(android.transition.Transition)" target="_top"><code>setReturnTransition</code></A>(<code>Transition</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.setSharedElementEnterTransition_added(android.transition.Transition)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#setSharedElementEnterTransition(android.transition.Transition)" target="_top"><code>setSharedElementEnterTransition</code></A>(<code>Transition</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Fragment.setSharedElementReturnTransition_added(android.transition.Transition)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#setSharedElementReturnTransition(android.transition.Transition)" target="_top"><code>setSharedElementReturnTransition</code></A>(<code>Transition</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.app.FragmentTransaction.html b/docs/html/sdk/api_diff/preview-21/changes/android.app.FragmentTransaction.html
new file mode 100644
index 0000000..42be0347
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.app.FragmentTransaction.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.FragmentTransaction
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/FragmentTransaction.html" target="_top"><font size="+2"><code>FragmentTransaction</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.FragmentTransaction.addSharedElement_added(android.view.View, java.lang.String)"></A>
+  <nobr><code>FragmentTransaction</code>&nbsp;<A HREF="../../../../reference/android/app/FragmentTransaction.html#addSharedElement(android.view.View, java.lang.String)" target="_top"><code>addSharedElement</code></A>(<code>View,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.app.KeyguardManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.app.KeyguardManager.html
new file mode 100644
index 0000000..8c66e4f
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.app.KeyguardManager.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.KeyguardManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/KeyguardManager.html" target="_top"><font size="+2"><code>KeyguardManager</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.KeyguardManager.createConfirmDeviceCredentialIntent_added(java.lang.CharSequence, java.lang.CharSequence)"></A>
+  <nobr><code>Intent</code>&nbsp;<A HREF="../../../../reference/android/app/KeyguardManager.html#createConfirmDeviceCredentialIntent(java.lang.CharSequence, java.lang.CharSequence)" target="_top"><code>createConfirmDeviceCredentialIntent</code></A>(<code>CharSequence,</nobr> CharSequence<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.app.Notification.Builder.html b/docs/html/sdk/api_diff/preview-21/changes/android.app.Notification.Builder.html
new file mode 100644
index 0000000..54e58e4
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.app.Notification.Builder.html
@@ -0,0 +1,162 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Builder
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.Builder.html" target="_top"><font size="+2"><code>Notification.Builder</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.Builder.setSound_removed(android.net.Uri, int)"></A>
+  <nobr><code>Builder</code>&nbsp;setSound(<code>Uri,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Notification.Builder.setSound_added(android.net.Uri, android.media.AudioAttributes)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.Builder.html#setSound(android.net.Uri, android.media.AudioAttributes)" target="_top"><code>setSound</code></A>(<code>Uri,</nobr> AudioAttributes<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.Builder.setSound_added(android.net.Uri, int)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.Builder.html#setSound(android.net.Uri, int)" target="_top"><code>setSound</code></A>(<code>Uri,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Notification.Builder.setTicker_changed(java.lang.CharSequence, android.widget.RemoteViews)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.Builder.html#setTicker(java.lang.CharSequence, android.widget.RemoteViews)" target="_top"><code>setTicker</code></A>(<code>CharSequence,</nobr> RemoteViews<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.app.Notification.MediaStyle.html b/docs/html/sdk/api_diff/preview-21/changes/android.app.Notification.MediaStyle.html
new file mode 100644
index 0000000..d180a8a
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.app.Notification.MediaStyle.html
@@ -0,0 +1,140 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaStyle
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.MediaStyle.html" target="_top"><font size="+2"><code>Notification.MediaStyle</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.MediaStyle.buildStyled_removed(android.app.Notification)"></A>
+  <nobr><code>Notification</code>&nbsp;buildStyled(<code>Notification</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Notification.MediaStyle.setMediaSession_changed(android.media.session.MediaSession.Token)"></A>
+  <nobr><code>MediaStyle</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.MediaStyle.html#setMediaSession(android.media.session.MediaSession.Token)" target="_top"><code>setMediaSession</code></A>(<code>Token</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in signature from <code>MediaSessionToken</code> to <code>Token</code>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.app.Notification.html b/docs/html/sdk/api_diff/preview-21/changes/android.app.Notification.html
new file mode 100644
index 0000000..b96dd34
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.app.Notification.html
@@ -0,0 +1,185 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.AUDIO_ATTRIBUTES_DEFAULT"></A>
+  <nobr><code>AudioAttributes</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#AUDIO_ATTRIBUTES_DEFAULT" target="_top"><code>AUDIO_ATTRIBUTES_DEFAULT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.EXTRA_BIG_TEXT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#EXTRA_BIG_TEXT" target="_top"><code>EXTRA_BIG_TEXT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.EXTRA_COMPACT_ACTIONS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#EXTRA_COMPACT_ACTIONS" target="_top"><code>EXTRA_COMPACT_ACTIONS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.audioAttributes"></A>
+  <nobr><code>AudioAttributes</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#audioAttributes" target="_top"><code>audioAttributes</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.headsUpContentView"></A>
+  <nobr><code>RemoteViews</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#headsUpContentView" target="_top"><code>headsUpContentView</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.app.Notification.STREAM_DEFAULT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#STREAM_DEFAULT" target="_top"><code>STREAM_DEFAULT</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.audioStreamType"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#audioStreamType" target="_top"><code>audioStreamType</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.Notification.tickerView"></A>
+  <nobr><code>RemoteViews</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#tickerView" target="_top"><code>tickerView</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.app.UiModeManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.app.UiModeManager.html
new file mode 100644
index 0000000..d86a596
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.app.UiModeManager.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.UiModeManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/UiModeManager.html" target="_top"><font size="+2"><code>UiModeManager</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.UiModeManager.ENABLE_CAR_MODE_ALLOW_SLEEP"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/UiModeManager.html#ENABLE_CAR_MODE_ALLOW_SLEEP" target="_top"><code>ENABLE_CAR_MODE_ALLOW_SLEEP</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.app.admin.DeviceAdminReceiver.html b/docs/html/sdk/api_diff/preview-21/changes/android.app.admin.DeviceAdminReceiver.html
new file mode 100644
index 0000000..6e9623d
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.app.admin.DeviceAdminReceiver.html
@@ -0,0 +1,175 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.admin.DeviceAdminReceiver
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.admin.<A HREF="../../../../reference/android/app/admin/DeviceAdminReceiver.html" target="_top"><font size="+2"><code>DeviceAdminReceiver</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.admin.DeviceAdminReceiver.onLockTaskModeEntering_added(android.content.Context, android.content.Intent, java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DeviceAdminReceiver.html#onLockTaskModeEntering(android.content.Context, android.content.Intent, java.lang.String)" target="_top"><code>onLockTaskModeEntering</code></A>(<code>Context,</nobr> Intent<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DeviceAdminReceiver.onLockTaskModeExiting_added(android.content.Context, android.content.Intent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DeviceAdminReceiver.html#onLockTaskModeExiting(android.content.Context, android.content.Intent)" target="_top"><code>onLockTaskModeExiting</code></A>(<code>Context,</nobr> Intent<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.admin.DeviceAdminReceiver.ACTION_LOCK_TASK_ENTERING"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DeviceAdminReceiver.html#ACTION_LOCK_TASK_ENTERING" target="_top"><code>ACTION_LOCK_TASK_ENTERING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DeviceAdminReceiver.ACTION_LOCK_TASK_EXITING"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DeviceAdminReceiver.html#ACTION_LOCK_TASK_EXITING" target="_top"><code>ACTION_LOCK_TASK_EXITING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DeviceAdminReceiver.EXTRA_LOCK_TASK_PACKAGE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DeviceAdminReceiver.html#EXTRA_LOCK_TASK_PACKAGE" target="_top"><code>EXTRA_LOCK_TASK_PACKAGE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.app.admin.DeviceAdminReceiver.ACTION_PROFILE_PROVISIONING_COMPLETE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DeviceAdminReceiver.html#ACTION_PROFILE_PROVISIONING_COMPLETE" target="_top"><code>ACTION_PROFILE_PROVISIONING_COMPLETE</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from "android.app.action.ACTION_PROFILE_PROVISIONING_COMPLETE" to "android.app.action.PROFILE_PROVISIONING_COMPLETE".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.app.admin.DevicePolicyManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.app.admin.DevicePolicyManager.html
new file mode 100644
index 0000000..b846caf
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.app.admin.DevicePolicyManager.html
@@ -0,0 +1,631 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.admin.DevicePolicyManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.admin.<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html" target="_top"><font size="+2"><code>DevicePolicyManager</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.addForwardingIntentFilter_removed(android.content.ComponentName, android.content.IntentFilter, int)"></A>
+  <nobr><code>void</code>&nbsp;addForwardingIntentFilter(<code>ComponentName,</nobr> IntentFilter<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.clearForwardingIntentFilters_removed(android.content.ComponentName)"></A>
+  <nobr><code>void</code>&nbsp;clearForwardingIntentFilters(<code>ComponentName</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.isApplicationBlocked_removed(android.content.ComponentName, java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;isApplicationBlocked(<code>ComponentName,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setApplicationBlocked_removed(android.content.ComponentName, java.lang.String, boolean)"></A>
+  <nobr><code>boolean</code>&nbsp;setApplicationBlocked(<code>ComponentName,</nobr> String<nobr>,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setApplicationsBlocked_removed(android.content.ComponentName, android.content.Intent, boolean)"></A>
+  <nobr><code>int</code>&nbsp;setApplicationsBlocked(<code>ComponentName,</nobr> Intent<nobr>,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setLockTaskComponents_removed(android.content.ComponentName[])"></A>
+  <nobr><code>void</code>&nbsp;setLockTaskComponents(<code>ComponentName[]</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.admin.DevicePolicyManager.addCrossProfileIntentFilter_added(android.content.ComponentName, android.content.IntentFilter, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#addCrossProfileIntentFilter(android.content.ComponentName, android.content.IntentFilter, int)" target="_top"><code>addCrossProfileIntentFilter</code></A>(<code>ComponentName,</nobr> IntentFilter<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.addCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#addCrossProfileWidgetProvider(android.content.ComponentName, java.lang.String)" target="_top"><code>addCrossProfileWidgetProvider</code></A>(<code>ComponentName,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.clearCrossProfileIntentFilters_added(android.content.ComponentName)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#clearCrossProfileIntentFilters(android.content.ComponentName)" target="_top"><code>clearCrossProfileIntentFilters</code></A>(<code>ComponentName</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.clearDeviceOwnerApp_added(java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#clearDeviceOwnerApp(java.lang.String)" target="_top"><code>clearDeviceOwnerApp</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.createAndInitializeUser_added(android.content.ComponentName, java.lang.String, java.lang.String, android.content.ComponentName, android.os.Bundle)"></A>
+  <nobr><code>UserHandle</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#createAndInitializeUser(android.content.ComponentName, java.lang.String, java.lang.String, android.content.ComponentName, android.os.Bundle)" target="_top"><code>createAndInitializeUser</code></A>(<code>ComponentName,</nobr> String<nobr>,</nobr> String<nobr>,</nobr> ComponentName<nobr>,</nobr> Bundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.getAutoTimeRequired_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#getAutoTimeRequired()" target="_top"><code>getAutoTimeRequired</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.getCrossProfileCallerIdDisabled_added(android.content.ComponentName)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#getCrossProfileCallerIdDisabled(android.content.ComponentName)" target="_top"><code>getCrossProfileCallerIdDisabled</code></A>(<code>ComponentName</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.getCrossProfileWidgetProviders_added(android.content.ComponentName)"></A>
+  <nobr><code>List&lt;String&gt;</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#getCrossProfileWidgetProviders(android.content.ComponentName)" target="_top"><code>getCrossProfileWidgetProviders</code></A>(<code>ComponentName</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.getInstalledCaCerts_added(android.content.ComponentName)"></A>
+  <nobr><code>List&lt;byte[]&gt;</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#getInstalledCaCerts(android.content.ComponentName)" target="_top"><code>getInstalledCaCerts</code></A>(<code>ComponentName</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.getPermittedAccessibilityServices_added(android.content.ComponentName)"></A>
+  <nobr><code>List&lt;String&gt;</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#getPermittedAccessibilityServices(android.content.ComponentName)" target="_top"><code>getPermittedAccessibilityServices</code></A>(<code>ComponentName</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.getPermittedInputMethods_added(android.content.ComponentName)"></A>
+  <nobr><code>List&lt;String&gt;</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#getPermittedInputMethods(android.content.ComponentName)" target="_top"><code>getPermittedInputMethods</code></A>(<code>ComponentName</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.getScreenCaptureDisabled_added(android.content.ComponentName)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#getScreenCaptureDisabled(android.content.ComponentName)" target="_top"><code>getScreenCaptureDisabled</code></A>(<code>ComponentName</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.hasCaCertInstalled_added(android.content.ComponentName, byte[])"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#hasCaCertInstalled(android.content.ComponentName, byte[])" target="_top"><code>hasCaCertInstalled</code></A>(<code>ComponentName,</nobr> byte[]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.installCaCert_added(android.content.ComponentName, byte[])"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#installCaCert(android.content.ComponentName, byte[])" target="_top"><code>installCaCert</code></A>(<code>ComponentName,</nobr> byte[]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.installKeyPair_added(android.content.ComponentName, java.security.PrivateKey, java.security.cert.Certificate, java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#installKeyPair(android.content.ComponentName, java.security.PrivateKey, java.security.cert.Certificate, java.lang.String)" target="_top"><code>installKeyPair</code></A>(<code>ComponentName,</nobr> PrivateKey<nobr>,</nobr> Certificate<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.isApplicationHidden_added(android.content.ComponentName, java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#isApplicationHidden(android.content.ComponentName, java.lang.String)" target="_top"><code>isApplicationHidden</code></A>(<code>ComponentName,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.isMasterVolumeMuted_added(android.content.ComponentName)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#isMasterVolumeMuted(android.content.ComponentName)" target="_top"><code>isMasterVolumeMuted</code></A>(<code>ComponentName</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.isUninstallBlocked_added(android.content.ComponentName, java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#isUninstallBlocked(android.content.ComponentName, java.lang.String)" target="_top"><code>isUninstallBlocked</code></A>(<code>ComponentName,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.removeCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#removeCrossProfileWidgetProvider(android.content.ComponentName, java.lang.String)" target="_top"><code>removeCrossProfileWidgetProvider</code></A>(<code>ComponentName,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setApplicationHidden_added(android.content.ComponentName, java.lang.String, boolean)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setApplicationHidden(android.content.ComponentName, java.lang.String, boolean)" target="_top"><code>setApplicationHidden</code></A>(<code>ComponentName,</nobr> String<nobr>,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setAutoTimeRequired_added(android.content.ComponentName, boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setAutoTimeRequired(android.content.ComponentName, boolean)" target="_top"><code>setAutoTimeRequired</code></A>(<code>ComponentName,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setCrossProfileCallerIdDisabled_added(android.content.ComponentName, boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setCrossProfileCallerIdDisabled(android.content.ComponentName, boolean)" target="_top"><code>setCrossProfileCallerIdDisabled</code></A>(<code>ComponentName,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setLockTaskPackages_added(android.content.ComponentName, java.lang.String[])"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setLockTaskPackages(android.content.ComponentName, java.lang.String[])" target="_top"><code>setLockTaskPackages</code></A>(<code>ComponentName,</nobr> String[]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setMasterVolumeMuted_added(android.content.ComponentName, boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setMasterVolumeMuted(android.content.ComponentName, boolean)" target="_top"><code>setMasterVolumeMuted</code></A>(<code>ComponentName,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setPermittedAccessibilityServices_added(android.content.ComponentName, java.util.List<java.lang.String>)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setPermittedAccessibilityServices(android.content.ComponentName, java.util.List<java.lang.String>)" target="_top"><code>setPermittedAccessibilityServices</code></A>(<code>ComponentName,</nobr> List&lt;String&gt;<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setPermittedInputMethods_added(android.content.ComponentName, java.util.List<java.lang.String>)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setPermittedInputMethods(android.content.ComponentName, java.util.List<java.lang.String>)" target="_top"><code>setPermittedInputMethods</code></A>(<code>ComponentName,</nobr> List&lt;String&gt;<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setProfileName_added(android.content.ComponentName, java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setProfileName(android.content.ComponentName, java.lang.String)" target="_top"><code>setProfileName</code></A>(<code>ComponentName,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setRecommendedGlobalProxy_added(android.content.ComponentName, android.net.ProxyInfo)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setRecommendedGlobalProxy(android.content.ComponentName, android.net.ProxyInfo)" target="_top"><code>setRecommendedGlobalProxy</code></A>(<code>ComponentName,</nobr> ProxyInfo<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setRestrictionsProvider_added(android.content.ComponentName, android.content.ComponentName)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setRestrictionsProvider(android.content.ComponentName, android.content.ComponentName)" target="_top"><code>setRestrictionsProvider</code></A>(<code>ComponentName,</nobr> ComponentName<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setScreenCaptureDisabled_added(android.content.ComponentName, boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setScreenCaptureDisabled(android.content.ComponentName, boolean)" target="_top"><code>setScreenCaptureDisabled</code></A>(<code>ComponentName,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.setUninstallBlocked_added(android.content.ComponentName, java.lang.String, boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#setUninstallBlocked(android.content.ComponentName, java.lang.String, boolean)" target="_top"><code>setUninstallBlocked</code></A>(<code>ComponentName,</nobr> String<nobr>,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.switchUser_added(android.content.ComponentName, android.os.UserHandle)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#switchUser(android.content.ComponentName, android.os.UserHandle)" target="_top"><code>switchUser</code></A>(<code>ComponentName,</nobr> UserHandle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.uninstallAllUserCaCerts_added(android.content.ComponentName)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#uninstallAllUserCaCerts(android.content.ComponentName)" target="_top"><code>uninstallAllUserCaCerts</code></A>(<code>ComponentName</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.uninstallCaCert_added(android.content.ComponentName, byte[])"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#uninstallCaCert(android.content.ComponentName, byte[])" target="_top"><code>uninstallCaCert</code></A>(<code>ComponentName,</nobr> byte[]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.admin.DevicePolicyManager.isLockTaskPermitted_changed(java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#isLockTaskPermitted(java.lang.String)" target="_top"><code>isLockTaskPermitted</code></A>(<code>String</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in signature from <code>ComponentName</code> to <code>String</code>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEFAULT_MANAGED_PROFILE_NAME"></A>
+  <code>String</code>&nbsp;EXTRA_PROVISIONING_DEFAULT_MANAGED_PROFILE_NAME
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.FLAG_TO_MANAGED_PROFILE"></A>
+  <code>int</code>&nbsp;FLAG_TO_MANAGED_PROFILE
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.FLAG_TO_PRIMARY_USER"></A>
+  <code>int</code>&nbsp;FLAG_TO_PRIMARY_USER
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.admin.DevicePolicyManager.EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE" target="_top"><code>EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM" target="_top"><code>EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER" target="_top"><code>EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION" target="_top"><code>EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_EMAIL_ADDRESS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_EMAIL_ADDRESS" target="_top"><code>EXTRA_PROVISIONING_EMAIL_ADDRESS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_LOCALE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_LOCALE" target="_top"><code>EXTRA_PROVISIONING_LOCALE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_LOCAL_TIME"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_LOCAL_TIME" target="_top"><code>EXTRA_PROVISIONING_LOCAL_TIME</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_TIME_ZONE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_TIME_ZONE" target="_top"><code>EXTRA_PROVISIONING_TIME_ZONE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_HIDDEN"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_WIFI_HIDDEN" target="_top"><code>EXTRA_PROVISIONING_WIFI_HIDDEN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PAC_URL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_WIFI_PAC_URL" target="_top"><code>EXTRA_PROVISIONING_WIFI_PAC_URL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PASSWORD"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_WIFI_PASSWORD" target="_top"><code>EXTRA_PROVISIONING_WIFI_PASSWORD</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_BYPASS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_WIFI_PROXY_BYPASS" target="_top"><code>EXTRA_PROVISIONING_WIFI_PROXY_BYPASS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_HOST"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_WIFI_PROXY_HOST" target="_top"><code>EXTRA_PROVISIONING_WIFI_PROXY_HOST</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_PORT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_WIFI_PROXY_PORT" target="_top"><code>EXTRA_PROVISIONING_WIFI_PROXY_PORT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_SECURITY_TYPE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_WIFI_SECURITY_TYPE" target="_top"><code>EXTRA_PROVISIONING_WIFI_SECURITY_TYPE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_SSID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_WIFI_SSID" target="_top"><code>EXTRA_PROVISIONING_WIFI_SSID</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.FLAG_MANAGED_CAN_ACCESS_PARENT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#FLAG_MANAGED_CAN_ACCESS_PARENT" target="_top"><code>FLAG_MANAGED_CAN_ACCESS_PARENT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.FLAG_PARENT_CAN_ACCESS_MANAGED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#FLAG_PARENT_CAN_ACCESS_MANAGED" target="_top"><code>FLAG_PARENT_CAN_ACCESS_MANAGED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_FINGERPRINT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#KEYGUARD_DISABLE_FINGERPRINT" target="_top"><code>KEYGUARD_DISABLE_FINGERPRINT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.MIME_TYPE_PROVISIONING_NFC"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#MIME_TYPE_PROVISIONING_NFC" target="_top"><code>MIME_TYPE_PROVISIONING_NFC</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.PASSWORD_QUALITY_NUMERIC_COMPLEX"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#PASSWORD_QUALITY_NUMERIC_COMPLEX" target="_top"><code>PASSWORD_QUALITY_NUMERIC_COMPLEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.app.admin.DevicePolicyManager.ACTION_PROVISION_MANAGED_PROFILE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#ACTION_PROVISION_MANAGED_PROFILE" target="_top"><code>ACTION_PROVISION_MANAGED_PROFILE</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from "android.app.action.ACTION_PROVISION_MANAGED_PROFILE" to "android.app.action.PROVISION_MANAGED_PROFILE".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME" target="_top"><code>EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from "android.app.extra.deviceAdminPackageName" to "android.app.extra.PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.app.backup.BackupAgent.html b/docs/html/sdk/api_diff/preview-21/changes/android.app.backup.BackupAgent.html
new file mode 100644
index 0000000..33efe03
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.app.backup.BackupAgent.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.backup.BackupAgent
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.backup.<A HREF="../../../../reference/android/app/backup/BackupAgent.html" target="_top"><font size="+2"><code>BackupAgent</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.backup.BackupAgent.onRestoreFinished_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/backup/BackupAgent.html#onRestoreFinished()" target="_top"><code>onRestoreFinished</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.app.job.JobInfo.Builder.html b/docs/html/sdk/api_diff/preview-21/changes/android.app.job.JobInfo.Builder.html
new file mode 100644
index 0000000..4925620
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.app.job.JobInfo.Builder.html
@@ -0,0 +1,144 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.job.JobInfo.Builder
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.job.<A HREF="../../../../reference/android/app/job/JobInfo.Builder.html" target="_top"><font size="+2"><code>JobInfo.Builder</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.job.JobInfo.Builder.setRequiredNetworkCapabilities_removed(int)"></A>
+  <nobr><code>Builder</code>&nbsp;setRequiredNetworkCapabilities(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.job.JobInfo.Builder.setPersisted_added(boolean)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/app/job/JobInfo.Builder.html#setPersisted(boolean)" target="_top"><code>setPersisted</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.job.JobInfo.Builder.setRequiredNetworkType_added(int)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/app/job/JobInfo.Builder.html#setRequiredNetworkType(int)" target="_top"><code>setRequiredNetworkType</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.app.job.JobInfo.html b/docs/html/sdk/api_diff/preview-21/changes/android.app.job.JobInfo.html
new file mode 100644
index 0000000..1026a9b
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.app.job.JobInfo.html
@@ -0,0 +1,201 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.job.JobInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.job.<A HREF="../../../../reference/android/app/job/JobInfo.html" target="_top"><font size="+2"><code>JobInfo</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.job.JobInfo.getNetworkCapabilities_removed()"></A>
+  <nobr><code>int</code>&nbsp;getNetworkCapabilities()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.job.JobInfo.getNetworkType_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/job/JobInfo.html#getNetworkType()" target="_top"><code>getNetworkType</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.job.JobInfo.isPersisted_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/job/JobInfo.html#isPersisted()" target="_top"><code>isPersisted</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.job.JobInfo.BACKOFF_POLICY_EXPONENTIAL"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/job/JobInfo.html#BACKOFF_POLICY_EXPONENTIAL" target="_top"><code>BACKOFF_POLICY_EXPONENTIAL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.job.JobInfo.BACKOFF_POLICY_LINEAR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/job/JobInfo.html#BACKOFF_POLICY_LINEAR" target="_top"><code>BACKOFF_POLICY_LINEAR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.job.JobInfo.DEFAULT_INITIAL_BACKOFF_MILLIS"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/android/app/job/JobInfo.html#DEFAULT_INITIAL_BACKOFF_MILLIS" target="_top"><code>DEFAULT_INITIAL_BACKOFF_MILLIS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.job.JobInfo.MAX_BACKOFF_DELAY_MILLIS"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/android/app/job/JobInfo.html#MAX_BACKOFF_DELAY_MILLIS" target="_top"><code>MAX_BACKOFF_DELAY_MILLIS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.job.JobInfo.NETWORK_TYPE_ANY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/job/JobInfo.html#NETWORK_TYPE_ANY" target="_top"><code>NETWORK_TYPE_ANY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.job.JobInfo.NETWORK_TYPE_NONE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/job/JobInfo.html#NETWORK_TYPE_NONE" target="_top"><code>NETWORK_TYPE_NONE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.job.JobInfo.NETWORK_TYPE_UNMETERED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/job/JobInfo.html#NETWORK_TYPE_UNMETERED" target="_top"><code>NETWORK_TYPE_UNMETERED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.app.job.JobParameters.html b/docs/html/sdk/api_diff/preview-21/changes/android.app.job.JobParameters.html
new file mode 100644
index 0000000..98c4e56
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.app.job.JobParameters.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.job.JobParameters
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.job.<A HREF="../../../../reference/android/app/job/JobParameters.html" target="_top"><font size="+2"><code>JobParameters</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.job.JobParameters.isOverrideDeadlineExpired_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/job/JobParameters.html#isOverrideDeadlineExpired()" target="_top"><code>isOverrideDeadlineExpired</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.appwidget.AppWidgetHost.html b/docs/html/sdk/api_diff/preview-21/changes/android.appwidget.AppWidgetHost.html
new file mode 100644
index 0000000..4cbcc93
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.appwidget.AppWidgetHost.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.appwidget.AppWidgetHost
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.appwidget.<A HREF="../../../../reference/android/appwidget/AppWidgetHost.html" target="_top"><font size="+2"><code>AppWidgetHost</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.appwidget.AppWidgetHost.startAppWidgetConfigureActivityForResult_added(android.app.Activity, int, int, int, android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetHost.html#startAppWidgetConfigureActivityForResult(android.app.Activity, int, int, int, android.os.Bundle)" target="_top"><code>startAppWidgetConfigureActivityForResult</code></A>(<code>Activity,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> Bundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.appwidget.AppWidgetManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.appwidget.AppWidgetManager.html
new file mode 100644
index 0000000..d44bb15
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.appwidget.AppWidgetManager.html
@@ -0,0 +1,144 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.appwidget.AppWidgetManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.appwidget.<A HREF="../../../../reference/android/appwidget/AppWidgetManager.html" target="_top"><font size="+2"><code>AppWidgetManager</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.appwidget.AppWidgetManager.bindAppWidgetIdIfAllowed_added(int, android.os.UserHandle, android.content.ComponentName, android.os.Bundle)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetManager.html#bindAppWidgetIdIfAllowed(int, android.os.UserHandle, android.content.ComponentName, android.os.Bundle)" target="_top"><code>bindAppWidgetIdIfAllowed</code></A>(<code>int,</nobr> UserHandle<nobr>,</nobr> ComponentName<nobr>,</nobr> Bundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.appwidget.AppWidgetManager.getInstalledProvidersForProfile_added(android.os.UserHandle)"></A>
+  <nobr><code>List&lt;AppWidgetProviderInfo&gt;</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetManager.html#getInstalledProvidersForProfile(android.os.UserHandle)" target="_top"><code>getInstalledProvidersForProfile</code></A>(<code>UserHandle</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.appwidget.AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetManager.html#EXTRA_APPWIDGET_PROVIDER_PROFILE" target="_top"><code>EXTRA_APPWIDGET_PROVIDER_PROFILE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.appwidget.AppWidgetProviderInfo.html b/docs/html/sdk/api_diff/preview-21/changes/android.appwidget.AppWidgetProviderInfo.html
new file mode 100644
index 0000000..79cc020
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.appwidget.AppWidgetProviderInfo.html
@@ -0,0 +1,190 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.appwidget.AppWidgetProviderInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.appwidget.<A HREF="../../../../reference/android/appwidget/AppWidgetProviderInfo.html" target="_top"><font size="+2"><code>AppWidgetProviderInfo</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.appwidget.AppWidgetProviderInfo.getProfile_added()"></A>
+  <nobr><code>UserHandle</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetProviderInfo.html#getProfile()" target="_top"><code>getProfile</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.appwidget.AppWidgetProviderInfo.loadIcon_added(android.content.Context, int)"></A>
+  <nobr><code>Drawable</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetProviderInfo.html#loadIcon(android.content.Context, int)" target="_top"><code>loadIcon</code></A>(<code>Context,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.appwidget.AppWidgetProviderInfo.loadLabel_added(android.content.pm.PackageManager)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetProviderInfo.html#loadLabel(android.content.pm.PackageManager)" target="_top"><code>loadLabel</code></A>(<code>PackageManager</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.appwidget.AppWidgetProviderInfo.loadPreviewImage_added(android.content.Context, int)"></A>
+  <nobr><code>Drawable</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetProviderInfo.html#loadPreviewImage(android.content.Context, int)" target="_top"><code>loadPreviewImage</code></A>(<code>Context,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.appwidget.AppWidgetProviderInfo.WIDGET_CATEGORY_RECENTS"></A>
+  <code>int</code>&nbsp;WIDGET_CATEGORY_RECENTS
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.appwidget.AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetProviderInfo.html#WIDGET_CATEGORY_SEARCHBOX" target="_top"><code>WIDGET_CATEGORY_SEARCHBOX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.appwidget.AppWidgetProviderInfo.label"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/appwidget/AppWidgetProviderInfo.html#label" target="_top"><code>label</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.bluetooth.BluetoothAdapter.html b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.BluetoothAdapter.html
new file mode 100644
index 0000000..bf44c27
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.BluetoothAdapter.html
@@ -0,0 +1,174 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.bluetooth.BluetoothAdapter
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.bluetooth.<A HREF="../../../../reference/android/bluetooth/BluetoothAdapter.html" target="_top"><font size="+2"><code>BluetoothAdapter</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.bluetooth.BluetoothAdapter.isMultipleAdvertisementSupported_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothAdapter.html#isMultipleAdvertisementSupported()" target="_top"><code>isMultipleAdvertisementSupported</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.BluetoothAdapter.isOffloadedFilteringSupported_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothAdapter.html#isOffloadedFilteringSupported()" target="_top"><code>isOffloadedFilteringSupported</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.BluetoothAdapter.isOffloadedScanBatchingSupported_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothAdapter.html#isOffloadedScanBatchingSupported()" target="_top"><code>isOffloadedScanBatchingSupported</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.bluetooth.BluetoothAdapter.stopLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothAdapter.html#stopLeScan(android.bluetooth.BluetoothAdapter.LeScanCallback)" target="_top"><code>stopLeScan</code></A>(<code>LeScanCallback</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.BluetoothAdapter.startLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothAdapter.html#startLeScan(android.bluetooth.BluetoothAdapter.LeScanCallback)" target="_top"><code>startLeScan</code></A>(<code>LeScanCallback</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.BluetoothAdapter.startLeScan_changed(java.util.UUID[], android.bluetooth.BluetoothAdapter.LeScanCallback)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothAdapter.html#startLeScan(java.util.UUID[], android.bluetooth.BluetoothAdapter.LeScanCallback)" target="_top"><code>startLeScan</code></A>(<code>UUID[],</nobr> LeScanCallback<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.bluetooth.BluetoothGatt.html b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.BluetoothGatt.html
new file mode 100644
index 0000000..360bb07f
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.BluetoothGatt.html
@@ -0,0 +1,165 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.bluetooth.BluetoothGatt
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.bluetooth.<A HREF="../../../../reference/android/bluetooth/BluetoothGatt.html" target="_top"><font size="+2"><code>BluetoothGatt</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.bluetooth.BluetoothGatt.requestConnectionPriority_added(int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothGatt.html#requestConnectionPriority(int)" target="_top"><code>requestConnectionPriority</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.BluetoothGatt.requestMtu_added(int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothGatt.html#requestMtu(int)" target="_top"><code>requestMtu</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_BALANCED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothGatt.html#CONNECTION_PRIORITY_BALANCED" target="_top"><code>CONNECTION_PRIORITY_BALANCED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_HIGH"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothGatt.html#CONNECTION_PRIORITY_HIGH" target="_top"><code>CONNECTION_PRIORITY_HIGH</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_LOW_POWER"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothGatt.html#CONNECTION_PRIORITY_LOW_POWER" target="_top"><code>CONNECTION_PRIORITY_LOW_POWER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.BluetoothGatt.GATT_CONNECTION_CONGESTED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothGatt.html#GATT_CONNECTION_CONGESTED" target="_top"><code>GATT_CONNECTION_CONGESTED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.bluetooth.BluetoothGattCallback.html b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.BluetoothGattCallback.html
new file mode 100644
index 0000000..2827944
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.BluetoothGattCallback.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.bluetooth.BluetoothGattCallback
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.bluetooth.<A HREF="../../../../reference/android/bluetooth/BluetoothGattCallback.html" target="_top"><font size="+2"><code>BluetoothGattCallback</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.bluetooth.BluetoothGattCallback.onMtuChanged_added(android.bluetooth.BluetoothGatt, int, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothGattCallback.html#onMtuChanged(android.bluetooth.BluetoothGatt, int, int)" target="_top"><code>onMtuChanged</code></A>(<code>BluetoothGatt,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.bluetooth.BluetoothGattServerCallback.html b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.BluetoothGattServerCallback.html
new file mode 100644
index 0000000..619de59
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.BluetoothGattServerCallback.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.bluetooth.BluetoothGattServerCallback
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.bluetooth.<A HREF="../../../../reference/android/bluetooth/BluetoothGattServerCallback.html" target="_top"><font size="+2"><code>BluetoothGattServerCallback</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.bluetooth.BluetoothGattServerCallback.onNotificationSent_added(android.bluetooth.BluetoothDevice, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/BluetoothGattServerCallback.html#onNotificationSent(android.bluetooth.BluetoothDevice, int)" target="_top"><code>onNotificationSent</code></A>(<code>BluetoothDevice,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.bluetooth.le.AdvertiseCallback.html b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.le.AdvertiseCallback.html
new file mode 100644
index 0000000..0a5e216
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.le.AdvertiseCallback.html
@@ -0,0 +1,209 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.bluetooth.le.AdvertiseCallback
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.bluetooth.le.<A HREF="../../../../reference/android/bluetooth/le/AdvertiseCallback.html" target="_top"><font size="+2"><code>AdvertiseCallback</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.AdvertiseCallback.onFailure_removed(int)"></A>
+  <nobr><code>void</code>&nbsp;onFailure(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.AdvertiseCallback.onSuccess_removed(android.bluetooth.le.AdvertiseSettings)"></A>
+  <nobr><code>void</code>&nbsp;onSuccess(<code>AdvertiseSettings</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.bluetooth.le.AdvertiseCallback.onStartFailure_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/AdvertiseCallback.html#onStartFailure(int)" target="_top"><code>onStartFailure</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.AdvertiseCallback.onStartSuccess_added(android.bluetooth.le.AdvertiseSettings)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/AdvertiseCallback.html#onStartSuccess(android.bluetooth.le.AdvertiseSettings)" target="_top"><code>onStartSuccess</code></A>(<code>AdvertiseSettings</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_CONTROLLER_FAILURE"></A>
+  <code>int</code>&nbsp;ADVERTISE_FAILED_CONTROLLER_FAILURE
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_NOT_STARTED"></A>
+  <code>int</code>&nbsp;ADVERTISE_FAILED_NOT_STARTED
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_SERVICE_UNKNOWN"></A>
+  <code>int</code>&nbsp;ADVERTISE_FAILED_SERVICE_UNKNOWN
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_DATA_TOO_LARGE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/AdvertiseCallback.html#ADVERTISE_FAILED_DATA_TOO_LARGE" target="_top"><code>ADVERTISE_FAILED_DATA_TOO_LARGE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_FEATURE_UNSUPPORTED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/AdvertiseCallback.html#ADVERTISE_FAILED_FEATURE_UNSUPPORTED" target="_top"><code>ADVERTISE_FAILED_FEATURE_UNSUPPORTED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_INTERNAL_ERROR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/AdvertiseCallback.html#ADVERTISE_FAILED_INTERNAL_ERROR" target="_top"><code>ADVERTISE_FAILED_INTERNAL_ERROR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.bluetooth.le.AdvertiseSettings.Builder.html b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.le.AdvertiseSettings.Builder.html
new file mode 100644
index 0000000..bf24852
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.le.AdvertiseSettings.Builder.html
@@ -0,0 +1,144 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.bluetooth.le.AdvertiseSettings.Builder
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.bluetooth.le.<A HREF="../../../../reference/android/bluetooth/le/AdvertiseSettings.Builder.html" target="_top"><font size="+2"><code>AdvertiseSettings.Builder</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.AdvertiseSettings.Builder.setType_removed(int)"></A>
+  <nobr><code>Builder</code>&nbsp;setType(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.bluetooth.le.AdvertiseSettings.Builder.setConnectable_added(boolean)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/AdvertiseSettings.Builder.html#setConnectable(boolean)" target="_top"><code>setConnectable</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.AdvertiseSettings.Builder.setTimeout_added(int)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/AdvertiseSettings.Builder.html#setTimeout(int)" target="_top"><code>setTimeout</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.bluetooth.le.AdvertiseSettings.html b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.le.AdvertiseSettings.html
new file mode 100644
index 0000000..6f48e82
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.le.AdvertiseSettings.html
@@ -0,0 +1,173 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.bluetooth.le.AdvertiseSettings
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.bluetooth.le.<A HREF="../../../../reference/android/bluetooth/le/AdvertiseSettings.html" target="_top"><font size="+2"><code>AdvertiseSettings</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.AdvertiseSettings.getType_removed()"></A>
+  <nobr><code>int</code>&nbsp;getType()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.bluetooth.le.AdvertiseSettings.getTimeout_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/AdvertiseSettings.html#getTimeout()" target="_top"><code>getTimeout</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.AdvertiseSettings.isConnectable_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/AdvertiseSettings.html#isConnectable()" target="_top"><code>isConnectable</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.AdvertiseSettings.ADVERTISE_TYPE_CONNECTABLE"></A>
+  <code>int</code>&nbsp;ADVERTISE_TYPE_CONNECTABLE
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.AdvertiseSettings.ADVERTISE_TYPE_NON_CONNECTABLE"></A>
+  <code>int</code>&nbsp;ADVERTISE_TYPE_NON_CONNECTABLE
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.AdvertiseSettings.ADVERTISE_TYPE_SCANNABLE"></A>
+  <code>int</code>&nbsp;ADVERTISE_TYPE_SCANNABLE
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.bluetooth.le.BluetoothLeAdvertiser.html b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.le.BluetoothLeAdvertiser.html
new file mode 100644
index 0000000..ed85a40
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.le.BluetoothLeAdvertiser.html
@@ -0,0 +1,151 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.bluetooth.le.BluetoothLeAdvertiser
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.bluetooth.le.<A HREF="../../../../reference/android/bluetooth/le/BluetoothLeAdvertiser.html" target="_top"><font size="+2"><code>BluetoothLeAdvertiser</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising_removed(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertisementData, android.bluetooth.le.AdvertiseCallback)"></A>
+  <nobr><code>void</code>&nbsp;startAdvertising(<code>AdvertiseSettings,</nobr> AdvertisementData<nobr>,</nobr> AdvertiseCallback<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising_removed(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertisementData, android.bluetooth.le.AdvertisementData, android.bluetooth.le.AdvertiseCallback)"></A>
+  <nobr><code>void</code>&nbsp;startAdvertising(<code>AdvertiseSettings,</nobr> AdvertisementData<nobr>,</nobr> AdvertisementData<nobr>,</nobr> AdvertiseCallback<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.bluetooth.le.BluetoothLeAdvertiser.startAdvertising_added(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/BluetoothLeAdvertiser.html#startAdvertising(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseCallback)" target="_top"><code>startAdvertising</code></A>(<code>AdvertiseSettings,</nobr> AdvertiseData<nobr>,</nobr> AdvertiseCallback<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising_added(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/BluetoothLeAdvertiser.html#startAdvertising(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseCallback)" target="_top"><code>startAdvertising</code></A>(<code>AdvertiseSettings,</nobr> AdvertiseData<nobr>,</nobr> AdvertiseData<nobr>,</nobr> AdvertiseCallback<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.bluetooth.le.BluetoothLeScanner.html b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.le.BluetoothLeScanner.html
new file mode 100644
index 0000000..d342b4d
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.le.BluetoothLeScanner.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.bluetooth.le.BluetoothLeScanner
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.bluetooth.le.<A HREF="../../../../reference/android/bluetooth/le/BluetoothLeScanner.html" target="_top"><font size="+2"><code>BluetoothLeScanner</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.bluetooth.le.BluetoothLeScanner.flushPendingScanResults_added(android.bluetooth.le.ScanCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/BluetoothLeScanner.html#flushPendingScanResults(android.bluetooth.le.ScanCallback)" target="_top"><code>flushPendingScanResults</code></A>(<code>ScanCallback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.BluetoothLeScanner.startScan_added(android.bluetooth.le.ScanCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/BluetoothLeScanner.html#startScan(android.bluetooth.le.ScanCallback)" target="_top"><code>startScan</code></A>(<code>ScanCallback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.bluetooth.le.ScanCallback.html b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.le.ScanCallback.html
new file mode 100644
index 0000000..f65b406
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.le.ScanCallback.html
@@ -0,0 +1,206 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.bluetooth.le.ScanCallback
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.bluetooth.le.<A HREF="../../../../reference/android/bluetooth/le/ScanCallback.html" target="_top"><font size="+2"><code>ScanCallback</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanCallback.onAdvertisementUpdate_removed(android.bluetooth.le.ScanResult)"></A>
+  <nobr><code>void</code>&nbsp;onAdvertisementUpdate(<code>ScanResult</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.bluetooth.le.ScanCallback.onBatchScanResults_added(java.util.List<android.bluetooth.le.ScanResult>)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/ScanCallback.html#onBatchScanResults(java.util.List<android.bluetooth.le.ScanResult>)" target="_top"><code>onBatchScanResults</code></A>(<code>List&lt;ScanResult&gt;</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanCallback.onScanResult_added(int, android.bluetooth.le.ScanResult)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/ScanCallback.html#onScanResult(int, android.bluetooth.le.ScanResult)" target="_top"><code>onScanResult</code></A>(<code>int,</nobr> ScanResult<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.bluetooth.le.ScanCallback.onScanFailed_changed(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/ScanCallback.html#onScanFailed(int)" target="_top"><code>onScanFailed</code></A>(<code>int</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed from abstract to non-abstract.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanCallback.SCAN_FAILED_CONTROLLER_FAILURE"></A>
+  <code>int</code>&nbsp;SCAN_FAILED_CONTROLLER_FAILURE
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanCallback.SCAN_FAILED_GATT_SERVICE_FAILURE"></A>
+  <code>int</code>&nbsp;SCAN_FAILED_GATT_SERVICE_FAILURE
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.bluetooth.le.ScanCallback.SCAN_FAILED_FEATURE_UNSUPPORTED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/ScanCallback.html#SCAN_FAILED_FEATURE_UNSUPPORTED" target="_top"><code>SCAN_FAILED_FEATURE_UNSUPPORTED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanCallback.SCAN_FAILED_INTERNAL_ERROR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/ScanCallback.html#SCAN_FAILED_INTERNAL_ERROR" target="_top"><code>SCAN_FAILED_INTERNAL_ERROR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.bluetooth.le.ScanFilter.Builder.html b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.le.ScanFilter.Builder.html
new file mode 100644
index 0000000..fcfc098
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.le.ScanFilter.Builder.html
@@ -0,0 +1,186 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.bluetooth.le.ScanFilter.Builder
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.bluetooth.le.<A HREF="../../../../reference/android/bluetooth/le/ScanFilter.Builder.html" target="_top"><font size="+2"><code>ScanFilter.Builder</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanFilter.Builder.setMacAddress_removed(java.lang.String)"></A>
+  <nobr><code>Builder</code>&nbsp;setMacAddress(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanFilter.Builder.setName_removed(java.lang.String)"></A>
+  <nobr><code>Builder</code>&nbsp;setName(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanFilter.Builder.setRssiRange_removed(int, int)"></A>
+  <nobr><code>Builder</code>&nbsp;setRssiRange(<code>int,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanFilter.Builder.setServiceData_removed(byte[])"></A>
+  <nobr><code>Builder</code>&nbsp;setServiceData(<code>byte[]</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanFilter.Builder.setServiceData_removed(byte[], byte[])"></A>
+  <nobr><code>Builder</code>&nbsp;setServiceData(<code>byte[],</nobr> byte[]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.bluetooth.le.ScanFilter.Builder.setDeviceAddress_added(java.lang.String)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/ScanFilter.Builder.html#setDeviceAddress(java.lang.String)" target="_top"><code>setDeviceAddress</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanFilter.Builder.setDeviceName_added(java.lang.String)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/ScanFilter.Builder.html#setDeviceName(java.lang.String)" target="_top"><code>setDeviceName</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanFilter.Builder.setServiceData_added(android.os.ParcelUuid, byte[])"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/ScanFilter.Builder.html#setServiceData(android.os.ParcelUuid, byte[])" target="_top"><code>setServiceData</code></A>(<code>ParcelUuid,</nobr> byte[]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanFilter.Builder.setServiceData_added(android.os.ParcelUuid, byte[], byte[])"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/ScanFilter.Builder.html#setServiceData(android.os.ParcelUuid, byte[], byte[])" target="_top"><code>setServiceData</code></A>(<code>ParcelUuid,</nobr> byte[]<nobr>,</nobr> byte[]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.bluetooth.le.ScanFilter.html b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.le.ScanFilter.html
new file mode 100644
index 0000000..8258611
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.le.ScanFilter.html
@@ -0,0 +1,158 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.bluetooth.le.ScanFilter
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.bluetooth.le.<A HREF="../../../../reference/android/bluetooth/le/ScanFilter.html" target="_top"><font size="+2"><code>ScanFilter</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanFilter.getLocalName_removed()"></A>
+  <nobr><code>String</code>&nbsp;getLocalName()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanFilter.getMaxRssi_removed()"></A>
+  <nobr><code>int</code>&nbsp;getMaxRssi()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanFilter.getMinRssi_removed()"></A>
+  <nobr><code>int</code>&nbsp;getMinRssi()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.bluetooth.le.ScanFilter.getDeviceName_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/ScanFilter.html#getDeviceName()" target="_top"><code>getDeviceName</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanFilter.getServiceDataUuid_added()"></A>
+  <nobr><code>ParcelUuid</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/ScanFilter.html#getServiceDataUuid()" target="_top"><code>getServiceDataUuid</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.bluetooth.le.ScanRecord.html b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.le.ScanRecord.html
new file mode 100644
index 0000000..36cd7cd
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.le.ScanRecord.html
@@ -0,0 +1,211 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.bluetooth.le.ScanRecord
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.bluetooth.le.<A HREF="../../../../reference/android/bluetooth/le/ScanRecord.html" target="_top"><font size="+2"><code>ScanRecord</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanRecord.getLocalName_removed()"></A>
+  <nobr><code>String</code>&nbsp;getLocalName()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanRecord.getManufacturerId_removed()"></A>
+  <nobr><code>int</code>&nbsp;getManufacturerId()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanRecord.getServiceData_removed()"></A>
+  <nobr><code>byte[]</code>&nbsp;getServiceData()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanRecord.getServiceDataUuid_removed()"></A>
+  <nobr><code>ParcelUuid</code>&nbsp;getServiceDataUuid()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanRecord.parseFromBytes_removed(byte[])"></A>
+  <nobr><code>ScanRecord</code>&nbsp;parseFromBytes(<code>byte[]</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.bluetooth.le.ScanRecord.getBytes_added()"></A>
+  <nobr><code>byte[]</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/ScanRecord.html#getBytes()" target="_top"><code>getBytes</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanRecord.getDeviceName_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/ScanRecord.html#getDeviceName()" target="_top"><code>getDeviceName</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanRecord.getManufacturerSpecificData_added(int)"></A>
+  <nobr><code>byte[]</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/ScanRecord.html#getManufacturerSpecificData(int)" target="_top"><code>getManufacturerSpecificData</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanRecord.getServiceData_added(android.os.ParcelUuid)"></A>
+  <nobr><code>byte[]</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/ScanRecord.html#getServiceData(android.os.ParcelUuid)" target="_top"><code>getServiceData</code></A>(<code>ParcelUuid</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanRecord.getServiceData_added()"></A>
+  <nobr>(<code>Map&lt;ParcelUuid, byte[]&gt;</code>)&nbsp;<A HREF="../../../../reference/android/bluetooth/le/ScanRecord.html#getServiceData()" target="_top"><code>getServiceData</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.bluetooth.le.ScanRecord.getManufacturerSpecificData_changed()"></A>
+  <nobr><code>SparseArray&lt;byte[]&gt;</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/ScanRecord.html#getManufacturerSpecificData()" target="_top"><code>getManufacturerSpecificData</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in return type from <code>byte[]</code> to <code>SparseArray&lt;byte[]&gt;</code>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.bluetooth.le.ScanResult.html b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.le.ScanResult.html
new file mode 100644
index 0000000..b882fc8
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.le.ScanResult.html
@@ -0,0 +1,140 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.bluetooth.le.ScanResult
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.bluetooth.le.<A HREF="../../../../reference/android/bluetooth/le/ScanResult.html" target="_top"><font size="+2"><code>ScanResult</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.bluetooth.le.ScanResult.ctor_added(android.bluetooth.BluetoothDevice, android.bluetooth.le.ScanRecord, int, long)"></A>
+  <nobr><A HREF="../../../../reference/android/bluetooth/le/ScanResult.html#ScanResult(android.bluetooth.BluetoothDevice, android.bluetooth.le.ScanRecord, int, long)" target="_top"><code>ScanResult</code></A>(<code>BluetoothDevice,</nobr> ScanRecord<nobr>,</nobr> int<nobr>,</nobr> long<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.bluetooth.le.ScanResult.getScanRecord_changed()"></A>
+  <nobr><code>ScanRecord</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/ScanResult.html#getScanRecord()" target="_top"><code>getScanRecord</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in return type from <code>byte[]</code> to <code>ScanRecord</code>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.bluetooth.le.ScanSettings.Builder.html b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.le.ScanSettings.Builder.html
new file mode 100644
index 0000000..82402dc
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.le.ScanSettings.Builder.html
@@ -0,0 +1,144 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.bluetooth.le.ScanSettings.Builder
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.bluetooth.le.<A HREF="../../../../reference/android/bluetooth/le/ScanSettings.Builder.html" target="_top"><font size="+2"><code>ScanSettings.Builder</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanSettings.Builder.setCallbackType_removed(int)"></A>
+  <nobr><code>Builder</code>&nbsp;setCallbackType(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanSettings.Builder.setReportDelayNanos_removed(long)"></A>
+  <nobr><code>Builder</code>&nbsp;setReportDelayNanos(<code>long</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.bluetooth.le.ScanSettings.Builder.setReportDelay_added(long)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/ScanSettings.Builder.html#setReportDelay(long)" target="_top"><code>setReportDelay</code></A>(<code>long</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.bluetooth.le.ScanSettings.html b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.le.ScanSettings.html
new file mode 100644
index 0000000..bff102c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.bluetooth.le.ScanSettings.html
@@ -0,0 +1,174 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.bluetooth.le.ScanSettings
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.bluetooth.le.<A HREF="../../../../reference/android/bluetooth/le/ScanSettings.html" target="_top"><font size="+2"><code>ScanSettings</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanSettings.getReportDelayNanos_removed()"></A>
+  <nobr><code>long</code>&nbsp;getReportDelayNanos()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.bluetooth.le.ScanSettings.getReportDelayMillis_added()"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/ScanSettings.html#getReportDelayMillis()" target="_top"><code>getReportDelayMillis</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanSettings.CALLBACK_TYPE_ON_UPDATE"></A>
+  <code>int</code>&nbsp;CALLBACK_TYPE_ON_UPDATE
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le.ScanSettings.SCAN_RESULT_TYPE_FULL"></A>
+  <code>int</code>&nbsp;SCAN_RESULT_TYPE_FULL
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.bluetooth.le.ScanSettings.CALLBACK_TYPE_ALL_MATCHES"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/bluetooth/le/ScanSettings.html#CALLBACK_TYPE_ALL_MATCHES" target="_top"><code>CALLBACK_TYPE_ALL_MATCHES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.content.ContentResolver.html b/docs/html/sdk/api_diff/preview-21/changes/android.content.ContentResolver.html
new file mode 100644
index 0000000..7b8c85d
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.content.ContentResolver.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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>
+<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.EXTRA_SIZE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/ContentResolver.html#EXTRA_SIZE" target="_top"><code>EXTRA_SIZE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.content.Context.html b/docs/html/sdk/api_diff/preview-21/changes/android.content.Context.html
new file mode 100644
index 0000000..d72be5e
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.content.Context.html
@@ -0,0 +1,233 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.getCodeCacheDir_added()"></A>
+  <nobr><code>File</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#getCodeCacheDir()" target="_top"><code>getCodeCacheDir</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.getNoBackupFilesDir_added()"></A>
+  <nobr><code>File</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#getNoBackupFilesDir()" target="_top"><code>getNoBackupFilesDir</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.removeStickyBroadcast_changed(android.content.Intent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#removeStickyBroadcast(android.content.Intent)" target="_top"><code>removeStickyBroadcast</code></A>(<code>Intent</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.removeStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#removeStickyBroadcastAsUser(android.content.Intent, android.os.UserHandle)" target="_top"><code>removeStickyBroadcastAsUser</code></A>(<code>Intent,</nobr> UserHandle<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.sendStickyBroadcast_changed(android.content.Intent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#sendStickyBroadcast(android.content.Intent)" target="_top"><code>sendStickyBroadcast</code></A>(<code>Intent</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.sendStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#sendStickyBroadcastAsUser(android.content.Intent, android.os.UserHandle)" target="_top"><code>sendStickyBroadcastAsUser</code></A>(<code>Intent,</nobr> UserHandle<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.sendStickyOrderedBroadcast_changed(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;<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 VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.sendStickyOrderedBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#sendStickyOrderedBroadcastAsUser(android.content.Intent, android.os.UserHandle, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" target="_top"><code>sendStickyOrderedBroadcastAsUser</code></A>(<code>Intent,</nobr> UserHandle<nobr>,</nobr> BroadcastReceiver<nobr>,</nobr> Handler<nobr>,</nobr> int<nobr>,</nobr> String<nobr>,</nobr> Bundle<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.APPWIDGET_SERVICE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#APPWIDGET_SERVICE" target="_top"><code>APPWIDGET_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.MEDIA_PROJECTION_SERVICE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#MEDIA_PROJECTION_SERVICE" target="_top"><code>MEDIA_PROJECTION_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.RESTRICTIONS_SERVICE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#RESTRICTIONS_SERVICE" target="_top"><code>RESTRICTIONS_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Context.TELECOM_SERVICE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Context.html#TELECOM_SERVICE" target="_top"><code>TELECOM_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.content.ContextWrapper.html b/docs/html/sdk/api_diff/preview-21/changes/android.content.ContextWrapper.html
new file mode 100644
index 0000000..01ac3f9
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.content.ContextWrapper.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.getCodeCacheDir_added()"></A>
+  <nobr><code>File</code>&nbsp;<A HREF="../../../../reference/android/content/ContextWrapper.html#getCodeCacheDir()" target="_top"><code>getCodeCacheDir</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.ContextWrapper.getNoBackupFilesDir_added()"></A>
+  <nobr><code>File</code>&nbsp;<A HREF="../../../../reference/android/content/ContextWrapper.html#getNoBackupFilesDir()" target="_top"><code>getNoBackupFilesDir</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.content.Intent.html b/docs/html/sdk/api_diff/preview-21/changes/android.content.Intent.html
new file mode 100644
index 0000000..d21ca00
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.content.Intent.html
@@ -0,0 +1,175 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Intent.CATEGORY_VOICE"></A>
+  <code>String</code>&nbsp;CATEGORY_VOICE
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Intent.FLAG_ACTIVITY_AUTO_REMOVE_FROM_RECENTS"></A>
+  <code>int</code>&nbsp;FLAG_ACTIVITY_AUTO_REMOVE_FROM_RECENTS
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.EXTRA_ASSIST_INPUT_HINT_KEYBOARD"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Intent.html#EXTRA_ASSIST_INPUT_HINT_KEYBOARD" target="_top"><code>EXTRA_ASSIST_INPUT_HINT_KEYBOARD</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Intent.EXTRA_REPLACEMENT_EXTRAS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Intent.html#EXTRA_REPLACEMENT_EXTRAS" target="_top"><code>EXTRA_REPLACEMENT_EXTRAS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/Intent.html#FLAG_ACTIVITY_RETAIN_IN_RECENTS" target="_top"><code>FLAG_ACTIVITY_RETAIN_IN_RECENTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Intent.EXTRA_USER"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/Intent.html#EXTRA_USER" target="_top"><code>EXTRA_USER</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from "android.intent.extra.user" to "android.intent.extra.USER".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.content.RestrictionEntry.html b/docs/html/sdk/api_diff/preview-21/changes/android.content.RestrictionEntry.html
new file mode 100644
index 0000000..902b603
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.content.RestrictionEntry.html
@@ -0,0 +1,173 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.RestrictionEntry
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/RestrictionEntry.html" target="_top"><font size="+2"><code>RestrictionEntry</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.content.RestrictionEntry.ctor_added(int, java.lang.String)"></A>
+  <nobr><A HREF="../../../../reference/android/content/RestrictionEntry.html#RestrictionEntry(int, java.lang.String)" target="_top"><code>RestrictionEntry</code></A>(<code>int,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.RestrictionEntry.ctor_added(java.lang.String, int)"></A>
+  <nobr><A HREF="../../../../reference/android/content/RestrictionEntry.html#RestrictionEntry(java.lang.String, int)" target="_top"><code>RestrictionEntry</code></A>(<code>String,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.RestrictionEntry.getIntValue_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/RestrictionEntry.html#getIntValue()" target="_top"><code>getIntValue</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.RestrictionEntry.setIntValue_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/content/RestrictionEntry.html#setIntValue(int)" target="_top"><code>setIntValue</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.RestrictionEntry.TYPE_INTEGER"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/RestrictionEntry.html#TYPE_INTEGER" target="_top"><code>TYPE_INTEGER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.RestrictionEntry.TYPE_STRING"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/RestrictionEntry.html#TYPE_STRING" target="_top"><code>TYPE_STRING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.content.pm.ActivityInfo.html b/docs/html/sdk/api_diff/preview-21/changes/android.content.pm.ActivityInfo.html
new file mode 100644
index 0000000..836b0ba
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.content.pm.ActivityInfo.html
@@ -0,0 +1,172 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ActivityInfo.FLAG_PERSISTABLE"></A>
+  <code>int</code>&nbsp;FLAG_PERSISTABLE
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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_RELINQUISH_TASK_IDENTITY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ActivityInfo.html#FLAG_RELINQUISH_TASK_IDENTITY" target="_top"><code>FLAG_RELINQUISH_TASK_IDENTITY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ActivityInfo.FLAG_RESUME_WHILE_PAUSING"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ActivityInfo.html#FLAG_RESUME_WHILE_PAUSING" target="_top"><code>FLAG_RESUME_WHILE_PAUSING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ActivityInfo.PERSIST_ACROSS_REBOOTS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ActivityInfo.html#PERSIST_ACROSS_REBOOTS" target="_top"><code>PERSIST_ACROSS_REBOOTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ActivityInfo.PERSIST_NEVER"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ActivityInfo.html#PERSIST_NEVER" target="_top"><code>PERSIST_NEVER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ActivityInfo.PERSIST_ROOT_ONLY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ActivityInfo.html#PERSIST_ROOT_ONLY" target="_top"><code>PERSIST_ROOT_ONLY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ActivityInfo.persistableMode"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ActivityInfo.html#persistableMode" target="_top"><code>persistableMode</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.content.pm.ApplicationInfo.html b/docs/html/sdk/api_diff/preview-21/changes/android.content.pm.ApplicationInfo.html
new file mode 100644
index 0000000..3851c31
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.content.pm.ApplicationInfo.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ApplicationInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ApplicationInfo.html" target="_top"><font size="+2"><code>ApplicationInfo</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.ApplicationInfo.FLAG_FULL_BACKUP_ONLY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ApplicationInfo.html#FLAG_FULL_BACKUP_ONLY" target="_top"><code>FLAG_FULL_BACKUP_ONLY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ApplicationInfo.FLAG_MULTIARCH"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ApplicationInfo.html#FLAG_MULTIARCH" target="_top"><code>FLAG_MULTIARCH</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ApplicationInfo.splitPublicSourceDirs"></A>
+  <nobr><code>String[]</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ApplicationInfo.html#splitPublicSourceDirs" target="_top"><code>splitPublicSourceDirs</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.ApplicationInfo.splitSourceDirs"></A>
+  <nobr><code>String[]</code>&nbsp;<A HREF="../../../../reference/android/content/pm/ApplicationInfo.html#splitSourceDirs" target="_top"><code>splitSourceDirs</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.content.pm.InstrumentationInfo.html b/docs/html/sdk/api_diff/preview-21/changes/android.content.pm.InstrumentationInfo.html
new file mode 100644
index 0000000..4837f56
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.content.pm.InstrumentationInfo.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.InstrumentationInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/InstrumentationInfo.html" target="_top"><font size="+2"><code>InstrumentationInfo</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.InstrumentationInfo.splitPublicSourceDirs"></A>
+  <nobr><code>String[]</code>&nbsp;<A HREF="../../../../reference/android/content/pm/InstrumentationInfo.html#splitPublicSourceDirs" target="_top"><code>splitPublicSourceDirs</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.InstrumentationInfo.splitSourceDirs"></A>
+  <nobr><code>String[]</code>&nbsp;<A HREF="../../../../reference/android/content/pm/InstrumentationInfo.html#splitSourceDirs" target="_top"><code>splitSourceDirs</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.content.pm.LauncherApps.html b/docs/html/sdk/api_diff/preview-21/changes/android.content.pm.LauncherApps.html
new file mode 100644
index 0000000..3c2dbf9
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.content.pm.LauncherApps.html
@@ -0,0 +1,207 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.LauncherApps
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/LauncherApps.html" target="_top"><font size="+2"><code>LauncherApps</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.LauncherApps.addOnAppsChangedListener_removed(android.content.pm.LauncherApps.OnAppsChangedListener)"></A>
+  <nobr><code>void</code>&nbsp;addOnAppsChangedListener(<code>OnAppsChangedListener</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.LauncherApps.isActivityEnabledForProfile_removed(android.content.ComponentName, android.os.UserHandle)"></A>
+  <nobr><code>boolean</code>&nbsp;isActivityEnabledForProfile(<code>ComponentName,</nobr> UserHandle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.LauncherApps.isPackageEnabledForProfile_removed(java.lang.String, android.os.UserHandle)"></A>
+  <nobr><code>boolean</code>&nbsp;isPackageEnabledForProfile(<code>String,</nobr> UserHandle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.LauncherApps.removeOnAppsChangedListener_removed(android.content.pm.LauncherApps.OnAppsChangedListener)"></A>
+  <nobr><code>void</code>&nbsp;removeOnAppsChangedListener(<code>OnAppsChangedListener</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.LauncherApps.startActivityForProfile_removed(android.content.ComponentName, android.os.UserHandle, android.graphics.Rect, android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;startActivityForProfile(<code>ComponentName,</nobr> UserHandle<nobr>,</nobr> Rect<nobr>,</nobr> Bundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.LauncherApps.isActivityEnabled_added(android.content.ComponentName, android.os.UserHandle)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/content/pm/LauncherApps.html#isActivityEnabled(android.content.ComponentName, android.os.UserHandle)" target="_top"><code>isActivityEnabled</code></A>(<code>ComponentName,</nobr> UserHandle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.LauncherApps.isPackageEnabled_added(java.lang.String, android.os.UserHandle)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/content/pm/LauncherApps.html#isPackageEnabled(java.lang.String, android.os.UserHandle)" target="_top"><code>isPackageEnabled</code></A>(<code>String,</nobr> UserHandle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.LauncherApps.registerCallback_added(android.content.pm.LauncherApps.Callback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/content/pm/LauncherApps.html#registerCallback(android.content.pm.LauncherApps.Callback)" target="_top"><code>registerCallback</code></A>(<code>Callback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.LauncherApps.registerCallback_added(android.content.pm.LauncherApps.Callback, android.os.Handler)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/content/pm/LauncherApps.html#registerCallback(android.content.pm.LauncherApps.Callback, android.os.Handler)" target="_top"><code>registerCallback</code></A>(<code>Callback,</nobr> Handler<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.LauncherApps.startAppDetailsActivity_added(android.content.ComponentName, android.os.UserHandle, android.graphics.Rect, android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/content/pm/LauncherApps.html#startAppDetailsActivity(android.content.ComponentName, android.os.UserHandle, android.graphics.Rect, android.os.Bundle)" target="_top"><code>startAppDetailsActivity</code></A>(<code>ComponentName,</nobr> UserHandle<nobr>,</nobr> Rect<nobr>,</nobr> Bundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.LauncherApps.startMainActivity_added(android.content.ComponentName, android.os.UserHandle, android.graphics.Rect, android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/content/pm/LauncherApps.html#startMainActivity(android.content.ComponentName, android.os.UserHandle, android.graphics.Rect, android.os.Bundle)" target="_top"><code>startMainActivity</code></A>(<code>ComponentName,</nobr> UserHandle<nobr>,</nobr> Rect<nobr>,</nobr> Bundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.LauncherApps.unregisterCallback_added(android.content.pm.LauncherApps.Callback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/content/pm/LauncherApps.html#unregisterCallback(android.content.pm.LauncherApps.Callback)" target="_top"><code>unregisterCallback</code></A>(<code>Callback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.content.pm.PackageInfo.html b/docs/html/sdk/api_diff/preview-21/changes/android.content.pm.PackageInfo.html
new file mode 100644
index 0000000..cd0c1d0
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.content.pm.PackageInfo.html
@@ -0,0 +1,157 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.INSTALL_LOCATION_AUTO"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageInfo.html#INSTALL_LOCATION_AUTO" target="_top"><code>INSTALL_LOCATION_AUTO</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageInfo.html#INSTALL_LOCATION_INTERNAL_ONLY" target="_top"><code>INSTALL_LOCATION_INTERNAL_ONLY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageInfo.INSTALL_LOCATION_PREFER_EXTERNAL"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageInfo.html#INSTALL_LOCATION_PREFER_EXTERNAL" target="_top"><code>INSTALL_LOCATION_PREFER_EXTERNAL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageInfo.featureGroups"></A>
+  <nobr><code>FeatureGroupInfo[]</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageInfo.html#featureGroups" target="_top"><code>featureGroups</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageInfo.installLocation"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageInfo.html#installLocation" target="_top"><code>installLocation</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageInfo.splitNames"></A>
+  <nobr><code>String[]</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageInfo.html#splitNames" target="_top"><code>splitNames</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.content.pm.PackageManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.content.pm.PackageManager.html
new file mode 100644
index 0000000..e63ae2d
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.content.pm.PackageManager.html
@@ -0,0 +1,271 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.getPackageInstaller_added()"></A>
+  <nobr><code>PackageInstaller</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#getPackageInstaller()" target="_top"><code>getPackageInstaller</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)"></A>
+  <nobr><code>Drawable</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#getUserBadgedDrawableForDensity(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)" target="_top"><code>getUserBadgedDrawableForDensity</code></A>(<code>Drawable,</nobr> UserHandle<nobr>,</nobr> Rect<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)"></A>
+  <nobr><code>Drawable</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#getUserBadgedIcon(android.graphics.drawable.Drawable, android.os.UserHandle)" target="_top"><code>getUserBadgedIcon</code></A>(<code>Drawable,</nobr> UserHandle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)"></A>
+  <nobr><code>CharSequence</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#getUserBadgedLabel(java.lang.CharSequence, android.os.UserHandle)" target="_top"><code>getUserBadgedLabel</code></A>(<code>CharSequence,</nobr> UserHandle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_MANAGED_PROFILES"></A>
+  <code>String</code>&nbsp;FEATURE_MANAGED_PROFILES
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.PackageManager.FEATURE_AUDIO_OUTPUT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_AUDIO_OUTPUT" target="_top"><code>FEATURE_AUDIO_OUTPUT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING" target="_top"><code>FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR" target="_top"><code>FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_RAW"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_CAMERA_CAPABILITY_RAW" target="_top"><code>FEATURE_CAMERA_CAPABILITY_RAW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_CAMERA_LEVEL_FULL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_CAMERA_LEVEL_FULL" target="_top"><code>FEATURE_CAMERA_LEVEL_FULL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_CONNECTION_SERVICE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_CONNECTION_SERVICE" target="_top"><code>FEATURE_CONNECTION_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_GAMEPAD"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_GAMEPAD" target="_top"><code>FEATURE_GAMEPAD</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_LIVE_TV"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_LIVE_TV" target="_top"><code>FEATURE_LIVE_TV</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_MANAGED_USERS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_MANAGED_USERS" target="_top"><code>FEATURE_MANAGED_USERS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_OPENGLES_EXTENSION_PACK"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_OPENGLES_EXTENSION_PACK" target="_top"><code>FEATURE_OPENGLES_EXTENSION_PACK</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_SECURELY_REMOVES_USERS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_SECURELY_REMOVES_USERS" target="_top"><code>FEATURE_SECURELY_REMOVES_USERS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_SENSOR_AMBIENT_TEMPERATURE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_SENSOR_AMBIENT_TEMPERATURE" target="_top"><code>FEATURE_SENSOR_AMBIENT_TEMPERATURE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_SENSOR_HEART_RATE_ECG"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_SENSOR_HEART_RATE_ECG" target="_top"><code>FEATURE_SENSOR_HEART_RATE_ECG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_SENSOR_RELATIVE_HUMIDITY"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_SENSOR_RELATIVE_HUMIDITY" target="_top"><code>FEATURE_SENSOR_RELATIVE_HUMIDITY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.content.pm.PackageManager.FEATURE_VERIFIED_BOOT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PackageManager.html#FEATURE_VERIFIED_BOOT" target="_top"><code>FEATURE_VERIFIED_BOOT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.content.pm.PermissionInfo.html b/docs/html/sdk/api_diff/preview-21/changes/android.content.pm.PermissionInfo.html
new file mode 100644
index 0000000..622ba79
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.content.pm.PermissionInfo.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.PermissionInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/PermissionInfo.html" target="_top"><font size="+2"><code>PermissionInfo</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.PermissionInfo.PROTECTION_FLAG_APPOP"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/pm/PermissionInfo.html#PROTECTION_FLAG_APPOP" target="_top"><code>PROTECTION_FLAG_APPOP</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.content.res.AssetManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.content.res.AssetManager.html
new file mode 100644
index 0000000..9d9961d
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.content.res.AssetManager.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AssetManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/AssetManager.html" target="_top"><font size="+2"><code>AssetManager</code></font></A>
+</H2>
+<p><font xsize="+1">Added interface <code>java.lang.AutoCloseable</code>.<br></font>
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.content.res.TypedArray.html b/docs/html/sdk/api_diff/preview-21/changes/android.content.res.TypedArray.html
new file mode 100644
index 0000000..2f5885a
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.content.res.TypedArray.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.TypedArray
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/TypedArray.html" target="_top"><font size="+2"><code>TypedArray</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.res.TypedArray.getChangingConfigurations_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/content/res/TypedArray.html#getChangingConfigurations()" target="_top"><code>getChangingConfigurations</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.graphics.BitmapFactory.Options.html b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.BitmapFactory.Options.html
new file mode 100644
index 0000000..2cf7214
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.BitmapFactory.Options.html
@@ -0,0 +1,133 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.BitmapFactory.Options
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/BitmapFactory.Options.html" target="_top"><font size="+2"><code>BitmapFactory.Options</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.graphics.BitmapFactory.Options.inInputShareable"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/graphics/BitmapFactory.Options.html#inInputShareable" target="_top"><code>inInputShareable</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.BitmapFactory.Options.inPurgeable"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/graphics/BitmapFactory.Options.html#inPurgeable" target="_top"><code>inPurgeable</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.graphics.Canvas.html b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.Canvas.html
new file mode 100644
index 0000000..d7df89d
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.Canvas.html
@@ -0,0 +1,157 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Canvas
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/Canvas.html" target="_top"><font size="+2"><code>Canvas</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.Canvas.drawArc_added(float, float, float, float, float, float, boolean, android.graphics.Paint)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/Canvas.html#drawArc(float, float, float, float, float, float, boolean, android.graphics.Paint)" target="_top"><code>drawArc</code></A>(<code>float,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> boolean<nobr>,</nobr> Paint<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Canvas.drawOval_added(float, float, float, float, android.graphics.Paint)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/Canvas.html#drawOval(float, float, float, float, android.graphics.Paint)" target="_top"><code>drawOval</code></A>(<code>float,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> Paint<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.graphics.Canvas.clipRegion_changed(android.graphics.Region)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/graphics/Canvas.html#clipRegion(android.graphics.Region)" target="_top"><code>clipRegion</code></A>(<code>Region</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Canvas.clipRegion_changed(android.graphics.Region, android.graphics.Region.Op)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/graphics/Canvas.html#clipRegion(android.graphics.Region, android.graphics.Region.Op)" target="_top"><code>clipRegion</code></A>(<code>Region,</nobr> Op<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.graphics.ColorMatrixColorFilter.html b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.ColorMatrixColorFilter.html
new file mode 100644
index 0000000..e25839a
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.ColorMatrixColorFilter.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ColorMatrixColorFilter
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ColorMatrixColorFilter.html" target="_top"><font size="+2"><code>ColorMatrixColorFilter</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.ColorMatrixColorFilter.getColorMatrix_removed()"></A>
+  <nobr><code>ColorMatrix</code>&nbsp;getColorMatrix()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.ColorMatrixColorFilter.setColorMatrix_removed(android.graphics.ColorMatrix)"></A>
+  <nobr><code>void</code>&nbsp;setColorMatrix(<code>ColorMatrix</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.ColorMatrixColorFilter.setColorMatrix_removed(float[])"></A>
+  <nobr><code>void</code>&nbsp;setColorMatrix(<code>float[]</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.graphics.ImageFormat.html b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.ImageFormat.html
new file mode 100644
index 0000000..990322d
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.ImageFormat.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ImageFormat
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ImageFormat.html" target="_top"><font size="+2"><code>ImageFormat</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.ImageFormat.RAW10"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/graphics/ImageFormat.html#RAW10" target="_top"><code>RAW10</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.graphics.LightingColorFilter.html b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.LightingColorFilter.html
new file mode 100644
index 0000000..ead9a9a
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.LightingColorFilter.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.LightingColorFilter
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/LightingColorFilter.html" target="_top"><font size="+2"><code>LightingColorFilter</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.LightingColorFilter.getColorAdd_removed()"></A>
+  <nobr><code>int</code>&nbsp;getColorAdd()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.LightingColorFilter.getColorMultiply_removed()"></A>
+  <nobr><code>int</code>&nbsp;getColorMultiply()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.LightingColorFilter.setColorAdd_removed(int)"></A>
+  <nobr><code>void</code>&nbsp;setColorAdd(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.LightingColorFilter.setColorMultiply_removed(int)"></A>
+  <nobr><code>void</code>&nbsp;setColorMultiply(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.graphics.Outline.html b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.Outline.html
new file mode 100644
index 0000000..836f436
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.Outline.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Outline
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/Outline.html" target="_top"><font size="+2"><code>Outline</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.Outline.getAlpha_added()"></A>
+  <nobr><code>float</code>&nbsp;<A HREF="../../../../reference/android/graphics/Outline.html#getAlpha()" target="_top"><code>getAlpha</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Outline.setAlpha_added(float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/Outline.html#setAlpha(float)" target="_top"><code>setAlpha</code></A>(<code>float</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.graphics.Paint.html b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.Paint.html
new file mode 100644
index 0000000..ffee2df
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.Paint.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Paint
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/Paint.html" target="_top"><font size="+2"><code>Paint</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.Paint.getFontFeatureSettings_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/graphics/Paint.html#getFontFeatureSettings()" target="_top"><code>getFontFeatureSettings</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Paint.getLetterSpacing_added()"></A>
+  <nobr><code>float</code>&nbsp;<A HREF="../../../../reference/android/graphics/Paint.html#getLetterSpacing()" target="_top"><code>getLetterSpacing</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Paint.setFontFeatureSettings_added(java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/Paint.html#setFontFeatureSettings(java.lang.String)" target="_top"><code>setFontFeatureSettings</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Paint.setLetterSpacing_added(float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/Paint.html#setLetterSpacing(float)" target="_top"><code>setLetterSpacing</code></A>(<code>float</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.graphics.Path.html b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.Path.html
new file mode 100644
index 0000000..40fe648
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.Path.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Path
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/Path.html" target="_top"><font size="+2"><code>Path</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.Path.addArc_added(float, float, float, float, float, float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/Path.html#addArc(float, float, float, float, float, float)" target="_top"><code>addArc</code></A>(<code>float,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Path.addRoundRect_added(float, float, float, float, float, float, android.graphics.Path.Direction)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/Path.html#addRoundRect(float, float, float, float, float, float, android.graphics.Path.Direction)" target="_top"><code>addRoundRect</code></A>(<code>float,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> Direction<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Path.addRoundRect_added(float, float, float, float, float[], android.graphics.Path.Direction)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/Path.html#addRoundRect(float, float, float, float, float[], android.graphics.Path.Direction)" target="_top"><code>addRoundRect</code></A>(<code>float,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float[]<nobr>,</nobr> Direction<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.Path.arcTo_added(float, float, float, float, float, float, boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/Path.html#arcTo(float, float, float, float, float, float, boolean)" target="_top"><code>arcTo</code></A>(<code>float,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.graphics.PorterDuffColorFilter.html b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.PorterDuffColorFilter.html
new file mode 100644
index 0000000..6bd51e4
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.PorterDuffColorFilter.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.PorterDuffColorFilter
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/PorterDuffColorFilter.html" target="_top"><font size="+2"><code>PorterDuffColorFilter</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.PorterDuffColorFilter.getColor_removed()"></A>
+  <nobr><code>int</code>&nbsp;getColor()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.PorterDuffColorFilter.getMode_removed()"></A>
+  <nobr><code>Mode</code>&nbsp;getMode()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.PorterDuffColorFilter.setColor_removed(int)"></A>
+  <nobr><code>void</code>&nbsp;setColor(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.PorterDuffColorFilter.setMode_removed(android.graphics.PorterDuff.Mode)"></A>
+  <nobr><code>void</code>&nbsp;setMode(<code>Mode</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.graphics.drawable.AnimatedStateListDrawable.html b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.drawable.AnimatedStateListDrawable.html
new file mode 100644
index 0000000..1a85a3a
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.drawable.AnimatedStateListDrawable.html
@@ -0,0 +1,125 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AnimatedStateListDrawable
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/AnimatedStateListDrawable.html" target="_top"><font size="+2"><code>AnimatedStateListDrawable</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.graphics.drawable.AnimatedStateListDrawable.addTransition_changed(int, int, T, boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/AnimatedStateListDrawable.html#addTransition(int, int, T, boolean)" target="_top"><code>addTransition</code></A>(<code>int,</nobr> int<nobr>,</nobr> T<nobr>,</nobr> boolean<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in signature from (<code>int, int, AnimationDrawable, boolean</code>) to (<code>int, int, T, boolean</code>).<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.graphics.drawable.Drawable.html b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.drawable.Drawable.html
new file mode 100644
index 0000000..73f179c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.drawable.Drawable.html
@@ -0,0 +1,157 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.setTintList_added(android.content.res.ColorStateList)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/Drawable.html#setTintList(android.content.res.ColorStateList)" target="_top"><code>setTintList</code></A>(<code>ColorStateList</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.Drawable.setTintMode_added(android.graphics.PorterDuff.Mode)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/Drawable.html#setTintMode(android.graphics.PorterDuff.Mode)" target="_top"><code>setTintMode</code></A>(<code>Mode</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.graphics.drawable.Drawable.getOutline_changed(android.graphics.Outline)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/Drawable.html#getOutline(android.graphics.Outline)" target="_top"><code>getOutline</code></A>(<code>Outline</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in return type from <code>boolean</code> to <code>void</code>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.Drawable.setTint_changed(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/Drawable.html#setTint(int)" target="_top"><code>setTint</code></A>(<code>int</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in signature from (<code>ColorStateList, Mode</code>) to <code>int</code>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.graphics.drawable.RippleDrawable.html b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.drawable.RippleDrawable.html
new file mode 100644
index 0000000..27b1664
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.drawable.RippleDrawable.html
@@ -0,0 +1,125 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.RippleDrawable
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/RippleDrawable.html" target="_top"><font size="+2"><code>RippleDrawable</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.RippleDrawable.ctor_changed(android.content.res.ColorStateList, android.graphics.drawable.Drawable, android.graphics.drawable.Drawable)"></A>
+  <nobr><A HREF="../../../../reference/android/graphics/drawable/RippleDrawable.html#RippleDrawable(android.content.res.ColorStateList, android.graphics.drawable.Drawable, android.graphics.drawable.Drawable)" target="_top"><code>RippleDrawable</code></A>(<code>ColorStateList,</nobr> Drawable<nobr>,</nobr> Drawable<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from(<code>Drawable, Drawable</code>) to (<code>ColorStateList, Drawable, Drawable</code>).<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.graphics.drawable.shapes.Shape.html b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.drawable.shapes.Shape.html
new file mode 100644
index 0000000..e4eddab
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.graphics.drawable.shapes.Shape.html
@@ -0,0 +1,125 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.shapes.Shape
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.shapes.<A HREF="../../../../reference/android/graphics/drawable/shapes/Shape.html" target="_top"><font size="+2"><code>Shape</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.graphics.drawable.shapes.Shape.getOutline_changed(android.graphics.Outline)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/shapes/Shape.html#getOutline(android.graphics.Outline)" target="_top"><code>getOutline</code></A>(<code>Outline</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in return type from <code>boolean</code> to <code>void</code>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.Camera.Area.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.Area.html
new file mode 100644
index 0000000..d3c9862
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.Area.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Area
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.Area.html" target="_top"><font size="+2"><code>Camera.Area</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.Camera.AutoFocusCallback.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.AutoFocusCallback.html
new file mode 100644
index 0000000..79ba667
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.AutoFocusCallback.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AutoFocusCallback
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.hardware.<A HREF="../../../../reference/android/hardware/Camera.AutoFocusCallback.html" target="_top"><font size="+2"><code>Camera.AutoFocusCallback</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.Camera.AutoFocusMoveCallback.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.AutoFocusMoveCallback.html
new file mode 100644
index 0000000..6697884
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.AutoFocusMoveCallback.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AutoFocusMoveCallback
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.hardware.<A HREF="../../../../reference/android/hardware/Camera.AutoFocusMoveCallback.html" target="_top"><font size="+2"><code>Camera.AutoFocusMoveCallback</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.Camera.CameraInfo.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.CameraInfo.html
new file mode 100644
index 0000000..c8cfd99
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.CameraInfo.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.CameraInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.CameraInfo.html" target="_top"><font size="+2"><code>Camera.CameraInfo</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.Camera.ErrorCallback.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.ErrorCallback.html
new file mode 100644
index 0000000..3df6112
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.ErrorCallback.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ErrorCallback
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.hardware.<A HREF="../../../../reference/android/hardware/Camera.ErrorCallback.html" target="_top"><font size="+2"><code>Camera.ErrorCallback</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.Camera.Face.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.Face.html
new file mode 100644
index 0000000..d2be2d8
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.Face.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Face
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.Face.html" target="_top"><font size="+2"><code>Camera.Face</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.Camera.FaceDetectionListener.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.FaceDetectionListener.html
new file mode 100644
index 0000000..09ab4ba
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.FaceDetectionListener.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.FaceDetectionListener
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.hardware.<A HREF="../../../../reference/android/hardware/Camera.FaceDetectionListener.html" target="_top"><font size="+2"><code>Camera.FaceDetectionListener</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.Camera.OnZoomChangeListener.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.OnZoomChangeListener.html
new file mode 100644
index 0000000..80bf1bc9
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.OnZoomChangeListener.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.OnZoomChangeListener
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.hardware.<A HREF="../../../../reference/android/hardware/Camera.OnZoomChangeListener.html" target="_top"><font size="+2"><code>Camera.OnZoomChangeListener</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.Camera.Parameters.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.Parameters.html
new file mode 100644
index 0000000..d2ad7f0
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.Parameters.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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>
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.Camera.PictureCallback.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.PictureCallback.html
new file mode 100644
index 0000000..c698893
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.PictureCallback.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.PictureCallback
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.hardware.<A HREF="../../../../reference/android/hardware/Camera.PictureCallback.html" target="_top"><font size="+2"><code>Camera.PictureCallback</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.Camera.PreviewCallback.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.PreviewCallback.html
new file mode 100644
index 0000000..38ca03f
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.PreviewCallback.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.PreviewCallback
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.hardware.<A HREF="../../../../reference/android/hardware/Camera.PreviewCallback.html" target="_top"><font size="+2"><code>Camera.PreviewCallback</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.Camera.ShutterCallback.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.ShutterCallback.html
new file mode 100644
index 0000000..c3a6884
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.ShutterCallback.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ShutterCallback
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.hardware.<A HREF="../../../../reference/android/hardware/Camera.ShutterCallback.html" target="_top"><font size="+2"><code>Camera.ShutterCallback</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.Camera.Size.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.Size.html
new file mode 100644
index 0000000..6c4faf4
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.Size.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Size
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.Size.html" target="_top"><font size="+2"><code>Camera.Size</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.Camera.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.html
new file mode 100644
index 0000000..01a79e7
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Camera.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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>
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.Sensor.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Sensor.html
new file mode 100644
index 0000000..46339c0
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.Sensor.html
@@ -0,0 +1,172 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Sensor
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/Sensor.html" target="_top"><font size="+2"><code>Sensor</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.Sensor.getMaxDelay_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/Sensor.html#getMaxDelay()" target="_top"><code>getMaxDelay</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.Sensor.getReportingMode_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/Sensor.html#getReportingMode()" target="_top"><code>getReportingMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.Sensor.isWakeUpSensor_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/hardware/Sensor.html#isWakeUpSensor()" target="_top"><code>isWakeUpSensor</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Sensor.REPORTING_MODE_CONTINUOUS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/Sensor.html#REPORTING_MODE_CONTINUOUS" target="_top"><code>REPORTING_MODE_CONTINUOUS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.Sensor.REPORTING_MODE_ONE_SHOT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/Sensor.html#REPORTING_MODE_ONE_SHOT" target="_top"><code>REPORTING_MODE_ONE_SHOT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.Sensor.REPORTING_MODE_ON_CHANGE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/Sensor.html#REPORTING_MODE_ON_CHANGE" target="_top"><code>REPORTING_MODE_ON_CHANGE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.Sensor.REPORTING_MODE_SPECIAL_TRIGGER"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/Sensor.html#REPORTING_MODE_SPECIAL_TRIGGER" target="_top"><code>REPORTING_MODE_SPECIAL_TRIGGER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.SensorManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.SensorManager.html
new file mode 100644
index 0000000..97d9055
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.SensorManager.html
@@ -0,0 +1,137 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.SensorManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/SensorManager.html" target="_top"><font size="+2"><code>SensorManager</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.SensorManager.getDefaultSensor_added(int, boolean)"></A>
+  <nobr><code>Sensor</code>&nbsp;<A HREF="../../../../reference/android/hardware/SensorManager.html#getDefaultSensor(int, boolean)" target="_top"><code>getDefaultSensor</code></A>(<code>int,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.SensorManager.SENSOR_STATUS_NO_CONTACT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/SensorManager.html#SENSOR_STATUS_NO_CONTACT" target="_top"><code>SENSOR_STATUS_NO_CONTACT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.camera2.CameraCaptureSession.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.camera2.CameraCaptureSession.html
new file mode 100644
index 0000000..ba592a9
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.camera2.CameraCaptureSession.html
@@ -0,0 +1,155 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.camera2.CameraCaptureSession
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.camera2.<A HREF="../../../../reference/android/hardware/camera2/CameraCaptureSession.html" target="_top"><font size="+2"><code>CameraCaptureSession</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.hardware.camera2.CameraCaptureSession.capture_changed(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CameraCaptureSession.html#capture(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)" target="_top"><code>capture</code></A>(<code>CaptureRequest,</nobr> CaptureCallback<nobr>,</nobr> Handler<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in signature from (<code>CaptureRequest, CaptureListener, Handler</code>) to (<code>CaptureRequest, CaptureCallback, Handler</code>).<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CameraCaptureSession.captureBurst_changed(java.util.List<android.hardware.camera2.CaptureRequest>, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CameraCaptureSession.html#captureBurst(java.util.List<android.hardware.camera2.CaptureRequest>, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)" target="_top"><code>captureBurst</code></A>(<code>List&lt;CaptureRequest&gt;,</nobr> CaptureCallback<nobr>,</nobr> Handler<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in signature from (<code>List&lt;CaptureRequest&gt;, CaptureListener, Handler</code>) to (<code>List&lt;CaptureRequest&gt;, CaptureCallback, Handler</code>).<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CameraCaptureSession.setRepeatingBurst_changed(java.util.List<android.hardware.camera2.CaptureRequest>, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CameraCaptureSession.html#setRepeatingBurst(java.util.List<android.hardware.camera2.CaptureRequest>, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)" target="_top"><code>setRepeatingBurst</code></A>(<code>List&lt;CaptureRequest&gt;,</nobr> CaptureCallback<nobr>,</nobr> Handler<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in signature from (<code>List&lt;CaptureRequest&gt;, CaptureListener, Handler</code>) to (<code>List&lt;CaptureRequest&gt;, CaptureCallback, Handler</code>).<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CameraCaptureSession.setRepeatingRequest_changed(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CameraCaptureSession.html#setRepeatingRequest(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)" target="_top"><code>setRepeatingRequest</code></A>(<code>CaptureRequest,</nobr> CaptureCallback<nobr>,</nobr> Handler<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in signature from (<code>CaptureRequest, CaptureListener, Handler</code>) to (<code>CaptureRequest, CaptureCallback, Handler</code>).<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.camera2.CameraCharacteristics.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.camera2.CameraCharacteristics.html
new file mode 100644
index 0000000..93e9dec
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.camera2.CameraCharacteristics.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.camera2.CameraCharacteristics
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.camera2.<A HREF="../../../../reference/android/hardware/camera2/CameraCharacteristics.html" target="_top"><font size="+2"><code>CameraCharacteristics</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.hardware.camera2.CameraCharacteristics.COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES"></A>
+  <nobr><code>Key</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CameraCharacteristics.html#COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES" target="_top"><code>COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CameraCharacteristics.SENSOR_INFO_TIMESTAMP_SOURCE"></A>
+  <nobr><code>Key</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CameraCharacteristics.html#SENSOR_INFO_TIMESTAMP_SOURCE" target="_top"><code>SENSOR_INFO_TIMESTAMP_SOURCE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.camera2.CameraDevice.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.camera2.CameraDevice.html
new file mode 100644
index 0000000..69f2581
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.camera2.CameraDevice.html
@@ -0,0 +1,182 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.camera2.CameraDevice
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.camera2.<A HREF="../../../../reference/android/hardware/camera2/CameraDevice.html" target="_top"><font size="+2"><code>CameraDevice</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CameraDevice.capture_removed(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraDevice.CaptureListener, android.os.Handler)"></A>
+  <nobr><code>int</code>&nbsp;capture(<code>CaptureRequest,</nobr> CaptureListener<nobr>,</nobr> Handler<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CameraDevice.captureBurst_removed(java.util.List<android.hardware.camera2.CaptureRequest>, android.hardware.camera2.CameraDevice.CaptureListener, android.os.Handler)"></A>
+  <nobr><code>int</code>&nbsp;captureBurst(<code>List&lt;CaptureRequest&gt;,</nobr> CaptureListener<nobr>,</nobr> Handler<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CameraDevice.configureOutputs_removed(java.util.List<android.view.Surface>)"></A>
+  <nobr><code>void</code>&nbsp;configureOutputs(<code>List&lt;Surface&gt;</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CameraDevice.flush_removed()"></A>
+  <nobr><code>void</code>&nbsp;flush()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CameraDevice.setRepeatingBurst_removed(java.util.List<android.hardware.camera2.CaptureRequest>, android.hardware.camera2.CameraDevice.CaptureListener, android.os.Handler)"></A>
+  <nobr><code>int</code>&nbsp;setRepeatingBurst(<code>List&lt;CaptureRequest&gt;,</nobr> CaptureListener<nobr>,</nobr> Handler<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CameraDevice.setRepeatingRequest_removed(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraDevice.CaptureListener, android.os.Handler)"></A>
+  <nobr><code>int</code>&nbsp;setRepeatingRequest(<code>CaptureRequest,</nobr> CaptureListener<nobr>,</nobr> Handler<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CameraDevice.stopRepeating_removed()"></A>
+  <nobr><code>void</code>&nbsp;stopRepeating()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.hardware.camera2.CameraDevice.createCaptureSession_changed(java.util.List<android.view.Surface>, android.hardware.camera2.CameraCaptureSession.StateCallback, android.os.Handler)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CameraDevice.html#createCaptureSession(java.util.List<android.view.Surface>, android.hardware.camera2.CameraCaptureSession.StateCallback, android.os.Handler)" target="_top"><code>createCaptureSession</code></A>(<code>List&lt;Surface&gt;,</nobr> StateCallback<nobr>,</nobr> Handler<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in signature from (<code>List&lt;Surface&gt;, StateListener, Handler</code>) to (<code>List&lt;Surface&gt;, StateCallback, Handler</code>).<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.camera2.CameraManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.camera2.CameraManager.html
new file mode 100644
index 0000000..d3d0031
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.camera2.CameraManager.html
@@ -0,0 +1,169 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.camera2.CameraManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.camera2.<A HREF="../../../../reference/android/hardware/camera2/CameraManager.html" target="_top"><font size="+2"><code>CameraManager</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CameraManager.addAvailabilityListener_removed(android.hardware.camera2.CameraManager.AvailabilityListener, android.os.Handler)"></A>
+  <nobr><code>void</code>&nbsp;addAvailabilityListener(<code>AvailabilityListener,</nobr> Handler<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CameraManager.removeAvailabilityListener_removed(android.hardware.camera2.CameraManager.AvailabilityListener)"></A>
+  <nobr><code>void</code>&nbsp;removeAvailabilityListener(<code>AvailabilityListener</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.camera2.CameraManager.registerAvailabilityCallback_added(android.hardware.camera2.CameraManager.AvailabilityCallback, android.os.Handler)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CameraManager.html#registerAvailabilityCallback(android.hardware.camera2.CameraManager.AvailabilityCallback, android.os.Handler)" target="_top"><code>registerAvailabilityCallback</code></A>(<code>AvailabilityCallback,</nobr> Handler<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CameraManager.unregisterAvailabilityCallback_added(android.hardware.camera2.CameraManager.AvailabilityCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CameraManager.html#unregisterAvailabilityCallback(android.hardware.camera2.CameraManager.AvailabilityCallback)" target="_top"><code>unregisterAvailabilityCallback</code></A>(<code>AvailabilityCallback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.hardware.camera2.CameraManager.openCamera_changed(java.lang.String, android.hardware.camera2.CameraDevice.StateCallback, android.os.Handler)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CameraManager.html#openCamera(java.lang.String, android.hardware.camera2.CameraDevice.StateCallback, android.os.Handler)" target="_top"><code>openCamera</code></A>(<code>String,</nobr> StateCallback<nobr>,</nobr> Handler<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in signature from (<code>String, StateListener, Handler</code>) to (<code>String, StateCallback, Handler</code>).<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.camera2.CameraMetadata.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.camera2.CameraMetadata.html
new file mode 100644
index 0000000..b4820f9
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.camera2.CameraMetadata.html
@@ -0,0 +1,219 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.camera2.CameraMetadata
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.camera2.<A HREF="../../../../reference/android/hardware/camera2/CameraMetadata.html" target="_top"><font size="+2"><code>CameraMetadata</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_DNG"></A>
+  <code>int</code>&nbsp;REQUEST_AVAILABLE_CAPABILITIES_DNG
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.camera2.CameraMetadata.COLOR_CORRECTION_ABERRATION_MODE_FAST"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CameraMetadata.html#COLOR_CORRECTION_ABERRATION_MODE_FAST" target="_top"><code>COLOR_CORRECTION_ABERRATION_MODE_FAST</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CameraMetadata.COLOR_CORRECTION_ABERRATION_MODE_HIGH_QUALITY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CameraMetadata.html#COLOR_CORRECTION_ABERRATION_MODE_HIGH_QUALITY" target="_top"><code>COLOR_CORRECTION_ABERRATION_MODE_HIGH_QUALITY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CameraMetadata.COLOR_CORRECTION_ABERRATION_MODE_OFF"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CameraMetadata.html#COLOR_CORRECTION_ABERRATION_MODE_OFF" target="_top"><code>COLOR_CORRECTION_ABERRATION_MODE_OFF</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CameraMetadata.CONTROL_SCENE_MODE_HIGH_SPEED_VIDEO"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CameraMetadata.html#CONTROL_SCENE_MODE_HIGH_SPEED_VIDEO" target="_top"><code>CONTROL_SCENE_MODE_HIGH_SPEED_VIDEO</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CameraMetadata.INFO_SUPPORTED_HARDWARE_LEVEL_LEGACY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CameraMetadata.html#INFO_SUPPORTED_HARDWARE_LEVEL_LEGACY" target="_top"><code>INFO_SUPPORTED_HARDWARE_LEVEL_LEGACY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_BACKWARD_COMPATIBLE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CameraMetadata.html#REQUEST_AVAILABLE_CAPABILITIES_BACKWARD_COMPATIBLE" target="_top"><code>REQUEST_AVAILABLE_CAPABILITIES_BACKWARD_COMPATIBLE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_RAW"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CameraMetadata.html#REQUEST_AVAILABLE_CAPABILITIES_RAW" target="_top"><code>REQUEST_AVAILABLE_CAPABILITIES_RAW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CameraMetadata.SENSOR_INFO_TIMESTAMP_SOURCE_REALTIME"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CameraMetadata.html#SENSOR_INFO_TIMESTAMP_SOURCE_REALTIME" target="_top"><code>SENSOR_INFO_TIMESTAMP_SOURCE_REALTIME</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CameraMetadata.SENSOR_INFO_TIMESTAMP_SOURCE_UNKNOWN"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CameraMetadata.html#SENSOR_INFO_TIMESTAMP_SOURCE_UNKNOWN" target="_top"><code>SENSOR_INFO_TIMESTAMP_SOURCE_UNKNOWN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_MANUAL_POST_PROCESSING"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CameraMetadata.html#REQUEST_AVAILABLE_CAPABILITIES_MANUAL_POST_PROCESSING" target="_top"><code>REQUEST_AVAILABLE_CAPABILITIES_MANUAL_POST_PROCESSING</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 3 to 2.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_MANUAL_SENSOR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CameraMetadata.html#REQUEST_AVAILABLE_CAPABILITIES_MANUAL_SENSOR" target="_top"><code>REQUEST_AVAILABLE_CAPABILITIES_MANUAL_SENSOR</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 2 to 1.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.camera2.CaptureFailure.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.camera2.CaptureFailure.html
new file mode 100644
index 0000000..298704d
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.camera2.CaptureFailure.html
@@ -0,0 +1,125 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.camera2.CaptureFailure
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.camera2.<A HREF="../../../../reference/android/hardware/camera2/CaptureFailure.html" target="_top"><font size="+2"><code>CaptureFailure</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.hardware.camera2.CaptureFailure.getFrameNumber_changed()"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CaptureFailure.html#getFrameNumber()" target="_top"><code>getFrameNumber</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in return type from <code>int</code> to <code>long</code>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.camera2.CaptureRequest.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.camera2.CaptureRequest.html
new file mode 100644
index 0000000..355a00b
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.camera2.CaptureRequest.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.camera2.CaptureRequest
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.camera2.<A HREF="../../../../reference/android/hardware/camera2/CaptureRequest.html" target="_top"><font size="+2"><code>CaptureRequest</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.hardware.camera2.CaptureRequest.COLOR_CORRECTION_ABERRATION_MODE"></A>
+  <nobr><code>Key</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CaptureRequest.html#COLOR_CORRECTION_ABERRATION_MODE" target="_top"><code>COLOR_CORRECTION_ABERRATION_MODE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.camera2.CaptureResult.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.camera2.CaptureResult.html
new file mode 100644
index 0000000..e167dd6
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.camera2.CaptureResult.html
@@ -0,0 +1,169 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.camera2.CaptureResult
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.camera2.<A HREF="../../../../reference/android/hardware/camera2/CaptureResult.html" target="_top"><font size="+2"><code>CaptureResult</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.hardware.camera2.CaptureResult.getFrameNumber_changed()"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CaptureResult.html#getFrameNumber()" target="_top"><code>getFrameNumber</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in return type from <code>int</code> to <code>long</code>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CaptureResult.REQUEST_FRAME_COUNT"></A>
+  <code>Key</code>&nbsp;REQUEST_FRAME_COUNT
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.camera2.CaptureResult.COLOR_CORRECTION_ABERRATION_MODE"></A>
+  <nobr><code>Key</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CaptureResult.html#COLOR_CORRECTION_ABERRATION_MODE" target="_top"><code>COLOR_CORRECTION_ABERRATION_MODE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CaptureResult.SENSOR_NOISE_PROFILE"></A>
+  <nobr><code>Key</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CaptureResult.html#SENSOR_NOISE_PROFILE" target="_top"><code>SENSOR_NOISE_PROFILE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.CaptureResult.SENSOR_ROLLING_SHUTTER_SKEW"></A>
+  <nobr><code>Key</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/CaptureResult.html#SENSOR_ROLLING_SHUTTER_SKEW" target="_top"><code>SENSOR_ROLLING_SHUTTER_SKEW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.camera2.DngCreator.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.camera2.DngCreator.html
new file mode 100644
index 0000000..ad019ea
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.camera2.DngCreator.html
@@ -0,0 +1,179 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.camera2.DngCreator
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.camera2.<A HREF="../../../../reference/android/hardware/camera2/DngCreator.html" target="_top"><font size="+2"><code>DngCreator</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.camera2.DngCreator.setDescription_added(java.lang.String)"></A>
+  <nobr><code>DngCreator</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/DngCreator.html#setDescription(java.lang.String)" target="_top"><code>setDescription</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.DngCreator.setLocation_added(android.location.Location)"></A>
+  <nobr><code>DngCreator</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/DngCreator.html#setLocation(android.location.Location)" target="_top"><code>setLocation</code></A>(<code>Location</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.DngCreator.setOrientation_added(int)"></A>
+  <nobr><code>DngCreator</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/DngCreator.html#setOrientation(int)" target="_top"><code>setOrientation</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.DngCreator.setThumbnail_added(android.graphics.Bitmap)"></A>
+  <nobr><code>DngCreator</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/DngCreator.html#setThumbnail(android.graphics.Bitmap)" target="_top"><code>setThumbnail</code></A>(<code>Bitmap</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.DngCreator.setThumbnail_added(android.media.Image)"></A>
+  <nobr><code>DngCreator</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/DngCreator.html#setThumbnail(android.media.Image)" target="_top"><code>setThumbnail</code></A>(<code>Image</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.DngCreator.writeByteBuffer_added(java.io.OutputStream, android.util.Size, java.nio.ByteBuffer, long)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/DngCreator.html#writeByteBuffer(java.io.OutputStream, android.util.Size, java.nio.ByteBuffer, long)" target="_top"><code>writeByteBuffer</code></A>(<code>OutputStream,</nobr> Size<nobr>,</nobr> ByteBuffer<nobr>,</nobr> long<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.DngCreator.writeInputStream_added(java.io.OutputStream, android.util.Size, java.io.InputStream, long)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/DngCreator.html#writeInputStream(java.io.OutputStream, android.util.Size, java.io.InputStream, long)" target="_top"><code>writeInputStream</code></A>(<code>OutputStream,</nobr> Size<nobr>,</nobr> InputStream<nobr>,</nobr> long<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.camera2.DngCreator.MAX_THUMBNAIL_DIMENSION"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/DngCreator.html#MAX_THUMBNAIL_DIMENSION" target="_top"><code>MAX_THUMBNAIL_DIMENSION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.camera2.params.StreamConfigurationMap.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.camera2.params.StreamConfigurationMap.html
new file mode 100644
index 0000000..230e5be
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.camera2.params.StreamConfigurationMap.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.camera2.params.StreamConfigurationMap
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.camera2.params.<A HREF="../../../../reference/android/hardware/camera2/params/StreamConfigurationMap.html" target="_top"><font size="+2"><code>StreamConfigurationMap</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.camera2.params.StreamConfigurationMap.getHighSpeedVideoFpsRanges_added()"></A>
+  <nobr><code>Range&lt;Integer&gt;</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/params/StreamConfigurationMap.html#getHighSpeedVideoFpsRanges()" target="_top"><code>getHighSpeedVideoFpsRanges</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.params.StreamConfigurationMap.getHighSpeedVideoFpsRangesFor_added(android.util.Size)"></A>
+  <nobr><code>Range&lt;Integer&gt;</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/params/StreamConfigurationMap.html#getHighSpeedVideoFpsRangesFor(android.util.Size)" target="_top"><code>getHighSpeedVideoFpsRangesFor</code></A>(<code>Size</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.params.StreamConfigurationMap.getHighSpeedVideoSizes_added()"></A>
+  <nobr><code>Size[]</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/params/StreamConfigurationMap.html#getHighSpeedVideoSizes()" target="_top"><code>getHighSpeedVideoSizes</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.params.StreamConfigurationMap.getHighSpeedVideoSizesFor_added(android.util.Range<java.lang.Integer>)"></A>
+  <nobr><code>Size[]</code>&nbsp;<A HREF="../../../../reference/android/hardware/camera2/params/StreamConfigurationMap.html#getHighSpeedVideoSizesFor(android.util.Range<java.lang.Integer>)" target="_top"><code>getHighSpeedVideoSizesFor</code></A>(<code>Range&lt;Integer&gt;</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.display.DisplayManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.display.DisplayManager.html
new file mode 100644
index 0000000..9f6be4a
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.display.DisplayManager.html
@@ -0,0 +1,137 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.display.DisplayManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.display.<A HREF="../../../../reference/android/hardware/display/DisplayManager.html" target="_top"><font size="+2"><code>DisplayManager</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.display.DisplayManager.createVirtualDisplay_added(java.lang.String, int, int, int, android.view.Surface, int, android.hardware.display.VirtualDisplay.Callback, android.os.Handler)"></A>
+  <nobr><code>VirtualDisplay</code>&nbsp;<A HREF="../../../../reference/android/hardware/display/DisplayManager.html#createVirtualDisplay(java.lang.String, int, int, int, android.view.Surface, int, android.hardware.display.VirtualDisplay.Callback, android.os.Handler)" target="_top"><code>createVirtualDisplay</code></A>(<code>String,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> Surface<nobr>,</nobr> int<nobr>,</nobr> Callback<nobr>,</nobr> Handler<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/hardware/display/DisplayManager.html#VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR" target="_top"><code>VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.hardware.display.VirtualDisplay.html b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.display.VirtualDisplay.html
new file mode 100644
index 0000000..c7be5a8
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.hardware.display.VirtualDisplay.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.display.VirtualDisplay
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.display.<A HREF="../../../../reference/android/hardware/display/VirtualDisplay.html" target="_top"><font size="+2"><code>VirtualDisplay</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.display.VirtualDisplay.resize_added(int, int, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/hardware/display/VirtualDisplay.html#resize(int, int, int)" target="_top"><code>resize</code></A>(<code>int,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.inputmethodservice.InputMethodService.html b/docs/html/sdk/api_diff/preview-21/changes/android.inputmethodservice.InputMethodService.html
new file mode 100644
index 0000000..270114d
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.inputmethodservice.InputMethodService.html
@@ -0,0 +1,172 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.inputmethodservice.InputMethodService.setCursorAnchorMonitorMode_removed(int)"></A>
+  <nobr><code>void</code>&nbsp;setCursorAnchorMonitorMode(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.inputmethodservice.InputMethodService.enableHardwareAcceleration_changed()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/inputmethodservice/InputMethodService.html#enableHardwareAcceleration()" target="_top"><code>enableHardwareAcceleration</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.inputmethodservice.InputMethodService.onUpdateCursor_changed(android.graphics.Rect)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/inputmethodservice/InputMethodService.html#onUpdateCursor(android.graphics.Rect)" target="_top"><code>onUpdateCursor</code></A>(<code>Rect</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.inputmethodservice.InputMethodService.CURSOR_ANCHOR_MONITOR_MODE_CURSOR_RECT"></A>
+  <code>int</code>&nbsp;CURSOR_ANCHOR_MONITOR_MODE_CURSOR_RECT
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.inputmethodservice.InputMethodService.CURSOR_ANCHOR_MONITOR_MODE_NONE"></A>
+  <code>int</code>&nbsp;CURSOR_ANCHOR_MONITOR_MODE_NONE
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.location.SettingInjectorService.html b/docs/html/sdk/api_diff/preview-21/changes/android.location.SettingInjectorService.html
new file mode 100644
index 0000000..4392c359
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.location.SettingInjectorService.html
@@ -0,0 +1,125 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.SettingInjectorService
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/SettingInjectorService.html" target="_top"><font size="+2"><code>SettingInjectorService</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.location.SettingInjectorService.onGetSummary_changed()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/location/SettingInjectorService.html#onGetSummary()" target="_top"><code>onGetSummary</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed from non-abstract to abstract.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.AudioFormat.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.AudioFormat.html
new file mode 100644
index 0000000..3c7afa5
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.AudioFormat.html
@@ -0,0 +1,187 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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>
+<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.media.AudioFormat.ctor_removed()"></A>
+  <nobr>AudioFormat()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.AudioFormat.getChannelMask_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioFormat.html#getChannelMask()" target="_top"><code>getChannelMask</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioFormat.getEncoding_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioFormat.html#getEncoding()" target="_top"><code>getEncoding</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioFormat.getSampleRate_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioFormat.html#getSampleRate()" target="_top"><code>getSampleRate</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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_OUT_SIDE_LEFT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_OUT_SIDE_LEFT" target="_top"><code>CHANNEL_OUT_SIDE_LEFT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioFormat.CHANNEL_OUT_SIDE_RIGHT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_OUT_SIDE_RIGHT" target="_top"><code>CHANNEL_OUT_SIDE_RIGHT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioFormat.ENCODING_AC3"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioFormat.html#ENCODING_AC3" target="_top"><code>ENCODING_AC3</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioFormat.ENCODING_E_AC3"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioFormat.html#ENCODING_E_AC3" target="_top"><code>ENCODING_E_AC3</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.AudioManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.AudioManager.html
new file mode 100644
index 0000000..199e769
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.AudioManager.html
@@ -0,0 +1,281 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.generateAudioSessionId_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#generateAudioSessionId()" target="_top"><code>generateAudioSessionId</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.isVolumeFixed_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#isVolumeFixed()" target="_top"><code>isVolumeFixed</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.registerRemoteControlClient_changed(android.media.RemoteControlClient)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#registerRemoteControlClient(android.media.RemoteControlClient)" target="_top"><code>registerRemoteControlClient</code></A>(<code>RemoteControlClient</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.registerRemoteController_changed(android.media.RemoteController)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#registerRemoteController(android.media.RemoteController)" target="_top"><code>registerRemoteController</code></A>(<code>RemoteController</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.unregisterRemoteControlClient_changed(android.media.RemoteControlClient)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#unregisterRemoteControlClient(android.media.RemoteControlClient)" target="_top"><code>unregisterRemoteControlClient</code></A>(<code>RemoteControlClient</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.unregisterRemoteController_changed(android.media.RemoteController)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#unregisterRemoteController(android.media.RemoteController)" target="_top"><code>unregisterRemoteController</code></A>(<code>RemoteController</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.app.PendingIntent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#registerMediaButtonEventReceiver(android.app.PendingIntent)" target="_top"><code>registerMediaButtonEventReceiver</code></A>(<code>PendingIntent</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.content.ComponentName)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#registerMediaButtonEventReceiver(android.content.ComponentName)" target="_top"><code>registerMediaButtonEventReceiver</code></A>(<code>ComponentName</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.app.PendingIntent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#unregisterMediaButtonEventReceiver(android.app.PendingIntent)" target="_top"><code>unregisterMediaButtonEventReceiver</code></A>(<code>PendingIntent</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.content.ComponentName)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#unregisterMediaButtonEventReceiver(android.content.ComponentName)" target="_top"><code>unregisterMediaButtonEventReceiver</code></A>(<code>ComponentName</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.ACTION_HDMI_AUDIO_PLUG"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#ACTION_HDMI_AUDIO_PLUG" target="_top"><code>ACTION_HDMI_AUDIO_PLUG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.ACTION_HEADSET_PLUG"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#ACTION_HEADSET_PLUG" target="_top"><code>ACTION_HEADSET_PLUG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.AUDIO_SESSION_ID_GENERATE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#AUDIO_SESSION_ID_GENERATE" target="_top"><code>AUDIO_SESSION_ID_GENERATE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.ERROR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#ERROR" target="_top"><code>ERROR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.ERROR_DEAD_OBJECT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#ERROR_DEAD_OBJECT" target="_top"><code>ERROR_DEAD_OBJECT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.EXTRA_AUDIO_PLUG_STATE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#EXTRA_AUDIO_PLUG_STATE" target="_top"><code>EXTRA_AUDIO_PLUG_STATE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.EXTRA_ENCODINGS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#EXTRA_ENCODINGS" target="_top"><code>EXTRA_ENCODINGS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.AudioManager.EXTRA_MAX_CHANNEL_COUNT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/AudioManager.html#EXTRA_MAX_CHANNEL_COUNT" target="_top"><code>EXTRA_MAX_CHANNEL_COUNT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.AudioTrack.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.AudioTrack.html
new file mode 100644
index 0000000..33c356a
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.AudioTrack.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AudioTrack
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/AudioTrack.html" target="_top"><font size="+2"><code>AudioTrack</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.media.AudioTrack.ctor_added(android.media.AudioAttributes, android.media.AudioFormat, int, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/media/AudioTrack.html#AudioTrack(android.media.AudioAttributes, android.media.AudioFormat, int, int, int)" target="_top"><code>AudioTrack</code></A>(<code>AudioAttributes,</nobr> AudioFormat<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.CamcorderProfile.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.CamcorderProfile.html
new file mode 100644
index 0000000..2306eb9
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.CamcorderProfile.html
@@ -0,0 +1,171 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.CamcorderProfile
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/CamcorderProfile.html" target="_top"><font size="+2"><code>CamcorderProfile</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.CamcorderProfile.QUALITY_2160P"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/CamcorderProfile.html#QUALITY_2160P" target="_top"><code>QUALITY_2160P</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.CamcorderProfile.QUALITY_HIGH_SPEED_1080P"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/CamcorderProfile.html#QUALITY_HIGH_SPEED_1080P" target="_top"><code>QUALITY_HIGH_SPEED_1080P</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.CamcorderProfile.QUALITY_HIGH_SPEED_2160P"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/CamcorderProfile.html#QUALITY_HIGH_SPEED_2160P" target="_top"><code>QUALITY_HIGH_SPEED_2160P</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.CamcorderProfile.QUALITY_HIGH_SPEED_480P"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/CamcorderProfile.html#QUALITY_HIGH_SPEED_480P" target="_top"><code>QUALITY_HIGH_SPEED_480P</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.CamcorderProfile.QUALITY_HIGH_SPEED_720P"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/CamcorderProfile.html#QUALITY_HIGH_SPEED_720P" target="_top"><code>QUALITY_HIGH_SPEED_720P</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.CamcorderProfile.QUALITY_HIGH_SPEED_HIGH"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/CamcorderProfile.html#QUALITY_HIGH_SPEED_HIGH" target="_top"><code>QUALITY_HIGH_SPEED_HIGH</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.CamcorderProfile.QUALITY_HIGH_SPEED_LOW"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/CamcorderProfile.html#QUALITY_HIGH_SPEED_LOW" target="_top"><code>QUALITY_HIGH_SPEED_LOW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.CamcorderProfile.QUALITY_TIME_LAPSE_2160P"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/CamcorderProfile.html#QUALITY_TIME_LAPSE_2160P" target="_top"><code>QUALITY_TIME_LAPSE_2160P</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.Image.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.Image.html
new file mode 100644
index 0000000..7b8032e
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.Image.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Image
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/Image.html" target="_top"><font size="+2"><code>Image</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.Image.getCropRect_added()"></A>
+  <nobr><code>Rect</code>&nbsp;<A HREF="../../../../reference/android/media/Image.html#getCropRect()" target="_top"><code>getCropRect</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.Image.setCropRect_added(android.graphics.Rect)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/Image.html#setCropRect(android.graphics.Rect)" target="_top"><code>setCropRect</code></A>(<code>Rect</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.MediaCodec.CryptoException.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaCodec.CryptoException.html
new file mode 100644
index 0000000..0552bd4
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaCodec.CryptoException.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaCodec.CryptoException
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/MediaCodec.CryptoException.html" target="_top"><font size="+2"><code>MediaCodec.CryptoException</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.MediaCodec.CryptoException.ERROR_INSUFFICIENT_OUTPUT_PROTECTION"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.CryptoException.html#ERROR_INSUFFICIENT_OUTPUT_PROTECTION" target="_top"><code>ERROR_INSUFFICIENT_OUTPUT_PROTECTION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.MediaCodec.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaCodec.html
new file mode 100644
index 0000000..ddf44a7
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaCodec.html
@@ -0,0 +1,240 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaCodec
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/MediaCodec.html" target="_top"><font size="+2"><code>MediaCodec</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.MediaCodec.getInputBuffer_added(int)"></A>
+  <nobr><code>ByteBuffer</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#getInputBuffer(int)" target="_top"><code>getInputBuffer</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodec.getInputFormat_added()"></A>
+  <nobr><code>MediaFormat</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#getInputFormat()" target="_top"><code>getInputFormat</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodec.getInputImage_added(int)"></A>
+  <nobr><code>Image</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#getInputImage(int)" target="_top"><code>getInputImage</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodec.getOutputBuffer_added(int)"></A>
+  <nobr><code>ByteBuffer</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#getOutputBuffer(int)" target="_top"><code>getOutputBuffer</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodec.getOutputFormat_added(int)"></A>
+  <nobr><code>MediaFormat</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#getOutputFormat(int)" target="_top"><code>getOutputFormat</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodec.getOutputImage_added(int)"></A>
+  <nobr><code>Image</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#getOutputImage(int)" target="_top"><code>getOutputImage</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodec.reset_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#reset()" target="_top"><code>reset</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodec.setCallback_added(android.media.MediaCodec.Callback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#setCallback(android.media.MediaCodec.Callback)" target="_top"><code>setCallback</code></A>(<code>Callback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.MediaCodec.getInputBuffers_changed()"></A>
+  <nobr><code>ByteBuffer[]</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#getInputBuffers()" target="_top"><code>getInputBuffers</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodec.getOutputBuffers_changed()"></A>
+  <nobr><code>ByteBuffer[]</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#getOutputBuffers()" target="_top"><code>getOutputBuffers</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.MediaCodec.BUFFER_FLAG_KEY_FRAME"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#BUFFER_FLAG_KEY_FRAME" target="_top"><code>BUFFER_FLAG_KEY_FRAME</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.MediaCodec.BUFFER_FLAG_SYNC_FRAME"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#BUFFER_FLAG_SYNC_FRAME" target="_top"><code>BUFFER_FLAG_SYNC_FRAME</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodec.INFO_OUTPUT_BUFFERS_CHANGED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodec.html#INFO_OUTPUT_BUFFERS_CHANGED" target="_top"><code>INFO_OUTPUT_BUFFERS_CHANGED</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.MediaCodecInfo.CodecCapabilities.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaCodecInfo.CodecCapabilities.html
new file mode 100644
index 0000000..d5e3a02
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaCodecInfo.CodecCapabilities.html
@@ -0,0 +1,200 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaCodecInfo.CodecCapabilities
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/MediaCodecInfo.CodecCapabilities.html" target="_top"><font size="+2"><code>MediaCodecInfo.CodecCapabilities</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.MediaCodecInfo.CodecCapabilities.createFromProfileLevel_added(java.lang.String, int, int)"></A>
+  <nobr><code>CodecCapabilities</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecCapabilities.html#createFromProfileLevel(java.lang.String, int, int)" target="_top"><code>createFromProfileLevel</code></A>(<code>String,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecCapabilities.getAudioCapabilities_added()"></A>
+  <nobr><code>AudioCapabilities</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecCapabilities.html#getAudioCapabilities()" target="_top"><code>getAudioCapabilities</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecCapabilities.getDefaultFormat_added()"></A>
+  <nobr><code>MediaFormat</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecCapabilities.html#getDefaultFormat()" target="_top"><code>getDefaultFormat</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecCapabilities.getEncoderCapabilities_added()"></A>
+  <nobr><code>EncoderCapabilities</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecCapabilities.html#getEncoderCapabilities()" target="_top"><code>getEncoderCapabilities</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecCapabilities.getMimeType_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecCapabilities.html#getMimeType()" target="_top"><code>getMimeType</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecCapabilities.getVideoCapabilities_added()"></A>
+  <nobr><code>VideoCapabilities</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecCapabilities.html#getVideoCapabilities()" target="_top"><code>getVideoCapabilities</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecCapabilities.isFeatureRequired_added(java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecCapabilities.html#isFeatureRequired(java.lang.String)" target="_top"><code>isFeatureRequired</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecCapabilities.isFormatSupported_added(android.media.MediaFormat)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecCapabilities.html#isFormatSupported(android.media.MediaFormat)" target="_top"><code>isFormatSupported</code></A>(<code>MediaFormat</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.MediaCodecInfo.CodecCapabilities.COLOR_FormatYUV420Flexible"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecCapabilities.html#COLOR_FormatYUV420Flexible" target="_top"><code>COLOR_FormatYUV420Flexible</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecCapabilities.FEATURE_SecurePlayback"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecCapabilities.html#FEATURE_SecurePlayback" target="_top"><code>FEATURE_SecurePlayback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecInfo.CodecCapabilities.FEATURE_TunneledPlayback"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecCapabilities.html#FEATURE_TunneledPlayback" target="_top"><code>FEATURE_TunneledPlayback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.MediaCodecInfo.CodecProfileLevel.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaCodecInfo.CodecProfileLevel.html
new file mode 100644
index 0000000..650531c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaCodecInfo.CodecProfileLevel.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaCodecInfo.CodecProfileLevel
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/MediaCodecInfo.CodecProfileLevel.html" target="_top"><font size="+2"><code>MediaCodecInfo.CodecProfileLevel</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.MediaCodecInfo.CodecProfileLevel.AVCLevel52"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecInfo.CodecProfileLevel.html#AVCLevel52" target="_top"><code>AVCLevel52</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.MediaCodecList.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaCodecList.html
new file mode 100644
index 0000000..e007aab
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaCodecList.html
@@ -0,0 +1,201 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaCodecList
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/MediaCodecList.html" target="_top"><font size="+2"><code>MediaCodecList</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.media.MediaCodecList.ctor_added(int)"></A>
+  <nobr><A HREF="../../../../reference/android/media/MediaCodecList.html#MediaCodecList(int)" target="_top"><code>MediaCodecList</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.MediaCodecList.findDecoderForFormat_added(android.media.MediaFormat)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecList.html#findDecoderForFormat(android.media.MediaFormat)" target="_top"><code>findDecoderForFormat</code></A>(<code>MediaFormat</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecList.findEncoderForFormat_added(android.media.MediaFormat)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecList.html#findEncoderForFormat(android.media.MediaFormat)" target="_top"><code>findEncoderForFormat</code></A>(<code>MediaFormat</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecList.getCodecInfos_added()"></A>
+  <nobr><code>MediaCodecInfo[]</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecList.html#getCodecInfos()" target="_top"><code>getCodecInfos</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.MediaCodecList.getCodecCount_changed()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecList.html#getCodecCount()" target="_top"><code>getCodecCount</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecList.getCodecInfoAt_changed(int)"></A>
+  <nobr><code>MediaCodecInfo</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecList.html#getCodecInfoAt(int)" target="_top"><code>getCodecInfoAt</code></A>(<code>int</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.MediaCodecList.ALL_CODECS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecList.html#ALL_CODECS" target="_top"><code>ALL_CODECS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaCodecList.REGULAR_CODECS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaCodecList.html#REGULAR_CODECS" target="_top"><code>REGULAR_CODECS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.MediaDrm.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaDrm.html
new file mode 100644
index 0000000..5649308
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaDrm.html
@@ -0,0 +1,125 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaDrm
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/MediaDrm.html" target="_top"><font size="+2"><code>MediaDrm</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.media.MediaDrm.openSession_changed()"></A>
+  <nobr><code>byte[]</code>&nbsp;<A HREF="../../../../reference/android/media/MediaDrm.html#openSession()" target="_top"><code>openSession</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in exceptions thrown from <code>android.media.NotProvisionedException</code> to (<code>android.media.NotProvisionedException, android.media.ResourceBusyException</code>).<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.MediaFormat.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaFormat.html
new file mode 100644
index 0000000..c0f115e
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaFormat.html
@@ -0,0 +1,389 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaFormat
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/MediaFormat.html" target="_top"><font size="+2"><code>MediaFormat</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.MediaFormat.getFeatureEnabled_added(java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#getFeatureEnabled(java.lang.String)" target="_top"><code>getFeatureEnabled</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.setFeatureEnabled_added(java.lang.String, boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#setFeatureEnabled(java.lang.String, boolean)" target="_top"><code>setFeatureEnabled</code></A>(<code>String,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.MediaFormat.KEY_AAC_DRC_ATTENUATION_FACTOR"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_AAC_DRC_ATTENUATION_FACTOR" target="_top"><code>KEY_AAC_DRC_ATTENUATION_FACTOR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.KEY_AAC_DRC_BOOST_FACTOR"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_AAC_DRC_BOOST_FACTOR" target="_top"><code>KEY_AAC_DRC_BOOST_FACTOR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.KEY_AAC_DRC_HEAVY_COMPRESSION"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_AAC_DRC_HEAVY_COMPRESSION" target="_top"><code>KEY_AAC_DRC_HEAVY_COMPRESSION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.KEY_AAC_DRC_TARGET_REFERENCE_LEVEL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_AAC_DRC_TARGET_REFERENCE_LEVEL" target="_top"><code>KEY_AAC_DRC_TARGET_REFERENCE_LEVEL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.KEY_AAC_ENCODED_TARGET_LEVEL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_AAC_ENCODED_TARGET_LEVEL" target="_top"><code>KEY_AAC_ENCODED_TARGET_LEVEL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT" target="_top"><code>KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.KEY_AAC_SBR_MODE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_AAC_SBR_MODE" target="_top"><code>KEY_AAC_SBR_MODE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.KEY_AUDIO_SESSION_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_AUDIO_SESSION_ID" target="_top"><code>KEY_AUDIO_SESSION_ID</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.KEY_BITRATE_MODE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_BITRATE_MODE" target="_top"><code>KEY_BITRATE_MODE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.KEY_CAPTURE_RATE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_CAPTURE_RATE" target="_top"><code>KEY_CAPTURE_RATE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.KEY_COMPLEXITY"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_COMPLEXITY" target="_top"><code>KEY_COMPLEXITY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.KEY_PROFILE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_PROFILE" target="_top"><code>KEY_PROFILE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.KEY_TEMPORAL_LAYERING"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#KEY_TEMPORAL_LAYERING" target="_top"><code>KEY_TEMPORAL_LAYERING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_AAC"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_AAC" target="_top"><code>MIMETYPE_AUDIO_AAC</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_AC3"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_AC3" target="_top"><code>MIMETYPE_AUDIO_AC3</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_AMR_NB"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_AMR_NB" target="_top"><code>MIMETYPE_AUDIO_AMR_NB</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_AMR_WB"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_AMR_WB" target="_top"><code>MIMETYPE_AUDIO_AMR_WB</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_FLAC"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_FLAC" target="_top"><code>MIMETYPE_AUDIO_FLAC</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_G711_ALAW"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_G711_ALAW" target="_top"><code>MIMETYPE_AUDIO_G711_ALAW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_G711_MLAW"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_G711_MLAW" target="_top"><code>MIMETYPE_AUDIO_G711_MLAW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_MPEG"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_MPEG" target="_top"><code>MIMETYPE_AUDIO_MPEG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_MSGSM"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_MSGSM" target="_top"><code>MIMETYPE_AUDIO_MSGSM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_OPUS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_OPUS" target="_top"><code>MIMETYPE_AUDIO_OPUS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_QCELP"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_QCELP" target="_top"><code>MIMETYPE_AUDIO_QCELP</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_RAW"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_RAW" target="_top"><code>MIMETYPE_AUDIO_RAW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_AUDIO_VORBIS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_AUDIO_VORBIS" target="_top"><code>MIMETYPE_AUDIO_VORBIS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_TEXT_CEA_608"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_TEXT_CEA_608" target="_top"><code>MIMETYPE_TEXT_CEA_608</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_TEXT_VTT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_TEXT_VTT" target="_top"><code>MIMETYPE_TEXT_VTT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_VIDEO_AVC"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_VIDEO_AVC" target="_top"><code>MIMETYPE_VIDEO_AVC</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_VIDEO_H263"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_VIDEO_H263" target="_top"><code>MIMETYPE_VIDEO_H263</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_VIDEO_HEVC"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_VIDEO_HEVC" target="_top"><code>MIMETYPE_VIDEO_HEVC</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_VIDEO_MPEG2"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_VIDEO_MPEG2" target="_top"><code>MIMETYPE_VIDEO_MPEG2</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_VIDEO_MPEG4"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_VIDEO_MPEG4" target="_top"><code>MIMETYPE_VIDEO_MPEG4</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_VIDEO_RAW"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_VIDEO_RAW" target="_top"><code>MIMETYPE_VIDEO_RAW</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_VIDEO_VP8"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_VIDEO_VP8" target="_top"><code>MIMETYPE_VIDEO_VP8</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaFormat.MIMETYPE_VIDEO_VP9"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaFormat.html#MIMETYPE_VIDEO_VP9" target="_top"><code>MIMETYPE_VIDEO_VP9</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.MediaMetadata.Builder.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaMetadata.Builder.html
new file mode 100644
index 0000000..abf0e6b
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaMetadata.Builder.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaMetadata.Builder
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/MediaMetadata.Builder.html" target="_top"><font size="+2"><code>MediaMetadata.Builder</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.MediaMetadata.Builder.putText_added(java.lang.String, java.lang.CharSequence)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/media/MediaMetadata.Builder.html#putText(java.lang.String, java.lang.CharSequence)" target="_top"><code>putText</code></A>(<code>String,</nobr> CharSequence<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.MediaMetadata.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaMetadata.html
new file mode 100644
index 0000000..81c9713
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaMetadata.html
@@ -0,0 +1,179 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaMetadata
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/MediaMetadata.html" target="_top"><font size="+2"><code>MediaMetadata</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.MediaMetadata.getDescription_added()"></A>
+  <nobr><code>MediaDescription</code>&nbsp;<A HREF="../../../../reference/android/media/MediaMetadata.html#getDescription()" target="_top"><code>getDescription</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaMetadata.getText_added(java.lang.String)"></A>
+  <nobr><code>CharSequence</code>&nbsp;<A HREF="../../../../reference/android/media/MediaMetadata.html#getText(java.lang.String)" target="_top"><code>getText</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.MediaMetadata.METADATA_KEY_DISPLAY_DESCRIPTION"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaMetadata.html#METADATA_KEY_DISPLAY_DESCRIPTION" target="_top"><code>METADATA_KEY_DISPLAY_DESCRIPTION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaMetadata.METADATA_KEY_DISPLAY_ICON"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaMetadata.html#METADATA_KEY_DISPLAY_ICON" target="_top"><code>METADATA_KEY_DISPLAY_ICON</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaMetadata.METADATA_KEY_DISPLAY_ICON_URI"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaMetadata.html#METADATA_KEY_DISPLAY_ICON_URI" target="_top"><code>METADATA_KEY_DISPLAY_ICON_URI</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaMetadata.METADATA_KEY_DISPLAY_SUBTITLE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaMetadata.html#METADATA_KEY_DISPLAY_SUBTITLE" target="_top"><code>METADATA_KEY_DISPLAY_SUBTITLE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaMetadata.METADATA_KEY_DISPLAY_TITLE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaMetadata.html#METADATA_KEY_DISPLAY_TITLE" target="_top"><code>METADATA_KEY_DISPLAY_TITLE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaMetadata.METADATA_KEY_MEDIA_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/MediaMetadata.html#METADATA_KEY_MEDIA_ID" target="_top"><code>METADATA_KEY_MEDIA_ID</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.MediaMetadataEditor.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaMetadataEditor.html
new file mode 100644
index 0000000..944a516
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaMetadataEditor.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaMetadataEditor
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/MediaMetadataEditor.html" target="_top"><font size="+2"><code>MediaMetadataEditor</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.MediaPlayer.TrackInfo.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaPlayer.TrackInfo.html
new file mode 100644
index 0000000..f7020a3
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaPlayer.TrackInfo.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.TrackInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.TrackInfo.html" target="_top"><font size="+2"><code>MediaPlayer.TrackInfo</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.TrackInfo.MEDIA_TRACK_TYPE_SUBTITLE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaPlayer.TrackInfo.html#MEDIA_TRACK_TYPE_SUBTITLE" target="_top"><code>MEDIA_TRACK_TYPE_SUBTITLE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.MediaPlayer.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaPlayer.html
new file mode 100644
index 0000000..d961670
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaPlayer.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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>
+<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.MediaPlayer.create_added(android.content.Context, android.net.Uri, android.view.SurfaceHolder, android.media.AudioAttributes, int)"></A>
+  <nobr><code>MediaPlayer</code>&nbsp;<A HREF="../../../../reference/android/media/MediaPlayer.html#create(android.content.Context, android.net.Uri, android.view.SurfaceHolder, android.media.AudioAttributes, int)" target="_top"><code>create</code></A>(<code>Context,</nobr> Uri<nobr>,</nobr> SurfaceHolder<nobr>,</nobr> AudioAttributes<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaPlayer.create_added(android.content.Context, int, android.media.AudioAttributes, int)"></A>
+  <nobr><code>MediaPlayer</code>&nbsp;<A HREF="../../../../reference/android/media/MediaPlayer.html#create(android.content.Context, int, android.media.AudioAttributes, int)" target="_top"><code>create</code></A>(<code>Context,</nobr> int<nobr>,</nobr> AudioAttributes<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaPlayer.getSelectedTrack_added(int)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaPlayer.html#getSelectedTrack(int)" target="_top"><code>getSelectedTrack</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.MediaPlayer.setAudioAttributes_added(android.media.AudioAttributes)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/MediaPlayer.html#setAudioAttributes(android.media.AudioAttributes)" target="_top"><code>setAudioAttributes</code></A>(<code>AudioAttributes</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.MediaRecorder.AudioEncoder.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaRecorder.AudioEncoder.html
new file mode 100644
index 0000000..33c39e2
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaRecorder.AudioEncoder.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaRecorder.AudioEncoder
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/MediaRecorder.AudioEncoder.html" target="_top"><font size="+2"><code>MediaRecorder.AudioEncoder</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.MediaRecorder.AudioEncoder.VORBIS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaRecorder.AudioEncoder.html#VORBIS" target="_top"><code>VORBIS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.MediaRecorder.OutputFormat.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaRecorder.OutputFormat.html
new file mode 100644
index 0000000..b507772
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaRecorder.OutputFormat.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaRecorder.OutputFormat
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/MediaRecorder.OutputFormat.html" target="_top"><font size="+2"><code>MediaRecorder.OutputFormat</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.MediaRecorder.OutputFormat.WEBM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaRecorder.OutputFormat.html#WEBM" target="_top"><code>WEBM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.MediaRecorder.VideoEncoder.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaRecorder.VideoEncoder.html
new file mode 100644
index 0000000..b25d74e
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaRecorder.VideoEncoder.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaRecorder.VideoEncoder
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/MediaRecorder.VideoEncoder.html" target="_top"><font size="+2"><code>MediaRecorder.VideoEncoder</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.MediaRecorder.VideoEncoder.VP8"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/MediaRecorder.VideoEncoder.html#VP8" target="_top"><code>VP8</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.MediaRecorder.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaRecorder.html
new file mode 100644
index 0000000..cf2bef7
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.MediaRecorder.html
@@ -0,0 +1,125 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.MediaRecorder
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/MediaRecorder.html" target="_top"><font size="+2"><code>MediaRecorder</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.media.MediaRecorder.setCamera_changed(android.hardware.Camera)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/MediaRecorder.html#setCamera(android.hardware.Camera)" target="_top"><code>setCamera</code></A>(<code>Camera</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.RemoteControlClient.MetadataEditor.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.RemoteControlClient.MetadataEditor.html
new file mode 100644
index 0000000..2e8b0a1
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.RemoteControlClient.MetadataEditor.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.RemoteControlClient.MetadataEditor
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/RemoteControlClient.MetadataEditor.html" target="_top"><font size="+2"><code>RemoteControlClient.MetadataEditor</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.RemoteControlClient.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.RemoteControlClient.html
new file mode 100644
index 0000000..bea05fb
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.RemoteControlClient.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.RemoteControlClient
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/RemoteControlClient.html" target="_top"><font size="+2"><code>RemoteControlClient</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.RemoteController.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.RemoteController.html
new file mode 100644
index 0000000..35ce3f9
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.RemoteController.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.RemoteController
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/RemoteController.html" target="_top"><font size="+2"><code>RemoteController</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.Ringtone.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.Ringtone.html
new file mode 100644
index 0000000..7b66b96
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.Ringtone.html
@@ -0,0 +1,157 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Ringtone
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/Ringtone.html" target="_top"><font size="+2"><code>Ringtone</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.Ringtone.getAudioAttributes_added()"></A>
+  <nobr><code>AudioAttributes</code>&nbsp;<A HREF="../../../../reference/android/media/Ringtone.html#getAudioAttributes()" target="_top"><code>getAudioAttributes</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.Ringtone.setAudioAttributes_added(android.media.AudioAttributes)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/Ringtone.html#setAudioAttributes(android.media.AudioAttributes)" target="_top"><code>setAudioAttributes</code></A>(<code>AudioAttributes</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Ringtone.getStreamType_changed()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/Ringtone.html#getStreamType()" target="_top"><code>getStreamType</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.Ringtone.setStreamType_changed(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/Ringtone.html#setStreamType(int)" target="_top"><code>setStreamType</code></A>(<code>int</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.SoundPool.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.SoundPool.html
new file mode 100644
index 0000000..836a88c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.SoundPool.html
@@ -0,0 +1,125 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.SoundPool
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/SoundPool.html" target="_top"><font size="+2"><code>SoundPool</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.media.SoundPool.ctor_changed(int, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/media/SoundPool.html#SoundPool(int, int, int)" target="_top"><code>SoundPool</code></A>(<code>int,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.audiofx.Virtualizer.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.audiofx.Virtualizer.html
new file mode 100644
index 0000000..d36888c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.audiofx.Virtualizer.html
@@ -0,0 +1,179 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.audiofx.Virtualizer
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.audiofx.<A HREF="../../../../reference/android/media/audiofx/Virtualizer.html" target="_top"><font size="+2"><code>Virtualizer</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.audiofx.Virtualizer.canVirtualize_added(int, int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/media/audiofx/Virtualizer.html#canVirtualize(int, int)" target="_top"><code>canVirtualize</code></A>(<code>int,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.audiofx.Virtualizer.forceVirtualizationMode_added(int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/media/audiofx/Virtualizer.html#forceVirtualizationMode(int)" target="_top"><code>forceVirtualizationMode</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.audiofx.Virtualizer.getSpeakerAngles_added(int, int, int[])"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/media/audiofx/Virtualizer.html#getSpeakerAngles(int, int, int[])" target="_top"><code>getSpeakerAngles</code></A>(<code>int,</nobr> int<nobr>,</nobr> int[]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.audiofx.Virtualizer.getVirtualizationMode_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/audiofx/Virtualizer.html#getVirtualizationMode()" target="_top"><code>getVirtualizationMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.audiofx.Virtualizer.VIRTUALIZATION_MODE_AUTO"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/audiofx/Virtualizer.html#VIRTUALIZATION_MODE_AUTO" target="_top"><code>VIRTUALIZATION_MODE_AUTO</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_BINAURAL"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/audiofx/Virtualizer.html#VIRTUALIZATION_MODE_BINAURAL" target="_top"><code>VIRTUALIZATION_MODE_BINAURAL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_OFF"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/audiofx/Virtualizer.html#VIRTUALIZATION_MODE_OFF" target="_top"><code>VIRTUALIZATION_MODE_OFF</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_TRANSAURAL"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/audiofx/Virtualizer.html#VIRTUALIZATION_MODE_TRANSAURAL" target="_top"><code>VIRTUALIZATION_MODE_TRANSAURAL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.session.MediaController.Callback.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.session.MediaController.Callback.html
new file mode 100644
index 0000000..b83311c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.session.MediaController.Callback.html
@@ -0,0 +1,150 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.session.MediaController.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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.session.<A HREF="../../../../reference/android/media/session/MediaController.Callback.html" target="_top"><font size="+2"><code>MediaController.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.media.session.MediaController.Callback.onAudioInfoChanged_added(android.media.session.MediaController.PlaybackInfo)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaController.Callback.html#onAudioInfoChanged(android.media.session.MediaController.PlaybackInfo)" target="_top"><code>onAudioInfoChanged</code></A>(<code>PlaybackInfo</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.Callback.onExtrasChanged_added(android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaController.Callback.html#onExtrasChanged(android.os.Bundle)" target="_top"><code>onExtrasChanged</code></A>(<code>Bundle</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.Callback.onQueueChanged_added(java.util.List<android.media.session.MediaSession.QueueItem>)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaController.Callback.html#onQueueChanged(java.util.List<android.media.session.MediaSession.QueueItem>)" target="_top"><code>onQueueChanged</code></A>(<code>List&lt;QueueItem&gt;</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.Callback.onQueueTitleChanged_added(java.lang.CharSequence)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaController.Callback.html#onQueueTitleChanged(java.lang.CharSequence)" target="_top"><code>onQueueTitleChanged</code></A>(<code>CharSequence</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.Callback.onSessionDestroyed_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaController.Callback.html#onSessionDestroyed()" target="_top"><code>onSessionDestroyed</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.session.MediaController.TransportControls.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.session.MediaController.TransportControls.html
new file mode 100644
index 0000000..61b99c6
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.session.MediaController.TransportControls.html
@@ -0,0 +1,150 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.session.MediaController.TransportControls
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.session.<A HREF="../../../../reference/android/media/session/MediaController.TransportControls.html" target="_top"><font size="+2"><code>MediaController.TransportControls</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.session.MediaController.TransportControls.playFromMediaId_added(java.lang.String, android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaController.TransportControls.html#playFromMediaId(java.lang.String, android.os.Bundle)" target="_top"><code>playFromMediaId</code></A>(<code>String,</nobr> Bundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.TransportControls.playFromSearch_added(java.lang.String, android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaController.TransportControls.html#playFromSearch(java.lang.String, android.os.Bundle)" target="_top"><code>playFromSearch</code></A>(<code>String,</nobr> Bundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.TransportControls.sendCustomAction_added(android.media.session.PlaybackState.CustomAction, android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaController.TransportControls.html#sendCustomAction(android.media.session.PlaybackState.CustomAction, android.os.Bundle)" target="_top"><code>sendCustomAction</code></A>(<code>CustomAction,</nobr> Bundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.TransportControls.sendCustomAction_added(java.lang.String, android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaController.TransportControls.html#sendCustomAction(java.lang.String, android.os.Bundle)" target="_top"><code>sendCustomAction</code></A>(<code>String,</nobr> Bundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.TransportControls.skipToQueueItem_added(long)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaController.TransportControls.html#skipToQueueItem(long)" target="_top"><code>skipToQueueItem</code></A>(<code>long</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.session.MediaController.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.session.MediaController.html
new file mode 100644
index 0000000..c92e59e
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.session.MediaController.html
@@ -0,0 +1,271 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.session.MediaController
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.session.<A HREF="../../../../reference/android/media/session/MediaController.html" target="_top"><font size="+2"><code>MediaController</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.media.session.MediaController.ctor_added(android.content.Context, android.media.session.MediaSession.Token)"></A>
+  <nobr><A HREF="../../../../reference/android/media/session/MediaController.html#MediaController(android.content.Context, android.media.session.MediaSession.Token)" target="_top"><code>MediaController</code></A>(<code>Context,</nobr> Token<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.addCallback_removed(android.media.session.MediaController.Callback)"></A>
+  <nobr><code>void</code>&nbsp;addCallback(<code>Callback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.addCallback_removed(android.media.session.MediaController.Callback, android.os.Handler)"></A>
+  <nobr><code>void</code>&nbsp;addCallback(<code>Callback,</nobr> Handler<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.fromToken_removed(android.media.session.MediaSessionToken)"></A>
+  <nobr><code>MediaController</code>&nbsp;fromToken(<code>MediaSessionToken</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.removeCallback_removed(android.media.session.MediaController.Callback)"></A>
+  <nobr><code>void</code>&nbsp;removeCallback(<code>Callback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.sendControlCommand_removed(java.lang.String, android.os.Bundle, android.os.ResultReceiver)"></A>
+  <nobr><code>void</code>&nbsp;sendControlCommand(<code>String,</nobr> Bundle<nobr>,</nobr> ResultReceiver<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.session.MediaController.adjustVolume_added(int, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaController.html#adjustVolume(int, int)" target="_top"><code>adjustVolume</code></A>(<code>int,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.getExtras_added()"></A>
+  <nobr><code>Bundle</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaController.html#getExtras()" target="_top"><code>getExtras</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.getFlags_added()"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaController.html#getFlags()" target="_top"><code>getFlags</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.getPackageName_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaController.html#getPackageName()" target="_top"><code>getPackageName</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.getPlaybackInfo_added()"></A>
+  <nobr><code>PlaybackInfo</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaController.html#getPlaybackInfo()" target="_top"><code>getPlaybackInfo</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.getQueue_added()"></A>
+  <nobr><code>List&lt;QueueItem&gt;</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaController.html#getQueue()" target="_top"><code>getQueue</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.getQueueTitle_added()"></A>
+  <nobr><code>CharSequence</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaController.html#getQueueTitle()" target="_top"><code>getQueueTitle</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.getSessionActivity_added()"></A>
+  <nobr><code>PendingIntent</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaController.html#getSessionActivity()" target="_top"><code>getSessionActivity</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.getSessionToken_added()"></A>
+  <nobr><code>Token</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaController.html#getSessionToken()" target="_top"><code>getSessionToken</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.registerCallback_added(android.media.session.MediaController.Callback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaController.html#registerCallback(android.media.session.MediaController.Callback)" target="_top"><code>registerCallback</code></A>(<code>Callback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.registerCallback_added(android.media.session.MediaController.Callback, android.os.Handler)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaController.html#registerCallback(android.media.session.MediaController.Callback, android.os.Handler)" target="_top"><code>registerCallback</code></A>(<code>Callback,</nobr> Handler<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.sendCommand_added(java.lang.String, android.os.Bundle, android.os.ResultReceiver)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaController.html#sendCommand(java.lang.String, android.os.Bundle, android.os.ResultReceiver)" target="_top"><code>sendCommand</code></A>(<code>String,</nobr> Bundle<nobr>,</nobr> ResultReceiver<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.setVolumeTo_added(int, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaController.html#setVolumeTo(int, int)" target="_top"><code>setVolumeTo</code></A>(<code>int,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaController.unregisterCallback_added(android.media.session.MediaController.Callback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaController.html#unregisterCallback(android.media.session.MediaController.Callback)" target="_top"><code>unregisterCallback</code></A>(<code>Callback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.session.MediaSession.Callback.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.session.MediaSession.Callback.html
new file mode 100644
index 0000000..c087f1a
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.session.MediaSession.Callback.html
@@ -0,0 +1,246 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.session.MediaSession.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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.session.<A HREF="../../../../reference/android/media/session/MediaSession.Callback.html" target="_top"><font size="+2"><code>MediaSession.Callback</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.Callback.onControlCommand_removed(java.lang.String, android.os.Bundle, android.os.ResultReceiver)"></A>
+  <nobr><code>void</code>&nbsp;onControlCommand(<code>String,</nobr> Bundle<nobr>,</nobr> ResultReceiver<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.session.MediaSession.Callback.onCommand_added(java.lang.String, android.os.Bundle, android.os.ResultReceiver)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.Callback.html#onCommand(java.lang.String, android.os.Bundle, android.os.ResultReceiver)" target="_top"><code>onCommand</code></A>(<code>String,</nobr> Bundle<nobr>,</nobr> ResultReceiver<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.Callback.onCustomAction_added(java.lang.String, android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.Callback.html#onCustomAction(java.lang.String, android.os.Bundle)" target="_top"><code>onCustomAction</code></A>(<code>String,</nobr> Bundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.Callback.onFastForward_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.Callback.html#onFastForward()" target="_top"><code>onFastForward</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.Callback.onPause_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.Callback.html#onPause()" target="_top"><code>onPause</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.Callback.onPlay_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.Callback.html#onPlay()" target="_top"><code>onPlay</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.Callback.onPlayFromMediaId_added(java.lang.String, android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.Callback.html#onPlayFromMediaId(java.lang.String, android.os.Bundle)" target="_top"><code>onPlayFromMediaId</code></A>(<code>String,</nobr> Bundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.Callback.onPlayFromSearch_added(java.lang.String, android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.Callback.html#onPlayFromSearch(java.lang.String, android.os.Bundle)" target="_top"><code>onPlayFromSearch</code></A>(<code>String,</nobr> Bundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.Callback.onRewind_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.Callback.html#onRewind()" target="_top"><code>onRewind</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.Callback.onSeekTo_added(long)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.Callback.html#onSeekTo(long)" target="_top"><code>onSeekTo</code></A>(<code>long</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.Callback.onSetRating_added(android.media.Rating)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.Callback.html#onSetRating(android.media.Rating)" target="_top"><code>onSetRating</code></A>(<code>Rating</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.Callback.onSkipToNext_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.Callback.html#onSkipToNext()" target="_top"><code>onSkipToNext</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.Callback.onSkipToPrevious_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.Callback.html#onSkipToPrevious()" target="_top"><code>onSkipToPrevious</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.Callback.onSkipToQueueItem_added(long)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.Callback.html#onSkipToQueueItem(long)" target="_top"><code>onSkipToQueueItem</code></A>(<code>long</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.Callback.onStop_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.Callback.html#onStop()" target="_top"><code>onStop</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.session.MediaSession.Callback.onMediaButtonEvent_changed(android.content.Intent)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.Callback.html#onMediaButtonEvent(android.content.Intent)" target="_top"><code>onMediaButtonEvent</code></A>(<code>Intent</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in return type from <code>void</code> to <code>boolean</code>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.session.MediaSession.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.session.MediaSession.html
new file mode 100644
index 0000000..cadf6e3
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.session.MediaSession.html
@@ -0,0 +1,281 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.session.MediaSession
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.session.<A HREF="../../../../reference/android/media/session/MediaSession.html" target="_top"><font size="+2"><code>MediaSession</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.media.session.MediaSession.ctor_added(android.content.Context, java.lang.String)"></A>
+  <nobr><A HREF="../../../../reference/android/media/session/MediaSession.html#MediaSession(android.content.Context, java.lang.String)" target="_top"><code>MediaSession</code></A>(<code>Context,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.addCallback_removed(android.media.session.MediaSession.Callback)"></A>
+  <nobr><code>void</code>&nbsp;addCallback(<code>Callback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.addCallback_removed(android.media.session.MediaSession.Callback, android.os.Handler)"></A>
+  <nobr><code>void</code>&nbsp;addCallback(<code>Callback,</nobr> Handler<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.addTransportControlsCallback_removed(android.media.session.MediaSession.TransportControlsCallback)"></A>
+  <nobr><code>void</code>&nbsp;addTransportControlsCallback(<code>TransportControlsCallback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.addTransportControlsCallback_removed(android.media.session.MediaSession.TransportControlsCallback, android.os.Handler)"></A>
+  <nobr><code>void</code>&nbsp;addTransportControlsCallback(<code>TransportControlsCallback,</nobr> Handler<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.removeCallback_removed(android.media.session.MediaSession.Callback)"></A>
+  <nobr><code>void</code>&nbsp;removeCallback(<code>Callback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.removeTransportControlsCallback_removed(android.media.session.MediaSession.TransportControlsCallback)"></A>
+  <nobr><code>void</code>&nbsp;removeTransportControlsCallback(<code>TransportControlsCallback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.setLaunchPendingIntent_removed(android.app.PendingIntent)"></A>
+  <nobr><code>void</code>&nbsp;setLaunchPendingIntent(<code>PendingIntent</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.session.MediaSession.getController_added()"></A>
+  <nobr><code>MediaController</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.html#getController()" target="_top"><code>getController</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.setCallback_added(android.media.session.MediaSession.Callback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.html#setCallback(android.media.session.MediaSession.Callback)" target="_top"><code>setCallback</code></A>(<code>Callback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.setCallback_added(android.media.session.MediaSession.Callback, android.os.Handler)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.html#setCallback(android.media.session.MediaSession.Callback, android.os.Handler)" target="_top"><code>setCallback</code></A>(<code>Callback,</nobr> Handler<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.setExtras_added(android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.html#setExtras(android.os.Bundle)" target="_top"><code>setExtras</code></A>(<code>Bundle</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.setMediaButtonReceiver_added(android.app.PendingIntent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.html#setMediaButtonReceiver(android.app.PendingIntent)" target="_top"><code>setMediaButtonReceiver</code></A>(<code>PendingIntent</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.setQueue_added(java.util.List<android.media.session.MediaSession.QueueItem>)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.html#setQueue(java.util.List<android.media.session.MediaSession.QueueItem>)" target="_top"><code>setQueue</code></A>(<code>List&lt;QueueItem&gt;</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.setQueueTitle_added(java.lang.CharSequence)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.html#setQueueTitle(java.lang.CharSequence)" target="_top"><code>setQueueTitle</code></A>(<code>CharSequence</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.setSessionActivity_added(android.app.PendingIntent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.html#setSessionActivity(android.app.PendingIntent)" target="_top"><code>setSessionActivity</code></A>(<code>PendingIntent</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.session.MediaSession.getSessionToken_changed()"></A>
+  <nobr><code>Token</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.html#getSessionToken()" target="_top"><code>getSessionToken</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in return type from <code>MediaSessionToken</code> to <code>Token</code>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.setPlaybackToLocal_changed(android.media.AudioAttributes)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.html#setPlaybackToLocal(android.media.AudioAttributes)" target="_top"><code>setPlaybackToLocal</code></A>(<code>AudioAttributes</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in signature from <code>int</code> to <code>AudioAttributes</code>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSession.setPlaybackToRemote_changed(android.media.VolumeProvider)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSession.html#setPlaybackToRemote(android.media.VolumeProvider)" target="_top"><code>setPlaybackToRemote</code></A>(<code>VolumeProvider</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in signature from <code>RemoteVolumeProvider</code> to <code>VolumeProvider</code>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.session.MediaSessionManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.session.MediaSessionManager.html
new file mode 100644
index 0000000..d64dc58
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.session.MediaSessionManager.html
@@ -0,0 +1,158 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.session.MediaSessionManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.session.<A HREF="../../../../reference/android/media/session/MediaSessionManager.html" target="_top"><font size="+2"><code>MediaSessionManager</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSessionManager.createSession_removed(java.lang.String)"></A>
+  <nobr><code>MediaSession</code>&nbsp;createSession(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.session.MediaSessionManager.addOnActiveSessionsChangedListener_added(android.media.session.MediaSessionManager.OnActiveSessionsChangedListener, android.content.ComponentName)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSessionManager.html#addOnActiveSessionsChangedListener(android.media.session.MediaSessionManager.OnActiveSessionsChangedListener, android.content.ComponentName)" target="_top"><code>addOnActiveSessionsChangedListener</code></A>(<code>OnActiveSessionsChangedListener,</nobr> ComponentName<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSessionManager.addOnActiveSessionsChangedListener_added(android.media.session.MediaSessionManager.OnActiveSessionsChangedListener, android.content.ComponentName, android.os.Handler)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSessionManager.html#addOnActiveSessionsChangedListener(android.media.session.MediaSessionManager.OnActiveSessionsChangedListener, android.content.ComponentName, android.os.Handler)" target="_top"><code>addOnActiveSessionsChangedListener</code></A>(<code>OnActiveSessionsChangedListener,</nobr> ComponentName<nobr>,</nobr> Handler<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSessionManager.getActiveSessions_added(android.content.ComponentName)"></A>
+  <nobr><code>List&lt;MediaController&gt;</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSessionManager.html#getActiveSessions(android.content.ComponentName)" target="_top"><code>getActiveSessions</code></A>(<code>ComponentName</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.MediaSessionManager.removeOnActiveSessionsChangedListener_added(android.media.session.MediaSessionManager.OnActiveSessionsChangedListener)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/session/MediaSessionManager.html#removeOnActiveSessionsChangedListener(android.media.session.MediaSessionManager.OnActiveSessionsChangedListener)" target="_top"><code>removeOnActiveSessionsChangedListener</code></A>(<code>OnActiveSessionsChangedListener</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.session.PlaybackState.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.session.PlaybackState.html
new file mode 100644
index 0000000..6b678c3
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.session.PlaybackState.html
@@ -0,0 +1,265 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.session.PlaybackState
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.session.<A HREF="../../../../reference/android/media/session/PlaybackState.html" target="_top"><font size="+2"><code>PlaybackState</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.media.session.PlaybackState.ctor_removed()"></A>
+  <nobr>PlaybackState()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.PlaybackState.ctor_removed(android.media.session.PlaybackState)"></A>
+  <nobr>PlaybackState(<code>PlaybackState</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.PlaybackState.getBufferPosition_removed()"></A>
+  <nobr><code>long</code>&nbsp;getBufferPosition()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.PlaybackState.getPlaybackRate_removed()"></A>
+  <nobr><code>float</code>&nbsp;getPlaybackRate()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.PlaybackState.setActions_removed(long)"></A>
+  <nobr><code>void</code>&nbsp;setActions(<code>long</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.PlaybackState.setBufferPosition_removed(long)"></A>
+  <nobr><code>void</code>&nbsp;setBufferPosition(<code>long</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.PlaybackState.setErrorMessage_removed(java.lang.CharSequence)"></A>
+  <nobr><code>void</code>&nbsp;setErrorMessage(<code>CharSequence</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.PlaybackState.setState_removed(int, long, float)"></A>
+  <nobr><code>void</code>&nbsp;setState(<code>int,</nobr> long<nobr>,</nobr> float<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.session.PlaybackState.getActiveQueueItemId_added()"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/android/media/session/PlaybackState.html#getActiveQueueItemId()" target="_top"><code>getActiveQueueItemId</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.PlaybackState.getBufferedPosition_added()"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/android/media/session/PlaybackState.html#getBufferedPosition()" target="_top"><code>getBufferedPosition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.PlaybackState.getCustomActions_added()"></A>
+  <nobr><code>List&lt;CustomAction&gt;</code>&nbsp;<A HREF="../../../../reference/android/media/session/PlaybackState.html#getCustomActions()" target="_top"><code>getCustomActions</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.PlaybackState.getLastPositionUpdateTime_added()"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/android/media/session/PlaybackState.html#getLastPositionUpdateTime()" target="_top"><code>getLastPositionUpdateTime</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.PlaybackState.getPlaybackSpeed_added()"></A>
+  <nobr><code>float</code>&nbsp;<A HREF="../../../../reference/android/media/session/PlaybackState.html#getPlaybackSpeed()" target="_top"><code>getPlaybackSpeed</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.session.PlaybackState.ACTION_PLAY_FROM_MEDIA_ID"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/android/media/session/PlaybackState.html#ACTION_PLAY_FROM_MEDIA_ID" target="_top"><code>ACTION_PLAY_FROM_MEDIA_ID</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.PlaybackState.ACTION_PLAY_FROM_SEARCH"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/android/media/session/PlaybackState.html#ACTION_PLAY_FROM_SEARCH" target="_top"><code>ACTION_PLAY_FROM_SEARCH</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.PlaybackState.ACTION_SKIP_TO_QUEUE_ITEM"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/android/media/session/PlaybackState.html#ACTION_SKIP_TO_QUEUE_ITEM" target="_top"><code>ACTION_SKIP_TO_QUEUE_ITEM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.PlaybackState.STATE_CONNECTING"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/session/PlaybackState.html#STATE_CONNECTING" target="_top"><code>STATE_CONNECTING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session.PlaybackState.STATE_SKIPPING_TO_QUEUE_ITEM"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/session/PlaybackState.html#STATE_SKIPPING_TO_QUEUE_ITEM" target="_top"><code>STATE_SKIPPING_TO_QUEUE_ITEM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.tv.TvContract.Channels.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.tv.TvContract.Channels.html
new file mode 100644
index 0000000..091d43d
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.tv.TvContract.Channels.html
@@ -0,0 +1,561 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.tv.TvContract.Channels
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.tv.<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html" target="_top"><font size="+2"><code>TvContract.Channels</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.tv.TvContract.Channels.getVideoResolution_added(java.lang.String)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#getVideoResolution(java.lang.String)" target="_top"><code>getVideoResolution</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.COLUMN_BROWSABLE"></A>
+  <code>String</code>&nbsp;COLUMN_BROWSABLE
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.COLUMN_SERVICE_NAME"></A>
+  <code>String</code>&nbsp;COLUMN_SERVICE_NAME
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_PASSTHROUGH"></A>
+  <code>int</code>&nbsp;TYPE_PASSTHROUGH
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.tv.TvContract.Channels.COLUMN_INPUT_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#COLUMN_INPUT_ID" target="_top"><code>COLUMN_INPUT_ID</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.COLUMN_NETWORK_AFFILIATION"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#COLUMN_NETWORK_AFFILIATION" target="_top"><code>COLUMN_NETWORK_AFFILIATION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.COLUMN_VIDEO_FORMAT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#COLUMN_VIDEO_FORMAT" target="_top"><code>COLUMN_VIDEO_FORMAT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_NTSC"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#TYPE_NTSC" target="_top"><code>TYPE_NTSC</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_PAL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#TYPE_PAL" target="_top"><code>TYPE_PAL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_SECAM"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#TYPE_SECAM" target="_top"><code>TYPE_SECAM</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.VIDEO_FORMAT_1080I"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#VIDEO_FORMAT_1080I" target="_top"><code>VIDEO_FORMAT_1080I</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.VIDEO_FORMAT_1080P"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#VIDEO_FORMAT_1080P" target="_top"><code>VIDEO_FORMAT_1080P</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.VIDEO_FORMAT_2160P"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#VIDEO_FORMAT_2160P" target="_top"><code>VIDEO_FORMAT_2160P</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.VIDEO_FORMAT_240P"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#VIDEO_FORMAT_240P" target="_top"><code>VIDEO_FORMAT_240P</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.VIDEO_FORMAT_360P"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#VIDEO_FORMAT_360P" target="_top"><code>VIDEO_FORMAT_360P</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.VIDEO_FORMAT_4320P"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#VIDEO_FORMAT_4320P" target="_top"><code>VIDEO_FORMAT_4320P</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.VIDEO_FORMAT_480I"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#VIDEO_FORMAT_480I" target="_top"><code>VIDEO_FORMAT_480I</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.VIDEO_FORMAT_480P"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#VIDEO_FORMAT_480P" target="_top"><code>VIDEO_FORMAT_480P</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.VIDEO_FORMAT_576I"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#VIDEO_FORMAT_576I" target="_top"><code>VIDEO_FORMAT_576I</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.VIDEO_FORMAT_576P"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#VIDEO_FORMAT_576P" target="_top"><code>VIDEO_FORMAT_576P</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.VIDEO_FORMAT_720P"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#VIDEO_FORMAT_720P" target="_top"><code>VIDEO_FORMAT_720P</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_ED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#VIDEO_RESOLUTION_ED" target="_top"><code>VIDEO_RESOLUTION_ED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_FHD"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#VIDEO_RESOLUTION_FHD" target="_top"><code>VIDEO_RESOLUTION_FHD</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_HD"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#VIDEO_RESOLUTION_HD" target="_top"><code>VIDEO_RESOLUTION_HD</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_SD"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#VIDEO_RESOLUTION_SD" target="_top"><code>VIDEO_RESOLUTION_SD</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_UHD"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#VIDEO_RESOLUTION_UHD" target="_top"><code>VIDEO_RESOLUTION_UHD</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.tv.TvContract.Channels.SERVICE_TYPE_AUDIO"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#SERVICE_TYPE_AUDIO" target="_top"><code>SERVICE_TYPE_AUDIO</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>int</code> to <code>String</code>.<br>
+ Changed in value from 2 to "SERVICE_TYPE_AUDIO".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.SERVICE_TYPE_AUDIO_VIDEO"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#SERVICE_TYPE_AUDIO_VIDEO" target="_top"><code>SERVICE_TYPE_AUDIO_VIDEO</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>int</code> to <code>String</code>.<br>
+ Changed in value from 1 to "SERVICE_TYPE_AUDIO_VIDEO".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.SERVICE_TYPE_OTHER"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#SERVICE_TYPE_OTHER" target="_top"><code>SERVICE_TYPE_OTHER</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>int</code> to <code>String</code>.<br>
+ Changed in value from 0 to "SERVICE_TYPE_OTHER".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_1SEG"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#TYPE_1SEG" target="_top"><code>TYPE_1SEG</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>int</code> to <code>String</code>.<br>
+ Changed in value from 263168 to "TYPE_1SEG".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_ATSC_C"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#TYPE_ATSC_C" target="_top"><code>TYPE_ATSC_C</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>int</code> to <code>String</code>.<br>
+ Changed in value from 197120 to "TYPE_ATSC_C".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_ATSC_M_H"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#TYPE_ATSC_M_H" target="_top"><code>TYPE_ATSC_M_H</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>int</code> to <code>String</code>.<br>
+ Changed in value from 197376 to "TYPE_ATSC_M_H".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_ATSC_T"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#TYPE_ATSC_T" target="_top"><code>TYPE_ATSC_T</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>int</code> to <code>String</code>.<br>
+ Changed in value from 196608 to "TYPE_ATSC_T".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_CMMB"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#TYPE_CMMB" target="_top"><code>TYPE_CMMB</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>int</code> to <code>String</code>.<br>
+ Changed in value from 327936 to "TYPE_CMMB".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_DTMB"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#TYPE_DTMB" target="_top"><code>TYPE_DTMB</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>int</code> to <code>String</code>.<br>
+ Changed in value from 327680 to "TYPE_DTMB".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_DVB_C"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#TYPE_DVB_C" target="_top"><code>TYPE_DVB_C</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>int</code> to <code>String</code>.<br>
+ Changed in value from 131584 to "TYPE_DVB_C".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_DVB_C2"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#TYPE_DVB_C2" target="_top"><code>TYPE_DVB_C2</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>int</code> to <code>String</code>.<br>
+ Changed in value from 131585 to "TYPE_DVB_C2".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_DVB_H"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#TYPE_DVB_H" target="_top"><code>TYPE_DVB_H</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>int</code> to <code>String</code>.<br>
+ Changed in value from 131840 to "TYPE_DVB_H".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_DVB_S"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#TYPE_DVB_S" target="_top"><code>TYPE_DVB_S</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>int</code> to <code>String</code>.<br>
+ Changed in value from 131328 to "TYPE_DVB_S".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_DVB_S2"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#TYPE_DVB_S2" target="_top"><code>TYPE_DVB_S2</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>int</code> to <code>String</code>.<br>
+ Changed in value from 131329 to "TYPE_DVB_S2".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_DVB_SH"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#TYPE_DVB_SH" target="_top"><code>TYPE_DVB_SH</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>int</code> to <code>String</code>.<br>
+ Changed in value from 132096 to "TYPE_DVB_SH".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_DVB_T"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#TYPE_DVB_T" target="_top"><code>TYPE_DVB_T</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>int</code> to <code>String</code>.<br>
+ Changed in value from 131072 to "TYPE_DVB_T".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_DVB_T2"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#TYPE_DVB_T2" target="_top"><code>TYPE_DVB_T2</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>int</code> to <code>String</code>.<br>
+ Changed in value from 131073 to "TYPE_DVB_T2".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_ISDB_C"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#TYPE_ISDB_C" target="_top"><code>TYPE_ISDB_C</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>int</code> to <code>String</code>.<br>
+ Changed in value from 262912 to "TYPE_ISDB_C".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_ISDB_S"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#TYPE_ISDB_S" target="_top"><code>TYPE_ISDB_S</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>int</code> to <code>String</code>.<br>
+ Changed in value from 262656 to "TYPE_ISDB_S".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_ISDB_T"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#TYPE_ISDB_T" target="_top"><code>TYPE_ISDB_T</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>int</code> to <code>String</code>.<br>
+ Changed in value from 262144 to "TYPE_ISDB_T".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_ISDB_TB"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#TYPE_ISDB_TB" target="_top"><code>TYPE_ISDB_TB</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>int</code> to <code>String</code>.<br>
+ Changed in value from 262400 to "TYPE_ISDB_TB".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_OTHER"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#TYPE_OTHER" target="_top"><code>TYPE_OTHER</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>int</code> to <code>String</code>.<br>
+ Changed in value from 0 to "TYPE_OTHER".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_S_DMB"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#TYPE_S_DMB" target="_top"><code>TYPE_S_DMB</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>int</code> to <code>String</code>.<br>
+ Changed in value from 393472 to "TYPE_S_DMB".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Channels.TYPE_T_DMB"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Channels.html#TYPE_T_DMB" target="_top"><code>TYPE_T_DMB</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>int</code> to <code>String</code>.<br>
+ Changed in value from 393216 to "TYPE_T_DMB".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.tv.TvContract.Programs.Genres.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.tv.TvContract.Programs.Genres.html
new file mode 100644
index 0000000..093b5ea
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.tv.TvContract.Programs.Genres.html
@@ -0,0 +1,214 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.tv.TvContract.Programs.Genres
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.tv.<A HREF="../../../../reference/android/media/tv/TvContract.Programs.Genres.html" target="_top"><font size="+2"><code>TvContract.Programs.Genres</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.media.tv.TvContract.Programs.Genres.ANIMAL_WILDLIFE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Programs.Genres.html#ANIMAL_WILDLIFE" target="_top"><code>ANIMAL_WILDLIFE</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from "Animal/Wildlife" to "ANIMAL_WILDLIFE".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Programs.Genres.COMEDY"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Programs.Genres.html#COMEDY" target="_top"><code>COMEDY</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from "Comedy" to "COMEDY".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Programs.Genres.DRAMA"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Programs.Genres.html#DRAMA" target="_top"><code>DRAMA</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from "Drama" to "DRAMA".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Programs.Genres.EDUCATION"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Programs.Genres.html#EDUCATION" target="_top"><code>EDUCATION</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from "Education" to "EDUCATION".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Programs.Genres.FAMILY_KIDS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Programs.Genres.html#FAMILY_KIDS" target="_top"><code>FAMILY_KIDS</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from "Family/Kids" to "FAMILY_KIDS".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Programs.Genres.GAMING"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Programs.Genres.html#GAMING" target="_top"><code>GAMING</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from "Gaming" to "GAMING".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Programs.Genres.MOVIES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Programs.Genres.html#MOVIES" target="_top"><code>MOVIES</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from "Movies" to "MOVIES".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Programs.Genres.NEWS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Programs.Genres.html#NEWS" target="_top"><code>NEWS</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from "News" to "NEWS".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Programs.Genres.SHOPPING"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Programs.Genres.html#SHOPPING" target="_top"><code>SHOPPING</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from "Shopping" to "SHOPPING".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Programs.Genres.SPORTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Programs.Genres.html#SPORTS" target="_top"><code>SPORTS</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from "Sports" to "SPORTS".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Programs.Genres.TRAVEL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Programs.Genres.html#TRAVEL" target="_top"><code>TRAVEL</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from "Travel" to "TRAVEL".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.tv.TvContract.Programs.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.tv.TvContract.Programs.html
new file mode 100644
index 0000000..0d6f6af
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.tv.TvContract.Programs.html
@@ -0,0 +1,157 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.tv.TvContract.Programs
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.tv.<A HREF="../../../../reference/android/media/tv/TvContract.Programs.html" target="_top"><font size="+2"><code>TvContract.Programs</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.tv.TvContract.Programs.COLUMN_CONTENT_RATING"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Programs.html#COLUMN_CONTENT_RATING" target="_top"><code>COLUMN_CONTENT_RATING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Programs.COLUMN_EPISODE_NUMBER"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Programs.html#COLUMN_EPISODE_NUMBER" target="_top"><code>COLUMN_EPISODE_NUMBER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Programs.COLUMN_EPISODE_TITLE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Programs.html#COLUMN_EPISODE_TITLE" target="_top"><code>COLUMN_EPISODE_TITLE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Programs.COLUMN_SEASON_NUMBER"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Programs.html#COLUMN_SEASON_NUMBER" target="_top"><code>COLUMN_SEASON_NUMBER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Programs.COLUMN_VIDEO_HEIGHT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Programs.html#COLUMN_VIDEO_HEIGHT" target="_top"><code>COLUMN_VIDEO_HEIGHT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.Programs.COLUMN_VIDEO_WIDTH"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.Programs.html#COLUMN_VIDEO_WIDTH" target="_top"><code>COLUMN_VIDEO_WIDTH</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.tv.TvContract.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.tv.TvContract.html
new file mode 100644
index 0000000..d7de18b
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.tv.TvContract.html
@@ -0,0 +1,172 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.tv.TvContract
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.tv.<A HREF="../../../../reference/android/media/tv/TvContract.html" target="_top"><font size="+2"><code>TvContract</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.buildChannelsUriForInput_removed(android.content.ComponentName)"></A>
+  <nobr><code>Uri</code>&nbsp;buildChannelsUriForInput(<code>ComponentName</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.buildChannelsUriForInput_removed(android.content.ComponentName, boolean)"></A>
+  <nobr><code>Uri</code>&nbsp;buildChannelsUriForInput(<code>ComponentName,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.tv.TvContract.buildChannelUriForPassthroughInput_added(java.lang.String)"></A>
+  <nobr><code>Uri</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.html#buildChannelUriForPassthroughInput(java.lang.String)" target="_top"><code>buildChannelUriForPassthroughInput</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.buildChannelsUriForInput_added(java.lang.String)"></A>
+  <nobr><code>Uri</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.html#buildChannelsUriForInput(java.lang.String)" target="_top"><code>buildChannelsUriForInput</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.buildInputId_added(android.content.ComponentName)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.html#buildInputId(android.content.ComponentName)" target="_top"><code>buildInputId</code></A>(<code>ComponentName</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.buildProgramsUriForChannel_added(long)"></A>
+  <nobr><code>Uri</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.html#buildProgramsUriForChannel(long)" target="_top"><code>buildProgramsUriForChannel</code></A>(<code>long</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvContract.buildProgramsUriForChannel_added(long, long, long)"></A>
+  <nobr><code>Uri</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvContract.html#buildProgramsUriForChannel(long, long, long)" target="_top"><code>buildProgramsUriForChannel</code></A>(<code>long,</nobr> long<nobr>,</nobr> long<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.tv.TvInputInfo.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.tv.TvInputInfo.html
new file mode 100644
index 0000000..567122e
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.tv.TvInputInfo.html
@@ -0,0 +1,323 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.tv.TvInputInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.tv.<A HREF="../../../../reference/android/media/tv/TvInputInfo.html" target="_top"><font size="+2"><code>TvInputInfo</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputInfo.getIntentForSettingsActivity_removed()"></A>
+  <nobr><code>Intent</code>&nbsp;getIntentForSettingsActivity()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputInfo.getIntentForSetupActivity_removed()"></A>
+  <nobr><code>Intent</code>&nbsp;getIntentForSetupActivity()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.tv.TvInputInfo.createSettingsIntent_added()"></A>
+  <nobr><code>Intent</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputInfo.html#createSettingsIntent()" target="_top"><code>createSettingsIntent</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputInfo.createSetupIntent_added()"></A>
+  <nobr><code>Intent</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputInfo.html#createSetupIntent()" target="_top"><code>createSetupIntent</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputInfo.getParentId_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputInfo.html#getParentId()" target="_top"><code>getParentId</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputInfo.isPassthroughInput_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputInfo.html#isPassthroughInput()" target="_top"><code>isPassthroughInput</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputInfo.loadIcon_added(android.content.Context)"></A>
+  <nobr><code>Drawable</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputInfo.html#loadIcon(android.content.Context)" target="_top"><code>loadIcon</code></A>(<code>Context</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.tv.TvInputInfo.loadLabel_changed(android.content.Context)"></A>
+  <nobr><code>CharSequence</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputInfo.html#loadLabel(android.content.Context)" target="_top"><code>loadLabel</code></A>(<code>Context</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in signature from <code>PackageManager</code> to <code>Context</code>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputInfo.EXTRA_SERVICE_NAME"></A>
+  <code>String</code>&nbsp;EXTRA_SERVICE_NAME
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputInfo.TYPE_PASSTHROUGH"></A>
+  <code>int</code>&nbsp;TYPE_PASSTHROUGH
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputInfo.TYPE_VIRTUAL"></A>
+  <code>int</code>&nbsp;TYPE_VIRTUAL
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.tv.TvInputInfo.CREATOR"></A>
+  <nobr><code>Creator</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputInfo.html#CREATOR" target="_top"><code>CREATOR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputInfo.EXTRA_INPUT_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputInfo.html#EXTRA_INPUT_ID" target="_top"><code>EXTRA_INPUT_ID</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputInfo.TYPE_COMPONENT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputInfo.html#TYPE_COMPONENT" target="_top"><code>TYPE_COMPONENT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputInfo.TYPE_COMPOSITE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputInfo.html#TYPE_COMPOSITE" target="_top"><code>TYPE_COMPOSITE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputInfo.TYPE_DISPLAY_PORT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputInfo.html#TYPE_DISPLAY_PORT" target="_top"><code>TYPE_DISPLAY_PORT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputInfo.TYPE_DVI"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputInfo.html#TYPE_DVI" target="_top"><code>TYPE_DVI</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputInfo.TYPE_OTHER"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputInfo.html#TYPE_OTHER" target="_top"><code>TYPE_OTHER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputInfo.TYPE_SCART"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputInfo.html#TYPE_SCART" target="_top"><code>TYPE_SCART</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputInfo.TYPE_SVIDEO"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputInfo.html#TYPE_SVIDEO" target="_top"><code>TYPE_SVIDEO</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputInfo.TYPE_VGA"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputInfo.html#TYPE_VGA" target="_top"><code>TYPE_VGA</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.tv.TvInputInfo.TYPE_HDMI"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputInfo.html#TYPE_HDMI" target="_top"><code>TYPE_HDMI</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 1 to 1007.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputInfo.TYPE_TUNER"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputInfo.html#TYPE_TUNER" target="_top"><code>TYPE_TUNER</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 2 to 0.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.tv.TvInputManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.tv.TvInputManager.html
new file mode 100644
index 0000000..e28ecd2
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.tv.TvInputManager.html
@@ -0,0 +1,257 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.tv.TvInputManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.tv.<A HREF="../../../../reference/android/media/tv/TvInputManager.html" target="_top"><font size="+2"><code>TvInputManager</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputManager.getAvailability_removed(java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;getAvailability(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.tv.TvInputManager.getInputState_added(java.lang.String)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputManager.html#getInputState(java.lang.String)" target="_top"><code>getInputState</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputManager.getTvInputInfo_added(java.lang.String)"></A>
+  <nobr><code>TvInputInfo</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputManager.html#getTvInputInfo(java.lang.String)" target="_top"><code>getTvInputInfo</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputManager.isParentalControlsEnabled_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputManager.html#isParentalControlsEnabled()" target="_top"><code>isParentalControlsEnabled</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputManager.isRatingBlocked_added(android.media.tv.TvContentRating)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputManager.html#isRatingBlocked(android.media.tv.TvContentRating)" target="_top"><code>isRatingBlocked</code></A>(<code>TvContentRating</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputManager.registerCallback_added(android.media.tv.TvInputManager.TvInputCallback, android.os.Handler)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputManager.html#registerCallback(android.media.tv.TvInputManager.TvInputCallback, android.os.Handler)" target="_top"><code>registerCallback</code></A>(<code>TvInputCallback,</nobr> Handler<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputManager.unregisterCallback_added(android.media.tv.TvInputManager.TvInputCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputManager.html#unregisterCallback(android.media.tv.TvInputManager.TvInputCallback)" target="_top"><code>unregisterCallback</code></A>(<code>TvInputCallback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.tv.TvInputManager.ACTION_BLOCKED_RATINGS_CHANGED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputManager.html#ACTION_BLOCKED_RATINGS_CHANGED" target="_top"><code>ACTION_BLOCKED_RATINGS_CHANGED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputManager.ACTION_PARENTAL_CONTROLS_ENABLED_CHANGED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputManager.html#ACTION_PARENTAL_CONTROLS_ENABLED_CHANGED" target="_top"><code>ACTION_PARENTAL_CONTROLS_ENABLED_CHANGED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputManager.ACTION_QUERY_CONTENT_RATING_SYSTEMS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputManager.html#ACTION_QUERY_CONTENT_RATING_SYSTEMS" target="_top"><code>ACTION_QUERY_CONTENT_RATING_SYSTEMS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputManager.INPUT_STATE_CONNECTED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputManager.html#INPUT_STATE_CONNECTED" target="_top"><code>INPUT_STATE_CONNECTED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputManager.INPUT_STATE_CONNECTED_STANDBY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputManager.html#INPUT_STATE_CONNECTED_STANDBY" target="_top"><code>INPUT_STATE_CONNECTED_STANDBY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputManager.INPUT_STATE_DISCONNECTED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputManager.html#INPUT_STATE_DISCONNECTED" target="_top"><code>INPUT_STATE_DISCONNECTED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputManager.META_DATA_CONTENT_RATING_SYSTEMS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputManager.html#META_DATA_CONTENT_RATING_SYSTEMS" target="_top"><code>META_DATA_CONTENT_RATING_SYSTEMS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputManager.VIDEO_UNAVAILABLE_REASON_BUFFERING"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputManager.html#VIDEO_UNAVAILABLE_REASON_BUFFERING" target="_top"><code>VIDEO_UNAVAILABLE_REASON_BUFFERING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputManager.VIDEO_UNAVAILABLE_REASON_TUNING"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputManager.html#VIDEO_UNAVAILABLE_REASON_TUNING" target="_top"><code>VIDEO_UNAVAILABLE_REASON_TUNING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputManager.VIDEO_UNAVAILABLE_REASON_UNKNOWN"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputManager.html#VIDEO_UNAVAILABLE_REASON_UNKNOWN" target="_top"><code>VIDEO_UNAVAILABLE_REASON_UNKNOWN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputManager.VIDEO_UNAVAILABLE_REASON_WEAK_SIGNAL"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputManager.html#VIDEO_UNAVAILABLE_REASON_WEAK_SIGNAL" target="_top"><code>VIDEO_UNAVAILABLE_REASON_WEAK_SIGNAL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.tv.TvInputService.Session.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.tv.TvInputService.Session.html
new file mode 100644
index 0000000..a50d62a
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.tv.TvInputService.Session.html
@@ -0,0 +1,211 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.tv.TvInputService.Session
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.tv.<A HREF="../../../../reference/android/media/tv/TvInputService.Session.html" target="_top"><font size="+2"><code>TvInputService.Session</code></font></A>
+</H2>
+<p>Change from non-static to static.<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.media.tv.TvInputService.Session.ctor_changed(android.content.Context)"></A>
+  <nobr><A HREF="../../../../reference/android/media/tv/TvInputService.Session.html#TvInputService.Session(android.content.Context)" target="_top"><code>TvInputService.Session</code></A>(<code>Context</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from to <code>Context</code>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.tv.TvInputService.Session.notifyChannelRetuned_added(android.net.Uri)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputService.Session.html#notifyChannelRetuned(android.net.Uri)" target="_top"><code>notifyChannelRetuned</code></A>(<code>Uri</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputService.Session.notifyContentAllowed_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputService.Session.html#notifyContentAllowed()" target="_top"><code>notifyContentAllowed</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputService.Session.notifyContentBlocked_added(android.media.tv.TvContentRating)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputService.Session.html#notifyContentBlocked(android.media.tv.TvContentRating)" target="_top"><code>notifyContentBlocked</code></A>(<code>TvContentRating</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputService.Session.notifyTrackSelected_added(int, java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputService.Session.html#notifyTrackSelected(int, java.lang.String)" target="_top"><code>notifyTrackSelected</code></A>(<code>int,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputService.Session.notifyTracksChanged_added(java.util.List<android.media.tv.TvTrackInfo>)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputService.Session.html#notifyTracksChanged(java.util.List<android.media.tv.TvTrackInfo>)" target="_top"><code>notifyTracksChanged</code></A>(<code>List&lt;TvTrackInfo&gt;</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputService.Session.notifyVideoAvailable_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputService.Session.html#notifyVideoAvailable()" target="_top"><code>notifyVideoAvailable</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputService.Session.notifyVideoUnavailable_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputService.Session.html#notifyVideoUnavailable(int)" target="_top"><code>notifyVideoUnavailable</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputService.Session.onSelectTrack_added(int, java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputService.Session.html#onSelectTrack(int, java.lang.String)" target="_top"><code>onSelectTrack</code></A>(<code>int,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputService.Session.onSetCaptionEnabled_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputService.Session.html#onSetCaptionEnabled(boolean)" target="_top"><code>onSetCaptionEnabled</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputService.Session.onSurfaceChanged_added(int, int, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputService.Session.html#onSurfaceChanged(int, int, int)" target="_top"><code>onSurfaceChanged</code></A>(<code>int,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvInputService.Session.onUnblockContent_added(android.media.tv.TvContentRating)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputService.Session.html#onUnblockContent(android.media.tv.TvContentRating)" target="_top"><code>onUnblockContent</code></A>(<code>TvContentRating</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.tv.TvInputService.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.tv.TvInputService.html
new file mode 100644
index 0000000..d981a1c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.tv.TvInputService.html
@@ -0,0 +1,125 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.tv.TvInputService
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.tv.<A HREF="../../../../reference/android/media/tv/TvInputService.html" target="_top"><font size="+2"><code>TvInputService</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.media.tv.TvInputService.onCreateSession_changed(java.lang.String)"></A>
+  <nobr><code>Session</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvInputService.html#onCreateSession(java.lang.String)" target="_top"><code>onCreateSession</code></A>(<code>String</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in signature from <code>void</code> to <code>String</code>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.media.tv.TvView.html b/docs/html/sdk/api_diff/preview-21/changes/android.media.tv.TvView.html
new file mode 100644
index 0000000..4eda8e3
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.media.tv.TvView.html
@@ -0,0 +1,187 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.tv.TvView
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.tv.<A HREF="../../../../reference/android/media/tv/TvView.html" target="_top"><font size="+2"><code>TvView</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvView.setTvInputListener_removed(android.media.tv.TvView.TvInputListener)"></A>
+  <nobr><code>void</code>&nbsp;setTvInputListener(<code>TvInputListener</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.tv.TvView.getSelectedTrack_added(int)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvView.html#getSelectedTrack(int)" target="_top"><code>getSelectedTrack</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvView.getTracks_added(int)"></A>
+  <nobr><code>List&lt;TvTrackInfo&gt;</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvView.html#getTracks(int)" target="_top"><code>getTracks</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvView.selectTrack_added(int, java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvView.html#selectTrack(int, java.lang.String)" target="_top"><code>selectTrack</code></A>(<code>int,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvView.setCallback_added(android.media.tv.TvView.TvInputCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvView.html#setCallback(android.media.tv.TvView.TvInputCallback)" target="_top"><code>setCallback</code></A>(<code>TvInputCallback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvView.setCaptionEnabled_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/media/tv/TvView.html#setCaptionEnabled(boolean)" target="_top"><code>setCaptionEnabled</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvView.ERROR_BUSY"></A>
+  <code>int</code>&nbsp;ERROR_BUSY
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv.TvView.ERROR_TV_INPUT_DISCONNECTED"></A>
+  <code>int</code>&nbsp;ERROR_TV_INPUT_DISCONNECTED
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.net.ConnectivityManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.net.ConnectivityManager.html
new file mode 100644
index 0000000..7fbb21e
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.net.ConnectivityManager.html
@@ -0,0 +1,180 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.net.ConnectivityManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.net.<A HREF="../../../../reference/android/net/ConnectivityManager.html" target="_top"><font size="+2"><code>ConnectivityManager</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.ConnectivityManager.registerDefaultNetworkActiveListener_removed(android.net.ConnectivityManager.OnNetworkActiveListener)"></A>
+  <nobr><code>void</code>&nbsp;registerDefaultNetworkActiveListener(<code>OnNetworkActiveListener</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.ConnectivityManager.unregisterDefaultNetworkActiveListener_removed(android.net.ConnectivityManager.OnNetworkActiveListener)"></A>
+  <nobr><code>void</code>&nbsp;unregisterDefaultNetworkActiveListener(<code>OnNetworkActiveListener</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.net.ConnectivityManager.addDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/net/ConnectivityManager.html#addDefaultNetworkActiveListener(android.net.ConnectivityManager.OnNetworkActiveListener)" target="_top"><code>addDefaultNetworkActiveListener</code></A>(<code>OnNetworkActiveListener</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.ConnectivityManager.getAllNetworks_added()"></A>
+  <nobr><code>Network[]</code>&nbsp;<A HREF="../../../../reference/android/net/ConnectivityManager.html#getAllNetworks()" target="_top"><code>getAllNetworks</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.ConnectivityManager.getNetworkInfo_added(android.net.Network)"></A>
+  <nobr><code>NetworkInfo</code>&nbsp;<A HREF="../../../../reference/android/net/ConnectivityManager.html#getNetworkInfo(android.net.Network)" target="_top"><code>getNetworkInfo</code></A>(<code>Network</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.ConnectivityManager.removeDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/net/ConnectivityManager.html#removeDefaultNetworkActiveListener(android.net.ConnectivityManager.OnNetworkActiveListener)" target="_top"><code>removeDefaultNetworkActiveListener</code></A>(<code>OnNetworkActiveListener</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.net.ConnectivityManager.TYPE_VPN"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/net/ConnectivityManager.html#TYPE_VPN" target="_top"><code>TYPE_VPN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.net.LinkAddress.html b/docs/html/sdk/api_diff/preview-21/changes/android.net.LinkAddress.html
new file mode 100644
index 0000000..4ef7303
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.net.LinkAddress.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.net.LinkAddress
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.net.<A HREF="../../../../reference/android/net/LinkAddress.html" target="_top"><font size="+2"><code>LinkAddress</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.net.LinkAddress.CREATOR"></A>
+  <nobr><code>Creator</code>&nbsp;<A HREF="../../../../reference/android/net/LinkAddress.html#CREATOR" target="_top"><code>CREATOR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.net.Network.html b/docs/html/sdk/api_diff/preview-21/changes/android.net.Network.html
new file mode 100644
index 0000000..dc66e76
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.net.Network.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.net.Network
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.net.<A HREF="../../../../reference/android/net/Network.html" target="_top"><font size="+2"><code>Network</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.net.Network.bindSocket_added(java.net.Socket)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/net/Network.html#bindSocket(java.net.Socket)" target="_top"><code>bindSocket</code></A>(<code>Socket</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.Network.openConnection_added(java.net.URL)"></A>
+  <nobr><code>URLConnection</code>&nbsp;<A HREF="../../../../reference/android/net/Network.html#openConnection(java.net.URL)" target="_top"><code>openConnection</code></A>(<code>URL</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.net.NetworkCapabilities.html b/docs/html/sdk/api_diff/preview-21/changes/android.net.NetworkCapabilities.html
new file mode 100644
index 0000000..8f37096
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.net.NetworkCapabilities.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.net.NetworkCapabilities
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.net.<A HREF="../../../../reference/android/net/NetworkCapabilities.html" target="_top"><font size="+2"><code>NetworkCapabilities</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.net.NetworkCapabilities.NET_CAPABILITY_NOT_VPN"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/net/NetworkCapabilities.html#NET_CAPABILITY_NOT_VPN" target="_top"><code>NET_CAPABILITY_NOT_VPN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.NetworkCapabilities.NET_CAPABILITY_TRUSTED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/net/NetworkCapabilities.html#NET_CAPABILITY_TRUSTED" target="_top"><code>NET_CAPABILITY_TRUSTED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.NetworkCapabilities.TRANSPORT_VPN"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/net/NetworkCapabilities.html#TRANSPORT_VPN" target="_top"><code>TRANSPORT_VPN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.net.NetworkRequest.Builder.html b/docs/html/sdk/api_diff/preview-21/changes/android.net.NetworkRequest.Builder.html
new file mode 100644
index 0000000..417f335
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.net.NetworkRequest.Builder.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.net.NetworkRequest.Builder
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.net.<A HREF="../../../../reference/android/net/NetworkRequest.Builder.html" target="_top"><font size="+2"><code>NetworkRequest.Builder</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.net.NetworkRequest.Builder.setNetworkSpecifier_added(java.lang.String)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/net/NetworkRequest.Builder.html#setNetworkSpecifier(java.lang.String)" target="_top"><code>setNetworkSpecifier</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.net.ProxyInfo.html b/docs/html/sdk/api_diff/preview-21/changes/android.net.ProxyInfo.html
new file mode 100644
index 0000000..4ec51e6c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.net.ProxyInfo.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.net.ProxyInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.net.<A HREF="../../../../reference/android/net/ProxyInfo.html" target="_top"><font size="+2"><code>ProxyInfo</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.net.ProxyInfo.CREATOR"></A>
+  <nobr><code>Creator</code>&nbsp;<A HREF="../../../../reference/android/net/ProxyInfo.html#CREATOR" target="_top"><code>CREATOR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.net.VpnService.Builder.html b/docs/html/sdk/api_diff/preview-21/changes/android.net.VpnService.Builder.html
new file mode 100644
index 0000000..8f0e526
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.net.VpnService.Builder.html
@@ -0,0 +1,150 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.net.VpnService.Builder
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.net.<A HREF="../../../../reference/android/net/VpnService.Builder.html" target="_top"><font size="+2"><code>VpnService.Builder</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.net.VpnService.Builder.addAllowedApplication_added(java.lang.String)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/net/VpnService.Builder.html#addAllowedApplication(java.lang.String)" target="_top"><code>addAllowedApplication</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.VpnService.Builder.addDisallowedApplication_added(java.lang.String)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/net/VpnService.Builder.html#addDisallowedApplication(java.lang.String)" target="_top"><code>addDisallowedApplication</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.VpnService.Builder.allowBypass_added()"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/net/VpnService.Builder.html#allowBypass()" target="_top"><code>allowBypass</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.VpnService.Builder.allowFamily_added(int)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/net/VpnService.Builder.html#allowFamily(int)" target="_top"><code>allowFamily</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.VpnService.Builder.setBlocking_added(boolean)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/net/VpnService.Builder.html#setBlocking(boolean)" target="_top"><code>setBlocking</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.net.wifi.WifiConfiguration.html b/docs/html/sdk/api_diff/preview-21/changes/android.net.wifi.WifiConfiguration.html
new file mode 100644
index 0000000..104b35c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.net.wifi.WifiConfiguration.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.net.wifi.WifiConfiguration
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.net.wifi.<A HREF="../../../../reference/android/net/wifi/WifiConfiguration.html" target="_top"><font size="+2"><code>WifiConfiguration</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.net.wifi.WifiConfiguration.FQDN"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiConfiguration.html#FQDN" target="_top"><code>FQDN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.net.wifi.WifiManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.net.wifi.WifiManager.html
new file mode 100644
index 0000000..216062a
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.net.wifi.WifiManager.html
@@ -0,0 +1,214 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.net.wifi.WifiManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.net.wifi.<A HREF="../../../../reference/android/net/wifi/WifiManager.html" target="_top"><font size="+2"><code>WifiManager</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.net.wifi.WifiManager.cancelWps_added(android.net.wifi.WifiManager.WpsCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#cancelWps(android.net.wifi.WifiManager.WpsCallback)" target="_top"><code>cancelWps</code></A>(<code>WpsCallback</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi.WifiManager.is5GHzBandSupported_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#is5GHzBandSupported()" target="_top"><code>is5GHzBandSupported</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi.WifiManager.isDeviceToApRttSupported_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#isDeviceToApRttSupported()" target="_top"><code>isDeviceToApRttSupported</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi.WifiManager.isEnhancedPowerReportingSupported_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#isEnhancedPowerReportingSupported()" target="_top"><code>isEnhancedPowerReportingSupported</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi.WifiManager.isP2pSupported_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#isP2pSupported()" target="_top"><code>isP2pSupported</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi.WifiManager.isPreferredNetworkOffloadSupported_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#isPreferredNetworkOffloadSupported()" target="_top"><code>isPreferredNetworkOffloadSupported</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi.WifiManager.isTdlsSupported_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#isTdlsSupported()" target="_top"><code>isTdlsSupported</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi.WifiManager.startWps_added(android.net.wifi.WpsInfo, android.net.wifi.WifiManager.WpsCallback)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#startWps(android.net.wifi.WpsInfo, android.net.wifi.WifiManager.WpsCallback)" target="_top"><code>startWps</code></A>(<code>WpsInfo,</nobr> WpsCallback<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.net.wifi.WifiManager.WPS_AUTH_FAILURE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#WPS_AUTH_FAILURE" target="_top"><code>WPS_AUTH_FAILURE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi.WifiManager.WPS_OVERLAP_ERROR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#WPS_OVERLAP_ERROR" target="_top"><code>WPS_OVERLAP_ERROR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi.WifiManager.WPS_TIMED_OUT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#WPS_TIMED_OUT" target="_top"><code>WPS_TIMED_OUT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi.WifiManager.WPS_TKIP_ONLY_PROHIBITED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#WPS_TKIP_ONLY_PROHIBITED" target="_top"><code>WPS_TKIP_ONLY_PROHIBITED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi.WifiManager.WPS_WEP_PROHIBITED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WifiManager.html#WPS_WEP_PROHIBITED" target="_top"><code>WPS_WEP_PROHIBITED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.net.wifi.WpsInfo.html b/docs/html/sdk/api_diff/preview-21/changes/android.net.wifi.WpsInfo.html
new file mode 100644
index 0000000..9451dd2
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.net.wifi.WpsInfo.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.net.wifi.WpsInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.net.wifi.<A HREF="../../../../reference/android/net/wifi/WpsInfo.html" target="_top"><font size="+2"><code>WpsInfo</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.net.wifi.WpsInfo.BSSID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/net/wifi/WpsInfo.html#BSSID" target="_top"><code>BSSID</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.nfc.cardemulation.CardEmulation.html b/docs/html/sdk/api_diff/preview-21/changes/android.nfc.cardemulation.CardEmulation.html
new file mode 100644
index 0000000..6b071bc
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.nfc.cardemulation.CardEmulation.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.nfc.cardemulation.CardEmulation
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.nfc.cardemulation.<A HREF="../../../../reference/android/nfc/cardemulation/CardEmulation.html" target="_top"><font size="+2"><code>CardEmulation</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.nfc.cardemulation.CardEmulation.supportsAidPrefixRegistration_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/nfc/cardemulation/CardEmulation.html#supportsAidPrefixRegistration()" target="_top"><code>supportsAidPrefixRegistration</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.os.Build.VERSION_CODES.html b/docs/html/sdk/api_diff/preview-21/changes/android.os.Build.VERSION_CODES.html
new file mode 100644
index 0000000..22c12d2
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.os.Build.VERSION_CODES.html
@@ -0,0 +1,139 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.LOLLIPOP"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/os/Build.VERSION_CODES.html#LOLLIPOP" target="_top"><code>LOLLIPOP</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.os.Build.VERSION_CODES.L"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/os/Build.VERSION_CODES.html#L" target="_top"><code>L</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Changed in value from 10000 to 21.
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.os.Build.html b/docs/html/sdk/api_diff/preview-21/changes/android.os.Build.html
new file mode 100644
index 0000000..38fa985
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.os.Build.html
@@ -0,0 +1,162 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.html" target="_top"><font size="+2"><code>Build</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.SUPPORTED_32_BIT_ABIS"></A>
+  <nobr><code>String[]</code>&nbsp;<A HREF="../../../../reference/android/os/Build.html#SUPPORTED_32_BIT_ABIS" target="_top"><code>SUPPORTED_32_BIT_ABIS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Build.SUPPORTED_64_BIT_ABIS"></A>
+  <nobr><code>String[]</code>&nbsp;<A HREF="../../../../reference/android/os/Build.html#SUPPORTED_64_BIT_ABIS" target="_top"><code>SUPPORTED_64_BIT_ABIS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Build.SUPPORTED_ABIS"></A>
+  <nobr><code>String[]</code>&nbsp;<A HREF="../../../../reference/android/os/Build.html#SUPPORTED_ABIS" target="_top"><code>SUPPORTED_ABIS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.os.Build.CPU_ABI"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/Build.html#CPU_ABI" target="_top"><code>CPU_ABI</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Build.CPU_ABI2"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/Build.html#CPU_ABI2" target="_top"><code>CPU_ABI2</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.os.Bundle.html b/docs/html/sdk/api_diff/preview-21/changes/android.os.Bundle.html
new file mode 100644
index 0000000..b13a55e
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.os.Bundle.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Bundle
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/Bundle.html" target="_top"><font size="+2"><code>Bundle</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.Bundle.getSize_added(java.lang.String)"></A>
+  <nobr><code>Size</code>&nbsp;<A HREF="../../../../reference/android/os/Bundle.html#getSize(java.lang.String)" target="_top"><code>getSize</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.getSizeF_added(java.lang.String)"></A>
+  <nobr><code>SizeF</code>&nbsp;<A HREF="../../../../reference/android/os/Bundle.html#getSizeF(java.lang.String)" target="_top"><code>getSizeF</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.putSize_added(java.lang.String, android.util.Size)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/Bundle.html#putSize(java.lang.String, android.util.Size)" target="_top"><code>putSize</code></A>(<code>String,</nobr> Size<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Bundle.putSizeF_added(java.lang.String, android.util.SizeF)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/Bundle.html#putSizeF(java.lang.String, android.util.SizeF)" target="_top"><code>putSizeF</code></A>(<code>String,</nobr> SizeF<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.os.Message.html b/docs/html/sdk/api_diff/preview-21/changes/android.os.Message.html
new file mode 100644
index 0000000..a92c294
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.os.Message.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Message
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/Message.html" target="_top"><font size="+2"><code>Message</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.Message.sendingUid"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/os/Message.html#sendingUid" target="_top"><code>sendingUid</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.os.Parcel.html b/docs/html/sdk/api_diff/preview-21/changes/android.os.Parcel.html
new file mode 100644
index 0000000..fe5c4ee
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.os.Parcel.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Parcel
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/Parcel.html" target="_top"><font size="+2"><code>Parcel</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.Parcel.readSize_added()"></A>
+  <nobr><code>Size</code>&nbsp;<A HREF="../../../../reference/android/os/Parcel.html#readSize()" target="_top"><code>readSize</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Parcel.readSizeF_added()"></A>
+  <nobr><code>SizeF</code>&nbsp;<A HREF="../../../../reference/android/os/Parcel.html#readSizeF()" target="_top"><code>readSizeF</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Parcel.writeSize_added(android.util.Size)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/Parcel.html#writeSize(android.util.Size)" target="_top"><code>writeSize</code></A>(<code>Size</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Parcel.writeSizeF_added(android.util.SizeF)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/Parcel.html#writeSizeF(android.util.SizeF)" target="_top"><code>writeSizeF</code></A>(<code>SizeF</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.os.PowerManager.WakeLock.html b/docs/html/sdk/api_diff/preview-21/changes/android.os.PowerManager.WakeLock.html
new file mode 100644
index 0000000..de3c926
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.os.PowerManager.WakeLock.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.PowerManager.WakeLock
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/PowerManager.WakeLock.html" target="_top"><font size="+2"><code>PowerManager.WakeLock</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.PowerManager.WakeLock.release_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/PowerManager.WakeLock.html#release(int)" target="_top"><code>release</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.os.PowerManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.os.PowerManager.html
new file mode 100644
index 0000000..1416d19
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.os.PowerManager.html
@@ -0,0 +1,188 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.PowerManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/PowerManager.html" target="_top"><font size="+2"><code>PowerManager</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.PowerManager.goToSleep_removed(long)"></A>
+  <nobr><code>void</code>&nbsp;goToSleep(<code>long</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.PowerManager.userActivity_removed(long, boolean)"></A>
+  <nobr><code>void</code>&nbsp;userActivity(<code>long,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.PowerManager.wakeUp_removed(long)"></A>
+  <nobr><code>void</code>&nbsp;wakeUp(<code>long</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.PowerManager.isWakeLockLevelSupported_added(int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/os/PowerManager.html#isWakeLockLevelSupported(int)" target="_top"><code>isWakeLockLevelSupported</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.PowerManager.REBOOT_RECOVERY"></A>
+  <code>String</code>&nbsp;REBOOT_RECOVERY
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.PowerManager.PROXIMITY_SCREEN_OFF_WAKE_LOCK"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/os/PowerManager.html#PROXIMITY_SCREEN_OFF_WAKE_LOCK" target="_top"><code>PROXIMITY_SCREEN_OFF_WAKE_LOCK</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.PowerManager.RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/os/PowerManager.html#RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY" target="_top"><code>RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.os.UserManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.os.UserManager.html
new file mode 100644
index 0000000..c99faae
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.os.UserManager.html
@@ -0,0 +1,240 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.UserManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/UserManager.html" target="_top"><font size="+2"><code>UserManager</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.getBadgedDrawableForUser_removed(android.graphics.drawable.Drawable, android.os.UserHandle)"></A>
+  <nobr><code>Drawable</code>&nbsp;getBadgedDrawableForUser(<code>Drawable,</nobr> UserHandle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.UserManager.hasUserRestriction_added(java.lang.String)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#hasUserRestriction(java.lang.String)" target="_top"><code>hasUserRestriction</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.os.UserManager.setUserRestriction_changed(java.lang.String, boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#setUserRestriction(java.lang.String, boolean)" target="_top"><code>setUserRestriction</code></A>(<code>String,</nobr> boolean<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.setUserRestrictions_changed(android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#setUserRestrictions(android.os.Bundle)" target="_top"><code>setUserRestrictions</code></A>(<code>Bundle</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.setUserRestrictions_changed(android.os.Bundle, android.os.UserHandle)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#setUserRestrictions(android.os.Bundle, android.os.UserHandle)" target="_top"><code>setUserRestrictions</code></A>(<code>Bundle,</nobr> UserHandle<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.DISALLOW_CONFIG_APPS"></A>
+  <code>String</code>&nbsp;DISALLOW_CONFIG_APPS
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.DISALLOW_TELEPHONY"></A>
+  <code>String</code>&nbsp;DISALLOW_TELEPHONY
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.UserManager.DISALLOW_APPS_CONTROL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#DISALLOW_APPS_CONTROL" target="_top"><code>DISALLOW_APPS_CONTROL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.DISALLOW_CREATE_WINDOWS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#DISALLOW_CREATE_WINDOWS" target="_top"><code>DISALLOW_CREATE_WINDOWS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.DISALLOW_CROSS_PROFILE_COPY_PASTE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#DISALLOW_CROSS_PROFILE_COPY_PASTE" target="_top"><code>DISALLOW_CROSS_PROFILE_COPY_PASTE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.DISALLOW_OUTGOING_CALLS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#DISALLOW_OUTGOING_CALLS" target="_top"><code>DISALLOW_OUTGOING_CALLS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.UserManager.DISALLOW_SMS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/os/UserManager.html#DISALLOW_SMS" target="_top"><code>DISALLOW_SMS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.os.Vibrator.html b/docs/html/sdk/api_diff/preview-21/changes/android.os.Vibrator.html
new file mode 100644
index 0000000..14eea40
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.os.Vibrator.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Vibrator
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/Vibrator.html" target="_top"><font size="+2"><code>Vibrator</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.Vibrator.vibrate_added(long, android.media.AudioAttributes)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/Vibrator.html#vibrate(long, android.media.AudioAttributes)" target="_top"><code>vibrate</code></A>(<code>long,</nobr> AudioAttributes<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.os.Vibrator.vibrate_added(long[], int, android.media.AudioAttributes)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/os/Vibrator.html#vibrate(long[], int, android.media.AudioAttributes)" target="_top"><code>vibrate</code></A>(<code>long[],</nobr> int<nobr>,</nobr> AudioAttributes<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.printservice.PrintService.html b/docs/html/sdk/api_diff/preview-21/changes/android.printservice.PrintService.html
new file mode 100644
index 0000000..e7836b4
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.printservice.PrintService.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.printservice.PrintService
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.printservice.<A HREF="../../../../reference/android/printservice/PrintService.html" target="_top"><font size="+2"><code>PrintService</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.printservice.PrintService.EXTRA_PRINTER_INFO"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/printservice/PrintService.html#EXTRA_PRINTER_INFO" target="_top"><code>EXTRA_PRINTER_INFO</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.CallLog.Calls.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.CallLog.Calls.html
new file mode 100644
index 0000000..63bd176
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.CallLog.Calls.html
@@ -0,0 +1,164 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.CallLog.Calls
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/CallLog.Calls.html" target="_top"><font size="+2"><code>CallLog.Calls</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.CallLog.Calls.DATA_USAGE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/CallLog.Calls.html#DATA_USAGE" target="_top"><code>DATA_USAGE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.CallLog.Calls.EXTRA_CALL_TYPE_FILTER"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/CallLog.Calls.html#EXTRA_CALL_TYPE_FILTER" target="_top"><code>EXTRA_CALL_TYPE_FILTER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.CallLog.Calls.FEATURES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/CallLog.Calls.html#FEATURES" target="_top"><code>FEATURES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.CallLog.Calls.FEATURES_VIDEO"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/provider/CallLog.Calls.html#FEATURES_VIDEO" target="_top"><code>FEATURES_VIDEO</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.CallLog.Calls.PHONE_ACCOUNT_COMPONENT_NAME"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/CallLog.Calls.html#PHONE_ACCOUNT_COMPONENT_NAME" target="_top"><code>PHONE_ACCOUNT_COMPONENT_NAME</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.CallLog.Calls.PHONE_ACCOUNT_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/CallLog.Calls.html#PHONE_ACCOUNT_ID" target="_top"><code>PHONE_ACCOUNT_ID</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.CallLog.Calls.TRANSCRIPTION"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/CallLog.Calls.html#TRANSCRIPTION" target="_top"><code>TRANSCRIPTION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Callable.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Callable.html
new file mode 100644
index 0000000..d3e9c32
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Callable.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Callable
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.CommonDataKinds.Callable.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Callable</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.ContactsContract.CommonDataKinds.Callable.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Callable.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Callable.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Callable.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Callable.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Callable.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Contactables.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Contactables.html
new file mode 100644
index 0000000..4607128
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Contactables.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Contactables
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.CommonDataKinds.Contactables.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Contactables</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.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Contactables.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Contactables.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Contactables.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Email.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Email.html
new file mode 100644
index 0000000..a9f2d2d
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Email.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Email
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.CommonDataKinds.Email.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Email</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.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Email.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Email.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Email.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Event.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Event.html
new file mode 100644
index 0000000..6ffd3d9
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Event.html
@@ -0,0 +1,151 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Event
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.CommonDataKinds.Event.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Event</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.ContactsContract.CommonDataKinds.Event.getTypeLabel_added(android.content.res.Resources, int, java.lang.CharSequence)"></A>
+  <nobr><code>CharSequence</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Event.html#getTypeLabel(android.content.res.Resources, int, java.lang.CharSequence)" target="_top"><code>getTypeLabel</code></A>(<code>Resources,</nobr> int<nobr>,</nobr> CharSequence<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Event.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Event.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Event.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.GroupMembership.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.GroupMembership.html
new file mode 100644
index 0000000..6dcdd6f
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.GroupMembership.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.CommonDataKinds.GroupMembership.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.GroupMembership</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.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.GroupMembership.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.GroupMembership.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.GroupMembership.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Identity.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Identity.html
new file mode 100644
index 0000000..e1bc0d4
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Identity.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Identity
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.CommonDataKinds.Identity.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Identity</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.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Identity.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Identity.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Identity.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Im.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Im.html
new file mode 100644
index 0000000..a90309a
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Im.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Im
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.CommonDataKinds.Im.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Im</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.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Im.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Im.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Im.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Nickname.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Nickname.html
new file mode 100644
index 0000000..ac7126f
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Nickname.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Nickname
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.CommonDataKinds.Nickname.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Nickname</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.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Nickname.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Nickname.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Nickname.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Note.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Note.html
new file mode 100644
index 0000000..014a9e1
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Note.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Note
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.CommonDataKinds.Note.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Note</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.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Note.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Note.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Note.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Organization.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Organization.html
new file mode 100644
index 0000000..f85d8e1
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Organization.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Organization
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.CommonDataKinds.Organization.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Organization</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.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Organization.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Organization.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Organization.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Phone.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Phone.html
new file mode 100644
index 0000000..83506b6
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Phone.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Phone
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.CommonDataKinds.Phone.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Phone</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.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Phone.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Phone.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Phone.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Photo.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Photo.html
new file mode 100644
index 0000000..f8df71d
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Photo.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Photo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.CommonDataKinds.Photo.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Photo</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.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Photo.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Photo.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Photo.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Relation.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Relation.html
new file mode 100644
index 0000000..9295645
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Relation.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Relation
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.CommonDataKinds.Relation.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Relation</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.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Relation.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Relation.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Relation.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.SipAddress.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.SipAddress.html
new file mode 100644
index 0000000..1adf8c6
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.SipAddress.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.SipAddress
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.CommonDataKinds.SipAddress.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.SipAddress</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.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.SipAddress.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.SipAddress.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.SipAddress.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.StructuredName.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.StructuredName.html
new file mode 100644
index 0000000..821b1bc
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.StructuredName.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.StructuredName
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.CommonDataKinds.StructuredName.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.StructuredName</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.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.StructuredName.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.StructuredName.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.StructuredName.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html
new file mode 100644
index 0000000..9a093f5
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.StructuredPostal
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.CommonDataKinds.StructuredPostal.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.StructuredPostal</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.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.StructuredPostal.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.StructuredPostal.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.StructuredPostal.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Website.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Website.html
new file mode 100644
index 0000000..e3f3c0d
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.CommonDataKinds.Website.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.CommonDataKinds.Website
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.CommonDataKinds.Website.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Website</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.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Website.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Website.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Website.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.ContactOptionsColumns.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.ContactOptionsColumns.html
new file mode 100644
index 0000000..1e868ea
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.ContactOptionsColumns.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.ContactOptionsColumns
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.ContactOptionsColumns.html" target="_top"><font size="+2"><code>ContactsContract.ContactOptionsColumns</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.ContactsContract.ContactOptionsColumns.PINNED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.ContactOptionsColumns.html#PINNED" target="_top"><code>PINNED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.Contacts.Entity.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.Contacts.Entity.html
new file mode 100644
index 0000000..40cb1ed
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.Contacts.Entity.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.Contacts.Entity
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.Contacts.Entity.html" target="_top"><font size="+2"><code>ContactsContract.Contacts.Entity</code></font></A>
+</H2>
+<p><font xsize="+1">Added interface <code>android.provider.ContactsContract.DataUsageStatColumns</code>.<br></font>
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.Contacts.StreamItems.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.Contacts.StreamItems.html
new file mode 100644
index 0000000..236cb9b
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.Contacts.StreamItems.html
@@ -0,0 +1,125 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.Contacts.StreamItems
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.Contacts.StreamItems.html" target="_top"><font size="+2"><code>ContactsContract.Contacts.StreamItems</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.ContactsContract.Contacts.StreamItems.CONTENT_DIRECTORY"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.Contacts.StreamItems.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>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.Contacts.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.Contacts.html
new file mode 100644
index 0000000..b61e907
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.Contacts.html
@@ -0,0 +1,158 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.Contacts.html" target="_top"><font size="+2"><code>ContactsContract.Contacts</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.ContactsContract.Contacts.isEnterpriseContactId_added(long)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.Contacts.html#isEnterpriseContactId(long)" target="_top"><code>isEnterpriseContactId</code></A>(<code>long</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.ContactsContract.Contacts.CONTENT_FREQUENT_URI"></A>
+  <nobr><code>Uri</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.Contacts.html#CONTENT_FREQUENT_URI" target="_top"><code>CONTENT_FREQUENT_URI</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.Contacts.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.Contacts.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.Contacts.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.ContactsColumns.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.ContactsColumns.html
new file mode 100644
index 0000000..868437a
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.ContactsColumns.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.ContactsColumns
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.ContactsColumns.html" target="_top"><font size="+2"><code>ContactsContract.ContactsColumns</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.ContactsContract.ContactsColumns.NAME_RAW_CONTACT_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.ContactsColumns.html#NAME_RAW_CONTACT_ID" target="_top"><code>NAME_RAW_CONTACT_ID</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.Data.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.Data.html
new file mode 100644
index 0000000..d8f347d
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.Data.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.Data
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.Data.html" target="_top"><font size="+2"><code>ContactsContract.Data</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.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.Data.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.Data.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.Data.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.DataColumns.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.DataColumns.html
new file mode 100644
index 0000000..cb5e81e
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.DataColumns.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.DataColumns
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.DataColumns.html" target="_top"><font size="+2"><code>ContactsContract.DataColumns</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.ContactsContract.DataColumns.RES_PACKAGE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.DataColumns.html#RES_PACKAGE" target="_top"><code>RES_PACKAGE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.GroupsColumns.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.GroupsColumns.html
new file mode 100644
index 0000000..924cdf8
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.GroupsColumns.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.GroupsColumns.html" target="_top"><font size="+2"><code>ContactsContract.GroupsColumns</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.ContactsContract.GroupsColumns.RES_PACKAGE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.GroupsColumns.html#RES_PACKAGE" target="_top"><code>RES_PACKAGE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.GroupsColumns.TITLE_RES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.GroupsColumns.html#TITLE_RES" target="_top"><code>TITLE_RES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.PhoneLookup.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.PhoneLookup.html
new file mode 100644
index 0000000..a392445
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.PhoneLookup.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.PhoneLookup
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.PhoneLookup.html" target="_top"><font size="+2"><code>ContactsContract.PhoneLookup</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.ContactsContract.PhoneLookup.ENTERPRISE_CONTENT_FILTER_URI"></A>
+  <nobr><code>Uri</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.PhoneLookup.html#ENTERPRISE_CONTENT_FILTER_URI" target="_top"><code>ENTERPRISE_CONTENT_FILTER_URI</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.QuickContact.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.QuickContact.html
new file mode 100644
index 0000000..fc9ff9f
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.QuickContact.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.QuickContact
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.QuickContact.html" target="_top"><font size="+2"><code>ContactsContract.QuickContact</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.ContactsContract.QuickContact.ACTION_QUICK_CONTACT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.QuickContact.html#ACTION_QUICK_CONTACT" target="_top"><code>ACTION_QUICK_CONTACT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.QuickContact.EXTRA_EXCLUDE_MIMES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.QuickContact.html#EXTRA_EXCLUDE_MIMES" target="_top"><code>EXTRA_EXCLUDE_MIMES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.RawContacts.StreamItems.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.RawContacts.StreamItems.html
new file mode 100644
index 0000000..4b82b72
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.RawContacts.StreamItems.html
@@ -0,0 +1,125 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.RawContacts.StreamItems
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.RawContacts.StreamItems.html" target="_top"><font size="+2"><code>ContactsContract.RawContacts.StreamItems</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.ContactsContract.RawContacts.StreamItems.CONTENT_DIRECTORY"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.RawContacts.StreamItems.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>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.RawContactsColumns.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.RawContactsColumns.html
new file mode 100644
index 0000000..c51d5c1
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.RawContactsColumns.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.RawContactsColumns
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.RawContactsColumns.html" target="_top"><font size="+2"><code>ContactsContract.RawContactsColumns</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.ContactsContract.RawContactsColumns.ACCOUNT_TYPE_AND_DATA_SET"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.RawContactsColumns.html#ACCOUNT_TYPE_AND_DATA_SET" target="_top"><code>ACCOUNT_TYPE_AND_DATA_SET</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.StreamItemPhotos.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.StreamItemPhotos.html
new file mode 100644
index 0000000..47bda44
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.StreamItemPhotos.html
@@ -0,0 +1,125 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.StreamItemPhotos
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.StreamItemPhotos.html" target="_top"><font size="+2"><code>ContactsContract.StreamItemPhotos</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.ContactsContract.StreamItemPhotos.PHOTO"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemPhotos.html#PHOTO" target="_top"><code>PHOTO</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.StreamItemPhotosColumns.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.StreamItemPhotosColumns.html
new file mode 100644
index 0000000..1f9b6e5
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.StreamItemPhotosColumns.html
@@ -0,0 +1,188 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.StreamItemPhotosColumns
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.StreamItemPhotosColumns.html" target="_top"><font size="+2"><code>ContactsContract.StreamItemPhotosColumns</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.ContactsContract.StreamItemPhotosColumns.PHOTO_FILE_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemPhotosColumns.html#PHOTO_FILE_ID" target="_top"><code>PHOTO_FILE_ID</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemPhotosColumns.PHOTO_URI"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemPhotosColumns.html#PHOTO_URI" target="_top"><code>PHOTO_URI</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemPhotosColumns.SORT_INDEX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemPhotosColumns.html#SORT_INDEX" target="_top"><code>SORT_INDEX</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemPhotosColumns.STREAM_ITEM_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemPhotosColumns.html#STREAM_ITEM_ID" target="_top"><code>STREAM_ITEM_ID</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemPhotosColumns.SYNC1"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemPhotosColumns.html#SYNC1" target="_top"><code>SYNC1</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemPhotosColumns.SYNC2"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemPhotosColumns.html#SYNC2" target="_top"><code>SYNC2</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemPhotosColumns.SYNC3"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemPhotosColumns.html#SYNC3" target="_top"><code>SYNC3</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemPhotosColumns.SYNC4"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemPhotosColumns.html#SYNC4" target="_top"><code>SYNC4</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.StreamItems.StreamItemPhotos.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.StreamItems.StreamItemPhotos.html
new file mode 100644
index 0000000..c363536
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.StreamItems.StreamItemPhotos.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.StreamItems.StreamItemPhotos
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.StreamItems.StreamItemPhotos.html" target="_top"><font size="+2"><code>ContactsContract.StreamItems.StreamItemPhotos</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.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_DIRECTORY"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItems.StreamItemPhotos.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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_ITEM_TYPE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItems.StreamItemPhotos.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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_TYPE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItems.StreamItemPhotos.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>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.StreamItems.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.StreamItems.html
new file mode 100644
index 0000000..aa58720
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.StreamItems.html
@@ -0,0 +1,170 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.StreamItems
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.StreamItems.html" target="_top"><font size="+2"><code>ContactsContract.StreamItems</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.ContactsContract.StreamItems.CONTENT_ITEM_TYPE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItems.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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItems.CONTENT_LIMIT_URI"></A>
+  <nobr><code>Uri</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItems.html#CONTENT_LIMIT_URI" target="_top"><code>CONTENT_LIMIT_URI</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItems.CONTENT_PHOTO_URI"></A>
+  <nobr><code>Uri</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItems.html#CONTENT_PHOTO_URI" target="_top"><code>CONTENT_PHOTO_URI</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItems.CONTENT_TYPE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItems.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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItems.CONTENT_URI"></A>
+  <nobr><code>Uri</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItems.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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItems.MAX_ITEMS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItems.html#MAX_ITEMS" target="_top"><code>MAX_ITEMS</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.StreamItemsColumns.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.StreamItemsColumns.html
new file mode 100644
index 0000000..67ef379
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.StreamItemsColumns.html
@@ -0,0 +1,269 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract.StreamItemsColumns
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.StreamItemsColumns.html" target="_top"><font size="+2"><code>ContactsContract.StreamItemsColumns</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.ContactsContract.StreamItemsColumns.ACCOUNT_NAME"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#ACCOUNT_NAME" target="_top"><code>ACCOUNT_NAME</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.ACCOUNT_TYPE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#ACCOUNT_TYPE" target="_top"><code>ACCOUNT_TYPE</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.COMMENTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#COMMENTS" target="_top"><code>COMMENTS</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.CONTACT_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#CONTACT_ID" target="_top"><code>CONTACT_ID</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.CONTACT_LOOKUP_KEY"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#CONTACT_LOOKUP_KEY" target="_top"><code>CONTACT_LOOKUP_KEY</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.DATA_SET"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#DATA_SET" target="_top"><code>DATA_SET</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.RAW_CONTACT_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#RAW_CONTACT_ID" target="_top"><code>RAW_CONTACT_ID</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.RAW_CONTACT_SOURCE_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#RAW_CONTACT_SOURCE_ID" target="_top"><code>RAW_CONTACT_SOURCE_ID</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.RES_ICON"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#RES_ICON" target="_top"><code>RES_ICON</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.RES_LABEL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#RES_LABEL" target="_top"><code>RES_LABEL</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.RES_PACKAGE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#RES_PACKAGE" target="_top"><code>RES_PACKAGE</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.SYNC1"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#SYNC1" target="_top"><code>SYNC1</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.SYNC2"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#SYNC2" target="_top"><code>SYNC2</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.SYNC3"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#SYNC3" target="_top"><code>SYNC3</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.SYNC4"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#SYNC4" target="_top"><code>SYNC4</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.TEXT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#TEXT" target="_top"><code>TEXT</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.StreamItemsColumns.TIMESTAMP"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItemsColumns.html#TIMESTAMP" target="_top"><code>TIMESTAMP</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.ContactsContract.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.html
new file mode 100644
index 0000000..8d30481
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.ContactsContract.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ContactsContract
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ContactsContract.html" target="_top"><font size="+2"><code>ContactsContract</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.ContactsContract.DEFERRED_SNIPPETING"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.html#DEFERRED_SNIPPETING" target="_top"><code>DEFERRED_SNIPPETING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.ContactsContract.DEFERRED_SNIPPETING_QUERY"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.html#DEFERRED_SNIPPETING_QUERY" target="_top"><code>DEFERRED_SNIPPETING_QUERY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.MediaStore.Audio.Radio.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.MediaStore.Audio.Radio.html
new file mode 100644
index 0000000..262cb28
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.MediaStore.Audio.Radio.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Audio.Radio
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.Audio.Radio.html" target="_top"><font size="+2"><code>MediaStore.Audio.Radio</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.provider.MediaStore.Audio.Radio.ctor_removed()"></A>
+  <nobr>MediaStore.Audio.Radio()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.Settings.Secure.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.Settings.Secure.html
new file mode 100644
index 0000000..3025e2b
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.Settings.Secure.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Secure
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.Secure.html" target="_top"><font size="+2"><code>Settings.Secure</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.Secure.SKIP_FIRST_USE_HINTS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Settings.Secure.html#SKIP_FIRST_USE_HINTS" target="_top"><code>SKIP_FIRST_USE_HINTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.Settings.System.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.Settings.System.html
new file mode 100644
index 0000000..e856100
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.Settings.System.html
@@ -0,0 +1,124 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="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.Settings.System.NEXT_ALARM_FORMATTED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Settings.System.html#NEXT_ALARM_FORMATTED" target="_top"><code>NEXT_ALARM_FORMATTED</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.Settings.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.Settings.html
new file mode 100644
index 0000000..b1f6bbc
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.Settings.html
@@ -0,0 +1,150 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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_CAST_SETTINGS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Settings.html#ACTION_CAST_SETTINGS" target="_top"><code>ACTION_CAST_SETTINGS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.Settings.ACTION_HOME_SETTINGS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Settings.html#ACTION_HOME_SETTINGS" target="_top"><code>ACTION_HOME_SETTINGS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.Settings.ACTION_SHOW_REGULATORY_INFO"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Settings.html#ACTION_SHOW_REGULATORY_INFO" target="_top"><code>ACTION_SHOW_REGULATORY_INFO</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.Settings.ACTION_USAGE_ACCESS_SETTINGS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Settings.html#ACTION_USAGE_ACCESS_SETTINGS" target="_top"><code>ACTION_USAGE_ACCESS_SETTINGS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.Settings.ACTION_VOICE_INPUT_SETTINGS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Settings.html#ACTION_VOICE_INPUT_SETTINGS" target="_top"><code>ACTION_VOICE_INPUT_SETTINGS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.Telephony.BaseMmsColumns.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.Telephony.BaseMmsColumns.html
new file mode 100644
index 0000000..77997ca
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.Telephony.BaseMmsColumns.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Telephony.BaseMmsColumns
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/Telephony.BaseMmsColumns.html" target="_top"><font size="+2"><code>Telephony.BaseMmsColumns</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.Telephony.BaseMmsColumns.CREATOR"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Telephony.BaseMmsColumns.html#CREATOR" target="_top"><code>CREATOR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.provider.Telephony.BaseMmsColumns.MESSAGE_BOX_FAILED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/provider/Telephony.BaseMmsColumns.html#MESSAGE_BOX_FAILED" target="_top"><code>MESSAGE_BOX_FAILED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.Telephony.TextBasedSmsColumns.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.Telephony.TextBasedSmsColumns.html
new file mode 100644
index 0000000..6c13aaf
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.Telephony.TextBasedSmsColumns.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Telephony.TextBasedSmsColumns
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/Telephony.TextBasedSmsColumns.html" target="_top"><font size="+2"><code>Telephony.TextBasedSmsColumns</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.Telephony.TextBasedSmsColumns.CREATOR"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Telephony.TextBasedSmsColumns.html#CREATOR" target="_top"><code>CREATOR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.Telephony.ThreadsColumns.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.Telephony.ThreadsColumns.html
new file mode 100644
index 0000000..61fb7514
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.Telephony.ThreadsColumns.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Telephony.ThreadsColumns
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/Telephony.ThreadsColumns.html" target="_top"><font size="+2"><code>Telephony.ThreadsColumns</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.Telephony.ThreadsColumns.ARCHIVED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Telephony.ThreadsColumns.html#ARCHIVED" target="_top"><code>ARCHIVED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.provider.VoicemailContract.Voicemails.html b/docs/html/sdk/api_diff/preview-21/changes/android.provider.VoicemailContract.Voicemails.html
new file mode 100644
index 0000000..678bd1c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.provider.VoicemailContract.Voicemails.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.VoicemailContract.Voicemails
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/VoicemailContract.Voicemails.html" target="_top"><font size="+2"><code>VoicemailContract.Voicemails</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.VoicemailContract.Voicemails.TRANSCRIPTION"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/VoicemailContract.Voicemails.html#TRANSCRIPTION" target="_top"><code>TRANSCRIPTION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.renderscript.ScriptC.html b/docs/html/sdk/api_diff/preview-21/changes/android.renderscript.ScriptC.html
new file mode 100644
index 0000000..57615d1
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.renderscript.ScriptC.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.renderscript.ScriptC
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.renderscript.<A HREF="../../../../reference/android/renderscript/ScriptC.html" target="_top"><font size="+2"><code>ScriptC</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.renderscript.ScriptC.ctor_added(android.renderscript.RenderScript, java.lang.String, byte[], byte[])"></A>
+  <nobr><A HREF="../../../../reference/android/renderscript/ScriptC.html#ScriptC(android.renderscript.RenderScript, java.lang.String, byte[], byte[])" target="_top"><code>ScriptC</code></A>(<code>RenderScript,</nobr> String<nobr>,</nobr> byte[]<nobr>,</nobr> byte[]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript.ScriptC.ctor_added(long, android.renderscript.RenderScript)"></A>
+  <nobr><A HREF="../../../../reference/android/renderscript/ScriptC.html#ScriptC(long, android.renderscript.RenderScript)" target="_top"><code>ScriptC</code></A>(<code>long,</nobr> RenderScript<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.service.dreams.DreamService.html b/docs/html/sdk/api_diff/preview-21/changes/android.service.dreams.DreamService.html
new file mode 100644
index 0000000..ef5165f67
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.service.dreams.DreamService.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.service.dreams.DreamService
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.service.dreams.<A HREF="../../../../reference/android/service/dreams/DreamService.html" target="_top"><font size="+2"><code>DreamService</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.service.dreams.DreamService.onWakeUp_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/dreams/DreamService.html#onWakeUp()" target="_top"><code>onWakeUp</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.dreams.DreamService.wakeUp_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/dreams/DreamService.html#wakeUp()" target="_top"><code>wakeUp</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.service.notification.NotificationListenerService.Ranking.html b/docs/html/sdk/api_diff/preview-21/changes/android.service.notification.NotificationListenerService.Ranking.html
new file mode 100644
index 0000000..8c6912a
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.service.notification.NotificationListenerService.Ranking.html
@@ -0,0 +1,152 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.service.notification.NotificationListenerService.Ranking
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.service.notification.<A HREF="../../../../reference/android/service/notification/NotificationListenerService.Ranking.html" target="_top"><font size="+2"><code>NotificationListenerService.Ranking</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.service.notification.NotificationListenerService.Ranking.ctor_added()"></A>
+  <nobr><A HREF="../../../../reference/android/service/notification/NotificationListenerService.Ranking.html#NotificationListenerService.Ranking()" target="_top"><code>NotificationListenerService.<br>Ranking</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.Ranking.isInterceptedByDoNotDisturb_removed()"></A>
+  <nobr><code>boolean</code>&nbsp;isInterceptedByDoNotDisturb()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.service.notification.NotificationListenerService.Ranking.matchesInterruptionFilter_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.Ranking.html#matchesInterruptionFilter()" target="_top"><code>matchesInterruptionFilter</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.service.notification.NotificationListenerService.RankingMap.html b/docs/html/sdk/api_diff/preview-21/changes/android.service.notification.NotificationListenerService.RankingMap.html
new file mode 100644
index 0000000..79b5c38
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.service.notification.NotificationListenerService.RankingMap.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.service.notification.NotificationListenerService.RankingMap
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.service.notification.<A HREF="../../../../reference/android/service/notification/NotificationListenerService.RankingMap.html" target="_top"><font size="+2"><code>NotificationListenerService.RankingMap</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.service.notification.NotificationListenerService.RankingMap.getRanking_changed(java.lang.String, android.service.notification.NotificationListenerService.Ranking)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.RankingMap.html#getRanking(java.lang.String, android.service.notification.NotificationListenerService.Ranking)" target="_top"><code>getRanking</code></A>(<code>String,</nobr> Ranking<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in return type from <code>Ranking</code> to <code>boolean</code>.<br>
+ Change in signature from <code>String</code> to (<code>String, Ranking</code>).<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.service.notification.NotificationListenerService.html b/docs/html/sdk/api_diff/preview-21/changes/android.service.notification.NotificationListenerService.html
new file mode 100644
index 0000000..00aa802
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.service.notification.NotificationListenerService.html
@@ -0,0 +1,200 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.service.notification.NotificationListenerService
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.service.notification.<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html" target="_top"><font size="+2"><code>NotificationListenerService</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.service.notification.NotificationListenerService.getActiveNotifications_added(java.lang.String[])"></A>
+  <nobr><code>StatusBarNotification[]</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#getActiveNotifications(java.lang.String[])" target="_top"><code>getActiveNotifications</code></A>(<code>String[]</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.getCurrentInterruptionFilter_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#getCurrentInterruptionFilter()" target="_top"><code>getCurrentInterruptionFilter</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.getCurrentListenerHints_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#getCurrentListenerHints()" target="_top"><code>getCurrentListenerHints</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.onInterruptionFilterChanged_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#onInterruptionFilterChanged(int)" target="_top"><code>onInterruptionFilterChanged</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.onListenerHintsChanged_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#onListenerHintsChanged(int)" target="_top"><code>onListenerHintsChanged</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.requestInterruptionFilter_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#requestInterruptionFilter(int)" target="_top"><code>requestInterruptionFilter</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.requestListenerHints_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#requestListenerHints(int)" target="_top"><code>requestListenerHints</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.service.notification.NotificationListenerService.HINT_HOST_DISABLE_EFFECTS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#HINT_HOST_DISABLE_EFFECTS" target="_top"><code>HINT_HOST_DISABLE_EFFECTS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_ALL"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#INTERRUPTION_FILTER_ALL" target="_top"><code>INTERRUPTION_FILTER_ALL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_NONE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#INTERRUPTION_FILTER_NONE" target="_top"><code>INTERRUPTION_FILTER_NONE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_PRIORITY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/service/notification/NotificationListenerService.html#INTERRUPTION_FILTER_PRIORITY" target="_top"><code>INTERRUPTION_FILTER_PRIORITY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.service.notification.StatusBarNotification.html b/docs/html/sdk/api_diff/preview-21/changes/android.service.notification.StatusBarNotification.html
new file mode 100644
index 0000000..4ed9bf1
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.service.notification.StatusBarNotification.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.service.notification.StatusBarNotification
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.service.notification.<A HREF="../../../../reference/android/service/notification/StatusBarNotification.html" target="_top"><font size="+2"><code>StatusBarNotification</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.service.notification.StatusBarNotification.getGroupKey_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/service/notification/StatusBarNotification.html#getGroupKey()" target="_top"><code>getGroupKey</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.service.voice.VoiceInteractionService.html b/docs/html/sdk/api_diff/preview-21/changes/android.service.voice.VoiceInteractionService.html
new file mode 100644
index 0000000..323fee0
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.service.voice.VoiceInteractionService.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.service.voice.VoiceInteractionService
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.service.voice.<A HREF="../../../../reference/android/service/voice/VoiceInteractionService.html" target="_top"><font size="+2"><code>VoiceInteractionService</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.service.voice.VoiceInteractionService.createAlwaysOnHotwordDetector_added(java.lang.String, java.util.Locale, android.service.voice.AlwaysOnHotwordDetector.Callback)"></A>
+  <nobr><code>AlwaysOnHotwordDetector</code>&nbsp;<A HREF="../../../../reference/android/service/voice/VoiceInteractionService.html#createAlwaysOnHotwordDetector(java.lang.String, java.util.Locale, android.service.voice.AlwaysOnHotwordDetector.Callback)" target="_top"><code>createAlwaysOnHotwordDetector</code></A>(<code>String,</nobr> Locale<nobr>,</nobr> Callback<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.voice.VoiceInteractionService.isActiveService_added(android.content.Context, android.content.ComponentName)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/service/voice/VoiceInteractionService.html#isActiveService(android.content.Context, android.content.ComponentName)" target="_top"><code>isActiveService</code></A>(<code>Context,</nobr> ComponentName<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.voice.VoiceInteractionService.onReady_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/voice/VoiceInteractionService.html#onReady()" target="_top"><code>onReady</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.voice.VoiceInteractionService.onShutdown_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/voice/VoiceInteractionService.html#onShutdown()" target="_top"><code>onShutdown</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.service.voice.VoiceInteractionSession.html b/docs/html/sdk/api_diff/preview-21/changes/android.service.voice.VoiceInteractionSession.html
new file mode 100644
index 0000000..c96cf96
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.service.voice.VoiceInteractionSession.html
@@ -0,0 +1,227 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.service.voice.VoiceInteractionSession
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.service.voice.<A HREF="../../../../reference/android/service/voice/VoiceInteractionSession.html" target="_top"><font size="+2"><code>VoiceInteractionSession</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.voice.VoiceInteractionSession.getLayoutInflater_removed()"></A>
+  <nobr><code>LayoutInflater</code>&nbsp;getLayoutInflater()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.voice.VoiceInteractionSession.getWindow_removed()"></A>
+  <nobr><code>Dialog</code>&nbsp;getWindow()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.voice.VoiceInteractionSession.hideWindow_removed()"></A>
+  <nobr><code>void</code>&nbsp;hideWindow()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.voice.VoiceInteractionSession.onAbortVoice_removed(android.service.voice.VoiceInteractionSession.Caller, android.service.voice.VoiceInteractionSession.Request, java.lang.CharSequence, android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;onAbortVoice(<code>Caller,</nobr> Request<nobr>,</nobr> CharSequence<nobr>,</nobr> Bundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.voice.VoiceInteractionSession.onBackPressed_removed()"></A>
+  <nobr><code>void</code>&nbsp;onBackPressed()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.voice.VoiceInteractionSession.onCancel_removed(android.service.voice.VoiceInteractionSession.Request)"></A>
+  <nobr><code>void</code>&nbsp;onCancel(<code>Request</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.voice.VoiceInteractionSession.onCommand_removed(android.service.voice.VoiceInteractionSession.Caller, android.service.voice.VoiceInteractionSession.Request, java.lang.String, android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;onCommand(<code>Caller,</nobr> Request<nobr>,</nobr> String<nobr>,</nobr> Bundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.voice.VoiceInteractionSession.onComputeInsets_removed(android.service.voice.VoiceInteractionSession.Insets)"></A>
+  <nobr><code>void</code>&nbsp;onComputeInsets(<code>Insets</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.voice.VoiceInteractionSession.onConfirm_removed(android.service.voice.VoiceInteractionSession.Caller, android.service.voice.VoiceInteractionSession.Request, java.lang.CharSequence, android.os.Bundle)"></A>
+  <nobr><code>void</code>&nbsp;onConfirm(<code>Caller,</nobr> Request<nobr>,</nobr> CharSequence<nobr>,</nobr> Bundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.voice.VoiceInteractionSession.onCreateContentView_removed()"></A>
+  <nobr><code>View</code>&nbsp;onCreateContentView()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.voice.VoiceInteractionSession.onGetSupportedCommands_removed(android.service.voice.VoiceInteractionSession.Caller, java.lang.String[])"></A>
+  <nobr><code>boolean[]</code>&nbsp;onGetSupportedCommands(<code>Caller,</nobr> String[]<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.voice.VoiceInteractionSession.onTaskFinished_removed(android.content.Intent, int)"></A>
+  <nobr><code>void</code>&nbsp;onTaskFinished(<code>Intent,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.voice.VoiceInteractionSession.onTaskStarted_removed(android.content.Intent, int)"></A>
+  <nobr><code>void</code>&nbsp;onTaskStarted(<code>Intent,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.voice.VoiceInteractionSession.setTheme_removed(int)"></A>
+  <nobr><code>void</code>&nbsp;setTheme(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.voice.VoiceInteractionSession.showWindow_removed()"></A>
+  <nobr><code>void</code>&nbsp;showWindow()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.voice.VoiceInteractionSession.startVoiceActivity_removed(android.content.Intent)"></A>
+  <nobr><code>void</code>&nbsp;startVoiceActivity(<code>Intent</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.service.wallpaper.WallpaperService.Engine.html b/docs/html/sdk/api_diff/preview-21/changes/android.service.wallpaper.WallpaperService.Engine.html
new file mode 100644
index 0000000..087adeb
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.service.wallpaper.WallpaperService.Engine.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.service.wallpaper.WallpaperService.Engine
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.service.wallpaper.<A HREF="../../../../reference/android/service/wallpaper/WallpaperService.Engine.html" target="_top"><font size="+2"><code>WallpaperService.Engine</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.service.wallpaper.WallpaperService.Engine.onApplyWindowInsets_added(android.view.WindowInsets)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/service/wallpaper/WallpaperService.Engine.html#onApplyWindowInsets(android.view.WindowInsets)" target="_top"><code>onApplyWindowInsets</code></A>(<code>WindowInsets</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.speech.tts.SynthesisCallback.html b/docs/html/sdk/api_diff/preview-21/changes/android.speech.tts.SynthesisCallback.html
new file mode 100644
index 0000000..8fd4328
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.speech.tts.SynthesisCallback.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.speech.tts.SynthesisCallback
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.speech.tts.<A HREF="../../../../reference/android/speech/tts/SynthesisCallback.html" target="_top"><font size="+2"><code>SynthesisCallback</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.speech.tts.SynthesisCallback.error_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/SynthesisCallback.html#error(int)" target="_top"><code>error</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.SynthesisCallback.hasFinished_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/SynthesisCallback.html#hasFinished()" target="_top"><code>hasFinished</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.SynthesisCallback.hasStarted_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/SynthesisCallback.html#hasStarted()" target="_top"><code>hasStarted</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.speech.tts.SynthesisRequest.html b/docs/html/sdk/api_diff/preview-21/changes/android.speech.tts.SynthesisRequest.html
new file mode 100644
index 0000000..f990a3c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.speech.tts.SynthesisRequest.html
@@ -0,0 +1,162 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.speech.tts.SynthesisRequest
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.speech.tts.<A HREF="../../../../reference/android/speech/tts/SynthesisRequest.html" target="_top"><font size="+2"><code>SynthesisRequest</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.speech.tts.SynthesisRequest.ctor_added(java.lang.CharSequence, android.os.Bundle)"></A>
+  <nobr><A HREF="../../../../reference/android/speech/tts/SynthesisRequest.html#SynthesisRequest(java.lang.CharSequence, android.os.Bundle)" target="_top"><code>SynthesisRequest</code></A>(<code>CharSequence,</nobr> Bundle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.speech.tts.SynthesisRequest.getCharSequenceText_added()"></A>
+  <nobr><code>CharSequence</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/SynthesisRequest.html#getCharSequenceText()" target="_top"><code>getCharSequenceText</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.SynthesisRequest.getVoiceName_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/SynthesisRequest.html#getVoiceName()" target="_top"><code>getVoiceName</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.speech.tts.SynthesisRequest.getText_changed()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/SynthesisRequest.html#getText()" target="_top"><code>getText</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.speech.tts.TextToSpeech.Engine.html b/docs/html/sdk/api_diff/preview-21/changes/android.speech.tts.TextToSpeech.Engine.html
new file mode 100644
index 0000000..8f16987
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.speech.tts.TextToSpeech.Engine.html
@@ -0,0 +1,169 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.speech.tts.TextToSpeech.Engine
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.speech.tts.<A HREF="../../../../reference/android/speech/tts/TextToSpeech.Engine.html" target="_top"><font size="+2"><code>TextToSpeech.Engine</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.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_RETRIES_COUNT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.Engine.html#KEY_FEATURE_NETWORK_RETRIES_COUNT" target="_top"><code>KEY_FEATURE_NETWORK_RETRIES_COUNT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_TIMEOUT_MS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.Engine.html#KEY_FEATURE_NETWORK_TIMEOUT_MS" target="_top"><code>KEY_FEATURE_NETWORK_TIMEOUT_MS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NOT_INSTALLED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.Engine.html#KEY_FEATURE_NOT_INSTALLED" target="_top"><code>KEY_FEATURE_NOT_INSTALLED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.Engine.KEY_PARAM_SESSION_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.Engine.html#KEY_PARAM_SESSION_ID" target="_top"><code>KEY_PARAM_SESSION_ID</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.speech.tts.TextToSpeech.Engine.KEY_FEATURE_EMBEDDED_SYNTHESIS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.Engine.html#KEY_FEATURE_EMBEDDED_SYNTHESIS" target="_top"><code>KEY_FEATURE_EMBEDDED_SYNTHESIS</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_SYNTHESIS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.Engine.html#KEY_FEATURE_NETWORK_SYNTHESIS" target="_top"><code>KEY_FEATURE_NETWORK_SYNTHESIS</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.speech.tts.TextToSpeech.html b/docs/html/sdk/api_diff/preview-21/changes/android.speech.tts.TextToSpeech.html
new file mode 100644
index 0000000..d6277b4
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.speech.tts.TextToSpeech.html
@@ -0,0 +1,380 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.speech.tts.TextToSpeech
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.speech.tts.<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html" target="_top"><font size="+2"><code>TextToSpeech</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.addEarcon_removed(java.lang.String, java.lang.String)"></A>
+  <nobr><code>int</code>&nbsp;addEarcon(<code>String,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.io.File)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#addEarcon(java.lang.String, java.io.File)" target="_top"><code>addEarcon</code></A>(<code>String,</nobr> File<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.lang.String)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#addEarcon(java.lang.String, java.lang.String)" target="_top"><code>addEarcon</code></A>(<code>String,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.io.File)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#addSpeech(java.lang.CharSequence, java.io.File)" target="_top"><code>addSpeech</code></A>(<code>CharSequence,</nobr> File<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.lang.String, int)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#addSpeech(java.lang.CharSequence, java.lang.String, int)" target="_top"><code>addSpeech</code></A>(<code>CharSequence,</nobr> String<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.getAvailableLanguages_added()"></A>
+  <nobr><code>Set&lt;Locale&gt;</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#getAvailableLanguages()" target="_top"><code>getAvailableLanguages</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.getDefaultVoice_added()"></A>
+  <nobr><code>Voice</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#getDefaultVoice()" target="_top"><code>getDefaultVoice</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.getVoice_added()"></A>
+  <nobr><code>Voice</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#getVoice()" target="_top"><code>getVoice</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.getVoices_added()"></A>
+  <nobr><code>Set&lt;Voice&gt;</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#getVoices()" target="_top"><code>getVoices</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.playEarcon_added(java.lang.String, int, android.os.Bundle, java.lang.String)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#playEarcon(java.lang.String, int, android.os.Bundle, java.lang.String)" target="_top"><code>playEarcon</code></A>(<code>String,</nobr> int<nobr>,</nobr> Bundle<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.playSilentUtterance_added(long, int, java.lang.String)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#playSilentUtterance(long, int, java.lang.String)" target="_top"><code>playSilentUtterance</code></A>(<code>long,</nobr> int<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.setAudioAttributes_added(android.media.AudioAttributes)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#setAudioAttributes(android.media.AudioAttributes)" target="_top"><code>setAudioAttributes</code></A>(<code>AudioAttributes</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.setVoice_added(android.speech.tts.Voice)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#setVoice(android.speech.tts.Voice)" target="_top"><code>setVoice</code></A>(<code>Voice</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.speak_added(java.lang.CharSequence, int, android.os.Bundle, java.lang.String)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#speak(java.lang.CharSequence, int, android.os.Bundle, java.lang.String)" target="_top"><code>speak</code></A>(<code>CharSequence,</nobr> int<nobr>,</nobr> Bundle<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.synthesizeToFile_added(java.lang.CharSequence, android.os.Bundle, java.io.File, java.lang.String)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#synthesizeToFile(java.lang.CharSequence, android.os.Bundle, java.io.File, java.lang.String)" target="_top"><code>synthesizeToFile</code></A>(<code>CharSequence,</nobr> Bundle<nobr>,</nobr> File<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.speech.tts.TextToSpeech.areDefaultsEnforced_changed()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#areDefaultsEnforced()" target="_top"><code>areDefaultsEnforced</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.getDefaultLanguage_changed()"></A>
+  <nobr><code>Locale</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#getDefaultLanguage()" target="_top"><code>getDefaultLanguage</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.getFeatures_changed(java.util.Locale)"></A>
+  <nobr><code>Set&lt;String&gt;</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#getFeatures(java.util.Locale)" target="_top"><code>getFeatures</code></A>(<code>Locale</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.getLanguage_changed()"></A>
+  <nobr><code>Locale</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#getLanguage()" target="_top"><code>getLanguage</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.playSilence_changed(long, int, java.util.HashMap<java.lang.String, java.lang.String>)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#playSilence(long, int, java.util.HashMap<java.lang.String, java.lang.String>)" target="_top"><code>playSilence</code></A>(<code>long,</nobr> int<nobr>,</nobr> HashMap&lt;String<nobr>,</nobr> String&gt;<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.playEarcon_changed(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#playEarcon(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)" target="_top"><code>playEarcon</code></A>(<code>String,</nobr> int<nobr>,</nobr> HashMap&lt;String<nobr>,</nobr> String&gt;<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.speak_changed(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#speak(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)" target="_top"><code>speak</code></A>(<code>String,</nobr> int<nobr>,</nobr> HashMap&lt;String<nobr>,</nobr> String&gt;<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.synthesizeToFile_changed(java.lang.String, java.util.HashMap<java.lang.String, java.lang.String>, java.lang.String)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#synthesizeToFile(java.lang.String, java.util.HashMap<java.lang.String, java.lang.String>, java.lang.String)" target="_top"><code>synthesizeToFile</code></A>(<code>String,</nobr> HashMap&lt;String<nobr>,</nobr> String&gt;<nobr>,</nobr> String<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.speech.tts.TextToSpeech.ERROR_INVALID_REQUEST"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#ERROR_INVALID_REQUEST" target="_top"><code>ERROR_INVALID_REQUEST</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.ERROR_NETWORK"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#ERROR_NETWORK" target="_top"><code>ERROR_NETWORK</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.ERROR_NETWORK_TIMEOUT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#ERROR_NETWORK_TIMEOUT" target="_top"><code>ERROR_NETWORK_TIMEOUT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.ERROR_NOT_INSTALLED_YET"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#ERROR_NOT_INSTALLED_YET" target="_top"><code>ERROR_NOT_INSTALLED_YET</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.ERROR_OUTPUT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#ERROR_OUTPUT" target="_top"><code>ERROR_OUTPUT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.ERROR_SERVICE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#ERROR_SERVICE" target="_top"><code>ERROR_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.ERROR_SYNTHESIS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#ERROR_SYNTHESIS" target="_top"><code>ERROR_SYNTHESIS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeech.STOPPED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeech.html#STOPPED" target="_top"><code>STOPPED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.speech.tts.TextToSpeechService.html b/docs/html/sdk/api_diff/preview-21/changes/android.speech.tts.TextToSpeechService.html
new file mode 100644
index 0000000..e886beb
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.speech.tts.TextToSpeechService.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.speech.tts.TextToSpeechService
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.speech.tts.<A HREF="../../../../reference/android/speech/tts/TextToSpeechService.html" target="_top"><font size="+2"><code>TextToSpeechService</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.speech.tts.TextToSpeechService.onGetDefaultVoiceNameFor_added(java.lang.String, java.lang.String, java.lang.String)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeechService.html#onGetDefaultVoiceNameFor(java.lang.String, java.lang.String, java.lang.String)" target="_top"><code>onGetDefaultVoiceNameFor</code></A>(<code>String,</nobr> String<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeechService.onGetVoices_added()"></A>
+  <nobr><code>List&lt;Voice&gt;</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeechService.html#onGetVoices()" target="_top"><code>onGetVoices</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeechService.onIsValidVoiceName_added(java.lang.String)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeechService.html#onIsValidVoiceName(java.lang.String)" target="_top"><code>onIsValidVoiceName</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.TextToSpeechService.onLoadVoice_added(java.lang.String)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/TextToSpeechService.html#onLoadVoice(java.lang.String)" target="_top"><code>onLoadVoice</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.speech.tts.UtteranceProgressListener.html b/docs/html/sdk/api_diff/preview-21/changes/android.speech.tts.UtteranceProgressListener.html
new file mode 100644
index 0000000..114f6a4
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.speech.tts.UtteranceProgressListener.html
@@ -0,0 +1,144 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.speech.tts.UtteranceProgressListener
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.speech.tts.<A HREF="../../../../reference/android/speech/tts/UtteranceProgressListener.html" target="_top"><font size="+2"><code>UtteranceProgressListener</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.UtteranceProgressListener.onError_removed(java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;onError(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.speech.tts.UtteranceProgressListener.onError_added(java.lang.String, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/UtteranceProgressListener.html#onError(java.lang.String, int)" target="_top"><code>onError</code></A>(<code>String,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts.UtteranceProgressListener.onError_added(java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/speech/tts/UtteranceProgressListener.html#onError(java.lang.String)" target="_top"><code>onError</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.system.OsConstants.html b/docs/html/sdk/api_diff/preview-21/changes/android.system.OsConstants.html
new file mode 100644
index 0000000..5a7c562
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.system.OsConstants.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.system.OsConstants
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.system.<A HREF="../../../../reference/android/system/OsConstants.html" target="_top"><font size="+2"><code>OsConstants</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.system.OsConstants.PR_GET_DUMPABLE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/system/OsConstants.html#PR_GET_DUMPABLE" target="_top"><code>PR_GET_DUMPABLE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.system.OsConstants.PR_SET_DUMPABLE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/system/OsConstants.html#PR_SET_DUMPABLE" target="_top"><code>PR_SET_DUMPABLE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.telephony.SmsManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.telephony.SmsManager.html
new file mode 100644
index 0000000..47e641e
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.telephony.SmsManager.html
@@ -0,0 +1,403 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.SmsManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/SmsManager.html" target="_top"><font size="+2"><code>SmsManager</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.SmsManager.downloadMultimediaMessage_added(android.content.Context, java.lang.String, android.net.Uri, android.os.Bundle, android.app.PendingIntent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#downloadMultimediaMessage(android.content.Context, java.lang.String, android.net.Uri, android.os.Bundle, android.app.PendingIntent)" target="_top"><code>downloadMultimediaMessage</code></A>(<code>Context,</nobr> String<nobr>,</nobr> Uri<nobr>,</nobr> Bundle<nobr>,</nobr> PendingIntent<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.getCarrierConfigValues_added()"></A>
+  <nobr><code>Bundle</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#getCarrierConfigValues()" target="_top"><code>getCarrierConfigValues</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.sendMultimediaMessage_added(android.content.Context, android.net.Uri, java.lang.String, android.os.Bundle, android.app.PendingIntent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#sendMultimediaMessage(android.content.Context, android.net.Uri, java.lang.String, android.os.Bundle, android.app.PendingIntent)" target="_top"><code>sendMultimediaMessage</code></A>(<code>Context,</nobr> Uri<nobr>,</nobr> String<nobr>,</nobr> Bundle<nobr>,</nobr> PendingIntent<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.SmsManager.EXTRA_MMS_DATA"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#EXTRA_MMS_DATA" target="_top"><code>EXTRA_MMS_DATA</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_ALIAS_ENABLED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_ALIAS_ENABLED" target="_top"><code>MMS_CONFIG_ALIAS_ENABLED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_ALIAS_MAX_CHARS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_ALIAS_MAX_CHARS" target="_top"><code>MMS_CONFIG_ALIAS_MAX_CHARS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_ALIAS_MIN_CHARS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_ALIAS_MIN_CHARS" target="_top"><code>MMS_CONFIG_ALIAS_MIN_CHARS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_ALLOW_ATTACH_AUDIO"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_ALLOW_ATTACH_AUDIO" target="_top"><code>MMS_CONFIG_ALLOW_ATTACH_AUDIO</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_APPEND_TRANSACTION_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_APPEND_TRANSACTION_ID" target="_top"><code>MMS_CONFIG_APPEND_TRANSACTION_ID</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_EMAIL_GATEWAY_NUMBER"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_EMAIL_GATEWAY_NUMBER" target="_top"><code>MMS_CONFIG_EMAIL_GATEWAY_NUMBER</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_GROUP_MMS_ENABLED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_GROUP_MMS_ENABLED" target="_top"><code>MMS_CONFIG_GROUP_MMS_ENABLED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_HTTP_PARAMS"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_HTTP_PARAMS" target="_top"><code>MMS_CONFIG_HTTP_PARAMS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_HTTP_SOCKET_TIMEOUT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_HTTP_SOCKET_TIMEOUT" target="_top"><code>MMS_CONFIG_HTTP_SOCKET_TIMEOUT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_MAX_IMAGE_HEIGHT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_MAX_IMAGE_HEIGHT" target="_top"><code>MMS_CONFIG_MAX_IMAGE_HEIGHT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_MAX_IMAGE_WIDTH"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_MAX_IMAGE_WIDTH" target="_top"><code>MMS_CONFIG_MAX_IMAGE_WIDTH</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_MAX_MESSAGE_SIZE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_MAX_MESSAGE_SIZE" target="_top"><code>MMS_CONFIG_MAX_MESSAGE_SIZE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE" target="_top"><code>MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED" target="_top"><code>MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_MMS_ENABLED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_MMS_ENABLED" target="_top"><code>MMS_CONFIG_MMS_ENABLED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_MMS_READ_REPORT_ENABLED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_MMS_READ_REPORT_ENABLED" target="_top"><code>MMS_CONFIG_MMS_READ_REPORT_ENABLED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_MULTIPART_SMS_ENABLED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_MULTIPART_SMS_ENABLED" target="_top"><code>MMS_CONFIG_MULTIPART_SMS_ENABLED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_NAI_SUFFIX"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_NAI_SUFFIX" target="_top"><code>MMS_CONFIG_NAI_SUFFIX</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED" target="_top"><code>MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_RECIPIENT_LIMIT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_RECIPIENT_LIMIT" target="_top"><code>MMS_CONFIG_RECIPIENT_LIMIT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES" target="_top"><code>MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED" target="_top"><code>MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD" target="_top"><code>MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD" target="_top"><code>MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_SUBJECT_MAX_LENGTH"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_SUBJECT_MAX_LENGTH" target="_top"><code>MMS_CONFIG_SUBJECT_MAX_LENGTH</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION" target="_top"><code>MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_UA_PROF_TAG_NAME"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_UA_PROF_TAG_NAME" target="_top"><code>MMS_CONFIG_UA_PROF_TAG_NAME</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_UA_PROF_URL"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_UA_PROF_URL" target="_top"><code>MMS_CONFIG_UA_PROF_URL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_CONFIG_USER_AGENT"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_CONFIG_USER_AGENT" target="_top"><code>MMS_CONFIG_USER_AGENT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_ERROR_CONFIGURATION_ERROR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_ERROR_CONFIGURATION_ERROR" target="_top"><code>MMS_ERROR_CONFIGURATION_ERROR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_ERROR_HTTP_FAILURE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_ERROR_HTTP_FAILURE" target="_top"><code>MMS_ERROR_HTTP_FAILURE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_ERROR_INVALID_APN"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_ERROR_INVALID_APN" target="_top"><code>MMS_ERROR_INVALID_APN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_ERROR_IO_ERROR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_ERROR_IO_ERROR" target="_top"><code>MMS_ERROR_IO_ERROR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_ERROR_RETRY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_ERROR_RETRY" target="_top"><code>MMS_ERROR_RETRY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_ERROR_UNABLE_CONNECT_MMS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_ERROR_UNABLE_CONNECT_MMS" target="_top"><code>MMS_ERROR_UNABLE_CONNECT_MMS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.SmsManager.MMS_ERROR_UNSPECIFIED"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/telephony/SmsManager.html#MMS_ERROR_UNSPECIFIED" target="_top"><code>MMS_ERROR_UNSPECIFIED</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.telephony.TelephonyManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.telephony.TelephonyManager.html
new file mode 100644
index 0000000..b6b6c4e
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.telephony.TelephonyManager.html
@@ -0,0 +1,164 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.iccCloseLogicalChannel_added(int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/telephony/TelephonyManager.html#iccCloseLogicalChannel(int)" target="_top"><code>iccCloseLogicalChannel</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.TelephonyManager.iccExchangeSimIO_added(int, int, int, int, int, java.lang.String)"></A>
+  <nobr><code>byte[]</code>&nbsp;<A HREF="../../../../reference/android/telephony/TelephonyManager.html#iccExchangeSimIO(int, int, int, int, int, java.lang.String)" target="_top"><code>iccExchangeSimIO</code></A>(<code>int,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.TelephonyManager.iccOpenLogicalChannel_added(java.lang.String)"></A>
+  <nobr><code>IccOpenLogicalChannelResponse</code>&nbsp;<A HREF="../../../../reference/android/telephony/TelephonyManager.html#iccOpenLogicalChannel(java.lang.String)" target="_top"><code>iccOpenLogicalChannel</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.TelephonyManager.iccTransmitApduBasicChannel_added(int, int, int, int, int, java.lang.String)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/TelephonyManager.html#iccTransmitApduBasicChannel(int, int, int, int, int, java.lang.String)" target="_top"><code>iccTransmitApduBasicChannel</code></A>(<code>int,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.TelephonyManager.iccTransmitApduLogicalChannel_added(int, int, int, int, int, int, java.lang.String)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/TelephonyManager.html#iccTransmitApduLogicalChannel(int, int, int, int, int, int, java.lang.String)" target="_top"><code>iccTransmitApduLogicalChannel</code></A>(<code>int,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.TelephonyManager.isSmsCapable_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/telephony/TelephonyManager.html#isSmsCapable()" target="_top"><code>isSmsCapable</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telephony.TelephonyManager.sendEnvelopeWithStatus_added(java.lang.String)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/telephony/TelephonyManager.html#sendEnvelopeWithStatus(java.lang.String)" target="_top"><code>sendEnvelopeWithStatus</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.test.mock.MockContext.html b/docs/html/sdk/api_diff/preview-21/changes/android.test.mock.MockContext.html
new file mode 100644
index 0000000..03e858c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.test.mock.MockContext.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.getCodeCacheDir_added()"></A>
+  <nobr><code>File</code>&nbsp;<A HREF="../../../../reference/android/test/mock/MockContext.html#getCodeCacheDir()" target="_top"><code>getCodeCacheDir</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.test.mock.MockContext.getNoBackupFilesDir_added()"></A>
+  <nobr><code>File</code>&nbsp;<A HREF="../../../../reference/android/test/mock/MockContext.html#getNoBackupFilesDir()" target="_top"><code>getNoBackupFilesDir</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.test.mock.MockPackageManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.test.mock.MockPackageManager.html
new file mode 100644
index 0000000..8ee6d34
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.test.mock.MockPackageManager.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.getPackageInstaller_added()"></A>
+  <nobr><code>PackageInstaller</code>&nbsp;<A HREF="../../../../reference/android/test/mock/MockPackageManager.html#getPackageInstaller()" target="_top"><code>getPackageInstaller</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.test.mock.MockPackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)"></A>
+  <nobr><code>Drawable</code>&nbsp;<A HREF="../../../../reference/android/test/mock/MockPackageManager.html#getUserBadgedDrawableForDensity(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)" target="_top"><code>getUserBadgedDrawableForDensity</code></A>(<code>Drawable,</nobr> UserHandle<nobr>,</nobr> Rect<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.test.mock.MockPackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)"></A>
+  <nobr><code>Drawable</code>&nbsp;<A HREF="../../../../reference/android/test/mock/MockPackageManager.html#getUserBadgedIcon(android.graphics.drawable.Drawable, android.os.UserHandle)" target="_top"><code>getUserBadgedIcon</code></A>(<code>Drawable,</nobr> UserHandle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.test.mock.MockPackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)"></A>
+  <nobr><code>CharSequence</code>&nbsp;<A HREF="../../../../reference/android/test/mock/MockPackageManager.html#getUserBadgedLabel(java.lang.CharSequence, android.os.UserHandle)" target="_top"><code>getUserBadgedLabel</code></A>(<code>CharSequence,</nobr> UserHandle<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.text.InputFilter.LengthFilter.html b/docs/html/sdk/api_diff/preview-21/changes/android.text.InputFilter.LengthFilter.html
new file mode 100644
index 0000000..eddb3aa
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.text.InputFilter.LengthFilter.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.InputFilter.LengthFilter
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/InputFilter.LengthFilter.html" target="_top"><font size="+2"><code>InputFilter.LengthFilter</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.InputFilter.LengthFilter.getMax_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/text/InputFilter.LengthFilter.html#getMax()" target="_top"><code>getMax</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.text.SpannableStringBuilder.html b/docs/html/sdk/api_diff/preview-21/changes/android.text.SpannableStringBuilder.html
new file mode 100644
index 0000000..83dc180
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.text.SpannableStringBuilder.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.SpannableStringBuilder
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/SpannableStringBuilder.html" target="_top"><font size="+2"><code>SpannableStringBuilder</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.SpannableStringBuilder.append_added(java.lang.CharSequence, java.lang.Object, int)"></A>
+  <nobr><code>SpannableStringBuilder</code>&nbsp;<A HREF="../../../../reference/android/text/SpannableStringBuilder.html#append(java.lang.CharSequence, java.lang.Object, int)" target="_top"><code>append</code></A>(<code>CharSequence,</nobr> Object<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.transition.AutoTransition.html b/docs/html/sdk/api_diff/preview-21/changes/android.transition.AutoTransition.html
new file mode 100644
index 0000000..7120055
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.transition.AutoTransition.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.transition.AutoTransition
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.transition.<A HREF="../../../../reference/android/transition/AutoTransition.html" target="_top"><font size="+2"><code>AutoTransition</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.transition.AutoTransition.ctor_added(android.content.Context, android.util.AttributeSet)"></A>
+  <nobr><A HREF="../../../../reference/android/transition/AutoTransition.html#AutoTransition(android.content.Context, android.util.AttributeSet)" target="_top"><code>AutoTransition</code></A>(<code>Context,</nobr> AttributeSet<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.transition.ChangeBounds.html b/docs/html/sdk/api_diff/preview-21/changes/android.transition.ChangeBounds.html
new file mode 100644
index 0000000..03cb2cf
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.transition.ChangeBounds.html
@@ -0,0 +1,140 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.transition.ChangeBounds
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.transition.<A HREF="../../../../reference/android/transition/ChangeBounds.html" target="_top"><font size="+2"><code>ChangeBounds</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.transition.ChangeBounds.ctor_added(android.content.Context, android.util.AttributeSet)"></A>
+  <nobr><A HREF="../../../../reference/android/transition/ChangeBounds.html#ChangeBounds(android.content.Context, android.util.AttributeSet)" target="_top"><code>ChangeBounds</code></A>(<code>Context,</nobr> AttributeSet<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.transition.ChangeBounds.setReparent_changed(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/transition/ChangeBounds.html#setReparent(boolean)" target="_top"><code>setReparent</code></A>(<code>boolean</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.transition.ChangeClipBounds.html b/docs/html/sdk/api_diff/preview-21/changes/android.transition.ChangeClipBounds.html
new file mode 100644
index 0000000..03410ca
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.transition.ChangeClipBounds.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.transition.ChangeClipBounds
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.transition.<A HREF="../../../../reference/android/transition/ChangeClipBounds.html" target="_top"><font size="+2"><code>ChangeClipBounds</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.transition.ChangeClipBounds.ctor_added(android.content.Context, android.util.AttributeSet)"></A>
+  <nobr><A HREF="../../../../reference/android/transition/ChangeClipBounds.html#ChangeClipBounds(android.content.Context, android.util.AttributeSet)" target="_top"><code>ChangeClipBounds</code></A>(<code>Context,</nobr> AttributeSet<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.transition.ChangeTransform.html b/docs/html/sdk/api_diff/preview-21/changes/android.transition.ChangeTransform.html
new file mode 100644
index 0000000..49c3556
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.transition.ChangeTransform.html
@@ -0,0 +1,158 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.transition.ChangeTransform
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.transition.<A HREF="../../../../reference/android/transition/ChangeTransform.html" target="_top"><font size="+2"><code>ChangeTransform</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.transition.ChangeTransform.ctor_added(android.content.Context, android.util.AttributeSet)"></A>
+  <nobr><A HREF="../../../../reference/android/transition/ChangeTransform.html#ChangeTransform(android.content.Context, android.util.AttributeSet)" target="_top"><code>ChangeTransform</code></A>(<code>Context,</nobr> AttributeSet<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.transition.ChangeTransform.getReparent_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/transition/ChangeTransform.html#getReparent()" target="_top"><code>getReparent</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.ChangeTransform.getReparentWithOverlay_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/transition/ChangeTransform.html#getReparentWithOverlay()" target="_top"><code>getReparentWithOverlay</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.ChangeTransform.setReparent_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/transition/ChangeTransform.html#setReparent(boolean)" target="_top"><code>setReparent</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.ChangeTransform.setReparentWithOverlay_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/transition/ChangeTransform.html#setReparentWithOverlay(boolean)" target="_top"><code>setReparentWithOverlay</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.transition.Explode.html b/docs/html/sdk/api_diff/preview-21/changes/android.transition.Explode.html
new file mode 100644
index 0000000..0f0c7fc
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.transition.Explode.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.transition.Explode
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.transition.<A HREF="../../../../reference/android/transition/Explode.html" target="_top"><font size="+2"><code>Explode</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.transition.Explode.ctor_added(android.content.Context, android.util.AttributeSet)"></A>
+  <nobr><A HREF="../../../../reference/android/transition/Explode.html#Explode(android.content.Context, android.util.AttributeSet)" target="_top"><code>Explode</code></A>(<code>Context,</nobr> AttributeSet<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.transition.Fade.html b/docs/html/sdk/api_diff/preview-21/changes/android.transition.Fade.html
new file mode 100644
index 0000000..f0662e1
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.transition.Fade.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.transition.Fade
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.transition.<A HREF="../../../../reference/android/transition/Fade.html" target="_top"><font size="+2"><code>Fade</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.transition.Fade.ctor_added(android.content.Context, android.util.AttributeSet)"></A>
+  <nobr><A HREF="../../../../reference/android/transition/Fade.html#Fade(android.content.Context, android.util.AttributeSet)" target="_top"><code>Fade</code></A>(<code>Context,</nobr> AttributeSet<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.transition.Slide.html b/docs/html/sdk/api_diff/preview-21/changes/android.transition.Slide.html
new file mode 100644
index 0000000..39501c3
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.transition.Slide.html
@@ -0,0 +1,137 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.transition.Slide
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.transition.<A HREF="../../../../reference/android/transition/Slide.html" target="_top"><font size="+2"><code>Slide</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.transition.Slide.ctor_added(android.content.Context, android.util.AttributeSet)"></A>
+  <nobr><A HREF="../../../../reference/android/transition/Slide.html#Slide(android.content.Context, android.util.AttributeSet)" target="_top"><code>Slide</code></A>(<code>Context,</nobr> AttributeSet<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.transition.Slide.getSlideEdge_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/transition/Slide.html#getSlideEdge()" target="_top"><code>getSlideEdge</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.transition.Transition.html b/docs/html/sdk/api_diff/preview-21/changes/android.transition.Transition.html
new file mode 100644
index 0000000..e9f3644
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.transition.Transition.html
@@ -0,0 +1,196 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.transition.Transition
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.transition.<A HREF="../../../../reference/android/transition/Transition.html" target="_top"><font size="+2"><code>Transition</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.transition.Transition.ctor_added(android.content.Context, android.util.AttributeSet)"></A>
+  <nobr><A HREF="../../../../reference/android/transition/Transition.html#Transition(android.content.Context, android.util.AttributeSet)" target="_top"><code>Transition</code></A>(<code>Context,</nobr> AttributeSet<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Transition.getTargetViewNames_removed()"></A>
+  <nobr><code>List&lt;String&gt;</code>&nbsp;getTargetViewNames()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.transition.Transition.getPathMotion_added()"></A>
+  <nobr><code>PathMotion</code>&nbsp;<A HREF="../../../../reference/android/transition/Transition.html#getPathMotion()" target="_top"><code>getPathMotion</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Transition.getTargetNames_added()"></A>
+  <nobr><code>List&lt;String&gt;</code>&nbsp;<A HREF="../../../../reference/android/transition/Transition.html#getTargetNames()" target="_top"><code>getTargetNames</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Transition.setPathMotion_added(android.transition.PathMotion)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/transition/Transition.html#setPathMotion(android.transition.PathMotion)" target="_top"><code>setPathMotion</code></A>(<code>PathMotion</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Transition.MATCH_VIEW_NAME"></A>
+  <code>int</code>&nbsp;MATCH_VIEW_NAME
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.transition.Transition.MATCH_NAME"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/transition/Transition.html#MATCH_NAME" target="_top"><code>MATCH_NAME</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.transition.TransitionSet.html b/docs/html/sdk/api_diff/preview-21/changes/android.transition.TransitionSet.html
new file mode 100644
index 0000000..b37a2ce
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.transition.TransitionSet.html
@@ -0,0 +1,144 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.transition.TransitionSet
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.transition.<A HREF="../../../../reference/android/transition/TransitionSet.html" target="_top"><font size="+2"><code>TransitionSet</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.transition.TransitionSet.ctor_added(android.content.Context, android.util.AttributeSet)"></A>
+  <nobr><A HREF="../../../../reference/android/transition/TransitionSet.html#TransitionSet(android.content.Context, android.util.AttributeSet)" target="_top"><code>TransitionSet</code></A>(<code>Context,</nobr> AttributeSet<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.transition.TransitionSet.getTransitionAt_added(int)"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/transition/TransitionSet.html#getTransitionAt(int)" target="_top"><code>getTransitionAt</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.TransitionSet.getTransitionCount_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/transition/TransitionSet.html#getTransitionCount()" target="_top"><code>getTransitionCount</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.transition.Visibility.html b/docs/html/sdk/api_diff/preview-21/changes/android.transition.Visibility.html
new file mode 100644
index 0000000..c479f6c1
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.transition.Visibility.html
@@ -0,0 +1,166 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.transition.Visibility
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.transition.<A HREF="../../../../reference/android/transition/Visibility.html" target="_top"><font size="+2"><code>Visibility</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.transition.Visibility.ctor_added(android.content.Context, android.util.AttributeSet)"></A>
+  <nobr><A HREF="../../../../reference/android/transition/Visibility.html#Visibility(android.content.Context, android.util.AttributeSet)" target="_top"><code>Visibility</code></A>(<code>Context,</nobr> AttributeSet<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.transition.Visibility.getMode_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/transition/Visibility.html#getMode()" target="_top"><code>getMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Visibility.setMode_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/transition/Visibility.html#setMode(int)" target="_top"><code>setMode</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.transition.Visibility.MODE_IN"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/transition/Visibility.html#MODE_IN" target="_top"><code>MODE_IN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition.Visibility.MODE_OUT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/transition/Visibility.html#MODE_OUT" target="_top"><code>MODE_OUT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.util.ArrayMap.html b/docs/html/sdk/api_diff/preview-21/changes/android.util.ArrayMap.html
new file mode 100644
index 0000000..40b5463
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.util.ArrayMap.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ArrayMap
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.util.<A HREF="../../../../reference/android/util/ArrayMap.html" target="_top"><font size="+2"><code>ArrayMap</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.util.ArrayMap.indexOfKey_added(java.lang.Object)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/util/ArrayMap.html#indexOfKey(java.lang.Object)" target="_top"><code>indexOfKey</code></A>(<code>Object</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.util.DisplayMetrics.html b/docs/html/sdk/api_diff/preview-21/changes/android.util.DisplayMetrics.html
new file mode 100644
index 0000000..abb728e
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.util.DisplayMetrics.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.DisplayMetrics
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.util.<A HREF="../../../../reference/android/util/DisplayMetrics.html" target="_top"><font size="+2"><code>DisplayMetrics</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.util.DisplayMetrics.DENSITY_560"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/util/DisplayMetrics.html#DENSITY_560" target="_top"><code>DENSITY_560</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.util.Range.html b/docs/html/sdk/api_diff/preview-21/changes/android.util.Range.html
new file mode 100644
index 0000000..5a9eb71
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.util.Range.html
@@ -0,0 +1,186 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Range
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.util.<A HREF="../../../../reference/android/util/Range.html" target="_top"><font size="+2"><code>Range</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.util.Range.inRange_removed(T)"></A>
+  <nobr><code>boolean</code>&nbsp;inRange(<code>T</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.util.Range.clamp_added(T)"></A>
+  <nobr><code>T</code>&nbsp;<A HREF="../../../../reference/android/util/Range.html#clamp(T)" target="_top"><code>clamp</code></A>(<code>T</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.util.Range.contains_added(T)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/util/Range.html#contains(T)" target="_top"><code>contains</code></A>(<code>T</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.util.Range.contains_added(android.util.Range<T>)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/util/Range.html#contains(android.util.Range<T>)" target="_top"><code>contains</code></A>(<code>Range&lt;T&gt;</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.util.Range.extend_added(T)"></A>
+  <nobr><code>Range&lt;T&gt;</code>&nbsp;<A HREF="../../../../reference/android/util/Range.html#extend(T)" target="_top"><code>extend</code></A>(<code>T</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.util.Range.extend_added(T, T)"></A>
+  <nobr><code>Range&lt;T&gt;</code>&nbsp;<A HREF="../../../../reference/android/util/Range.html#extend(T, T)" target="_top"><code>extend</code></A>(<code>T,</nobr> T<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.util.Range.extend_added(android.util.Range<T>)"></A>
+  <nobr><code>Range&lt;T&gt;</code>&nbsp;<A HREF="../../../../reference/android/util/Range.html#extend(android.util.Range<T>)" target="_top"><code>extend</code></A>(<code>Range&lt;T&gt;</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.util.Range.intersect_added(T, T)"></A>
+  <nobr><code>Range&lt;T&gt;</code>&nbsp;<A HREF="../../../../reference/android/util/Range.html#intersect(T, T)" target="_top"><code>intersect</code></A>(<code>T,</nobr> T<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.util.Range.intersect_added(android.util.Range<T>)"></A>
+  <nobr><code>Range&lt;T&gt;</code>&nbsp;<A HREF="../../../../reference/android/util/Range.html#intersect(android.util.Range<T>)" target="_top"><code>intersect</code></A>(<code>Range&lt;T&gt;</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.util.Rational.html b/docs/html/sdk/api_diff/preview-21/changes/android.util.Rational.html
new file mode 100644
index 0000000..39eac55
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.util.Rational.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Rational
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.util.<A HREF="../../../../reference/android/util/Rational.html" target="_top"><font size="+2"><code>Rational</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.util.Rational.parseRational_added(java.lang.String)"></A>
+  <nobr><code>Rational</code>&nbsp;<A HREF="../../../../reference/android/util/Rational.html#parseRational(java.lang.String)" target="_top"><code>parseRational</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.util.Size.html b/docs/html/sdk/api_diff/preview-21/changes/android.util.Size.html
new file mode 100644
index 0000000..f71aabc
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.util.Size.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Size
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.util.<A HREF="../../../../reference/android/util/Size.html" target="_top"><font size="+2"><code>Size</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.util.Size.parseSize_added(java.lang.String)"></A>
+  <nobr><code>Size</code>&nbsp;<A HREF="../../../../reference/android/util/Size.html#parseSize(java.lang.String)" target="_top"><code>parseSize</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.util.SizeF.html b/docs/html/sdk/api_diff/preview-21/changes/android.util.SizeF.html
new file mode 100644
index 0000000..58143dd
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.util.SizeF.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.SizeF
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.util.<A HREF="../../../../reference/android/util/SizeF.html" target="_top"><font size="+2"><code>SizeF</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.util.SizeF.parseSizeF_added(java.lang.String)"></A>
+  <nobr><code>SizeF</code>&nbsp;<A HREF="../../../../reference/android/util/SizeF.html#parseSizeF(java.lang.String)" target="_top"><code>parseSizeF</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.view.Display.html b/docs/html/sdk/api_diff/preview-21/changes/android.view.Display.html
new file mode 100644
index 0000000..45a734d
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.view.Display.html
@@ -0,0 +1,173 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Display
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/Display.html" target="_top"><font size="+2"><code>Display</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.Display.getAppVsyncOffsetNanos_added()"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/android/view/Display.html#getAppVsyncOffsetNanos()" target="_top"><code>getAppVsyncOffsetNanos</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Display.getPresentationDeadlineNanos_added()"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/android/view/Display.html#getPresentationDeadlineNanos()" target="_top"><code>getPresentationDeadlineNanos</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Display.getSupportedRefreshRates_added()"></A>
+  <nobr><code>float[]</code>&nbsp;<A HREF="../../../../reference/android/view/Display.html#getSupportedRefreshRates()" target="_top"><code>getSupportedRefreshRates</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Display.STATE_DOZING"></A>
+  <code>int</code>&nbsp;STATE_DOZING
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Display.STATE_DOZE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/Display.html#STATE_DOZE" target="_top"><code>STATE_DOZE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Display.STATE_DOZE_SUSPEND"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/Display.html#STATE_DOZE_SUSPEND" target="_top"><code>STATE_DOZE_SUSPEND</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.view.FrameStats.html b/docs/html/sdk/api_diff/preview-21/changes/android.view.FrameStats.html
new file mode 100644
index 0000000..b2d1777
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.view.FrameStats.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.FrameStats
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/FrameStats.html" target="_top"><font size="+2"><code>FrameStats</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.FrameStats.mFramesPresentedTimeNano"></A>
+  <code>long[]</code>&nbsp;mFramesPresentedTimeNano
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.FrameStats.mRefreshPeriodNano"></A>
+  <code>long</code>&nbsp;mRefreshPeriodNano
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.view.KeyEvent.html b/docs/html/sdk/api_diff/preview-21/changes/android.view.KeyEvent.html
new file mode 100644
index 0000000..56ff379
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.view.KeyEvent.html
@@ -0,0 +1,318 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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>
+<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.KeyEvent.KEYCODE_HELP"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_HELP" target="_top"><code>KEYCODE_HELP</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_ANTENNA_CABLE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_ANTENNA_CABLE" target="_top"><code>KEYCODE_TV_ANTENNA_CABLE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_AUDIO_DESCRIPTION" target="_top"><code>KEYCODE_TV_AUDIO_DESCRIPTION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN" target="_top"><code>KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP" target="_top"><code>KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_CONTENTS_MENU"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_CONTENTS_MENU" target="_top"><code>KEYCODE_TV_CONTENTS_MENU</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_INPUT_COMPONENT_1"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_INPUT_COMPONENT_1" target="_top"><code>KEYCODE_TV_INPUT_COMPONENT_1</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_INPUT_COMPONENT_2"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_INPUT_COMPONENT_2" target="_top"><code>KEYCODE_TV_INPUT_COMPONENT_2</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_INPUT_COMPOSITE_1"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_INPUT_COMPOSITE_1" target="_top"><code>KEYCODE_TV_INPUT_COMPOSITE_1</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_INPUT_COMPOSITE_2"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_INPUT_COMPOSITE_2" target="_top"><code>KEYCODE_TV_INPUT_COMPOSITE_2</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_1"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_INPUT_HDMI_1" target="_top"><code>KEYCODE_TV_INPUT_HDMI_1</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_2"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_INPUT_HDMI_2" target="_top"><code>KEYCODE_TV_INPUT_HDMI_2</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_3"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_INPUT_HDMI_3" target="_top"><code>KEYCODE_TV_INPUT_HDMI_3</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_4"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_INPUT_HDMI_4" target="_top"><code>KEYCODE_TV_INPUT_HDMI_4</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_INPUT_VGA_1"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_INPUT_VGA_1" target="_top"><code>KEYCODE_TV_INPUT_VGA_1</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_MEDIA_CONTEXT_MENU"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_MEDIA_CONTEXT_MENU" target="_top"><code>KEYCODE_TV_MEDIA_CONTEXT_MENU</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_NETWORK"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_NETWORK" target="_top"><code>KEYCODE_TV_NETWORK</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_NUMBER_ENTRY"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_NUMBER_ENTRY" target="_top"><code>KEYCODE_TV_NUMBER_ENTRY</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_RADIO_SERVICE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_RADIO_SERVICE" target="_top"><code>KEYCODE_TV_RADIO_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_SATELLITE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_SATELLITE" target="_top"><code>KEYCODE_TV_SATELLITE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_SATELLITE_BS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_SATELLITE_BS" target="_top"><code>KEYCODE_TV_SATELLITE_BS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_SATELLITE_CS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_SATELLITE_CS" target="_top"><code>KEYCODE_TV_SATELLITE_CS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_SATELLITE_SERVICE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_SATELLITE_SERVICE" target="_top"><code>KEYCODE_TV_SATELLITE_SERVICE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_TELETEXT"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_TELETEXT" target="_top"><code>KEYCODE_TV_TELETEXT</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_TERRESTRIAL_ANALOG"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_TERRESTRIAL_ANALOG" target="_top"><code>KEYCODE_TV_TERRESTRIAL_ANALOG</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_TERRESTRIAL_DIGITAL"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_TERRESTRIAL_DIGITAL" target="_top"><code>KEYCODE_TV_TERRESTRIAL_DIGITAL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_TIMER_PROGRAMMING"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_TIMER_PROGRAMMING" target="_top"><code>KEYCODE_TV_TIMER_PROGRAMMING</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_TV_ZOOM_MODE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_TV_ZOOM_MODE" target="_top"><code>KEYCODE_TV_ZOOM_MODE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.KeyEvent.KEYCODE_VOICE_ASSIST"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/KeyEvent.html#KEYCODE_VOICE_ASSIST" target="_top"><code>KEYCODE_VOICE_ASSIST</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.view.MotionEvent.html b/docs/html/sdk/api_diff/preview-21/changes/android.view.MotionEvent.html
new file mode 100644
index 0000000..a4224bf
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.view.MotionEvent.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.isButtonPressed_added(int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/MotionEvent.html#isButtonPressed(int)" target="_top"><code>isButtonPressed</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.view.View.html b/docs/html/sdk/api_diff/preview-21/changes/android.view.View.html
new file mode 100644
index 0000000..5756119
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.view.View.html
@@ -0,0 +1,249 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.getViewName_removed()"></A>
+  <nobr><code>String</code>&nbsp;getViewName()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.initializeFadingEdge_removed(android.content.res.TypedArray)"></A>
+  <nobr><code>void</code>&nbsp;initializeFadingEdge(<code>TypedArray</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.initializeScrollbars_removed(android.content.res.TypedArray)"></A>
+  <nobr><code>void</code>&nbsp;initializeScrollbars(<code>TypedArray</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.setOutline_removed(android.graphics.Outline)"></A>
+  <nobr><code>void</code>&nbsp;setOutline(<code>Outline</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.setViewName_removed(java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;setViewName(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.computeSystemWindowInsets_added(android.view.WindowInsets, android.graphics.Rect)"></A>
+  <nobr><code>WindowInsets</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#computeSystemWindowInsets(android.view.WindowInsets, android.graphics.Rect)" target="_top"><code>computeSystemWindowInsets</code></A>(<code>WindowInsets,</nobr> Rect<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.dispatchNestedPreFling_added(float, float)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#dispatchNestedPreFling(float, float)" target="_top"><code>dispatchNestedPreFling</code></A>(<code>float,</nobr> float<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.drawableHotspotChanged_added(float, float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#drawableHotspotChanged(float, float)" target="_top"><code>drawableHotspotChanged</code></A>(<code>float,</nobr> float<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.getBackgroundTintList_added()"></A>
+  <nobr><code>ColorStateList</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#getBackgroundTintList()" target="_top"><code>getBackgroundTintList</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.getBackgroundTintMode_added()"></A>
+  <nobr><code>Mode</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#getBackgroundTintMode()" target="_top"><code>getBackgroundTintMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.getOutlineProvider_added()"></A>
+  <nobr><code>ViewOutlineProvider</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#getOutlineProvider()" target="_top"><code>getOutlineProvider</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.getTransitionName_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#getTransitionName()" target="_top"><code>getTransitionName</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.invalidateOutline_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#invalidateOutline()" target="_top"><code>invalidateOutline</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.requestUnbufferedDispatch_added(android.view.MotionEvent)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#requestUnbufferedDispatch(android.view.MotionEvent)" target="_top"><code>requestUnbufferedDispatch</code></A>(<code>MotionEvent</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.setBackgroundTintList_added(android.content.res.ColorStateList)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#setBackgroundTintList(android.content.res.ColorStateList)" target="_top"><code>setBackgroundTintList</code></A>(<code>ColorStateList</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.setBackgroundTintMode_added(android.graphics.PorterDuff.Mode)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#setBackgroundTintMode(android.graphics.PorterDuff.Mode)" target="_top"><code>setBackgroundTintMode</code></A>(<code>Mode</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.setOutlineProvider_added(android.view.ViewOutlineProvider)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#setOutlineProvider(android.view.ViewOutlineProvider)" target="_top"><code>setOutlineProvider</code></A>(<code>ViewOutlineProvider</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.View.setTransitionName_added(java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/View.html#setTransitionName(java.lang.String)" target="_top"><code>setTransitionName</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.view.ViewAnimationUtils.html b/docs/html/sdk/api_diff/preview-21/changes/android.view.ViewAnimationUtils.html
new file mode 100644
index 0000000..b5fba6b
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.view.ViewAnimationUtils.html
@@ -0,0 +1,127 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ViewAnimationUtils
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ViewAnimationUtils.html" target="_top"><font size="+2"><code>ViewAnimationUtils</code></font></A>
+</H2>
+<p>Change from non-final to final.<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.view.ViewAnimationUtils.createCircularReveal_changed(android.view.View, int, int, float, float)"></A>
+  <nobr><code>Animator</code>&nbsp;<A HREF="../../../../reference/android/view/ViewAnimationUtils.html#createCircularReveal(android.view.View, int, int, float, float)" target="_top"><code>createCircularReveal</code></A>(<code>View,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> float<nobr>,</nobr> float<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in return type from <code>ValueAnimator</code> to <code>Animator</code>.<br>
+ Change from final to non-final.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.view.ViewGroup.html b/docs/html/sdk/api_diff/preview-21/changes/android.view.ViewGroup.html
new file mode 100644
index 0000000..d34294c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.view.ViewGroup.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ViewGroup
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ViewGroup.html" target="_top"><font size="+2"><code>ViewGroup</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.ViewGroup.getClipToPadding_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/ViewGroup.html#getClipToPadding()" target="_top"><code>getClipToPadding</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.ViewGroup.getTouchscreenBlocksFocus_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/ViewGroup.html#getTouchscreenBlocksFocus()" target="_top"><code>getTouchscreenBlocksFocus</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.ViewGroup.onNestedPreFling_added(android.view.View, float, float)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/ViewGroup.html#onNestedPreFling(android.view.View, float, float)" target="_top"><code>onNestedPreFling</code></A>(<code>View,</nobr> float<nobr>,</nobr> float<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.ViewGroup.setTouchscreenBlocksFocus_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/ViewGroup.html#setTouchscreenBlocksFocus(boolean)" target="_top"><code>setTouchscreenBlocksFocus</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.view.ViewParent.html b/docs/html/sdk/api_diff/preview-21/changes/android.view.ViewParent.html
new file mode 100644
index 0000000..73453b5
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.view.ViewParent.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ViewParent
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ViewParent.html" target="_top"><font size="+2"><code>ViewParent</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.ViewParent.onNestedPreFling_added(android.view.View, float, float)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/ViewParent.html#onNestedPreFling(android.view.View, float, float)" target="_top"><code>onNestedPreFling</code></A>(<code>View,</nobr> float<nobr>,</nobr> float<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.view.Window.html b/docs/html/sdk/api_diff/preview-21/changes/android.view.Window.html
new file mode 100644
index 0000000..d20208a
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.view.Window.html
@@ -0,0 +1,278 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/Window.html" target="_top"><font size="+2"><code>Window</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.getAllowExitTransitionOverlap_removed()"></A>
+  <nobr><code>boolean</code>&nbsp;getAllowExitTransitionOverlap()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setAllowExitTransitionOverlap_removed(boolean)"></A>
+  <nobr><code>void</code>&nbsp;setAllowExitTransitionOverlap(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.getAllowReturnTransitionOverlap_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getAllowReturnTransitionOverlap()" target="_top"><code>getAllowReturnTransitionOverlap</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.getMediaController_added()"></A>
+  <nobr><code>MediaController</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getMediaController()" target="_top"><code>getMediaController</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.getReenterTransition_added()"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getReenterTransition()" target="_top"><code>getReenterTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.getReturnTransition_added()"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getReturnTransition()" target="_top"><code>getReturnTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.getSharedElementReenterTransition_added()"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getSharedElementReenterTransition()" target="_top"><code>getSharedElementReenterTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.getSharedElementReturnTransition_added()"></A>
+  <nobr><code>Transition</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getSharedElementReturnTransition()" target="_top"><code>getSharedElementReturnTransition</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.getSharedElementsUseOverlay_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getSharedElementsUseOverlay()" target="_top"><code>getSharedElementsUseOverlay</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.getTransitionBackgroundFadeDuration_added()"></A>
+  <nobr><code>long</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#getTransitionBackgroundFadeDuration()" target="_top"><code>getTransitionBackgroundFadeDuration</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setAllowReturnTransitionOverlap_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setAllowReturnTransitionOverlap(boolean)" target="_top"><code>setAllowReturnTransitionOverlap</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setMediaController_added(android.media.session.MediaController)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setMediaController(android.media.session.MediaController)" target="_top"><code>setMediaController</code></A>(<code>MediaController</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setReenterTransition_added(android.transition.Transition)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setReenterTransition(android.transition.Transition)" target="_top"><code>setReenterTransition</code></A>(<code>Transition</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setReturnTransition_added(android.transition.Transition)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setReturnTransition(android.transition.Transition)" target="_top"><code>setReturnTransition</code></A>(<code>Transition</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setSharedElementReenterTransition_added(android.transition.Transition)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setSharedElementReenterTransition(android.transition.Transition)" target="_top"><code>setSharedElementReenterTransition</code></A>(<code>Transition</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setSharedElementReturnTransition_added(android.transition.Transition)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setSharedElementReturnTransition(android.transition.Transition)" target="_top"><code>setSharedElementReturnTransition</code></A>(<code>Transition</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setSharedElementsUseOverlay_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setSharedElementsUseOverlay(boolean)" target="_top"><code>setSharedElementsUseOverlay</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.setTransitionBackgroundFadeDuration_added(long)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#setTransitionBackgroundFadeDuration(long)" target="_top"><code>setTransitionBackgroundFadeDuration</code></A>(<code>long</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Window.FEATURE_ACTIVITY_TRANSITIONS"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#FEATURE_ACTIVITY_TRANSITIONS" target="_top"><code>FEATURE_ACTIVITY_TRANSITIONS</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME" target="_top"><code>NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.Window.STATUS_BAR_BACKGROUND_TRANSITION_NAME"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/view/Window.html#STATUS_BAR_BACKGROUND_TRANSITION_NAME" target="_top"><code>STATUS_BAR_BACKGROUND_TRANSITION_NAME</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.view.WindowInsets.html b/docs/html/sdk/api_diff/preview-21/changes/android.view.WindowInsets.html
new file mode 100644
index 0000000..8c1131c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.view.WindowInsets.html
@@ -0,0 +1,171 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.WindowInsets
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/WindowInsets.html" target="_top"><font size="+2"><code>WindowInsets</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.WindowInsets.consumeStableInsets_added()"></A>
+  <nobr><code>WindowInsets</code>&nbsp;<A HREF="../../../../reference/android/view/WindowInsets.html#consumeStableInsets()" target="_top"><code>consumeStableInsets</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.WindowInsets.getStableInsetBottom_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/WindowInsets.html#getStableInsetBottom()" target="_top"><code>getStableInsetBottom</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.WindowInsets.getStableInsetLeft_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/WindowInsets.html#getStableInsetLeft()" target="_top"><code>getStableInsetLeft</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.WindowInsets.getStableInsetRight_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/WindowInsets.html#getStableInsetRight()" target="_top"><code>getStableInsetRight</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.WindowInsets.getStableInsetTop_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/WindowInsets.html#getStableInsetTop()" target="_top"><code>getStableInsetTop</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.WindowInsets.hasStableInsets_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/WindowInsets.html#hasStableInsets()" target="_top"><code>hasStableInsets</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.WindowInsets.isConsumed_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/WindowInsets.html#isConsumed()" target="_top"><code>isConsumed</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.WindowInsets.replaceSystemWindowInsets_added(android.graphics.Rect)"></A>
+  <nobr><code>WindowInsets</code>&nbsp;<A HREF="../../../../reference/android/view/WindowInsets.html#replaceSystemWindowInsets(android.graphics.Rect)" target="_top"><code>replaceSystemWindowInsets</code></A>(<code>Rect</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.view.WindowManager.LayoutParams.html b/docs/html/sdk/api_diff/preview-21/changes/android.view.WindowManager.LayoutParams.html
new file mode 100644
index 0000000..696e7ad
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.view.WindowManager.LayoutParams.html
@@ -0,0 +1,137 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="Removed"></a>
+<TABLE summary="Removed Fields" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.WindowManager.LayoutParams.TYPE_KEYGUARD"></A>
+  <code>int</code>&nbsp;TYPE_KEYGUARD
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.preferredRefreshRate"></A>
+  <nobr><code>float</code>&nbsp;<A HREF="../../../../reference/android/view/WindowManager.LayoutParams.html#preferredRefreshRate" target="_top"><code>preferredRefreshRate</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.view.accessibility.AccessibilityNodeInfo.html b/docs/html/sdk/api_diff/preview-21/changes/android.view.accessibility.AccessibilityNodeInfo.html
new file mode 100644
index 0000000..a9e6d9b
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.view.accessibility.AccessibilityNodeInfo.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.accessibility.AccessibilityNodeInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.accessibility.<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.html" target="_top"><font size="+2"><code>AccessibilityNodeInfo</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.accessibility.AccessibilityNodeInfo.getError_added()"></A>
+  <nobr><code>CharSequence</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.html#getError()" target="_top"><code>getError</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.AccessibilityNodeInfo.getMaxTextLength_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.html#getMaxTextLength()" target="_top"><code>getMaxTextLength</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.AccessibilityNodeInfo.setError_added(java.lang.CharSequence)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.html#setError(java.lang.CharSequence)" target="_top"><code>setError</code></A>(<code>CharSequence</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility.AccessibilityNodeInfo.setMaxTextLength_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityNodeInfo.html#setMaxTextLength(int)" target="_top"><code>setMaxTextLength</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.view.accessibility.AccessibilityWindowInfo.html b/docs/html/sdk/api_diff/preview-21/changes/android.view.accessibility.AccessibilityWindowInfo.html
new file mode 100644
index 0000000..8652a40
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.view.accessibility.AccessibilityWindowInfo.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.accessibility.AccessibilityWindowInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.accessibility.<A HREF="../../../../reference/android/view/accessibility/AccessibilityWindowInfo.html" target="_top"><font size="+2"><code>AccessibilityWindowInfo</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.accessibility.AccessibilityWindowInfo.isAccessibilityFocused_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/accessibility/AccessibilityWindowInfo.html#isAccessibilityFocused()" target="_top"><code>isAccessibilityFocused</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.view.inputmethod.BaseInputConnection.html b/docs/html/sdk/api_diff/preview-21/changes/android.view.inputmethod.BaseInputConnection.html
new file mode 100644
index 0000000..c742829
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.view.inputmethod.BaseInputConnection.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.inputmethod.BaseInputConnection
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.inputmethod.<A HREF="../../../../reference/android/view/inputmethod/BaseInputConnection.html" target="_top"><font size="+2"><code>BaseInputConnection</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.inputmethod.BaseInputConnection.requestCursorUpdates_added(int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/BaseInputConnection.html#requestCursorUpdates(int)" target="_top"><code>requestCursorUpdates</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.view.inputmethod.CursorAnchorInfo.Builder.html b/docs/html/sdk/api_diff/preview-21/changes/android.view.inputmethod.CursorAnchorInfo.Builder.html
new file mode 100644
index 0000000..53dc74f
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.view.inputmethod.CursorAnchorInfo.Builder.html
@@ -0,0 +1,155 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.inputmethod.CursorAnchorInfo.Builder
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.inputmethod.<A HREF="../../../../reference/android/view/inputmethod/CursorAnchorInfo.Builder.html" target="_top"><font size="+2"><code>CursorAnchorInfo.Builder</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.inputmethod.CursorAnchorInfo.Builder.addCharacterRect_removed(int, float, float, float, float)"></A>
+  <nobr><code>Builder</code>&nbsp;addCharacterRect(<code>int,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.inputmethod.CursorAnchorInfo.Builder.addCharacterBounds_added(int, float, float, float, float, int)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/CursorAnchorInfo.Builder.html#addCharacterBounds(int, float, float, float, float, int)" target="_top"><code>addCharacterBounds</code></A>(<code>int,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.inputmethod.CursorAnchorInfo.Builder.setInsertionMarkerLocation_changed(float, float, float, float, int)"></A>
+  <nobr><code>Builder</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/CursorAnchorInfo.Builder.html#setInsertionMarkerLocation(float, float, float, float, int)" target="_top"><code>setInsertionMarkerLocation</code></A>(<code>float,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> int<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in signature from (<code>float, float, float, float</code>) to (<code>float, float, float, float, int</code>).<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.view.inputmethod.CursorAnchorInfo.html b/docs/html/sdk/api_diff/preview-21/changes/android.view.inputmethod.CursorAnchorInfo.html
new file mode 100644
index 0000000..0696672
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.view.inputmethod.CursorAnchorInfo.html
@@ -0,0 +1,198 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.inputmethod.CursorAnchorInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.inputmethod.<A HREF="../../../../reference/android/view/inputmethod/CursorAnchorInfo.html" target="_top"><font size="+2"><code>CursorAnchorInfo</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.inputmethod.CursorAnchorInfo.getCharacterRect_removed(int)"></A>
+  <nobr><code>RectF</code>&nbsp;getCharacterRect(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.inputmethod.CursorAnchorInfo.getCharacterBounds_added(int)"></A>
+  <nobr><code>RectF</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/CursorAnchorInfo.html#getCharacterBounds(int)" target="_top"><code>getCharacterBounds</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.inputmethod.CursorAnchorInfo.getCharacterBoundsFlags_added(int)"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/CursorAnchorInfo.html#getCharacterBoundsFlags(int)" target="_top"><code>getCharacterBoundsFlags</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.inputmethod.CursorAnchorInfo.getInsertionMarkerFlags_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/CursorAnchorInfo.html#getInsertionMarkerFlags()" target="_top"><code>getInsertionMarkerFlags</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.inputmethod.CursorAnchorInfo.getComposingText_changed()"></A>
+  <nobr><code>CharSequence</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/CursorAnchorInfo.html#getComposingText()" target="_top"><code>getComposingText</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in return type from <code>String</code> to <code>CharSequence</code>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.inputmethod.CursorAnchorInfo.FLAG_HAS_INVISIBLE_REGION"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/CursorAnchorInfo.html#FLAG_HAS_INVISIBLE_REGION" target="_top"><code>FLAG_HAS_INVISIBLE_REGION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.inputmethod.CursorAnchorInfo.FLAG_HAS_VISIBLE_REGION"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/CursorAnchorInfo.html#FLAG_HAS_VISIBLE_REGION" target="_top"><code>FLAG_HAS_VISIBLE_REGION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.inputmethod.CursorAnchorInfo.FLAG_IS_RTL"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/CursorAnchorInfo.html#FLAG_IS_RTL" target="_top"><code>FLAG_IS_RTL</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.view.inputmethod.InputConnection.html b/docs/html/sdk/api_diff/preview-21/changes/android.view.inputmethod.InputConnection.html
new file mode 100644
index 0000000..8cb4152
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.view.inputmethod.InputConnection.html
@@ -0,0 +1,144 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.inputmethod.InputConnection
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.inputmethod.<A HREF="../../../../reference/android/view/inputmethod/InputConnection.html" target="_top"><font size="+2"><code>InputConnection</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.inputmethod.InputConnection.requestCursorUpdates_added(int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/InputConnection.html#requestCursorUpdates(int)" target="_top"><code>requestCursorUpdates</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.inputmethod.InputConnection.CURSOR_UPDATE_IMMEDIATE"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/InputConnection.html#CURSOR_UPDATE_IMMEDIATE" target="_top"><code>CURSOR_UPDATE_IMMEDIATE</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.inputmethod.InputConnection.CURSOR_UPDATE_MONITOR"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/InputConnection.html#CURSOR_UPDATE_MONITOR" target="_top"><code>CURSOR_UPDATE_MONITOR</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.view.inputmethod.InputConnectionWrapper.html b/docs/html/sdk/api_diff/preview-21/changes/android.view.inputmethod.InputConnectionWrapper.html
new file mode 100644
index 0000000..aa10ee1
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.view.inputmethod.InputConnectionWrapper.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.inputmethod.InputConnectionWrapper
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.inputmethod.<A HREF="../../../../reference/android/view/inputmethod/InputConnectionWrapper.html" target="_top"><font size="+2"><code>InputConnectionWrapper</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.inputmethod.InputConnectionWrapper.requestCursorUpdates_added(int)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/InputConnectionWrapper.html#requestCursorUpdates(int)" target="_top"><code>requestCursorUpdates</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.view.inputmethod.InputMethodManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.view.inputmethod.InputMethodManager.html
new file mode 100644
index 0000000..47af7b4
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.view.inputmethod.InputMethodManager.html
@@ -0,0 +1,135 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.inputmethod.InputMethodManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.inputmethod.<A HREF="../../../../reference/android/view/inputmethod/InputMethodManager.html" target="_top"><font size="+2"><code>InputMethodManager</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.inputmethod.InputMethodManager.isWatchingCursor_changed(android.view.View)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/InputMethodManager.html#isWatchingCursor(android.view.View)" target="_top"><code>isWatchingCursor</code></A>(<code>View</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.inputmethod.InputMethodManager.updateCursor_changed(android.view.View, int, int, int, int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/InputMethodManager.html#updateCursor(android.view.View, int, int, int, int)" target="_top"><code>updateCursor</code></A>(<code>View,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.view.textservice.TextInfo.html b/docs/html/sdk/api_diff/preview-21/changes/android.view.textservice.TextInfo.html
new file mode 100644
index 0000000..f5b3334
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.view.textservice.TextInfo.html
@@ -0,0 +1,137 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.textservice.TextInfo
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.textservice.<A HREF="../../../../reference/android/view/textservice/TextInfo.html" target="_top"><font size="+2"><code>TextInfo</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.view.textservice.TextInfo.ctor_added(java.lang.CharSequence, int, int, int, int)"></A>
+  <nobr><A HREF="../../../../reference/android/view/textservice/TextInfo.html#TextInfo(java.lang.CharSequence, int, int, int, int)" target="_top"><code>TextInfo</code></A>(<code>CharSequence,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.textservice.TextInfo.getCharSequence_added()"></A>
+  <nobr><code>CharSequence</code>&nbsp;<A HREF="../../../../reference/android/view/textservice/TextInfo.html#getCharSequence()" target="_top"><code>getCharSequence</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.webkit.CookieManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.webkit.CookieManager.html
new file mode 100644
index 0000000..88fe0d7
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.webkit.CookieManager.html
@@ -0,0 +1,195 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.CookieManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/CookieManager.html" target="_top"><font size="+2"><code>CookieManager</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.CookieManager.acceptThirdPartyCookies_added(android.webkit.WebView)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/webkit/CookieManager.html#acceptThirdPartyCookies(android.webkit.WebView)" target="_top"><code>acceptThirdPartyCookies</code></A>(<code>WebView</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.CookieManager.flush_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/CookieManager.html#flush()" target="_top"><code>flush</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.CookieManager.removeAllCookies_added(android.webkit.ValueCallback<java.lang.Boolean>)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/CookieManager.html#removeAllCookies(android.webkit.ValueCallback<java.lang.Boolean>)" target="_top"><code>removeAllCookies</code></A>(<code>ValueCallback&lt;Boolean&gt;</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.CookieManager.removeSessionCookies_added(android.webkit.ValueCallback<java.lang.Boolean>)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/CookieManager.html#removeSessionCookies(android.webkit.ValueCallback<java.lang.Boolean>)" target="_top"><code>removeSessionCookies</code></A>(<code>ValueCallback&lt;Boolean&gt;</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.CookieManager.setAcceptThirdPartyCookies_added(android.webkit.WebView, boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/CookieManager.html#setAcceptThirdPartyCookies(android.webkit.WebView, boolean)" target="_top"><code>setAcceptThirdPartyCookies</code></A>(<code>WebView,</nobr> boolean<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.CookieManager.setCookie_added(java.lang.String, java.lang.String, android.webkit.ValueCallback<java.lang.Boolean>)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/CookieManager.html#setCookie(java.lang.String, java.lang.String, android.webkit.ValueCallback<java.lang.Boolean>)" target="_top"><code>setCookie</code></A>(<code>String,</nobr> String<nobr>,</nobr> ValueCallback&lt;Boolean&gt;<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.CookieManager.removeAllCookie_changed()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/CookieManager.html#removeAllCookie()" target="_top"><code>removeAllCookie</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.CookieManager.removeExpiredCookie_changed()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/CookieManager.html#removeExpiredCookie()" target="_top"><code>removeExpiredCookie</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.CookieManager.removeSessionCookie_changed()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/CookieManager.html#removeSessionCookie()" target="_top"><code>removeSessionCookie</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.webkit.CookieSyncManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.webkit.CookieSyncManager.html
new file mode 100644
index 0000000..c09ce2d
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.webkit.CookieSyncManager.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.CookieSyncManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/CookieSyncManager.html" target="_top"><font size="+2"><code>CookieSyncManager</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.CookieSyncManager.syncFromRamToFlash_changed()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/CookieSyncManager.html#syncFromRamToFlash()" target="_top"><code>syncFromRamToFlash</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.webkit.PermissionRequest.html b/docs/html/sdk/api_diff/preview-21/changes/android.webkit.PermissionRequest.html
new file mode 100644
index 0000000..e450f3b
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.webkit.PermissionRequest.html
@@ -0,0 +1,194 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.PermissionRequest
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/PermissionRequest.html" target="_top"><font size="+2"><code>PermissionRequest</code></font></A>
+</H2>
+<p>Changed from an interface to a class.
+<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.webkit.PermissionRequest.ctor_added()"></A>
+  <nobr><A HREF="../../../../reference/android/webkit/PermissionRequest.html#PermissionRequest()" target="_top"><code>PermissionRequest</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.PermissionRequest.getResources_changed()"></A>
+  <nobr><code>String[]</code>&nbsp;<A HREF="../../../../reference/android/webkit/PermissionRequest.html#getResources()" target="_top"><code>getResources</code></A>()  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in return type from <code>long</code> to <code>String[]</code>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.PermissionRequest.grant_changed(java.lang.String[])"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/PermissionRequest.html#grant(java.lang.String[])" target="_top"><code>grant</code></A>(<code>String[]</code>)  </nobr>
+  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in signature from <code>long</code> to <code>String[]</code>.<br>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.PermissionRequest.RESOURCE_PROTECTED_MEDIA_ID"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/webkit/PermissionRequest.html#RESOURCE_PROTECTED_MEDIA_ID" target="_top"><code>RESOURCE_PROTECTED_MEDIA_ID</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.webkit.PermissionRequest.RESOURCE_AUDIO_CAPTURE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/webkit/PermissionRequest.html#RESOURCE_AUDIO_CAPTURE" target="_top"><code>RESOURCE_AUDIO_CAPTURE</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>long</code> to <code>String</code>.<br>
+ Changed in value from 4L to "android.webkit.resource.AUDIO_CAPTURE".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.PermissionRequest.RESOURCE_VIDEO_CAPTURE"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/webkit/PermissionRequest.html#RESOURCE_VIDEO_CAPTURE" target="_top"><code>RESOURCE_VIDEO_CAPTURE</code></font></A></nobr>  </TD>
+  <TD VALIGN="TOP" WIDTH="30%">
+Change in type from<code>long</code> to <code>String</code>.<br>
+ Changed in value from 2L to "android.webkit.resource.VIDEO_CAPTURE".
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.webkit.WebChromeClient.html b/docs/html/sdk/api_diff/preview-21/changes/android.webkit.WebChromeClient.html
new file mode 100644
index 0000000..edf1c26
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.webkit.WebChromeClient.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.onShowFileChooser_added(android.webkit.WebView, android.webkit.ValueCallback<android.net.Uri[]>, android.webkit.WebChromeClient.FileChooserParams)"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebChromeClient.html#onShowFileChooser(android.webkit.WebView, android.webkit.ValueCallback<android.net.Uri[]>, android.webkit.WebChromeClient.FileChooserParams)" target="_top"><code>onShowFileChooser</code></A>(<code>WebView,</nobr> ValueCallback&lt;Uri[]&gt;<nobr>,</nobr> FileChooserParams<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.webkit.WebResourceResponse.html b/docs/html/sdk/api_diff/preview-21/changes/android.webkit.WebResourceResponse.html
new file mode 100644
index 0000000..9bd0b61
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.webkit.WebResourceResponse.html
@@ -0,0 +1,165 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.WebResourceResponse
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/WebResourceResponse.html" target="_top"><font size="+2"><code>WebResourceResponse</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.webkit.WebResourceResponse.ctor_added(java.lang.String, java.lang.String, int, java.lang.String, java.util.Map<java.lang.String, java.lang.String>, java.io.InputStream)"></A>
+  <nobr><A HREF="../../../../reference/android/webkit/WebResourceResponse.html#WebResourceResponse(java.lang.String, java.lang.String, int, java.lang.String, java.util.Map<java.lang.String, java.lang.String>, java.io.InputStream)" target="_top"><code>WebResourceResponse</code></A>(<code>String,</nobr> String<nobr>,</nobr> int<nobr>,</nobr> String<nobr>,</nobr> Map&lt;String<nobr>,</nobr> String&gt;<nobr>,</nobr> InputStream<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.WebResourceResponse.getReasonPhrase_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebResourceResponse.html#getReasonPhrase()" target="_top"><code>getReasonPhrase</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebResourceResponse.getResponseHeaders_added()"></A>
+  <nobr>(<code>Map&lt;String, String&gt;</code>)&nbsp;<A HREF="../../../../reference/android/webkit/WebResourceResponse.html#getResponseHeaders()" target="_top"><code>getResponseHeaders</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebResourceResponse.getStatusCode_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebResourceResponse.html#getStatusCode()" target="_top"><code>getStatusCode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebResourceResponse.setResponseHeaders_added(java.util.Map<java.lang.String, java.lang.String>)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebResourceResponse.html#setResponseHeaders(java.util.Map<java.lang.String, java.lang.String>)" target="_top"><code>setResponseHeaders</code></A>(<code>Map&lt;String,</nobr> String&gt;<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebResourceResponse.setStatusCodeAndReasonPhrase_added(int, java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebResourceResponse.html#setStatusCodeAndReasonPhrase(int, java.lang.String)" target="_top"><code>setStatusCodeAndReasonPhrase</code></A>(<code>int,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.webkit.WebSyncManager.html b/docs/html/sdk/api_diff/preview-21/changes/android.webkit.WebSyncManager.html
new file mode 100644
index 0000000..fae975a
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.webkit.WebSyncManager.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.WebSyncManager
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/WebSyncManager.html" target="_top"><font size="+2"><code>WebSyncManager</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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.webkit.WebView.html b/docs/html/sdk/api_diff/preview-21/changes/android.webkit.WebView.html
new file mode 100644
index 0000000..5c9e995
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.webkit.WebView.html
@@ -0,0 +1,144 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebView.preauthorizePermission_removed(android.net.Uri, long)"></A>
+  <nobr><code>void</code>&nbsp;preauthorizePermission(<code>Uri,</nobr> long<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.enableSlowWholeDocumentDraw_added()"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebView.html#enableSlowWholeDocumentDraw()" target="_top"><code>enableSlowWholeDocumentDraw</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebView.zoomBy_added(float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebView.html#zoomBy(float)" target="_top"><code>zoomBy</code></A>(<code>float</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.webkit.WebViewClient.html b/docs/html/sdk/api_diff/preview-21/changes/android.webkit.WebViewClient.html
new file mode 100644
index 0000000..82aa1a1
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.webkit.WebViewClient.html
@@ -0,0 +1,144 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebViewClient.shouldInterceptRequest_removed(android.webkit.WebView, java.lang.String)"></A>
+  <nobr><code>WebResourceResponse</code>&nbsp;shouldInterceptRequest(<code>WebView,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, android.webkit.WebResourceRequest)"></A>
+  <nobr><code>WebResourceResponse</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebViewClient.html#shouldInterceptRequest(android.webkit.WebView, android.webkit.WebResourceRequest)" target="_top"><code>shouldInterceptRequest</code></A>(<code>WebView,</nobr> WebResourceRequest<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, java.lang.String)"></A>
+  <nobr><code>WebResourceResponse</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebViewClient.html#shouldInterceptRequest(android.webkit.WebView, java.lang.String)" target="_top"><code>shouldInterceptRequest</code></A>(<code>WebView,</nobr> String<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.widget.AbsListView.html b/docs/html/sdk/api_diff/preview-21/changes/android.widget.AbsListView.html
new file mode 100644
index 0000000..1d98549
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.widget.AbsListView.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AbsListView
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/AbsListView.html" target="_top"><font size="+2"><code>AbsListView</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.AbsListView.fling_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/AbsListView.html#fling(int)" target="_top"><code>fling</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.widget.AbsSeekBar.html b/docs/html/sdk/api_diff/preview-21/changes/android.widget.AbsSeekBar.html
new file mode 100644
index 0000000..5fefb7f
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.widget.AbsSeekBar.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AbsSeekBar
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/AbsSeekBar.html" target="_top"><font size="+2"><code>AbsSeekBar</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.AbsSeekBar.getThumbTintList_added()"></A>
+  <nobr><code>ColorStateList</code>&nbsp;<A HREF="../../../../reference/android/widget/AbsSeekBar.html#getThumbTintList()" target="_top"><code>getThumbTintList</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.AbsSeekBar.getThumbTintMode_added()"></A>
+  <nobr><code>Mode</code>&nbsp;<A HREF="../../../../reference/android/widget/AbsSeekBar.html#getThumbTintMode()" target="_top"><code>getThumbTintMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.AbsSeekBar.setThumbTintList_added(android.content.res.ColorStateList)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/AbsSeekBar.html#setThumbTintList(android.content.res.ColorStateList)" target="_top"><code>setThumbTintList</code></A>(<code>ColorStateList</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.AbsSeekBar.setThumbTintMode_added(android.graphics.PorterDuff.Mode)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/AbsSeekBar.html#setThumbTintMode(android.graphics.PorterDuff.Mode)" target="_top"><code>setThumbTintMode</code></A>(<code>Mode</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.widget.ActionMenuView.html b/docs/html/sdk/api_diff/preview-21/changes/android.widget.ActionMenuView.html
new file mode 100644
index 0000000..3ef1882
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.widget.ActionMenuView.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ActionMenuView
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ActionMenuView.html" target="_top"><font size="+2"><code>ActionMenuView</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.ActionMenuView.getPopupTheme_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/widget/ActionMenuView.html#getPopupTheme()" target="_top"><code>getPopupTheme</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ActionMenuView.setPopupTheme_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/ActionMenuView.html#setPopupTheme(int)" target="_top"><code>setPopupTheme</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.widget.CheckedTextView.html b/docs/html/sdk/api_diff/preview-21/changes/android.widget.CheckedTextView.html
new file mode 100644
index 0000000..425409e
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.widget.CheckedTextView.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.CheckedTextView
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/CheckedTextView.html" target="_top"><font size="+2"><code>CheckedTextView</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.CheckedTextView.getCheckMarkTintList_added()"></A>
+  <nobr><code>ColorStateList</code>&nbsp;<A HREF="../../../../reference/android/widget/CheckedTextView.html#getCheckMarkTintList()" target="_top"><code>getCheckMarkTintList</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.CheckedTextView.getCheckMarkTintMode_added()"></A>
+  <nobr><code>Mode</code>&nbsp;<A HREF="../../../../reference/android/widget/CheckedTextView.html#getCheckMarkTintMode()" target="_top"><code>getCheckMarkTintMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.CheckedTextView.setCheckMarkTintList_added(android.content.res.ColorStateList)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/CheckedTextView.html#setCheckMarkTintList(android.content.res.ColorStateList)" target="_top"><code>setCheckMarkTintList</code></A>(<code>ColorStateList</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.CheckedTextView.setCheckMarkTintMode_added(android.graphics.PorterDuff.Mode)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/CheckedTextView.html#setCheckMarkTintMode(android.graphics.PorterDuff.Mode)" target="_top"><code>setCheckMarkTintMode</code></A>(<code>Mode</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.widget.CompoundButton.html b/docs/html/sdk/api_diff/preview-21/changes/android.widget.CompoundButton.html
new file mode 100644
index 0000000..7009a4c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.widget.CompoundButton.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.CompoundButton
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/CompoundButton.html" target="_top"><font size="+2"><code>CompoundButton</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.CompoundButton.getButtonTintList_added()"></A>
+  <nobr><code>ColorStateList</code>&nbsp;<A HREF="../../../../reference/android/widget/CompoundButton.html#getButtonTintList()" target="_top"><code>getButtonTintList</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.CompoundButton.getButtonTintMode_added()"></A>
+  <nobr><code>Mode</code>&nbsp;<A HREF="../../../../reference/android/widget/CompoundButton.html#getButtonTintMode()" target="_top"><code>getButtonTintMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.CompoundButton.setButtonTintList_added(android.content.res.ColorStateList)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/CompoundButton.html#setButtonTintList(android.content.res.ColorStateList)" target="_top"><code>setButtonTintList</code></A>(<code>ColorStateList</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.CompoundButton.setButtonTintMode_added(android.graphics.PorterDuff.Mode)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/CompoundButton.html#setButtonTintMode(android.graphics.PorterDuff.Mode)" target="_top"><code>setButtonTintMode</code></A>(<code>Mode</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.widget.DatePicker.html b/docs/html/sdk/api_diff/preview-21/changes/android.widget.DatePicker.html
new file mode 100644
index 0000000..1140464
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.widget.DatePicker.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.DatePicker
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/DatePicker.html" target="_top"><font size="+2"><code>DatePicker</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.DatePicker.getFirstDayOfWeek_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/widget/DatePicker.html#getFirstDayOfWeek()" target="_top"><code>getFirstDayOfWeek</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.DatePicker.setFirstDayOfWeek_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/DatePicker.html#setFirstDayOfWeek(int)" target="_top"><code>setFirstDayOfWeek</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.widget.EdgeEffect.html b/docs/html/sdk/api_diff/preview-21/changes/android.widget.EdgeEffect.html
new file mode 100644
index 0000000..d32ef05
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.widget.EdgeEffect.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.EdgeEffect
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/EdgeEffect.html" target="_top"><font size="+2"><code>EdgeEffect</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.EdgeEffect.getColor_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/widget/EdgeEffect.html#getColor()" target="_top"><code>getColor</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.EdgeEffect.setColor_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/EdgeEffect.html#setColor(int)" target="_top"><code>setColor</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.widget.FrameLayout.html b/docs/html/sdk/api_diff/preview-21/changes/android.widget.FrameLayout.html
new file mode 100644
index 0000000..7d0e332
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.widget.FrameLayout.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.FrameLayout
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/FrameLayout.html" target="_top"><font size="+2"><code>FrameLayout</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.FrameLayout.getForegroundTintList_added()"></A>
+  <nobr><code>ColorStateList</code>&nbsp;<A HREF="../../../../reference/android/widget/FrameLayout.html#getForegroundTintList()" target="_top"><code>getForegroundTintList</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.FrameLayout.getForegroundTintMode_added()"></A>
+  <nobr><code>Mode</code>&nbsp;<A HREF="../../../../reference/android/widget/FrameLayout.html#getForegroundTintMode()" target="_top"><code>getForegroundTintMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.FrameLayout.setForegroundTintList_added(android.content.res.ColorStateList)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/FrameLayout.html#setForegroundTintList(android.content.res.ColorStateList)" target="_top"><code>setForegroundTintList</code></A>(<code>ColorStateList</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.FrameLayout.setForegroundTintMode_added(android.graphics.PorterDuff.Mode)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/FrameLayout.html#setForegroundTintMode(android.graphics.PorterDuff.Mode)" target="_top"><code>setForegroundTintMode</code></A>(<code>Mode</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.widget.GridLayout.html b/docs/html/sdk/api_diff/preview-21/changes/android.widget.GridLayout.html
new file mode 100644
index 0000000..6ccf193
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.widget.GridLayout.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.GridLayout
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/GridLayout.html" target="_top"><font size="+2"><code>GridLayout</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.GridLayout.spec_added(int, android.widget.GridLayout.Alignment, float)"></A>
+  <nobr><code>Spec</code>&nbsp;<A HREF="../../../../reference/android/widget/GridLayout.html#spec(int, android.widget.GridLayout.Alignment, float)" target="_top"><code>spec</code></A>(<code>int,</nobr> Alignment<nobr>,</nobr> float<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.GridLayout.spec_added(int, float)"></A>
+  <nobr><code>Spec</code>&nbsp;<A HREF="../../../../reference/android/widget/GridLayout.html#spec(int, float)" target="_top"><code>spec</code></A>(<code>int,</nobr> float<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.GridLayout.spec_added(int, int, android.widget.GridLayout.Alignment, float)"></A>
+  <nobr><code>Spec</code>&nbsp;<A HREF="../../../../reference/android/widget/GridLayout.html#spec(int, int, android.widget.GridLayout.Alignment, float)" target="_top"><code>spec</code></A>(<code>int,</nobr> int<nobr>,</nobr> Alignment<nobr>,</nobr> float<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.GridLayout.spec_added(int, int, float)"></A>
+  <nobr><code>Spec</code>&nbsp;<A HREF="../../../../reference/android/widget/GridLayout.html#spec(int, int, float)" target="_top"><code>spec</code></A>(<code>int,</nobr> int<nobr>,</nobr> float<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.widget.ImageView.html b/docs/html/sdk/api_diff/preview-21/changes/android.widget.ImageView.html
new file mode 100644
index 0000000..567a932
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.widget.ImageView.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ImageView
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ImageView.html" target="_top"><font size="+2"><code>ImageView</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.ImageView.getImageTintList_added()"></A>
+  <nobr><code>ColorStateList</code>&nbsp;<A HREF="../../../../reference/android/widget/ImageView.html#getImageTintList()" target="_top"><code>getImageTintList</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ImageView.getImageTintMode_added()"></A>
+  <nobr><code>Mode</code>&nbsp;<A HREF="../../../../reference/android/widget/ImageView.html#getImageTintMode()" target="_top"><code>getImageTintMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ImageView.setImageTintList_added(android.content.res.ColorStateList)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/ImageView.html#setImageTintList(android.content.res.ColorStateList)" target="_top"><code>setImageTintList</code></A>(<code>ColorStateList</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ImageView.setImageTintMode_added(android.graphics.PorterDuff.Mode)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/ImageView.html#setImageTintMode(android.graphics.PorterDuff.Mode)" target="_top"><code>setImageTintMode</code></A>(<code>Mode</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.widget.PopupWindow.html b/docs/html/sdk/api_diff/preview-21/changes/android.widget.PopupWindow.html
new file mode 100644
index 0000000..8b71e9c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.widget.PopupWindow.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.PopupWindow
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/PopupWindow.html" target="_top"><font size="+2"><code>PopupWindow</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.PopupWindow.getElevation_added()"></A>
+  <nobr><code>float</code>&nbsp;<A HREF="../../../../reference/android/widget/PopupWindow.html#getElevation()" target="_top"><code>getElevation</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.PopupWindow.setElevation_added(float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/PopupWindow.html#setElevation(float)" target="_top"><code>setElevation</code></A>(<code>float</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.widget.ProgressBar.html b/docs/html/sdk/api_diff/preview-21/changes/android.widget.ProgressBar.html
new file mode 100644
index 0000000..9049adc
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.widget.ProgressBar.html
@@ -0,0 +1,227 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ProgressBar
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/ProgressBar.html" target="_top"><font size="+2"><code>ProgressBar</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.ProgressBar.getIndeterminateTintList_added()"></A>
+  <nobr><code>ColorStateList</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#getIndeterminateTintList()" target="_top"><code>getIndeterminateTintList</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.getIndeterminateTintMode_added()"></A>
+  <nobr><code>Mode</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#getIndeterminateTintMode()" target="_top"><code>getIndeterminateTintMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.getProgressBackgroundTintList_added()"></A>
+  <nobr><code>ColorStateList</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#getProgressBackgroundTintList()" target="_top"><code>getProgressBackgroundTintList</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.getProgressBackgroundTintMode_added()"></A>
+  <nobr><code>Mode</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#getProgressBackgroundTintMode()" target="_top"><code>getProgressBackgroundTintMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.getProgressTintList_added()"></A>
+  <nobr><code>ColorStateList</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#getProgressTintList()" target="_top"><code>getProgressTintList</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.getProgressTintMode_added()"></A>
+  <nobr><code>Mode</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#getProgressTintMode()" target="_top"><code>getProgressTintMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.getSecondaryProgressTintList_added()"></A>
+  <nobr><code>ColorStateList</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#getSecondaryProgressTintList()" target="_top"><code>getSecondaryProgressTintList</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.getSecondaryProgressTintMode_added()"></A>
+  <nobr><code>Mode</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#getSecondaryProgressTintMode()" target="_top"><code>getSecondaryProgressTintMode</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.setIndeterminateTintList_added(android.content.res.ColorStateList)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#setIndeterminateTintList(android.content.res.ColorStateList)" target="_top"><code>setIndeterminateTintList</code></A>(<code>ColorStateList</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.setIndeterminateTintMode_added(android.graphics.PorterDuff.Mode)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#setIndeterminateTintMode(android.graphics.PorterDuff.Mode)" target="_top"><code>setIndeterminateTintMode</code></A>(<code>Mode</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.setProgressBackgroundTintList_added(android.content.res.ColorStateList)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#setProgressBackgroundTintList(android.content.res.ColorStateList)" target="_top"><code>setProgressBackgroundTintList</code></A>(<code>ColorStateList</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.setProgressBackgroundTintMode_added(android.graphics.PorterDuff.Mode)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#setProgressBackgroundTintMode(android.graphics.PorterDuff.Mode)" target="_top"><code>setProgressBackgroundTintMode</code></A>(<code>Mode</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.setProgressTintList_added(android.content.res.ColorStateList)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#setProgressTintList(android.content.res.ColorStateList)" target="_top"><code>setProgressTintList</code></A>(<code>ColorStateList</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.setProgressTintMode_added(android.graphics.PorterDuff.Mode)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#setProgressTintMode(android.graphics.PorterDuff.Mode)" target="_top"><code>setProgressTintMode</code></A>(<code>Mode</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.setSecondaryProgressTintList_added(android.content.res.ColorStateList)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#setSecondaryProgressTintList(android.content.res.ColorStateList)" target="_top"><code>setSecondaryProgressTintList</code></A>(<code>ColorStateList</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.ProgressBar.setSecondaryProgressTintMode_added(android.graphics.PorterDuff.Mode)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/ProgressBar.html#setSecondaryProgressTintMode(android.graphics.PorterDuff.Mode)" target="_top"><code>setSecondaryProgressTintMode</code></A>(<code>Mode</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.widget.Switch.html b/docs/html/sdk/api_diff/preview-21/changes/android.widget.Switch.html
new file mode 100644
index 0000000..d8b4266
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.widget.Switch.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Switch
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/Switch.html" target="_top"><font size="+2"><code>Switch</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.Switch.getShowText_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/widget/Switch.html#getShowText()" target="_top"><code>getShowText</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.Switch.setShowText_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/Switch.html#setShowText(boolean)" target="_top"><code>setShowText</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.widget.TextView.html b/docs/html/sdk/api_diff/preview-21/changes/android.widget.TextView.html
new file mode 100644
index 0000000..3a84931
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.widget.TextView.html
@@ -0,0 +1,179 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.TextView
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/TextView.html" target="_top"><font size="+2"><code>TextView</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.TextView.getTextColor_removed(android.content.Context, android.content.res.TypedArray, int)"></A>
+  <nobr><code>int</code>&nbsp;getTextColor(<code>Context,</nobr> TypedArray<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.TextView.getTextColors_removed(android.content.Context, android.content.res.TypedArray)"></A>
+  <nobr><code>ColorStateList</code>&nbsp;getTextColors(<code>Context,</nobr> TypedArray<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.TextView.getFontFeatureSettings_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/widget/TextView.html#getFontFeatureSettings()" target="_top"><code>getFontFeatureSettings</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.TextView.getLetterSpacing_added()"></A>
+  <nobr><code>float</code>&nbsp;<A HREF="../../../../reference/android/widget/TextView.html#getLetterSpacing()" target="_top"><code>getLetterSpacing</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.TextView.getShowSoftInputOnFocus_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/widget/TextView.html#getShowSoftInputOnFocus()" target="_top"><code>getShowSoftInputOnFocus</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.TextView.setFontFeatureSettings_added(java.lang.String)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/TextView.html#setFontFeatureSettings(java.lang.String)" target="_top"><code>setFontFeatureSettings</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.TextView.setLetterSpacing_added(float)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/TextView.html#setLetterSpacing(float)" target="_top"><code>setLetterSpacing</code></A>(<code>float</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.TextView.setShowSoftInputOnFocus_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/TextView.html#setShowSoftInputOnFocus(boolean)" target="_top"><code>setShowSoftInputOnFocus</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.widget.Toolbar.html b/docs/html/sdk/api_diff/preview-21/changes/android.widget.Toolbar.html
new file mode 100644
index 0000000..6bccee9
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.widget.Toolbar.html
@@ -0,0 +1,172 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Toolbar
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/Toolbar.html" target="_top"><font size="+2"><code>Toolbar</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Methods" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.Toolbar.setNavigationDescription_removed(int)"></A>
+  <nobr><code>void</code>&nbsp;setNavigationDescription(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.Toolbar.setNavigationDescription_removed(java.lang.CharSequence)"></A>
+  <nobr><code>void</code>&nbsp;setNavigationDescription(<code>CharSequence</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.Toolbar.getNavigationContentDescription_added()"></A>
+  <nobr><code>CharSequence</code>&nbsp;<A HREF="../../../../reference/android/widget/Toolbar.html#getNavigationContentDescription()" target="_top"><code>getNavigationContentDescription</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.Toolbar.getPopupTheme_added()"></A>
+  <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/widget/Toolbar.html#getPopupTheme()" target="_top"><code>getPopupTheme</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.Toolbar.setPopupTheme_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/Toolbar.html#setPopupTheme(int)" target="_top"><code>setPopupTheme</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.Toolbar.setSubtitleTextColor_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/Toolbar.html#setSubtitleTextColor(int)" target="_top"><code>setSubtitleTextColor</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.widget.Toolbar.setTitleTextColor_added(int)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/Toolbar.html#setTitleTextColor(int)" target="_top"><code>setTitleTextColor</code></A>(<code>int</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/android.widget.VideoView.html b/docs/html/sdk/api_diff/preview-21/changes/android.widget.VideoView.html
new file mode 100644
index 0000000..7d00875
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/android.widget.VideoView.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.setVideoURI_added(android.net.Uri, java.util.Map<java.lang.String, java.lang.String>)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/widget/VideoView.html#setVideoURI(android.net.Uri, java.util.Map<java.lang.String, java.lang.String>)" target="_top"><code>setVideoURI</code></A>(<code>Uri,</nobr> Map&lt;String<nobr>,</nobr> String&gt;<nobr><nobr></code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/changes-summary.html b/docs/html/sdk/api_diff/preview-21/changes/changes-summary.html
new file mode 100644
index 0000000..2123978
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/changes-summary.html
@@ -0,0 +1,570 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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&nbsp;API&nbsp;Differences&nbsp;Report</h1>
+<p>This report details the changes in the core Android framework API between two <a 
+href="//developer.android.com/guide/appendix/api-levels.html" target="_top">API Level</a> 
+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="//developer.android.com/index.html" target="_top">Android Developers site</a>.</p>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Packages" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Packages</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.location"></A>
+  android.hardware.location  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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.app.usage"></A>
+  <nobr><A HREF="../../../../reference/android/app/usage/package-summary.html" target="_top"><code>android.app.usage</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.browse"></A>
+  <nobr><A HREF="../../../../reference/android/media/browse/package-summary.html" target="_top"><code>android.media.browse</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.projection"></A>
+  <nobr><A HREF="../../../../reference/android/media/projection/package-summary.html" target="_top"><code>android.media.projection</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.media"></A>
+  <nobr><A HREF="../../../../reference/android/service/media/package-summary.html" target="_top"><code>android.service.media</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.restrictions"></A>
+  <nobr><A HREF="../../../../reference/android/service/restrictions/package-summary.html" target="_top"><code>android.service.restrictions</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.telecom"></A>
+  <nobr><A HREF="../../../../reference/android/telecom/package-summary.html" target="_top"><code>android.telecom</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.accessibilityservice"></A>
+  <nobr><A HREF="pkg_android.accessibilityservice.html">android.accessibilityservice</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.accounts"></A>
+  <nobr><A HREF="pkg_android.accounts.html">android.accounts</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.admin"></A>
+  <nobr><A HREF="pkg_android.app.admin.html">android.app.admin</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.backup"></A>
+  <nobr><A HREF="pkg_android.app.backup.html">android.app.backup</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.app.job"></A>
+  <nobr><A HREF="pkg_android.app.job.html">android.app.job</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.appwidget"></A>
+  <nobr><A HREF="pkg_android.appwidget.html">android.appwidget</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth"></A>
+  <nobr><A HREF="pkg_android.bluetooth.html">android.bluetooth</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.bluetooth.le"></A>
+  <nobr><A HREF="pkg_android.bluetooth.le.html">android.bluetooth.le</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.graphics.drawable.shapes"></A>
+  <nobr><A HREF="pkg_android.graphics.drawable.shapes.html">android.graphics.drawable.shapes</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2"></A>
+  <nobr><A HREF="pkg_android.hardware.camera2.html">android.hardware.camera2</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.camera2.params"></A>
+  <nobr><A HREF="pkg_android.hardware.camera2.params.html">android.hardware.camera2.params</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.hardware.display"></A>
+  <nobr><A HREF="pkg_android.hardware.display.html">android.hardware.display</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.audiofx"></A>
+  <nobr><A HREF="pkg_android.media.audiofx.html">android.media.audiofx</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.session"></A>
+  <nobr><A HREF="pkg_android.media.session.html">android.media.session</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.media.tv"></A>
+  <nobr><A HREF="pkg_android.media.tv.html">android.media.tv</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net"></A>
+  <nobr><A HREF="pkg_android.net.html">android.net</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.net.wifi"></A>
+  <nobr><A HREF="pkg_android.net.wifi.html">android.net.wifi</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.nfc.cardemulation"></A>
+  <nobr><A HREF="pkg_android.nfc.cardemulation.html">android.nfc.cardemulation</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.printservice"></A>
+  <nobr><A HREF="pkg_android.printservice.html">android.printservice</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.renderscript"></A>
+  <nobr><A HREF="pkg_android.renderscript.html">android.renderscript</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.dreams"></A>
+  <nobr><A HREF="pkg_android.service.dreams.html">android.service.dreams</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.notification"></A>
+  <nobr><A HREF="pkg_android.service.notification.html">android.service.notification</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.voice"></A>
+  <nobr><A HREF="pkg_android.service.voice.html">android.service.voice</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.service.wallpaper"></A>
+  <nobr><A HREF="pkg_android.service.wallpaper.html">android.service.wallpaper</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.speech.tts"></A>
+  <nobr><A HREF="pkg_android.speech.tts.html">android.speech.tts</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.system"></A>
+  <nobr><A HREF="pkg_android.system.html">android.system</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.transition"></A>
+  <nobr><A HREF="pkg_android.transition.html">android.transition</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.accessibility"></A>
+  <nobr><A HREF="pkg_android.view.accessibility.html">android.view.accessibility</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.inputmethod"></A>
+  <nobr><A HREF="pkg_android.view.inputmethod.html">android.view.inputmethod</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="android.view.textservice"></A>
+  <nobr><A HREF="pkg_android.view.textservice.html">android.view.textservice</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<!-- 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="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/classes_index_additions.html b/docs/html/sdk/api_diff/preview-21/changes/classes_index_additions.html
new file mode 100644
index 0000000..f0e54b89
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/classes_index_additions.html
@@ -0,0 +1,361 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<A HREF="classes_index_removals.html" xclass="hiddenlink">Removals</A>
+  <br>
+<b>Additions</b>
+  <br>
+<A HREF="classes_index_changes.html"xclass="hiddenlink">Changes</A>
+  </td>
+  </tr>
+</table>
+<div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.bluetooth.le.html#AdvertiseData" class="hiddenlink" target="rightframe"><b>AdvertiseData</b></A><br>
+<A HREF="pkg_android.bluetooth.le.html#AdvertiseData.Builder" class="hiddenlink" target="rightframe"><b>AdvertiseData.Builder</b></A><br>
+<A HREF="pkg_android.app.html#AlarmManager.AlarmClockInfo" class="hiddenlink" target="rightframe"><b>AlarmManager.AlarmClockInfo</b></A><br>
+<A HREF="pkg_android.service.voice.html#AlwaysOnHotwordDetector" class="hiddenlink" target="rightframe"><b>AlwaysOnHotwordDetector</b></A><br>
+<A HREF="pkg_android.service.voice.html#AlwaysOnHotwordDetector.Callback" class="hiddenlink" target="rightframe"><b>AlwaysOnHotwordDetector.Callback</b></A><br>
+<A HREF="pkg_android.service.voice.html#AlwaysOnHotwordDetector.EventPayload" class="hiddenlink" target="rightframe"><b>AlwaysOnHotwordDetector.EventPayload</b></A><br>
+<A HREF="pkg_android.graphics.drawable.html#AnimatedVectorDrawable" class="hiddenlink" target="rightframe"><b>AnimatedVectorDrawable</b></A><br>
+<A HREF="pkg_android.transition.html#ArcMotion" class="hiddenlink" target="rightframe"><b>ArcMotion</b></A><br>
+<A HREF="pkg_android.media.html#AudioAttributes" class="hiddenlink" target="rightframe"><b>AudioAttributes</b></A><br>
+<A HREF="pkg_android.media.html#AudioAttributes.Builder" class="hiddenlink" target="rightframe"><b>AudioAttributes.Builder</b></A><br>
+<A HREF="pkg_android.media.html#AudioFormat.Builder" class="hiddenlink" target="rightframe"><b>AudioFormat.Builder</b></A><br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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="#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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.hardware.camera2.params.html#BlackLevelPattern" class="hiddenlink" target="rightframe"><b>BlackLevelPattern</b></A><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<a href="#A"><font size="-2">A</font></a> 
+<a href="#B"><font size="-2">B</font></a> 
+<a href="#F"><font size="-2">F</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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.hardware.camera2.html#CameraCaptureSession.CaptureCallback" class="hiddenlink" target="rightframe"><b>CameraCaptureSession.CaptureCallback</b></A><br>
+<A HREF="pkg_android.hardware.camera2.html#CameraCaptureSession.StateCallback" class="hiddenlink" target="rightframe"><b>CameraCaptureSession.StateCallback</b></A><br>
+<A HREF="pkg_android.hardware.camera2.html#CameraDevice.StateCallback" class="hiddenlink" target="rightframe"><b>CameraDevice.StateCallback</b></A><br>
+<A HREF="pkg_android.hardware.camera2.html#CameraManager.AvailabilityCallback" class="hiddenlink" target="rightframe"><b>CameraManager.AvailabilityCallback</b></A><br>
+<A HREF="pkg_android.transition.html#ChangeImageTransform" class="hiddenlink" target="rightframe"><b>ChangeImageTransform</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#ConcurrentLinkedDeque" class="hiddenlink" target="rightframe"><b>ConcurrentLinkedDeque</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.PinnedPositions" class="hiddenlink" target="rightframe"><b>ContactsContract.PinnedPositions</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.SearchSnippets" class="hiddenlink" target="rightframe"><b>ContactsContract.SearchSnippets</b></A><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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="#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="#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#FeatureGroupInfo" class="hiddenlink" target="rightframe"><b>FeatureGroupInfo</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#ForkJoinPool" class="hiddenlink" target="rightframe"><b>ForkJoinPool</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#ForkJoinPool.ForkJoinWorkerThreadFactory" class="hiddenlink" target="rightframe"><b><i>ForkJoinPool.ForkJoinWorkerThreadFactory</i></b></A><br>
+<A HREF="pkg_java.util.concurrent.html#ForkJoinPool.ManagedBlocker" class="hiddenlink" target="rightframe"><b><i>ForkJoinPool.ManagedBlocker</i></b></A><br>
+<A HREF="pkg_java.util.concurrent.html#ForkJoinTask" class="hiddenlink" target="rightframe"><b>ForkJoinTask</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#ForkJoinWorkerThread" class="hiddenlink" target="rightframe"><b>ForkJoinWorkerThread</b></A><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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="#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="#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.telephony.html#IccOpenLogicalChannelResponse" class="hiddenlink" target="rightframe"><b>IccOpenLogicalChannelResponse</b></A><br>
+<A HREF="pkg_java.util.html#IllformedLocaleException" class="hiddenlink" target="rightframe"><b>IllformedLocaleException</b></A><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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="#I"><font size="-2">I</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="#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#LauncherApps.Callback" class="hiddenlink" target="rightframe"><b>LauncherApps.Callback</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#LinkedTransferQueue" class="hiddenlink" target="rightframe"><b>LinkedTransferQueue</b></A><br>
+<A HREF="pkg_java.util.html#Locale.Builder" class="hiddenlink" target="rightframe"><b>Locale.Builder</b></A><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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="#I"><font size="-2">I</font></a> 
+<a href="#L"><font size="-2">L</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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.media.html#MediaCodec.Callback" class="hiddenlink" target="rightframe"><b>MediaCodec.Callback</b></A><br>
+<A HREF="pkg_android.media.html#MediaCodec.CodecException" class="hiddenlink" target="rightframe"><b>MediaCodec.CodecException</b></A><br>
+<A HREF="pkg_android.media.html#MediaCodecInfo.AudioCapabilities" class="hiddenlink" target="rightframe"><b>MediaCodecInfo.AudioCapabilities</b></A><br>
+<A HREF="pkg_android.media.html#MediaCodecInfo.EncoderCapabilities" class="hiddenlink" target="rightframe"><b>MediaCodecInfo.EncoderCapabilities</b></A><br>
+<A HREF="pkg_android.media.html#MediaCodecInfo.VideoCapabilities" class="hiddenlink" target="rightframe"><b>MediaCodecInfo.VideoCapabilities</b></A><br>
+<A HREF="pkg_android.media.session.html#MediaController.PlaybackInfo" class="hiddenlink" target="rightframe"><b>MediaController.PlaybackInfo</b></A><br>
+<A HREF="pkg_android.media.html#MediaDescription" class="hiddenlink" target="rightframe"><b>MediaDescription</b></A><br>
+<A HREF="pkg_android.media.html#MediaDescription.Builder" class="hiddenlink" target="rightframe"><b>MediaDescription.Builder</b></A><br>
+<A HREF="pkg_android.media.html#MediaDrm.MediaDrmStateException" class="hiddenlink" target="rightframe"><b>MediaDrm.MediaDrmStateException</b></A><br>
+<A HREF="pkg_android.media.session.html#MediaSession.QueueItem" class="hiddenlink" target="rightframe"><b>MediaSession.QueueItem</b></A><br>
+<A HREF="pkg_android.media.session.html#MediaSession.Token" class="hiddenlink" target="rightframe"><b>MediaSession.Token</b></A><br>
+<A HREF="pkg_android.media.session.html#MediaSessionManager.OnActiveSessionsChangedListener" class="hiddenlink" target="rightframe"><b><i>MediaSessionManager.OnActiveSessionsChangedListener</i></b></A><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.content.pm.html#PackageInstaller" class="hiddenlink" target="rightframe"><b>PackageInstaller</b></A><br>
+<A HREF="pkg_android.content.pm.html#PackageInstaller.Session" class="hiddenlink" target="rightframe"><b>PackageInstaller.Session</b></A><br>
+<A HREF="pkg_android.content.pm.html#PackageInstaller.SessionCallback" class="hiddenlink" target="rightframe"><b>PackageInstaller.SessionCallback</b></A><br>
+<A HREF="pkg_android.content.pm.html#PackageInstaller.SessionInfo" class="hiddenlink" target="rightframe"><b>PackageInstaller.SessionInfo</b></A><br>
+<A HREF="pkg_android.content.pm.html#PackageInstaller.SessionParams" class="hiddenlink" target="rightframe"><b>PackageInstaller.SessionParams</b></A><br>
+<A HREF="pkg_android.transition.html#PathMotion" class="hiddenlink" target="rightframe"><b>PathMotion</b></A><br>
+<A HREF="pkg_android.transition.html#PatternPathMotion" class="hiddenlink" target="rightframe"><b>PatternPathMotion</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#Phaser" class="hiddenlink" target="rightframe"><b>Phaser</b></A><br>
+<A HREF="pkg_android.media.session.html#PlaybackState.Builder" class="hiddenlink" target="rightframe"><b>PlaybackState.Builder</b></A><br>
+<A HREF="pkg_android.media.session.html#PlaybackState.CustomAction" class="hiddenlink" target="rightframe"><b>PlaybackState.CustomAction</b></A><br>
+<A HREF="pkg_android.media.session.html#PlaybackState.CustomAction.Builder" class="hiddenlink" target="rightframe"><b>PlaybackState.CustomAction.Builder</b></A><br>
+<A HREF="pkg_android.net.html#PskKeyManager" class="hiddenlink" target="rightframe"><b>PskKeyManager</b></A><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_java.util.concurrent.html#RecursiveAction" class="hiddenlink" target="rightframe"><b>RecursiveAction</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#RecursiveTask" class="hiddenlink" target="rightframe"><b>RecursiveTask</b></A><br>
+<A HREF="pkg_android.content.html#RestrictionsManager" class="hiddenlink" target="rightframe"><b>RestrictionsManager</b></A><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#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="#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="#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.app.html#SharedElementCallback" class="hiddenlink" target="rightframe"><b>SharedElementCallback</b></A><br>
+<A HREF="pkg_android.media.html#SoundPool.Builder" class="hiddenlink" target="rightframe"><b>SoundPool.Builder</b></A><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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="#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="#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="#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.html#ThreadLocalRandom" class="hiddenlink" target="rightframe"><b>ThreadLocalRandom</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#TransferQueue" class="hiddenlink" target="rightframe"><b><i>TransferQueue</i></b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan" class="hiddenlink" target="rightframe"><b>TtsSpan</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.Builder" class="hiddenlink" target="rightframe"><b>TtsSpan.Builder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.CardinalBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.CardinalBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.DateBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.DateBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.DecimalBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.DecimalBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.DigitsBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.DigitsBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.ElectronicBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.ElectronicBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.FractionBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.FractionBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.MeasureBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.MeasureBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.MoneyBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.MoneyBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.OrdinalBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.OrdinalBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.SemioticClassBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.SemioticClassBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.TelephoneBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.TelephoneBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.TextBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.TextBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.TimeBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.TimeBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.VerbatimBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.VerbatimBuilder</b></A><br>
+<A HREF="pkg_android.media.tv.html#TvContentRating" class="hiddenlink" target="rightframe"><b>TvContentRating</b></A><br>
+<A HREF="pkg_android.media.tv.html#TvInputManager.TvInputCallback" class="hiddenlink" target="rightframe"><b>TvInputManager.TvInputCallback</b></A><br>
+<A HREF="pkg_android.media.tv.html#TvInputService.HardwareSession" class="hiddenlink" target="rightframe"><b>TvInputService.HardwareSession</b></A><br>
+<A HREF="pkg_android.media.tv.html#TvTrackInfo" class="hiddenlink" target="rightframe"><b>TvTrackInfo</b></A><br>
+<A HREF="pkg_android.media.tv.html#TvTrackInfo.Builder" class="hiddenlink" target="rightframe"><b>TvTrackInfo.Builder</b></A><br>
+<A HREF="pkg_android.media.tv.html#TvView.TvInputCallback" class="hiddenlink" target="rightframe"><b>TvView.TvInputCallback</b></A><br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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="#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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.graphics.drawable.html#VectorDrawable" class="hiddenlink" target="rightframe"><b>VectorDrawable</b></A><br>
+<A HREF="pkg_android.view.html#ViewOutlineProvider" class="hiddenlink" target="rightframe"><b>ViewOutlineProvider</b></A><br>
+<A HREF="pkg_android.hardware.display.html#VirtualDisplay.Callback" class="hiddenlink" target="rightframe"><b>VirtualDisplay.Callback</b></A><br>
+<A HREF="pkg_android.speech.tts.html#Voice" class="hiddenlink" target="rightframe"><b>Voice</b></A><br>
+<A HREF="pkg_android.media.html#VolumeProvider" class="hiddenlink" target="rightframe"><b>VolumeProvider</b></A><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#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="#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">
+<A HREF="pkg_android.webkit.html#WebChromeClient.FileChooserParams" class="hiddenlink" target="rightframe"><b>WebChromeClient.FileChooserParams</b></A><br>
+<A HREF="pkg_android.webkit.html#WebResourceRequest" class="hiddenlink" target="rightframe"><b><i>WebResourceRequest</i></b></A><br>
+<A HREF="pkg_android.net.wifi.html#WifiManager.WpsCallback" class="hiddenlink" target="rightframe"><b>WifiManager.WpsCallback</b></A><br>
+<script src="//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/preview-21/changes/classes_index_all.html b/docs/html/sdk/api_diff/preview-21/changes/classes_index_all.html
new file mode 100644
index 0000000..fb7c05a
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/classes_index_all.html
@@ -0,0 +1,985 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<A HREF="classes_index_removals.html" xclass="hiddenlink">Removals</A>
+  <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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#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="android.widget.AbsListView.html" class="hiddenlink" target="rightframe">AbsListView</A><br>
+<A HREF="android.widget.AbsSeekBar.html" class="hiddenlink" target="rightframe">AbsSeekBar</A><br>
+<A HREF="java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html" class="hiddenlink" target="rightframe">AbstractQueuedLongSynchronizer</A><br>
+<A HREF="java.util.concurrent.locks.AbstractQueuedSynchronizer.html" class="hiddenlink" target="rightframe">AbstractQueuedSynchronizer</A><br>
+<A HREF="android.view.accessibility.AccessibilityNodeInfo.html" class="hiddenlink" target="rightframe">AccessibilityNodeInfo</A><br>
+<A HREF="android.accessibilityservice.AccessibilityService.html" class="hiddenlink" target="rightframe">AccessibilityService</A><br>
+<A HREF="android.view.accessibility.AccessibilityWindowInfo.html" class="hiddenlink" target="rightframe">AccessibilityWindowInfo</A><br>
+<A HREF="android.accounts.AccountManager.html" class="hiddenlink" target="rightframe">AccountManager</A><br>
+<A HREF="android.app.ActionBar.html" class="hiddenlink" target="rightframe">ActionBar</A><br>
+<A HREF="android.app.ActionBar.LayoutParams.html" class="hiddenlink" target="rightframe">ActionBar.LayoutParams</A><br>
+<A HREF="android.widget.ActionMenuView.html" class="hiddenlink" target="rightframe">ActionMenuView</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.AppTask.html" class="hiddenlink" target="rightframe">ActivityManager.AppTask</A><br>
+<A HREF="android.app.ActivityManager.RecentTaskInfo.html" class="hiddenlink" target="rightframe">ActivityManager.RecentTaskInfo</A><br>
+<A HREF="android.app.ActivityManager.RunningAppProcessInfo.html" class="hiddenlink" target="rightframe">ActivityManager.RunningAppProcessInfo</A><br>
+<A HREF="android.app.ActivityOptions.html" class="hiddenlink" target="rightframe">ActivityOptions</A><br>
+<A HREF="android.bluetooth.le.AdvertiseCallback.html" class="hiddenlink" target="rightframe">AdvertiseCallback</A><br>
+<A HREF="pkg_android.bluetooth.le.html#AdvertiseData" class="hiddenlink" target="rightframe"><b>AdvertiseData</b></A><br>
+<A HREF="pkg_android.bluetooth.le.html#AdvertiseData.Builder" class="hiddenlink" target="rightframe"><b>AdvertiseData.Builder</b></A><br>
+<A HREF="pkg_android.bluetooth.le.html#AdvertisementData" class="hiddenlink" target="rightframe"><strike>AdvertisementData</strike></A><br>
+<A HREF="pkg_android.bluetooth.le.html#AdvertisementData.Builder" class="hiddenlink" target="rightframe"><strike>AdvertisementData.Builder</strike></A><br>
+<A HREF="android.bluetooth.le.AdvertiseSettings.html" class="hiddenlink" target="rightframe">AdvertiseSettings</A><br>
+<A HREF="android.bluetooth.le.AdvertiseSettings.Builder.html" class="hiddenlink" target="rightframe">AdvertiseSettings.Builder</A><br>
+<A HREF="android.app.AlarmManager.html" class="hiddenlink" target="rightframe">AlarmManager</A><br>
+<A HREF="pkg_android.app.html#AlarmManager.AlarmClockInfo" class="hiddenlink" target="rightframe"><b>AlarmManager.AlarmClockInfo</b></A><br>
+<A HREF="pkg_android.service.voice.html#AlwaysOnHotwordDetector" class="hiddenlink" target="rightframe"><b>AlwaysOnHotwordDetector</b></A><br>
+<A HREF="pkg_android.service.voice.html#AlwaysOnHotwordDetector.Callback" class="hiddenlink" target="rightframe"><b>AlwaysOnHotwordDetector.Callback</b></A><br>
+<A HREF="pkg_android.service.voice.html#AlwaysOnHotwordDetector.EventPayload" class="hiddenlink" target="rightframe"><b>AlwaysOnHotwordDetector.EventPayload</b></A><br>
+<A HREF="android.graphics.drawable.AnimatedStateListDrawable.html" class="hiddenlink" target="rightframe">AnimatedStateListDrawable</A><br>
+<A HREF="pkg_android.graphics.drawable.html#AnimatedVectorDrawable" class="hiddenlink" target="rightframe"><b>AnimatedVectorDrawable</b></A><br>
+<A HREF="android.content.pm.ApplicationInfo.html" class="hiddenlink" target="rightframe">ApplicationInfo</A><br>
+<A HREF="android.app.AppOpsManager.html" class="hiddenlink" target="rightframe">AppOpsManager</A><br>
+<A HREF="android.appwidget.AppWidgetHost.html" class="hiddenlink" target="rightframe">AppWidgetHost</A><br>
+<A HREF="android.appwidget.AppWidgetManager.html" class="hiddenlink" target="rightframe">AppWidgetManager</A><br>
+<A HREF="android.appwidget.AppWidgetProviderInfo.html" class="hiddenlink" target="rightframe">AppWidgetProviderInfo</A><br>
+<A HREF="pkg_android.transition.html#ArcMotion" class="hiddenlink" target="rightframe"><b>ArcMotion</b></A><br>
+<A HREF="android.util.ArrayMap.html" class="hiddenlink" target="rightframe">ArrayMap</A><br>
+<A HREF="android.content.res.AssetManager.html" class="hiddenlink" target="rightframe">AssetManager</A><br>
+<A HREF="pkg_android.media.html#AudioAttributes" class="hiddenlink" target="rightframe"><b>AudioAttributes</b></A><br>
+<A HREF="pkg_android.media.html#AudioAttributes.Builder" class="hiddenlink" target="rightframe"><b>AudioAttributes.Builder</b></A><br>
+<A HREF="android.media.AudioFormat.html" class="hiddenlink" target="rightframe">AudioFormat</A><br>
+<A HREF="pkg_android.media.html#AudioFormat.Builder" class="hiddenlink" target="rightframe"><b>AudioFormat.Builder</b></A><br>
+<A HREF="android.media.AudioManager.html" class="hiddenlink" target="rightframe">AudioManager</A><br>
+<A HREF="android.media.AudioTrack.html" class="hiddenlink" target="rightframe">AudioTrack</A><br>
+<A HREF="android.transition.AutoTransition.html" class="hiddenlink" target="rightframe">AutoTransition</A><br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.app.backup.BackupAgent.html" class="hiddenlink" target="rightframe">BackupAgent</A><br>
+<A HREF="android.view.inputmethod.BaseInputConnection.html" class="hiddenlink" target="rightframe">BaseInputConnection</A><br>
+<A HREF="android.graphics.BitmapFactory.Options.html" class="hiddenlink" target="rightframe">BitmapFactory.Options</A><br>
+<A HREF="pkg_android.hardware.camera2.params.html#BlackLevelPattern" class="hiddenlink" target="rightframe"><b>BlackLevelPattern</b></A><br>
+<A HREF="android.bluetooth.BluetoothAdapter.html" class="hiddenlink" target="rightframe">BluetoothAdapter</A><br>
+<A HREF="android.bluetooth.BluetoothGatt.html" class="hiddenlink" target="rightframe">BluetoothGatt</A><br>
+<A HREF="android.bluetooth.BluetoothGattCallback.html" class="hiddenlink" target="rightframe">BluetoothGattCallback</A><br>
+<A HREF="android.bluetooth.BluetoothGattServerCallback.html" class="hiddenlink" target="rightframe">BluetoothGattServerCallback</A><br>
+<A HREF="android.bluetooth.le.BluetoothLeAdvertiser.html" class="hiddenlink" target="rightframe">BluetoothLeAdvertiser</A><br>
+<A HREF="android.bluetooth.le.BluetoothLeScanner.html" class="hiddenlink" target="rightframe">BluetoothLeScanner</A><br>
+<A HREF="android.os.Build.html" class="hiddenlink" target="rightframe">Build</A><br>
+<A HREF="android.os.Build.VERSION_CODES.html" class="hiddenlink" target="rightframe">Build.VERSION_CODES</A><br>
+<A HREF="android.os.Bundle.html" class="hiddenlink" target="rightframe">Bundle</A><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.provider.CallLog.Calls.html" class="hiddenlink" target="rightframe">CallLog.Calls</A><br>
+<A HREF="android.media.CamcorderProfile.html" class="hiddenlink" target="rightframe">CamcorderProfile</A><br>
+<A HREF="android.hardware.Camera.html" class="hiddenlink" target="rightframe">Camera</A><br>
+<A HREF="android.hardware.Camera.Area.html" class="hiddenlink" target="rightframe">Camera.Area</A><br>
+<A HREF="android.hardware.Camera.AutoFocusCallback.html" class="hiddenlink" target="rightframe"><i>Camera.AutoFocusCallback</i></A><br>
+<A HREF="android.hardware.Camera.AutoFocusMoveCallback.html" class="hiddenlink" target="rightframe"><i>Camera.AutoFocusMoveCallback</i></A><br>
+<A HREF="android.hardware.Camera.CameraInfo.html" class="hiddenlink" target="rightframe">Camera.CameraInfo</A><br>
+<A HREF="android.hardware.Camera.ErrorCallback.html" class="hiddenlink" target="rightframe"><i>Camera.ErrorCallback</i></A><br>
+<A HREF="android.hardware.Camera.Face.html" class="hiddenlink" target="rightframe">Camera.Face</A><br>
+<A HREF="android.hardware.Camera.FaceDetectionListener.html" class="hiddenlink" target="rightframe"><i>Camera.FaceDetectionListener</i></A><br>
+<A HREF="android.hardware.Camera.OnZoomChangeListener.html" class="hiddenlink" target="rightframe"><i>Camera.OnZoomChangeListener</i></A><br>
+<A HREF="android.hardware.Camera.Parameters.html" class="hiddenlink" target="rightframe">Camera.Parameters</A><br>
+<A HREF="android.hardware.Camera.PictureCallback.html" class="hiddenlink" target="rightframe"><i>Camera.PictureCallback</i></A><br>
+<A HREF="android.hardware.Camera.PreviewCallback.html" class="hiddenlink" target="rightframe"><i>Camera.PreviewCallback</i></A><br>
+<A HREF="android.hardware.Camera.ShutterCallback.html" class="hiddenlink" target="rightframe"><i>Camera.ShutterCallback</i></A><br>
+<A HREF="android.hardware.Camera.Size.html" class="hiddenlink" target="rightframe">Camera.Size</A><br>
+<A HREF="android.hardware.camera2.CameraCaptureSession.html" class="hiddenlink" target="rightframe">CameraCaptureSession</A><br>
+<A HREF="pkg_android.hardware.camera2.html#CameraCaptureSession.CaptureCallback" class="hiddenlink" target="rightframe"><b>CameraCaptureSession.CaptureCallback</b></A><br>
+<A HREF="pkg_android.hardware.camera2.html#CameraCaptureSession.CaptureListener" class="hiddenlink" target="rightframe"><strike>CameraCaptureSession.CaptureListener</strike></A><br>
+<A HREF="pkg_android.hardware.camera2.html#CameraCaptureSession.StateCallback" class="hiddenlink" target="rightframe"><b>CameraCaptureSession.StateCallback</b></A><br>
+<A HREF="pkg_android.hardware.camera2.html#CameraCaptureSession.StateListener" class="hiddenlink" target="rightframe"><strike>CameraCaptureSession.StateListener</strike></A><br>
+<A HREF="android.hardware.camera2.CameraCharacteristics.html" class="hiddenlink" target="rightframe">CameraCharacteristics</A><br>
+<A HREF="android.hardware.camera2.CameraDevice.html" class="hiddenlink" target="rightframe">CameraDevice</A><br>
+<A HREF="pkg_android.hardware.camera2.html#CameraDevice.CaptureListener" class="hiddenlink" target="rightframe"><strike>CameraDevice.CaptureListener</strike></A><br>
+<A HREF="pkg_android.hardware.camera2.html#CameraDevice.StateCallback" class="hiddenlink" target="rightframe"><b>CameraDevice.StateCallback</b></A><br>
+<A HREF="pkg_android.hardware.camera2.html#CameraDevice.StateListener" class="hiddenlink" target="rightframe"><strike>CameraDevice.StateListener</strike></A><br>
+<A HREF="android.hardware.camera2.CameraManager.html" class="hiddenlink" target="rightframe">CameraManager</A><br>
+<A HREF="pkg_android.hardware.camera2.html#CameraManager.AvailabilityCallback" class="hiddenlink" target="rightframe"><b>CameraManager.AvailabilityCallback</b></A><br>
+<A HREF="pkg_android.hardware.camera2.html#CameraManager.AvailabilityListener" class="hiddenlink" target="rightframe"><strike>CameraManager.AvailabilityListener</strike></A><br>
+<A HREF="android.hardware.camera2.CameraMetadata.html" class="hiddenlink" target="rightframe">CameraMetadata</A><br>
+<A HREF="android.graphics.Canvas.html" class="hiddenlink" target="rightframe">Canvas</A><br>
+<A HREF="android.hardware.camera2.CaptureFailure.html" class="hiddenlink" target="rightframe">CaptureFailure</A><br>
+<A HREF="android.hardware.camera2.CaptureRequest.html" class="hiddenlink" target="rightframe">CaptureRequest</A><br>
+<A HREF="android.hardware.camera2.CaptureResult.html" class="hiddenlink" target="rightframe">CaptureResult</A><br>
+<A HREF="android.nfc.cardemulation.CardEmulation.html" class="hiddenlink" target="rightframe">CardEmulation</A><br>
+<A HREF="android.transition.ChangeBounds.html" class="hiddenlink" target="rightframe">ChangeBounds</A><br>
+<A HREF="android.transition.ChangeClipBounds.html" class="hiddenlink" target="rightframe">ChangeClipBounds</A><br>
+<A HREF="pkg_android.transition.html#ChangeImageTransform" class="hiddenlink" target="rightframe"><b>ChangeImageTransform</b></A><br>
+<A HREF="android.transition.ChangeTransform.html" class="hiddenlink" target="rightframe">ChangeTransform</A><br>
+<A HREF="android.widget.CheckedTextView.html" class="hiddenlink" target="rightframe">CheckedTextView</A><br>
+<A HREF="android.graphics.ColorMatrixColorFilter.html" class="hiddenlink" target="rightframe">ColorMatrixColorFilter</A><br>
+<A HREF="android.widget.CompoundButton.html" class="hiddenlink" target="rightframe">CompoundButton</A><br>
+<A HREF="pkg_java.util.concurrent.html#ConcurrentLinkedDeque" class="hiddenlink" target="rightframe"><b>ConcurrentLinkedDeque</b></A><br>
+<A HREF="android.net.ConnectivityManager.html" class="hiddenlink" target="rightframe">ConnectivityManager</A><br>
+<A HREF="android.provider.ContactsContract.html" class="hiddenlink" target="rightframe">ContactsContract</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Callable.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Callable</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Contactables</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Email</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Event</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.GroupMembership</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Identity</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Im</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Nickname</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Note</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Organization</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Phone</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Photo</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Relation</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.SipAddress</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.StructuredName</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.StructuredPostal</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Website</A><br>
+<A HREF="android.provider.ContactsContract.ContactOptionsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.ContactOptionsColumns</i></A><br>
+<A HREF="android.provider.ContactsContract.Contacts.html" class="hiddenlink" target="rightframe">ContactsContract.Contacts</A><br>
+<A HREF="android.provider.ContactsContract.Contacts.Entity.html" class="hiddenlink" target="rightframe">ContactsContract.Contacts.Entity</A><br>
+<A HREF="android.provider.ContactsContract.Contacts.StreamItems.html" class="hiddenlink" target="rightframe">ContactsContract.Contacts.StreamItems</A><br>
+<A HREF="android.provider.ContactsContract.ContactsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.ContactsColumns</i></A><br>
+<A HREF="android.provider.ContactsContract.Data.html" class="hiddenlink" target="rightframe">ContactsContract.Data</A><br>
+<A HREF="android.provider.ContactsContract.DataColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.DataColumns</i></A><br>
+<A HREF="android.provider.ContactsContract.GroupsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.GroupsColumns</i></A><br>
+<A HREF="android.provider.ContactsContract.PhoneLookup.html" class="hiddenlink" target="rightframe">ContactsContract.PhoneLookup</A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.PinnedPositions" class="hiddenlink" target="rightframe"><b>ContactsContract.PinnedPositions</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.Preferences" class="hiddenlink" target="rightframe"><strike>ContactsContract.Preferences</strike></A><br>
+<A HREF="android.provider.ContactsContract.QuickContact.html" class="hiddenlink" target="rightframe">ContactsContract.QuickContact</A><br>
+<A HREF="android.provider.ContactsContract.RawContacts.StreamItems.html" class="hiddenlink" target="rightframe">ContactsContract.RawContacts.StreamItems</A><br>
+<A HREF="android.provider.ContactsContract.RawContactsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.RawContactsColumns</i></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.SearchSnippets" class="hiddenlink" target="rightframe"><b>ContactsContract.SearchSnippets</b></A><br>
+<A HREF="android.provider.ContactsContract.StreamItemPhotos.html" class="hiddenlink" target="rightframe">ContactsContract.StreamItemPhotos</A><br>
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.StreamItemPhotosColumns</i></A><br>
+<A HREF="android.provider.ContactsContract.StreamItems.html" class="hiddenlink" target="rightframe">ContactsContract.StreamItems</A><br>
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html" class="hiddenlink" target="rightframe">ContactsContract.StreamItems.StreamItemPhotos</A><br>
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.StreamItemsColumns</i></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.webkit.CookieManager.html" class="hiddenlink" target="rightframe">CookieManager</A><br>
+<A HREF="android.webkit.CookieSyncManager.html" class="hiddenlink" target="rightframe">CookieSyncManager</A><br>
+<A HREF="android.view.inputmethod.CursorAnchorInfo.html" class="hiddenlink" target="rightframe">CursorAnchorInfo</A><br>
+<A HREF="android.view.inputmethod.CursorAnchorInfo.Builder.html" class="hiddenlink" target="rightframe">CursorAnchorInfo.Builder</A><br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.widget.DatePicker.html" class="hiddenlink" target="rightframe">DatePicker</A><br>
+<A HREF="android.app.admin.DeviceAdminReceiver.html" class="hiddenlink" target="rightframe">DeviceAdminReceiver</A><br>
+<A HREF="android.app.admin.DevicePolicyManager.html" class="hiddenlink" target="rightframe">DevicePolicyManager</A><br>
+<A HREF="android.view.Display.html" class="hiddenlink" target="rightframe">Display</A><br>
+<A HREF="android.hardware.display.DisplayManager.html" class="hiddenlink" target="rightframe">DisplayManager</A><br>
+<A HREF="android.util.DisplayMetrics.html" class="hiddenlink" target="rightframe">DisplayMetrics</A><br>
+<A HREF="android.hardware.camera2.DngCreator.html" class="hiddenlink" target="rightframe">DngCreator</A><br>
+<A HREF="android.graphics.drawable.Drawable.html" class="hiddenlink" target="rightframe">Drawable</A><br>
+<A HREF="android.service.dreams.DreamService.html" class="hiddenlink" target="rightframe">DreamService</A><br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.widget.EdgeEffect.html" class="hiddenlink" target="rightframe">EdgeEffect</A><br>
+<A HREF="android.transition.Explode.html" class="hiddenlink" target="rightframe">Explode</A><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.transition.Fade.html" class="hiddenlink" target="rightframe">Fade</A><br>
+<A HREF="pkg_android.content.pm.html#FeatureGroupInfo" class="hiddenlink" target="rightframe"><b>FeatureGroupInfo</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#ForkJoinPool" class="hiddenlink" target="rightframe"><b>ForkJoinPool</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#ForkJoinPool.ForkJoinWorkerThreadFactory" class="hiddenlink" target="rightframe"><b><i>ForkJoinPool.ForkJoinWorkerThreadFactory</i></b></A><br>
+<A HREF="pkg_java.util.concurrent.html#ForkJoinPool.ManagedBlocker" class="hiddenlink" target="rightframe"><b><i>ForkJoinPool.ManagedBlocker</i></b></A><br>
+<A HREF="pkg_java.util.concurrent.html#ForkJoinTask" class="hiddenlink" target="rightframe"><b>ForkJoinTask</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#ForkJoinWorkerThread" class="hiddenlink" target="rightframe"><b>ForkJoinWorkerThread</b></A><br>
+<A HREF="android.app.Fragment.html" class="hiddenlink" target="rightframe">Fragment</A><br>
+<A HREF="android.app.FragmentTransaction.html" class="hiddenlink" target="rightframe">FragmentTransaction</A><br>
+<A HREF="android.widget.FrameLayout.html" class="hiddenlink" target="rightframe">FrameLayout</A><br>
+<A HREF="android.view.FrameStats.html" class="hiddenlink" target="rightframe">FrameStats</A><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.widget.GridLayout.html" class="hiddenlink" target="rightframe">GridLayout</A><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.telephony.html#IccOpenLogicalChannelResponse" class="hiddenlink" target="rightframe"><b>IccOpenLogicalChannelResponse</b></A><br>
+<A HREF="pkg_java.util.html#IllformedLocaleException" class="hiddenlink" target="rightframe"><b>IllformedLocaleException</b></A><br>
+<A HREF="android.media.Image.html" class="hiddenlink" target="rightframe">Image</A><br>
+<A HREF="android.graphics.ImageFormat.html" class="hiddenlink" target="rightframe">ImageFormat</A><br>
+<A HREF="android.widget.ImageView.html" class="hiddenlink" target="rightframe">ImageView</A><br>
+<A HREF="android.view.inputmethod.InputConnection.html" class="hiddenlink" target="rightframe"><i>InputConnection</i></A><br>
+<A HREF="android.view.inputmethod.InputConnectionWrapper.html" class="hiddenlink" target="rightframe">InputConnectionWrapper</A><br>
+<A HREF="android.text.InputFilter.LengthFilter.html" class="hiddenlink" target="rightframe">InputFilter.LengthFilter</A><br>
+<A HREF="android.view.inputmethod.InputMethodManager.html" class="hiddenlink" target="rightframe">InputMethodManager</A><br>
+<A HREF="android.inputmethodservice.InputMethodService.html" class="hiddenlink" target="rightframe">InputMethodService</A><br>
+<A HREF="android.content.pm.InstrumentationInfo.html" class="hiddenlink" target="rightframe">InstrumentationInfo</A><br>
+<A HREF="android.content.Intent.html" class="hiddenlink" target="rightframe">Intent</A><br>
+<A NAME="J"></A>
+<br><font size="+2">J</font>&nbsp;
+<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="#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="android.app.job.JobInfo.html" class="hiddenlink" target="rightframe">JobInfo</A><br>
+<A HREF="pkg_android.app.job.html#JobInfo.BackoffPolicy" class="hiddenlink" target="rightframe"><strike>JobInfo.BackoffPolicy</strike></A><br>
+<A HREF="android.app.job.JobInfo.Builder.html" class="hiddenlink" target="rightframe">JobInfo.Builder</A><br>
+<A HREF="pkg_android.app.job.html#JobInfo.NetworkType" class="hiddenlink" target="rightframe"><strike>JobInfo.NetworkType</strike></A><br>
+<A HREF="android.app.job.JobParameters.html" class="hiddenlink" target="rightframe">JobParameters</A><br>
+<A NAME="K"></A>
+<br><font size="+2">K</font>&nbsp;
+<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="#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="#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.app.KeyguardManager.html" class="hiddenlink" target="rightframe">KeyguardManager</A><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.content.pm.LauncherApps.html" class="hiddenlink" target="rightframe">LauncherApps</A><br>
+<A HREF="pkg_android.content.pm.html#LauncherApps.Callback" class="hiddenlink" target="rightframe"><b>LauncherApps.Callback</b></A><br>
+<A HREF="pkg_android.content.pm.html#LauncherApps.OnAppsChangedListener" class="hiddenlink" target="rightframe"><strike>LauncherApps.OnAppsChangedListener</strike></A><br>
+<A HREF="android.graphics.LightingColorFilter.html" class="hiddenlink" target="rightframe">LightingColorFilter</A><br>
+<A HREF="android.net.LinkAddress.html" class="hiddenlink" target="rightframe">LinkAddress</A><br>
+<A HREF="pkg_java.util.concurrent.html#LinkedTransferQueue" class="hiddenlink" target="rightframe"><b>LinkedTransferQueue</b></A><br>
+<A HREF="java.util.Locale.html" class="hiddenlink" target="rightframe">Locale</A><br>
+<A HREF="pkg_java.util.html#Locale.Builder" class="hiddenlink" target="rightframe"><b>Locale.Builder</b></A><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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="#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="#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.media.MediaCodec.html" class="hiddenlink" target="rightframe">MediaCodec</A><br>
+<A HREF="pkg_android.media.html#MediaCodec.Callback" class="hiddenlink" target="rightframe"><b>MediaCodec.Callback</b></A><br>
+<A HREF="pkg_android.media.html#MediaCodec.CodecException" class="hiddenlink" target="rightframe"><b>MediaCodec.CodecException</b></A><br>
+<A HREF="android.media.MediaCodec.CryptoException.html" class="hiddenlink" target="rightframe">MediaCodec.CryptoException</A><br>
+<A HREF="pkg_android.media.html#MediaCodecInfo.AudioCapabilities" class="hiddenlink" target="rightframe"><b>MediaCodecInfo.AudioCapabilities</b></A><br>
+<A HREF="android.media.MediaCodecInfo.CodecCapabilities.html" class="hiddenlink" target="rightframe">MediaCodecInfo.CodecCapabilities</A><br>
+<A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html" class="hiddenlink" target="rightframe">MediaCodecInfo.CodecProfileLevel</A><br>
+<A HREF="pkg_android.media.html#MediaCodecInfo.EncoderCapabilities" class="hiddenlink" target="rightframe"><b>MediaCodecInfo.EncoderCapabilities</b></A><br>
+<A HREF="pkg_android.media.html#MediaCodecInfo.VideoCapabilities" class="hiddenlink" target="rightframe"><b>MediaCodecInfo.VideoCapabilities</b></A><br>
+<A HREF="android.media.MediaCodecList.html" class="hiddenlink" target="rightframe">MediaCodecList</A><br>
+<A HREF="android.media.session.MediaController.html" class="hiddenlink" target="rightframe">MediaController</A><br>
+<A HREF="android.media.session.MediaController.Callback.html" class="hiddenlink" target="rightframe">MediaController.Callback</A><br>
+<A HREF="pkg_android.media.session.html#MediaController.PlaybackInfo" class="hiddenlink" target="rightframe"><b>MediaController.PlaybackInfo</b></A><br>
+<A HREF="android.media.session.MediaController.TransportControls.html" class="hiddenlink" target="rightframe">MediaController.TransportControls</A><br>
+<A HREF="pkg_android.media.html#MediaDescription" class="hiddenlink" target="rightframe"><b>MediaDescription</b></A><br>
+<A HREF="pkg_android.media.html#MediaDescription.Builder" class="hiddenlink" target="rightframe"><b>MediaDescription.Builder</b></A><br>
+<A HREF="android.media.MediaDrm.html" class="hiddenlink" target="rightframe">MediaDrm</A><br>
+<A HREF="pkg_android.media.html#MediaDrm.MediaDrmStateException" class="hiddenlink" target="rightframe"><b>MediaDrm.MediaDrmStateException</b></A><br>
+<A HREF="android.media.MediaFormat.html" class="hiddenlink" target="rightframe">MediaFormat</A><br>
+<A HREF="android.media.MediaMetadata.html" class="hiddenlink" target="rightframe">MediaMetadata</A><br>
+<A HREF="android.media.MediaMetadata.Builder.html" class="hiddenlink" target="rightframe">MediaMetadata.Builder</A><br>
+<A HREF="android.media.MediaMetadataEditor.html" class="hiddenlink" target="rightframe">MediaMetadataEditor</A><br>
+<A HREF="android.media.MediaPlayer.html" class="hiddenlink" target="rightframe">MediaPlayer</A><br>
+<A HREF="android.media.MediaPlayer.TrackInfo.html" class="hiddenlink" target="rightframe">MediaPlayer.TrackInfo</A><br>
+<A HREF="android.media.MediaRecorder.html" class="hiddenlink" target="rightframe">MediaRecorder</A><br>
+<A HREF="android.media.MediaRecorder.AudioEncoder.html" class="hiddenlink" target="rightframe">MediaRecorder.AudioEncoder</A><br>
+<A HREF="android.media.MediaRecorder.OutputFormat.html" class="hiddenlink" target="rightframe">MediaRecorder.OutputFormat</A><br>
+<A HREF="android.media.MediaRecorder.VideoEncoder.html" class="hiddenlink" target="rightframe">MediaRecorder.VideoEncoder</A><br>
+<A HREF="android.media.session.MediaSession.html" class="hiddenlink" target="rightframe">MediaSession</A><br>
+<A HREF="android.media.session.MediaSession.Callback.html" class="hiddenlink" target="rightframe">MediaSession.Callback</A><br>
+<A HREF="pkg_android.media.session.html#MediaSession.QueueItem" class="hiddenlink" target="rightframe"><b>MediaSession.QueueItem</b></A><br>
+<A HREF="pkg_android.media.session.html#MediaSession.Token" class="hiddenlink" target="rightframe"><b>MediaSession.Token</b></A><br>
+<A HREF="pkg_android.media.session.html#MediaSession.TransportControlsCallback" class="hiddenlink" target="rightframe"><strike>MediaSession.TransportControlsCallback</strike></A><br>
+<A HREF="android.media.session.MediaSessionManager.html" class="hiddenlink" target="rightframe">MediaSessionManager</A><br>
+<A HREF="pkg_android.media.session.html#MediaSessionManager.OnActiveSessionsChangedListener" class="hiddenlink" target="rightframe"><b><i>MediaSessionManager.OnActiveSessionsChangedListener</i></b></A><br>
+<A HREF="pkg_android.media.session.html#MediaSessionToken" class="hiddenlink" target="rightframe"><strike>MediaSessionToken</strike></A><br>
+<A HREF="android.provider.MediaStore.Audio.Radio.html" class="hiddenlink" target="rightframe">MediaStore.Audio.Radio</A><br>
+<A HREF="android.os.Message.html" class="hiddenlink" target="rightframe">Message</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 HREF="pkg_android.transition.html#MoveImage" class="hiddenlink" target="rightframe"><strike>MoveImage</strike></A><br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.net.Network.html" class="hiddenlink" target="rightframe">Network</A><br>
+<A HREF="android.net.NetworkCapabilities.html" class="hiddenlink" target="rightframe">NetworkCapabilities</A><br>
+<A HREF="android.net.NetworkRequest.Builder.html" class="hiddenlink" target="rightframe">NetworkRequest.Builder</A><br>
+<A HREF="android.app.Notification.html" class="hiddenlink" target="rightframe">Notification</A><br>
+<A HREF="android.app.Notification.Builder.html" class="hiddenlink" target="rightframe">Notification.Builder</A><br>
+<A HREF="android.app.Notification.MediaStyle.html" class="hiddenlink" target="rightframe">Notification.MediaStyle</A><br>
+<A HREF="android.service.notification.NotificationListenerService.html" class="hiddenlink" target="rightframe">NotificationListenerService</A><br>
+<A HREF="android.service.notification.NotificationListenerService.Ranking.html" class="hiddenlink" target="rightframe">NotificationListenerService.Ranking</A><br>
+<A HREF="android.service.notification.NotificationListenerService.RankingMap.html" class="hiddenlink" target="rightframe">NotificationListenerService.RankingMap</A><br>
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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="#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="android.system.OsConstants.html" class="hiddenlink" target="rightframe">OsConstants</A><br>
+<A HREF="android.graphics.Outline.html" class="hiddenlink" target="rightframe">Outline</A><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#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="android.content.pm.PackageInfo.html" class="hiddenlink" target="rightframe">PackageInfo</A><br>
+<A HREF="pkg_android.content.pm.html#PackageInstaller" class="hiddenlink" target="rightframe"><b>PackageInstaller</b></A><br>
+<A HREF="pkg_android.content.pm.html#PackageInstaller.Session" class="hiddenlink" target="rightframe"><b>PackageInstaller.Session</b></A><br>
+<A HREF="pkg_android.content.pm.html#PackageInstaller.SessionCallback" class="hiddenlink" target="rightframe"><b>PackageInstaller.SessionCallback</b></A><br>
+<A HREF="pkg_android.content.pm.html#PackageInstaller.SessionInfo" class="hiddenlink" target="rightframe"><b>PackageInstaller.SessionInfo</b></A><br>
+<A HREF="pkg_android.content.pm.html#PackageInstaller.SessionParams" class="hiddenlink" target="rightframe"><b>PackageInstaller.SessionParams</b></A><br>
+<A HREF="android.content.pm.PackageManager.html" class="hiddenlink" target="rightframe">PackageManager</A><br>
+<A HREF="android.graphics.Paint.html" class="hiddenlink" target="rightframe">Paint</A><br>
+<A HREF="android.os.Parcel.html" class="hiddenlink" target="rightframe">Parcel</A><br>
+<A HREF="android.graphics.Path.html" class="hiddenlink" target="rightframe">Path</A><br>
+<A HREF="pkg_android.transition.html#PathMotion" class="hiddenlink" target="rightframe"><b>PathMotion</b></A><br>
+<A HREF="pkg_android.transition.html#PatternPathMotion" class="hiddenlink" target="rightframe"><b>PatternPathMotion</b></A><br>
+<A HREF="android.content.pm.PermissionInfo.html" class="hiddenlink" target="rightframe">PermissionInfo</A><br>
+<A HREF="android.webkit.PermissionRequest.html" class="hiddenlink" target="rightframe">PermissionRequest</A><br>
+<A HREF="pkg_java.util.concurrent.html#Phaser" class="hiddenlink" target="rightframe"><b>Phaser</b></A><br>
+<A HREF="android.media.session.PlaybackState.html" class="hiddenlink" target="rightframe">PlaybackState</A><br>
+<A HREF="pkg_android.media.session.html#PlaybackState.Builder" class="hiddenlink" target="rightframe"><b>PlaybackState.Builder</b></A><br>
+<A HREF="pkg_android.media.session.html#PlaybackState.CustomAction" class="hiddenlink" target="rightframe"><b>PlaybackState.CustomAction</b></A><br>
+<A HREF="pkg_android.media.session.html#PlaybackState.CustomAction.Builder" class="hiddenlink" target="rightframe"><b>PlaybackState.CustomAction.Builder</b></A><br>
+<A HREF="android.widget.PopupWindow.html" class="hiddenlink" target="rightframe">PopupWindow</A><br>
+<A HREF="android.graphics.PorterDuffColorFilter.html" class="hiddenlink" target="rightframe">PorterDuffColorFilter</A><br>
+<A HREF="android.os.PowerManager.html" class="hiddenlink" target="rightframe">PowerManager</A><br>
+<A HREF="android.os.PowerManager.WakeLock.html" class="hiddenlink" target="rightframe">PowerManager.WakeLock</A><br>
+<A HREF="android.printservice.PrintService.html" class="hiddenlink" target="rightframe">PrintService</A><br>
+<A HREF="android.widget.ProgressBar.html" class="hiddenlink" target="rightframe">ProgressBar</A><br>
+<A HREF="android.net.ProxyInfo.html" class="hiddenlink" target="rightframe">ProxyInfo</A><br>
+<A HREF="pkg_android.net.html#PskKeyManager" class="hiddenlink" target="rightframe"><b>PskKeyManager</b></A><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#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="android.R.attr.html" class="hiddenlink" target="rightframe">R.attr</A><br>
+<A HREF="android.R.dimen.html" class="hiddenlink" target="rightframe">R.dimen</A><br>
+<A HREF="android.R.id.html" class="hiddenlink" target="rightframe">R.id</A><br>
+<A HREF="android.R.interpolator.html" class="hiddenlink" target="rightframe">R.interpolator</A><br>
+<A HREF="android.R.style.html" class="hiddenlink" target="rightframe">R.style</A><br>
+<A HREF="android.R.transition.html" class="hiddenlink" target="rightframe">R.transition</A><br>
+<A HREF="android.util.Range.html" class="hiddenlink" target="rightframe">Range</A><br>
+<A HREF="android.util.Rational.html" class="hiddenlink" target="rightframe">Rational</A><br>
+<A HREF="pkg_java.util.concurrent.html#RecursiveAction" class="hiddenlink" target="rightframe"><b>RecursiveAction</b></A><br>
+<A HREF="pkg_java.util.concurrent.html#RecursiveTask" class="hiddenlink" target="rightframe"><b>RecursiveTask</b></A><br>
+<A HREF="android.media.RemoteControlClient.html" class="hiddenlink" target="rightframe">RemoteControlClient</A><br>
+<A HREF="android.media.RemoteControlClient.MetadataEditor.html" class="hiddenlink" target="rightframe">RemoteControlClient.MetadataEditor</A><br>
+<A HREF="android.media.RemoteController.html" class="hiddenlink" target="rightframe">RemoteController</A><br>
+<A HREF="pkg_android.media.session.html#RemoteVolumeProvider" class="hiddenlink" target="rightframe"><strike>RemoteVolumeProvider</strike></A><br>
+<A HREF="android.content.RestrictionEntry.html" class="hiddenlink" target="rightframe">RestrictionEntry</A><br>
+<A HREF="pkg_android.content.html#RestrictionsManager" class="hiddenlink" target="rightframe"><b>RestrictionsManager</b></A><br>
+<A HREF="android.media.Ringtone.html" class="hiddenlink" target="rightframe">Ringtone</A><br>
+<A HREF="android.graphics.drawable.RippleDrawable.html" class="hiddenlink" target="rightframe">RippleDrawable</A><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.bluetooth.le.ScanCallback.html" class="hiddenlink" target="rightframe">ScanCallback</A><br>
+<A HREF="android.bluetooth.le.ScanFilter.html" class="hiddenlink" target="rightframe">ScanFilter</A><br>
+<A HREF="android.bluetooth.le.ScanFilter.Builder.html" class="hiddenlink" target="rightframe">ScanFilter.Builder</A><br>
+<A HREF="android.bluetooth.le.ScanRecord.html" class="hiddenlink" target="rightframe">ScanRecord</A><br>
+<A HREF="android.bluetooth.le.ScanResult.html" class="hiddenlink" target="rightframe">ScanResult</A><br>
+<A HREF="android.bluetooth.le.ScanSettings.html" class="hiddenlink" target="rightframe">ScanSettings</A><br>
+<A HREF="android.bluetooth.le.ScanSettings.Builder.html" class="hiddenlink" target="rightframe">ScanSettings.Builder</A><br>
+<A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html" class="hiddenlink" target="rightframe">ScheduledThreadPoolExecutor</A><br>
+<A HREF="android.renderscript.ScriptC.html" class="hiddenlink" target="rightframe">ScriptC</A><br>
+<A HREF="android.hardware.Sensor.html" class="hiddenlink" target="rightframe">Sensor</A><br>
+<A HREF="android.hardware.SensorManager.html" class="hiddenlink" target="rightframe">SensorManager</A><br>
+<A HREF="android.location.SettingInjectorService.html" class="hiddenlink" target="rightframe">SettingInjectorService</A><br>
+<A HREF="android.provider.Settings.html" class="hiddenlink" target="rightframe">Settings</A><br>
+<A HREF="android.provider.Settings.Secure.html" class="hiddenlink" target="rightframe">Settings.Secure</A><br>
+<A HREF="android.provider.Settings.System.html" class="hiddenlink" target="rightframe">Settings.System</A><br>
+<A HREF="android.graphics.drawable.shapes.Shape.html" class="hiddenlink" target="rightframe">Shape</A><br>
+<A HREF="pkg_android.app.html#SharedElementCallback" class="hiddenlink" target="rightframe"><b>SharedElementCallback</b></A><br>
+<A HREF="pkg_android.app.html#SharedElementListener" class="hiddenlink" target="rightframe"><strike>SharedElementListener</strike></A><br>
+<A HREF="android.util.Size.html" class="hiddenlink" target="rightframe">Size</A><br>
+<A HREF="android.util.SizeF.html" class="hiddenlink" target="rightframe">SizeF</A><br>
+<A HREF="android.transition.Slide.html" class="hiddenlink" target="rightframe">Slide</A><br>
+<A HREF="android.telephony.SmsManager.html" class="hiddenlink" target="rightframe">SmsManager</A><br>
+<A HREF="android.media.SoundPool.html" class="hiddenlink" target="rightframe">SoundPool</A><br>
+<A HREF="pkg_android.media.html#SoundPool.Builder" class="hiddenlink" target="rightframe"><b>SoundPool.Builder</b></A><br>
+<A HREF="android.text.SpannableStringBuilder.html" class="hiddenlink" target="rightframe">SpannableStringBuilder</A><br>
+<A HREF="android.service.notification.StatusBarNotification.html" class="hiddenlink" target="rightframe">StatusBarNotification</A><br>
+<A HREF="android.hardware.camera2.params.StreamConfigurationMap.html" class="hiddenlink" target="rightframe">StreamConfigurationMap</A><br>
+<A HREF="android.widget.Switch.html" class="hiddenlink" target="rightframe">Switch</A><br>
+<A HREF="android.speech.tts.SynthesisCallback.html" class="hiddenlink" target="rightframe"><i>SynthesisCallback</i></A><br>
+<A HREF="android.speech.tts.SynthesisRequest.html" class="hiddenlink" target="rightframe">SynthesisRequest</A><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.provider.Telephony.BaseMmsColumns.html" class="hiddenlink" target="rightframe"><i>Telephony.BaseMmsColumns</i></A><br>
+<A HREF="android.provider.Telephony.TextBasedSmsColumns.html" class="hiddenlink" target="rightframe"><i>Telephony.TextBasedSmsColumns</i></A><br>
+<A HREF="android.provider.Telephony.ThreadsColumns.html" class="hiddenlink" target="rightframe"><i>Telephony.ThreadsColumns</i></A><br>
+<A HREF="android.telephony.TelephonyManager.html" class="hiddenlink" target="rightframe">TelephonyManager</A><br>
+<A HREF="android.view.textservice.TextInfo.html" class="hiddenlink" target="rightframe">TextInfo</A><br>
+<A HREF="android.speech.tts.TextToSpeech.html" class="hiddenlink" target="rightframe">TextToSpeech</A><br>
+<A HREF="android.speech.tts.TextToSpeech.Engine.html" class="hiddenlink" target="rightframe">TextToSpeech.Engine</A><br>
+<A HREF="android.speech.tts.TextToSpeechService.html" class="hiddenlink" target="rightframe">TextToSpeechService</A><br>
+<A HREF="android.widget.TextView.html" class="hiddenlink" target="rightframe">TextView</A><br>
+<A HREF="pkg_java.util.concurrent.html#ThreadLocalRandom" class="hiddenlink" target="rightframe"><b>ThreadLocalRandom</b></A><br>
+<A HREF="android.widget.Toolbar.html" class="hiddenlink" target="rightframe">Toolbar</A><br>
+<A HREF="pkg_java.util.concurrent.html#TransferQueue" class="hiddenlink" target="rightframe"><b><i>TransferQueue</i></b></A><br>
+<A HREF="android.transition.Transition.html" class="hiddenlink" target="rightframe">Transition</A><br>
+<A HREF="android.transition.TransitionSet.html" class="hiddenlink" target="rightframe">TransitionSet</A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan" class="hiddenlink" target="rightframe"><b>TtsSpan</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.Builder" class="hiddenlink" target="rightframe"><b>TtsSpan.Builder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.CardinalBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.CardinalBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.DateBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.DateBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.DecimalBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.DecimalBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.DigitsBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.DigitsBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.ElectronicBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.ElectronicBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.FractionBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.FractionBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.MeasureBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.MeasureBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.MoneyBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.MoneyBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.OrdinalBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.OrdinalBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.SemioticClassBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.SemioticClassBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.TelephoneBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.TelephoneBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.TextBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.TextBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.TimeBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.TimeBuilder</b></A><br>
+<A HREF="pkg_android.text.style.html#TtsSpan.VerbatimBuilder" class="hiddenlink" target="rightframe"><b>TtsSpan.VerbatimBuilder</b></A><br>
+<A HREF="pkg_android.media.tv.html#TvContentRating" class="hiddenlink" target="rightframe"><b>TvContentRating</b></A><br>
+<A HREF="android.media.tv.TvContract.html" class="hiddenlink" target="rightframe">TvContract</A><br>
+<A HREF="android.media.tv.TvContract.Channels.html" class="hiddenlink" target="rightframe">TvContract.Channels</A><br>
+<A HREF="android.media.tv.TvContract.Programs.html" class="hiddenlink" target="rightframe">TvContract.Programs</A><br>
+<A HREF="android.media.tv.TvContract.Programs.Genres.html" class="hiddenlink" target="rightframe">TvContract.Programs.Genres</A><br>
+<A HREF="android.media.tv.TvInputInfo.html" class="hiddenlink" target="rightframe">TvInputInfo</A><br>
+<A HREF="android.media.tv.TvInputManager.html" class="hiddenlink" target="rightframe">TvInputManager</A><br>
+<A HREF="pkg_android.media.tv.html#TvInputManager.TvInputCallback" class="hiddenlink" target="rightframe"><b>TvInputManager.TvInputCallback</b></A><br>
+<A HREF="pkg_android.media.tv.html#TvInputManager.TvInputListener" class="hiddenlink" target="rightframe"><strike>TvInputManager.TvInputListener</strike></A><br>
+<A HREF="android.media.tv.TvInputService.html" class="hiddenlink" target="rightframe">TvInputService</A><br>
+<A HREF="pkg_android.media.tv.html#TvInputService.HardwareSession" class="hiddenlink" target="rightframe"><b>TvInputService.HardwareSession</b></A><br>
+<A HREF="android.media.tv.TvInputService.Session.html" class="hiddenlink" target="rightframe">TvInputService.Session</A><br>
+<A HREF="pkg_android.media.tv.html#TvTrackInfo" class="hiddenlink" target="rightframe"><b>TvTrackInfo</b></A><br>
+<A HREF="pkg_android.media.tv.html#TvTrackInfo.Builder" class="hiddenlink" target="rightframe"><b>TvTrackInfo.Builder</b></A><br>
+<A HREF="android.media.tv.TvView.html" class="hiddenlink" target="rightframe">TvView</A><br>
+<A HREF="pkg_android.media.tv.html#TvView.TvInputCallback" class="hiddenlink" target="rightframe"><b>TvView.TvInputCallback</b></A><br>
+<A HREF="pkg_android.media.tv.html#TvView.TvInputListener" class="hiddenlink" target="rightframe"><strike>TvView.TvInputListener</strike></A><br>
+<A HREF="android.content.res.TypedArray.html" class="hiddenlink" target="rightframe">TypedArray</A><br>
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.app.UiModeManager.html" class="hiddenlink" target="rightframe">UiModeManager</A><br>
+<A HREF="android.os.UserManager.html" class="hiddenlink" target="rightframe">UserManager</A><br>
+<A HREF="android.speech.tts.UtteranceProgressListener.html" class="hiddenlink" target="rightframe">UtteranceProgressListener</A><br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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="#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">
+<A HREF="pkg_android.graphics.drawable.html#VectorDrawable" class="hiddenlink" target="rightframe"><b>VectorDrawable</b></A><br>
+<A HREF="android.os.Vibrator.html" class="hiddenlink" target="rightframe">Vibrator</A><br>
+<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.ViewAnimationUtils.html" class="hiddenlink" target="rightframe">ViewAnimationUtils</A><br>
+<A HREF="android.view.ViewGroup.html" class="hiddenlink" target="rightframe">ViewGroup</A><br>
+<A HREF="pkg_android.view.html#ViewOutlineProvider" class="hiddenlink" target="rightframe"><b>ViewOutlineProvider</b></A><br>
+<A HREF="android.view.ViewParent.html" class="hiddenlink" target="rightframe"><i>ViewParent</i></A><br>
+<A HREF="android.hardware.display.VirtualDisplay.html" class="hiddenlink" target="rightframe">VirtualDisplay</A><br>
+<A HREF="pkg_android.hardware.display.html#VirtualDisplay.Callback" class="hiddenlink" target="rightframe"><b>VirtualDisplay.Callback</b></A><br>
+<A HREF="android.media.audiofx.Virtualizer.html" class="hiddenlink" target="rightframe">Virtualizer</A><br>
+<A HREF="android.transition.Visibility.html" class="hiddenlink" target="rightframe">Visibility</A><br>
+<A HREF="pkg_android.speech.tts.html#Voice" class="hiddenlink" target="rightframe"><b>Voice</b></A><br>
+<A HREF="android.service.voice.VoiceInteractionService.html" class="hiddenlink" target="rightframe">VoiceInteractionService</A><br>
+<A HREF="android.service.voice.VoiceInteractionSession.html" class="hiddenlink" target="rightframe">VoiceInteractionSession</A><br>
+<A HREF="pkg_android.service.voice.html#VoiceInteractionSession.Caller" class="hiddenlink" target="rightframe"><strike>VoiceInteractionSession.Caller</strike></A><br>
+<A HREF="pkg_android.service.voice.html#VoiceInteractionSession.Insets" class="hiddenlink" target="rightframe"><strike>VoiceInteractionSession.Insets</strike></A><br>
+<A HREF="pkg_android.service.voice.html#VoiceInteractionSession.Request" class="hiddenlink" target="rightframe"><strike>VoiceInteractionSession.Request</strike></A><br>
+<A HREF="pkg_android.app.html#VoiceInteractor" class="hiddenlink" target="rightframe"><strike>VoiceInteractor</strike></A><br>
+<A HREF="pkg_android.app.html#VoiceInteractor.AbortVoiceRequest" class="hiddenlink" target="rightframe"><strike>VoiceInteractor.AbortVoiceRequest</strike></A><br>
+<A HREF="pkg_android.app.html#VoiceInteractor.CommandRequest" class="hiddenlink" target="rightframe"><strike>VoiceInteractor.CommandRequest</strike></A><br>
+<A HREF="pkg_android.app.html#VoiceInteractor.ConfirmationRequest" class="hiddenlink" target="rightframe"><strike>VoiceInteractor.ConfirmationRequest</strike></A><br>
+<A HREF="pkg_android.app.html#VoiceInteractor.Request" class="hiddenlink" target="rightframe"><strike>VoiceInteractor.Request</strike></A><br>
+<A HREF="android.provider.VoicemailContract.Voicemails.html" class="hiddenlink" target="rightframe">VoicemailContract.Voicemails</A><br>
+<A HREF="pkg_android.media.html#VolumeProvider" class="hiddenlink" target="rightframe"><b>VolumeProvider</b></A><br>
+<A HREF="android.net.VpnService.Builder.html" class="hiddenlink" target="rightframe">VpnService.Builder</A><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.service.wallpaper.WallpaperService.Engine.html" class="hiddenlink" target="rightframe">WallpaperService.Engine</A><br>
+<A HREF="android.webkit.WebChromeClient.html" class="hiddenlink" target="rightframe">WebChromeClient</A><br>
+<A HREF="pkg_android.webkit.html#WebChromeClient.FileChooserParams" class="hiddenlink" target="rightframe"><b>WebChromeClient.FileChooserParams</b></A><br>
+<A HREF="pkg_android.webkit.html#WebResourceRequest" class="hiddenlink" target="rightframe"><b><i>WebResourceRequest</i></b></A><br>
+<A HREF="android.webkit.WebResourceResponse.html" class="hiddenlink" target="rightframe">WebResourceResponse</A><br>
+<A HREF="android.webkit.WebSyncManager.html" class="hiddenlink" target="rightframe">WebSyncManager</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.net.wifi.WifiConfiguration.html" class="hiddenlink" target="rightframe">WifiConfiguration</A><br>
+<A HREF="android.net.wifi.WifiManager.html" class="hiddenlink" target="rightframe">WifiManager</A><br>
+<A HREF="pkg_android.net.wifi.html#WifiManager.WpsCallback" class="hiddenlink" target="rightframe"><b>WifiManager.WpsCallback</b></A><br>
+<A HREF="android.view.Window.html" class="hiddenlink" target="rightframe">Window</A><br>
+<A HREF="android.view.WindowInsets.html" class="hiddenlink" target="rightframe">WindowInsets</A><br>
+<A HREF="android.view.WindowManager.LayoutParams.html" class="hiddenlink" target="rightframe">WindowManager.LayoutParams</A><br>
+<A HREF="android.net.wifi.WpsInfo.html" class="hiddenlink" target="rightframe">WpsInfo</A><br>
+<script src="//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/preview-21/changes/classes_index_changes.html b/docs/html/sdk/api_diff/preview-21/changes/classes_index_changes.html
new file mode 100644
index 0000000..3d60a5e
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/classes_index_changes.html
@@ -0,0 +1,867 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<A HREF="classes_index_removals.html" xclass="hiddenlink">Removals</A>
+  <br>
+<A HREF="classes_index_additions.html"xclass="hiddenlink">Additions</A>
+  <br>
+<b>Changes</b>
+  </td>
+  </tr>
+</table>
+<div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#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="android.widget.AbsListView.html" class="hiddenlink" target="rightframe">AbsListView</A><br>
+<A HREF="android.widget.AbsSeekBar.html" class="hiddenlink" target="rightframe">AbsSeekBar</A><br>
+<A HREF="java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html" class="hiddenlink" target="rightframe">AbstractQueuedLongSynchronizer</A><br>
+<A HREF="java.util.concurrent.locks.AbstractQueuedSynchronizer.html" class="hiddenlink" target="rightframe">AbstractQueuedSynchronizer</A><br>
+<A HREF="android.view.accessibility.AccessibilityNodeInfo.html" class="hiddenlink" target="rightframe">AccessibilityNodeInfo</A><br>
+<A HREF="android.accessibilityservice.AccessibilityService.html" class="hiddenlink" target="rightframe">AccessibilityService</A><br>
+<A HREF="android.view.accessibility.AccessibilityWindowInfo.html" class="hiddenlink" target="rightframe">AccessibilityWindowInfo</A><br>
+<A HREF="android.accounts.AccountManager.html" class="hiddenlink" target="rightframe">AccountManager</A><br>
+<A HREF="android.app.ActionBar.html" class="hiddenlink" target="rightframe">ActionBar</A><br>
+<A HREF="android.app.ActionBar.LayoutParams.html" class="hiddenlink" target="rightframe">ActionBar.LayoutParams</A><br>
+<A HREF="android.widget.ActionMenuView.html" class="hiddenlink" target="rightframe">ActionMenuView</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.AppTask.html" class="hiddenlink" target="rightframe">ActivityManager.AppTask</A><br>
+<A HREF="android.app.ActivityManager.RecentTaskInfo.html" class="hiddenlink" target="rightframe">ActivityManager.RecentTaskInfo</A><br>
+<A HREF="android.app.ActivityManager.RunningAppProcessInfo.html" class="hiddenlink" target="rightframe">ActivityManager.RunningAppProcessInfo</A><br>
+<A HREF="android.app.ActivityOptions.html" class="hiddenlink" target="rightframe">ActivityOptions</A><br>
+<A HREF="android.bluetooth.le.AdvertiseCallback.html" class="hiddenlink" target="rightframe">AdvertiseCallback</A><br>
+<A HREF="android.bluetooth.le.AdvertiseSettings.html" class="hiddenlink" target="rightframe">AdvertiseSettings</A><br>
+<A HREF="android.bluetooth.le.AdvertiseSettings.Builder.html" class="hiddenlink" target="rightframe">AdvertiseSettings.Builder</A><br>
+<A HREF="android.app.AlarmManager.html" class="hiddenlink" target="rightframe">AlarmManager</A><br>
+<A HREF="android.graphics.drawable.AnimatedStateListDrawable.html" class="hiddenlink" target="rightframe">AnimatedStateListDrawable</A><br>
+<A HREF="android.content.pm.ApplicationInfo.html" class="hiddenlink" target="rightframe">ApplicationInfo</A><br>
+<A HREF="android.app.AppOpsManager.html" class="hiddenlink" target="rightframe">AppOpsManager</A><br>
+<A HREF="android.appwidget.AppWidgetHost.html" class="hiddenlink" target="rightframe">AppWidgetHost</A><br>
+<A HREF="android.appwidget.AppWidgetManager.html" class="hiddenlink" target="rightframe">AppWidgetManager</A><br>
+<A HREF="android.appwidget.AppWidgetProviderInfo.html" class="hiddenlink" target="rightframe">AppWidgetProviderInfo</A><br>
+<A HREF="android.util.ArrayMap.html" class="hiddenlink" target="rightframe">ArrayMap</A><br>
+<A HREF="android.content.res.AssetManager.html" class="hiddenlink" target="rightframe">AssetManager</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.media.AudioTrack.html" class="hiddenlink" target="rightframe">AudioTrack</A><br>
+<A HREF="android.transition.AutoTransition.html" class="hiddenlink" target="rightframe">AutoTransition</A><br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.app.backup.BackupAgent.html" class="hiddenlink" target="rightframe">BackupAgent</A><br>
+<A HREF="android.view.inputmethod.BaseInputConnection.html" class="hiddenlink" target="rightframe">BaseInputConnection</A><br>
+<A HREF="android.graphics.BitmapFactory.Options.html" class="hiddenlink" target="rightframe">BitmapFactory.Options</A><br>
+<A HREF="android.bluetooth.BluetoothAdapter.html" class="hiddenlink" target="rightframe">BluetoothAdapter</A><br>
+<A HREF="android.bluetooth.BluetoothGatt.html" class="hiddenlink" target="rightframe">BluetoothGatt</A><br>
+<A HREF="android.bluetooth.BluetoothGattCallback.html" class="hiddenlink" target="rightframe">BluetoothGattCallback</A><br>
+<A HREF="android.bluetooth.BluetoothGattServerCallback.html" class="hiddenlink" target="rightframe">BluetoothGattServerCallback</A><br>
+<A HREF="android.bluetooth.le.BluetoothLeAdvertiser.html" class="hiddenlink" target="rightframe">BluetoothLeAdvertiser</A><br>
+<A HREF="android.bluetooth.le.BluetoothLeScanner.html" class="hiddenlink" target="rightframe">BluetoothLeScanner</A><br>
+<A HREF="android.os.Build.html" class="hiddenlink" target="rightframe">Build</A><br>
+<A HREF="android.os.Build.VERSION_CODES.html" class="hiddenlink" target="rightframe">Build.VERSION_CODES</A><br>
+<A HREF="android.os.Bundle.html" class="hiddenlink" target="rightframe">Bundle</A><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.provider.CallLog.Calls.html" class="hiddenlink" target="rightframe">CallLog.Calls</A><br>
+<A HREF="android.media.CamcorderProfile.html" class="hiddenlink" target="rightframe">CamcorderProfile</A><br>
+<A HREF="android.hardware.Camera.html" class="hiddenlink" target="rightframe">Camera</A><br>
+<A HREF="android.hardware.Camera.Area.html" class="hiddenlink" target="rightframe">Camera.Area</A><br>
+<A HREF="android.hardware.Camera.AutoFocusCallback.html" class="hiddenlink" target="rightframe"><i>Camera.AutoFocusCallback</i></A><br>
+<A HREF="android.hardware.Camera.AutoFocusMoveCallback.html" class="hiddenlink" target="rightframe"><i>Camera.AutoFocusMoveCallback</i></A><br>
+<A HREF="android.hardware.Camera.CameraInfo.html" class="hiddenlink" target="rightframe">Camera.CameraInfo</A><br>
+<A HREF="android.hardware.Camera.ErrorCallback.html" class="hiddenlink" target="rightframe"><i>Camera.ErrorCallback</i></A><br>
+<A HREF="android.hardware.Camera.Face.html" class="hiddenlink" target="rightframe">Camera.Face</A><br>
+<A HREF="android.hardware.Camera.FaceDetectionListener.html" class="hiddenlink" target="rightframe"><i>Camera.FaceDetectionListener</i></A><br>
+<A HREF="android.hardware.Camera.OnZoomChangeListener.html" class="hiddenlink" target="rightframe"><i>Camera.OnZoomChangeListener</i></A><br>
+<A HREF="android.hardware.Camera.Parameters.html" class="hiddenlink" target="rightframe">Camera.Parameters</A><br>
+<A HREF="android.hardware.Camera.PictureCallback.html" class="hiddenlink" target="rightframe"><i>Camera.PictureCallback</i></A><br>
+<A HREF="android.hardware.Camera.PreviewCallback.html" class="hiddenlink" target="rightframe"><i>Camera.PreviewCallback</i></A><br>
+<A HREF="android.hardware.Camera.ShutterCallback.html" class="hiddenlink" target="rightframe"><i>Camera.ShutterCallback</i></A><br>
+<A HREF="android.hardware.Camera.Size.html" class="hiddenlink" target="rightframe">Camera.Size</A><br>
+<A HREF="android.hardware.camera2.CameraCaptureSession.html" class="hiddenlink" target="rightframe">CameraCaptureSession</A><br>
+<A HREF="android.hardware.camera2.CameraCharacteristics.html" class="hiddenlink" target="rightframe">CameraCharacteristics</A><br>
+<A HREF="android.hardware.camera2.CameraDevice.html" class="hiddenlink" target="rightframe">CameraDevice</A><br>
+<A HREF="android.hardware.camera2.CameraManager.html" class="hiddenlink" target="rightframe">CameraManager</A><br>
+<A HREF="android.hardware.camera2.CameraMetadata.html" class="hiddenlink" target="rightframe">CameraMetadata</A><br>
+<A HREF="android.graphics.Canvas.html" class="hiddenlink" target="rightframe">Canvas</A><br>
+<A HREF="android.hardware.camera2.CaptureFailure.html" class="hiddenlink" target="rightframe">CaptureFailure</A><br>
+<A HREF="android.hardware.camera2.CaptureRequest.html" class="hiddenlink" target="rightframe">CaptureRequest</A><br>
+<A HREF="android.hardware.camera2.CaptureResult.html" class="hiddenlink" target="rightframe">CaptureResult</A><br>
+<A HREF="android.nfc.cardemulation.CardEmulation.html" class="hiddenlink" target="rightframe">CardEmulation</A><br>
+<A HREF="android.transition.ChangeBounds.html" class="hiddenlink" target="rightframe">ChangeBounds</A><br>
+<A HREF="android.transition.ChangeClipBounds.html" class="hiddenlink" target="rightframe">ChangeClipBounds</A><br>
+<A HREF="android.transition.ChangeTransform.html" class="hiddenlink" target="rightframe">ChangeTransform</A><br>
+<A HREF="android.widget.CheckedTextView.html" class="hiddenlink" target="rightframe">CheckedTextView</A><br>
+<A HREF="android.graphics.ColorMatrixColorFilter.html" class="hiddenlink" target="rightframe">ColorMatrixColorFilter</A><br>
+<A HREF="android.widget.CompoundButton.html" class="hiddenlink" target="rightframe">CompoundButton</A><br>
+<A HREF="android.net.ConnectivityManager.html" class="hiddenlink" target="rightframe">ConnectivityManager</A><br>
+<A HREF="android.provider.ContactsContract.html" class="hiddenlink" target="rightframe">ContactsContract</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Callable.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Callable</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Contactables</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Email</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Event</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.GroupMembership</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Identity</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Im</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Nickname</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Note</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Organization</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Phone</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Photo</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Relation</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.SipAddress</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.StructuredName</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.StructuredPostal</A><br>
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html" class="hiddenlink" target="rightframe">ContactsContract.CommonDataKinds.Website</A><br>
+<A HREF="android.provider.ContactsContract.ContactOptionsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.ContactOptionsColumns</i></A><br>
+<A HREF="android.provider.ContactsContract.Contacts.html" class="hiddenlink" target="rightframe">ContactsContract.Contacts</A><br>
+<A HREF="android.provider.ContactsContract.Contacts.Entity.html" class="hiddenlink" target="rightframe">ContactsContract.Contacts.Entity</A><br>
+<A HREF="android.provider.ContactsContract.Contacts.StreamItems.html" class="hiddenlink" target="rightframe">ContactsContract.Contacts.StreamItems</A><br>
+<A HREF="android.provider.ContactsContract.ContactsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.ContactsColumns</i></A><br>
+<A HREF="android.provider.ContactsContract.Data.html" class="hiddenlink" target="rightframe">ContactsContract.Data</A><br>
+<A HREF="android.provider.ContactsContract.DataColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.DataColumns</i></A><br>
+<A HREF="android.provider.ContactsContract.GroupsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.GroupsColumns</i></A><br>
+<A HREF="android.provider.ContactsContract.PhoneLookup.html" class="hiddenlink" target="rightframe">ContactsContract.PhoneLookup</A><br>
+<A HREF="android.provider.ContactsContract.QuickContact.html" class="hiddenlink" target="rightframe">ContactsContract.QuickContact</A><br>
+<A HREF="android.provider.ContactsContract.RawContacts.StreamItems.html" class="hiddenlink" target="rightframe">ContactsContract.RawContacts.StreamItems</A><br>
+<A HREF="android.provider.ContactsContract.RawContactsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.RawContactsColumns</i></A><br>
+<A HREF="android.provider.ContactsContract.StreamItemPhotos.html" class="hiddenlink" target="rightframe">ContactsContract.StreamItemPhotos</A><br>
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.StreamItemPhotosColumns</i></A><br>
+<A HREF="android.provider.ContactsContract.StreamItems.html" class="hiddenlink" target="rightframe">ContactsContract.StreamItems</A><br>
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html" class="hiddenlink" target="rightframe">ContactsContract.StreamItems.StreamItemPhotos</A><br>
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html" class="hiddenlink" target="rightframe"><i>ContactsContract.StreamItemsColumns</i></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.webkit.CookieManager.html" class="hiddenlink" target="rightframe">CookieManager</A><br>
+<A HREF="android.webkit.CookieSyncManager.html" class="hiddenlink" target="rightframe">CookieSyncManager</A><br>
+<A HREF="android.view.inputmethod.CursorAnchorInfo.html" class="hiddenlink" target="rightframe">CursorAnchorInfo</A><br>
+<A HREF="android.view.inputmethod.CursorAnchorInfo.Builder.html" class="hiddenlink" target="rightframe">CursorAnchorInfo.Builder</A><br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.widget.DatePicker.html" class="hiddenlink" target="rightframe">DatePicker</A><br>
+<A HREF="android.app.admin.DeviceAdminReceiver.html" class="hiddenlink" target="rightframe">DeviceAdminReceiver</A><br>
+<A HREF="android.app.admin.DevicePolicyManager.html" class="hiddenlink" target="rightframe">DevicePolicyManager</A><br>
+<A HREF="android.view.Display.html" class="hiddenlink" target="rightframe">Display</A><br>
+<A HREF="android.hardware.display.DisplayManager.html" class="hiddenlink" target="rightframe">DisplayManager</A><br>
+<A HREF="android.util.DisplayMetrics.html" class="hiddenlink" target="rightframe">DisplayMetrics</A><br>
+<A HREF="android.hardware.camera2.DngCreator.html" class="hiddenlink" target="rightframe">DngCreator</A><br>
+<A HREF="android.graphics.drawable.Drawable.html" class="hiddenlink" target="rightframe">Drawable</A><br>
+<A HREF="android.service.dreams.DreamService.html" class="hiddenlink" target="rightframe">DreamService</A><br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.widget.EdgeEffect.html" class="hiddenlink" target="rightframe">EdgeEffect</A><br>
+<A HREF="android.transition.Explode.html" class="hiddenlink" target="rightframe">Explode</A><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.transition.Fade.html" class="hiddenlink" target="rightframe">Fade</A><br>
+<A HREF="android.app.Fragment.html" class="hiddenlink" target="rightframe">Fragment</A><br>
+<A HREF="android.app.FragmentTransaction.html" class="hiddenlink" target="rightframe">FragmentTransaction</A><br>
+<A HREF="android.widget.FrameLayout.html" class="hiddenlink" target="rightframe">FrameLayout</A><br>
+<A HREF="android.view.FrameStats.html" class="hiddenlink" target="rightframe">FrameStats</A><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.widget.GridLayout.html" class="hiddenlink" target="rightframe">GridLayout</A><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.media.Image.html" class="hiddenlink" target="rightframe">Image</A><br>
+<A HREF="android.graphics.ImageFormat.html" class="hiddenlink" target="rightframe">ImageFormat</A><br>
+<A HREF="android.widget.ImageView.html" class="hiddenlink" target="rightframe">ImageView</A><br>
+<A HREF="android.view.inputmethod.InputConnection.html" class="hiddenlink" target="rightframe"><i>InputConnection</i></A><br>
+<A HREF="android.view.inputmethod.InputConnectionWrapper.html" class="hiddenlink" target="rightframe">InputConnectionWrapper</A><br>
+<A HREF="android.text.InputFilter.LengthFilter.html" class="hiddenlink" target="rightframe">InputFilter.LengthFilter</A><br>
+<A HREF="android.view.inputmethod.InputMethodManager.html" class="hiddenlink" target="rightframe">InputMethodManager</A><br>
+<A HREF="android.inputmethodservice.InputMethodService.html" class="hiddenlink" target="rightframe">InputMethodService</A><br>
+<A HREF="android.content.pm.InstrumentationInfo.html" class="hiddenlink" target="rightframe">InstrumentationInfo</A><br>
+<A HREF="android.content.Intent.html" class="hiddenlink" target="rightframe">Intent</A><br>
+<A NAME="J"></A>
+<br><font size="+2">J</font>&nbsp;
+<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="#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="android.app.job.JobInfo.html" class="hiddenlink" target="rightframe">JobInfo</A><br>
+<A HREF="android.app.job.JobInfo.Builder.html" class="hiddenlink" target="rightframe">JobInfo.Builder</A><br>
+<A HREF="android.app.job.JobParameters.html" class="hiddenlink" target="rightframe">JobParameters</A><br>
+<A NAME="K"></A>
+<br><font size="+2">K</font>&nbsp;
+<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="#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="#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.app.KeyguardManager.html" class="hiddenlink" target="rightframe">KeyguardManager</A><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.content.pm.LauncherApps.html" class="hiddenlink" target="rightframe">LauncherApps</A><br>
+<A HREF="android.graphics.LightingColorFilter.html" class="hiddenlink" target="rightframe">LightingColorFilter</A><br>
+<A HREF="android.net.LinkAddress.html" class="hiddenlink" target="rightframe">LinkAddress</A><br>
+<A HREF="java.util.Locale.html" class="hiddenlink" target="rightframe">Locale</A><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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="#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="#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.media.MediaCodec.html" class="hiddenlink" target="rightframe">MediaCodec</A><br>
+<A HREF="android.media.MediaCodec.CryptoException.html" class="hiddenlink" target="rightframe">MediaCodec.CryptoException</A><br>
+<A HREF="android.media.MediaCodecInfo.CodecCapabilities.html" class="hiddenlink" target="rightframe">MediaCodecInfo.CodecCapabilities</A><br>
+<A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html" class="hiddenlink" target="rightframe">MediaCodecInfo.CodecProfileLevel</A><br>
+<A HREF="android.media.MediaCodecList.html" class="hiddenlink" target="rightframe">MediaCodecList</A><br>
+<A HREF="android.media.session.MediaController.html" class="hiddenlink" target="rightframe">MediaController</A><br>
+<A HREF="android.media.session.MediaController.Callback.html" class="hiddenlink" target="rightframe">MediaController.Callback</A><br>
+<A HREF="android.media.session.MediaController.TransportControls.html" class="hiddenlink" target="rightframe">MediaController.TransportControls</A><br>
+<A HREF="android.media.MediaDrm.html" class="hiddenlink" target="rightframe">MediaDrm</A><br>
+<A HREF="android.media.MediaFormat.html" class="hiddenlink" target="rightframe">MediaFormat</A><br>
+<A HREF="android.media.MediaMetadata.html" class="hiddenlink" target="rightframe">MediaMetadata</A><br>
+<A HREF="android.media.MediaMetadata.Builder.html" class="hiddenlink" target="rightframe">MediaMetadata.Builder</A><br>
+<A HREF="android.media.MediaMetadataEditor.html" class="hiddenlink" target="rightframe">MediaMetadataEditor</A><br>
+<A HREF="android.media.MediaPlayer.html" class="hiddenlink" target="rightframe">MediaPlayer</A><br>
+<A HREF="android.media.MediaPlayer.TrackInfo.html" class="hiddenlink" target="rightframe">MediaPlayer.TrackInfo</A><br>
+<A HREF="android.media.MediaRecorder.html" class="hiddenlink" target="rightframe">MediaRecorder</A><br>
+<A HREF="android.media.MediaRecorder.AudioEncoder.html" class="hiddenlink" target="rightframe">MediaRecorder.AudioEncoder</A><br>
+<A HREF="android.media.MediaRecorder.OutputFormat.html" class="hiddenlink" target="rightframe">MediaRecorder.OutputFormat</A><br>
+<A HREF="android.media.MediaRecorder.VideoEncoder.html" class="hiddenlink" target="rightframe">MediaRecorder.VideoEncoder</A><br>
+<A HREF="android.media.session.MediaSession.html" class="hiddenlink" target="rightframe">MediaSession</A><br>
+<A HREF="android.media.session.MediaSession.Callback.html" class="hiddenlink" target="rightframe">MediaSession.Callback</A><br>
+<A HREF="android.media.session.MediaSessionManager.html" class="hiddenlink" target="rightframe">MediaSessionManager</A><br>
+<A HREF="android.provider.MediaStore.Audio.Radio.html" class="hiddenlink" target="rightframe">MediaStore.Audio.Radio</A><br>
+<A HREF="android.os.Message.html" class="hiddenlink" target="rightframe">Message</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>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.net.Network.html" class="hiddenlink" target="rightframe">Network</A><br>
+<A HREF="android.net.NetworkCapabilities.html" class="hiddenlink" target="rightframe">NetworkCapabilities</A><br>
+<A HREF="android.net.NetworkRequest.Builder.html" class="hiddenlink" target="rightframe">NetworkRequest.Builder</A><br>
+<A HREF="android.app.Notification.html" class="hiddenlink" target="rightframe">Notification</A><br>
+<A HREF="android.app.Notification.Builder.html" class="hiddenlink" target="rightframe">Notification.Builder</A><br>
+<A HREF="android.app.Notification.MediaStyle.html" class="hiddenlink" target="rightframe">Notification.MediaStyle</A><br>
+<A HREF="android.service.notification.NotificationListenerService.html" class="hiddenlink" target="rightframe">NotificationListenerService</A><br>
+<A HREF="android.service.notification.NotificationListenerService.Ranking.html" class="hiddenlink" target="rightframe">NotificationListenerService.Ranking</A><br>
+<A HREF="android.service.notification.NotificationListenerService.RankingMap.html" class="hiddenlink" target="rightframe">NotificationListenerService.RankingMap</A><br>
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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="#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="android.system.OsConstants.html" class="hiddenlink" target="rightframe">OsConstants</A><br>
+<A HREF="android.graphics.Outline.html" class="hiddenlink" target="rightframe">Outline</A><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#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="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.graphics.Paint.html" class="hiddenlink" target="rightframe">Paint</A><br>
+<A HREF="android.os.Parcel.html" class="hiddenlink" target="rightframe">Parcel</A><br>
+<A HREF="android.graphics.Path.html" class="hiddenlink" target="rightframe">Path</A><br>
+<A HREF="android.content.pm.PermissionInfo.html" class="hiddenlink" target="rightframe">PermissionInfo</A><br>
+<A HREF="android.webkit.PermissionRequest.html" class="hiddenlink" target="rightframe">PermissionRequest</A><br>
+<A HREF="android.media.session.PlaybackState.html" class="hiddenlink" target="rightframe">PlaybackState</A><br>
+<A HREF="android.widget.PopupWindow.html" class="hiddenlink" target="rightframe">PopupWindow</A><br>
+<A HREF="android.graphics.PorterDuffColorFilter.html" class="hiddenlink" target="rightframe">PorterDuffColorFilter</A><br>
+<A HREF="android.os.PowerManager.html" class="hiddenlink" target="rightframe">PowerManager</A><br>
+<A HREF="android.os.PowerManager.WakeLock.html" class="hiddenlink" target="rightframe">PowerManager.WakeLock</A><br>
+<A HREF="android.printservice.PrintService.html" class="hiddenlink" target="rightframe">PrintService</A><br>
+<A HREF="android.widget.ProgressBar.html" class="hiddenlink" target="rightframe">ProgressBar</A><br>
+<A HREF="android.net.ProxyInfo.html" class="hiddenlink" target="rightframe">ProxyInfo</A><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#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="android.R.attr.html" class="hiddenlink" target="rightframe">R.attr</A><br>
+<A HREF="android.R.dimen.html" class="hiddenlink" target="rightframe">R.dimen</A><br>
+<A HREF="android.R.id.html" class="hiddenlink" target="rightframe">R.id</A><br>
+<A HREF="android.R.interpolator.html" class="hiddenlink" target="rightframe">R.interpolator</A><br>
+<A HREF="android.R.style.html" class="hiddenlink" target="rightframe">R.style</A><br>
+<A HREF="android.R.transition.html" class="hiddenlink" target="rightframe">R.transition</A><br>
+<A HREF="android.util.Range.html" class="hiddenlink" target="rightframe">Range</A><br>
+<A HREF="android.util.Rational.html" class="hiddenlink" target="rightframe">Rational</A><br>
+<A HREF="android.media.RemoteControlClient.html" class="hiddenlink" target="rightframe">RemoteControlClient</A><br>
+<A HREF="android.media.RemoteControlClient.MetadataEditor.html" class="hiddenlink" target="rightframe">RemoteControlClient.MetadataEditor</A><br>
+<A HREF="android.media.RemoteController.html" class="hiddenlink" target="rightframe">RemoteController</A><br>
+<A HREF="android.content.RestrictionEntry.html" class="hiddenlink" target="rightframe">RestrictionEntry</A><br>
+<A HREF="android.media.Ringtone.html" class="hiddenlink" target="rightframe">Ringtone</A><br>
+<A HREF="android.graphics.drawable.RippleDrawable.html" class="hiddenlink" target="rightframe">RippleDrawable</A><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.bluetooth.le.ScanCallback.html" class="hiddenlink" target="rightframe">ScanCallback</A><br>
+<A HREF="android.bluetooth.le.ScanFilter.html" class="hiddenlink" target="rightframe">ScanFilter</A><br>
+<A HREF="android.bluetooth.le.ScanFilter.Builder.html" class="hiddenlink" target="rightframe">ScanFilter.Builder</A><br>
+<A HREF="android.bluetooth.le.ScanRecord.html" class="hiddenlink" target="rightframe">ScanRecord</A><br>
+<A HREF="android.bluetooth.le.ScanResult.html" class="hiddenlink" target="rightframe">ScanResult</A><br>
+<A HREF="android.bluetooth.le.ScanSettings.html" class="hiddenlink" target="rightframe">ScanSettings</A><br>
+<A HREF="android.bluetooth.le.ScanSettings.Builder.html" class="hiddenlink" target="rightframe">ScanSettings.Builder</A><br>
+<A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html" class="hiddenlink" target="rightframe">ScheduledThreadPoolExecutor</A><br>
+<A HREF="android.renderscript.ScriptC.html" class="hiddenlink" target="rightframe">ScriptC</A><br>
+<A HREF="android.hardware.Sensor.html" class="hiddenlink" target="rightframe">Sensor</A><br>
+<A HREF="android.hardware.SensorManager.html" class="hiddenlink" target="rightframe">SensorManager</A><br>
+<A HREF="android.location.SettingInjectorService.html" class="hiddenlink" target="rightframe">SettingInjectorService</A><br>
+<A HREF="android.provider.Settings.html" class="hiddenlink" target="rightframe">Settings</A><br>
+<A HREF="android.provider.Settings.Secure.html" class="hiddenlink" target="rightframe">Settings.Secure</A><br>
+<A HREF="android.provider.Settings.System.html" class="hiddenlink" target="rightframe">Settings.System</A><br>
+<A HREF="android.graphics.drawable.shapes.Shape.html" class="hiddenlink" target="rightframe">Shape</A><br>
+<A HREF="android.util.Size.html" class="hiddenlink" target="rightframe">Size</A><br>
+<A HREF="android.util.SizeF.html" class="hiddenlink" target="rightframe">SizeF</A><br>
+<A HREF="android.transition.Slide.html" class="hiddenlink" target="rightframe">Slide</A><br>
+<A HREF="android.telephony.SmsManager.html" class="hiddenlink" target="rightframe">SmsManager</A><br>
+<A HREF="android.media.SoundPool.html" class="hiddenlink" target="rightframe">SoundPool</A><br>
+<A HREF="android.text.SpannableStringBuilder.html" class="hiddenlink" target="rightframe">SpannableStringBuilder</A><br>
+<A HREF="android.service.notification.StatusBarNotification.html" class="hiddenlink" target="rightframe">StatusBarNotification</A><br>
+<A HREF="android.hardware.camera2.params.StreamConfigurationMap.html" class="hiddenlink" target="rightframe">StreamConfigurationMap</A><br>
+<A HREF="android.widget.Switch.html" class="hiddenlink" target="rightframe">Switch</A><br>
+<A HREF="android.speech.tts.SynthesisCallback.html" class="hiddenlink" target="rightframe"><i>SynthesisCallback</i></A><br>
+<A HREF="android.speech.tts.SynthesisRequest.html" class="hiddenlink" target="rightframe">SynthesisRequest</A><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.provider.Telephony.BaseMmsColumns.html" class="hiddenlink" target="rightframe"><i>Telephony.BaseMmsColumns</i></A><br>
+<A HREF="android.provider.Telephony.TextBasedSmsColumns.html" class="hiddenlink" target="rightframe"><i>Telephony.TextBasedSmsColumns</i></A><br>
+<A HREF="android.provider.Telephony.ThreadsColumns.html" class="hiddenlink" target="rightframe"><i>Telephony.ThreadsColumns</i></A><br>
+<A HREF="android.telephony.TelephonyManager.html" class="hiddenlink" target="rightframe">TelephonyManager</A><br>
+<A HREF="android.view.textservice.TextInfo.html" class="hiddenlink" target="rightframe">TextInfo</A><br>
+<A HREF="android.speech.tts.TextToSpeech.html" class="hiddenlink" target="rightframe">TextToSpeech</A><br>
+<A HREF="android.speech.tts.TextToSpeech.Engine.html" class="hiddenlink" target="rightframe">TextToSpeech.Engine</A><br>
+<A HREF="android.speech.tts.TextToSpeechService.html" class="hiddenlink" target="rightframe">TextToSpeechService</A><br>
+<A HREF="android.widget.TextView.html" class="hiddenlink" target="rightframe">TextView</A><br>
+<A HREF="android.widget.Toolbar.html" class="hiddenlink" target="rightframe">Toolbar</A><br>
+<A HREF="android.transition.Transition.html" class="hiddenlink" target="rightframe">Transition</A><br>
+<A HREF="android.transition.TransitionSet.html" class="hiddenlink" target="rightframe">TransitionSet</A><br>
+<A HREF="android.media.tv.TvContract.html" class="hiddenlink" target="rightframe">TvContract</A><br>
+<A HREF="android.media.tv.TvContract.Channels.html" class="hiddenlink" target="rightframe">TvContract.Channels</A><br>
+<A HREF="android.media.tv.TvContract.Programs.html" class="hiddenlink" target="rightframe">TvContract.Programs</A><br>
+<A HREF="android.media.tv.TvContract.Programs.Genres.html" class="hiddenlink" target="rightframe">TvContract.Programs.Genres</A><br>
+<A HREF="android.media.tv.TvInputInfo.html" class="hiddenlink" target="rightframe">TvInputInfo</A><br>
+<A HREF="android.media.tv.TvInputManager.html" class="hiddenlink" target="rightframe">TvInputManager</A><br>
+<A HREF="android.media.tv.TvInputService.html" class="hiddenlink" target="rightframe">TvInputService</A><br>
+<A HREF="android.media.tv.TvInputService.Session.html" class="hiddenlink" target="rightframe">TvInputService.Session</A><br>
+<A HREF="android.media.tv.TvView.html" class="hiddenlink" target="rightframe">TvView</A><br>
+<A HREF="android.content.res.TypedArray.html" class="hiddenlink" target="rightframe">TypedArray</A><br>
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.app.UiModeManager.html" class="hiddenlink" target="rightframe">UiModeManager</A><br>
+<A HREF="android.os.UserManager.html" class="hiddenlink" target="rightframe">UserManager</A><br>
+<A HREF="android.speech.tts.UtteranceProgressListener.html" class="hiddenlink" target="rightframe">UtteranceProgressListener</A><br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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="#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">
+<A HREF="android.os.Vibrator.html" class="hiddenlink" target="rightframe">Vibrator</A><br>
+<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.ViewAnimationUtils.html" class="hiddenlink" target="rightframe">ViewAnimationUtils</A><br>
+<A HREF="android.view.ViewGroup.html" class="hiddenlink" target="rightframe">ViewGroup</A><br>
+<A HREF="android.view.ViewParent.html" class="hiddenlink" target="rightframe"><i>ViewParent</i></A><br>
+<A HREF="android.hardware.display.VirtualDisplay.html" class="hiddenlink" target="rightframe">VirtualDisplay</A><br>
+<A HREF="android.media.audiofx.Virtualizer.html" class="hiddenlink" target="rightframe">Virtualizer</A><br>
+<A HREF="android.transition.Visibility.html" class="hiddenlink" target="rightframe">Visibility</A><br>
+<A HREF="android.service.voice.VoiceInteractionService.html" class="hiddenlink" target="rightframe">VoiceInteractionService</A><br>
+<A HREF="android.service.voice.VoiceInteractionSession.html" class="hiddenlink" target="rightframe">VoiceInteractionSession</A><br>
+<A HREF="android.provider.VoicemailContract.Voicemails.html" class="hiddenlink" target="rightframe">VoicemailContract.Voicemails</A><br>
+<A HREF="android.net.VpnService.Builder.html" class="hiddenlink" target="rightframe">VpnService.Builder</A><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.service.wallpaper.WallpaperService.Engine.html" class="hiddenlink" target="rightframe">WallpaperService.Engine</A><br>
+<A HREF="android.webkit.WebChromeClient.html" class="hiddenlink" target="rightframe">WebChromeClient</A><br>
+<A HREF="android.webkit.WebResourceResponse.html" class="hiddenlink" target="rightframe">WebResourceResponse</A><br>
+<A HREF="android.webkit.WebSyncManager.html" class="hiddenlink" target="rightframe">WebSyncManager</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.net.wifi.WifiConfiguration.html" class="hiddenlink" target="rightframe">WifiConfiguration</A><br>
+<A HREF="android.net.wifi.WifiManager.html" class="hiddenlink" target="rightframe">WifiManager</A><br>
+<A HREF="android.view.Window.html" class="hiddenlink" target="rightframe">Window</A><br>
+<A HREF="android.view.WindowInsets.html" class="hiddenlink" target="rightframe">WindowInsets</A><br>
+<A HREF="android.view.WindowManager.LayoutParams.html" class="hiddenlink" target="rightframe">WindowManager.LayoutParams</A><br>
+<A HREF="android.net.wifi.WpsInfo.html" class="hiddenlink" target="rightframe">WpsInfo</A><br>
+<script src="//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/preview-21/changes/classes_index_removals.html b/docs/html/sdk/api_diff/preview-21/changes/classes_index_removals.html
new file mode 100644
index 0000000..3f4bb1f
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/classes_index_removals.html
@@ -0,0 +1,195 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<b>Removals</b>
+  <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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<a href="#C"><font size="-2">C</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="#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">
+<A HREF="pkg_android.bluetooth.le.html#AdvertisementData" class="hiddenlink" target="rightframe"><strike>AdvertisementData</strike></A><br>
+<A HREF="pkg_android.bluetooth.le.html#AdvertisementData.Builder" class="hiddenlink" target="rightframe"><strike>AdvertisementData.Builder</strike></A><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<a href="#A"><font size="-2">A</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="#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">
+<A HREF="pkg_android.hardware.camera2.html#CameraCaptureSession.CaptureListener" class="hiddenlink" target="rightframe"><strike>CameraCaptureSession.CaptureListener</strike></A><br>
+<A HREF="pkg_android.hardware.camera2.html#CameraCaptureSession.StateListener" class="hiddenlink" target="rightframe"><strike>CameraCaptureSession.StateListener</strike></A><br>
+<A HREF="pkg_android.hardware.camera2.html#CameraDevice.CaptureListener" class="hiddenlink" target="rightframe"><strike>CameraDevice.CaptureListener</strike></A><br>
+<A HREF="pkg_android.hardware.camera2.html#CameraDevice.StateListener" class="hiddenlink" target="rightframe"><strike>CameraDevice.StateListener</strike></A><br>
+<A HREF="pkg_android.hardware.camera2.html#CameraManager.AvailabilityListener" class="hiddenlink" target="rightframe"><strike>CameraManager.AvailabilityListener</strike></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.Preferences" class="hiddenlink" target="rightframe"><strike>ContactsContract.Preferences</strike></A><br>
+<A NAME="J"></A>
+<br><font size="+2">J</font>&nbsp;
+<a href="#A"><font size="-2">A</font></a> 
+<a href="#C"><font size="-2">C</font></a> 
+<a href="#L"><font size="-2">L</font></a> 
+<a href="#M"><font size="-2">M</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">
+<A HREF="pkg_android.app.job.html#JobInfo.BackoffPolicy" class="hiddenlink" target="rightframe"><strike>JobInfo.BackoffPolicy</strike></A><br>
+<A HREF="pkg_android.app.job.html#JobInfo.NetworkType" class="hiddenlink" target="rightframe"><strike>JobInfo.NetworkType</strike></A><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<a href="#A"><font size="-2">A</font></a> 
+<a href="#C"><font size="-2">C</font></a> 
+<a href="#J"><font size="-2">J</font></a> 
+<a href="#M"><font size="-2">M</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">
+<A HREF="pkg_android.content.pm.html#LauncherApps.OnAppsChangedListener" class="hiddenlink" target="rightframe"><strike>LauncherApps.OnAppsChangedListener</strike></A><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<a href="#A"><font size="-2">A</font></a> 
+<a href="#C"><font size="-2">C</font></a> 
+<a href="#J"><font size="-2">J</font></a> 
+<a href="#L"><font size="-2">L</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">
+<A HREF="pkg_android.media.session.html#MediaSession.TransportControlsCallback" class="hiddenlink" target="rightframe"><strike>MediaSession.TransportControlsCallback</strike></A><br>
+<A HREF="pkg_android.media.session.html#MediaSessionToken" class="hiddenlink" target="rightframe"><strike>MediaSessionToken</strike></A><br>
+<A HREF="pkg_android.transition.html#MoveImage" class="hiddenlink" target="rightframe"><strike>MoveImage</strike></A><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<a href="#A"><font size="-2">A</font></a> 
+<a href="#C"><font size="-2">C</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="#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">
+<A HREF="pkg_android.media.session.html#RemoteVolumeProvider" class="hiddenlink" target="rightframe"><strike>RemoteVolumeProvider</strike></A><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<a href="#A"><font size="-2">A</font></a> 
+<a href="#C"><font size="-2">C</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="#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">
+<A HREF="pkg_android.app.html#SharedElementListener" class="hiddenlink" target="rightframe"><strike>SharedElementListener</strike></A><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<a href="#A"><font size="-2">A</font></a> 
+<a href="#C"><font size="-2">C</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="#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">
+<A HREF="pkg_android.media.tv.html#TvInputManager.TvInputListener" class="hiddenlink" target="rightframe"><strike>TvInputManager.TvInputListener</strike></A><br>
+<A HREF="pkg_android.media.tv.html#TvView.TvInputListener" class="hiddenlink" target="rightframe"><strike>TvView.TvInputListener</strike></A><br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<a href="#A"><font size="-2">A</font></a> 
+<a href="#C"><font size="-2">C</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="#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">
+<A HREF="pkg_android.service.voice.html#VoiceInteractionSession.Caller" class="hiddenlink" target="rightframe"><strike>VoiceInteractionSession.Caller</strike></A><br>
+<A HREF="pkg_android.service.voice.html#VoiceInteractionSession.Insets" class="hiddenlink" target="rightframe"><strike>VoiceInteractionSession.Insets</strike></A><br>
+<A HREF="pkg_android.service.voice.html#VoiceInteractionSession.Request" class="hiddenlink" target="rightframe"><strike>VoiceInteractionSession.Request</strike></A><br>
+<A HREF="pkg_android.app.html#VoiceInteractor" class="hiddenlink" target="rightframe"><strike>VoiceInteractor</strike></A><br>
+<A HREF="pkg_android.app.html#VoiceInteractor.AbortVoiceRequest" class="hiddenlink" target="rightframe"><strike>VoiceInteractor.AbortVoiceRequest</strike></A><br>
+<A HREF="pkg_android.app.html#VoiceInteractor.CommandRequest" class="hiddenlink" target="rightframe"><strike>VoiceInteractor.CommandRequest</strike></A><br>
+<A HREF="pkg_android.app.html#VoiceInteractor.ConfirmationRequest" class="hiddenlink" target="rightframe"><strike>VoiceInteractor.ConfirmationRequest</strike></A><br>
+<A HREF="pkg_android.app.html#VoiceInteractor.Request" class="hiddenlink" target="rightframe"><strike>VoiceInteractor.Request</strike></A><br>
+<script src="//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/preview-21/changes/constructors_index_additions.html b/docs/html/sdk/api_diff/preview-21/changes/constructors_index_additions.html
new file mode 100644
index 0000000..c92681b
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/constructors_index_additions.html
@@ -0,0 +1,291 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.ctor_added(android.media.AudioAttributes, android.media.AudioFormat, int, int, int)" class="hiddenlink" target="rightframe"><b>AudioTrack</b>
+(<code>AudioAttributes, AudioFormat, int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.transition.AutoTransition.html#android.transition.AutoTransition.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>AutoTransition</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.transition.ChangeBounds.html#android.transition.ChangeBounds.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>ChangeBounds</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.transition.ChangeClipBounds.html#android.transition.ChangeClipBounds.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>ChangeClipBounds</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.transition.ChangeTransform.html#android.transition.ChangeTransform.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>ChangeTransform</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.transition.Explode.html#android.transition.Explode.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Explode</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.transition.Fade.html#android.transition.Fade.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Fade</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.ctor_added(int)" class="hiddenlink" target="rightframe"><b>MediaCodecList</b>
+(<code>int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.ctor_added(android.content.Context, android.media.session.MediaSession.Token)" class="hiddenlink" target="rightframe"><b>MediaController</b>
+(<code>Context, Token</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.ctor_added(android.content.Context, java.lang.String)" class="hiddenlink" target="rightframe"><b>MediaSession</b>
+(<code>Context, String</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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="#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="#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.service.notification.NotificationListenerService.Ranking.html#android.service.notification.NotificationListenerService.Ranking.ctor_added()" class="hiddenlink" target="rightframe"><b>NotificationListenerService.Ranking</b>
+()</A></nobr>&nbsp;constructor<br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#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="#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.webkit.PermissionRequest.html#android.webkit.PermissionRequest.ctor_added()" class="hiddenlink" target="rightframe"><b>PermissionRequest</b>
+()</A></nobr>&nbsp;constructor<br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#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="#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">
+<i>RestrictionEntry</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.ctor_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>RestrictionEntry</b>
+(<code>int, String</code>)</A></nobr>&nbsp;constructor<br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.ctor_added(java.lang.String, int)" class="hiddenlink" target="rightframe"><b>RestrictionEntry</b>
+(<code>String, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#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="#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.bluetooth.le.ScanResult.html#android.bluetooth.le.ScanResult.ctor_added(android.bluetooth.BluetoothDevice, android.bluetooth.le.ScanRecord, int, long)" class="hiddenlink" target="rightframe"><b>ScanResult</b>
+(<code>BluetoothDevice, ScanRecord, int, long</code>)</A></nobr>&nbsp;constructor<br>
+<i>ScriptC</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptC.html#android.renderscript.ScriptC.ctor_added(android.renderscript.RenderScript, java.lang.String, byte[], byte[])" class="hiddenlink" target="rightframe"><b>ScriptC</b>
+(<code>RenderScript, String, byte[], byte[]</code>)</A></nobr>&nbsp;constructor<br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptC.html#android.renderscript.ScriptC.ctor_added(long, android.renderscript.RenderScript)" class="hiddenlink" target="rightframe"><b>ScriptC</b>
+(<code>long, RenderScript</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.transition.Slide.html#android.transition.Slide.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Slide</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.ctor_added(java.lang.CharSequence, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>SynthesisRequest</b>
+(<code>CharSequence, Bundle</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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="#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="#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.view.textservice.TextInfo.html#android.view.textservice.TextInfo.ctor_added(java.lang.CharSequence, int, int, int, int)" class="hiddenlink" target="rightframe"><b>TextInfo</b>
+(<code>CharSequence, int, int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Transition</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>TransitionSet</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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="#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="#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.transition.Visibility.html#android.transition.Visibility.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Visibility</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#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.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.ctor_added(java.lang.String, java.lang.String, int, java.lang.String, java.util.Map<java.lang.String, java.lang.String>, java.io.InputStream)" class="hiddenlink" target="rightframe"><b>WebResourceResponse</b>
+(<code>String, String, int, String, Map&lt;String, String&gt;, InputStream</code>)</A></nobr>&nbsp;constructor<br>
+<script src="//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/preview-21/changes/constructors_index_all.html b/docs/html/sdk/api_diff/preview-21/changes/constructors_index_all.html
new file mode 100644
index 0000000..056343d
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/constructors_index_all.html
@@ -0,0 +1,308 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.app.ActionBar.LayoutParams.html#android.app.ActionBar.LayoutParams.ctor_removed(android.view.ViewGroup.MarginLayoutParams)" class="hiddenlink" target="rightframe"><strike>ActionBar.LayoutParams</strike>
+(<code>MarginLayoutParams</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ctor_removed()" class="hiddenlink" target="rightframe"><strike>AudioFormat</strike>
+()</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.ctor_added(android.media.AudioAttributes, android.media.AudioFormat, int, int, int)" class="hiddenlink" target="rightframe"><b>AudioTrack</b>
+(<code>AudioAttributes, AudioFormat, int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.transition.AutoTransition.html#android.transition.AutoTransition.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>AutoTransition</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.transition.ChangeBounds.html#android.transition.ChangeBounds.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>ChangeBounds</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.transition.ChangeClipBounds.html#android.transition.ChangeClipBounds.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>ChangeClipBounds</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.transition.ChangeTransform.html#android.transition.ChangeTransform.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>ChangeTransform</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.transition.Explode.html#android.transition.Explode.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Explode</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.transition.Fade.html#android.transition.Fade.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Fade</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.ctor_added(int)" class="hiddenlink" target="rightframe"><b>MediaCodecList</b>
+(<code>int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.ctor_added(android.content.Context, android.media.session.MediaSession.Token)" class="hiddenlink" target="rightframe"><b>MediaController</b>
+(<code>Context, Token</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.ctor_added(android.content.Context, java.lang.String)" class="hiddenlink" target="rightframe"><b>MediaSession</b>
+(<code>Context, String</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.provider.MediaStore.Audio.Radio.html#android.provider.MediaStore.Audio.Radio.ctor_removed()" class="hiddenlink" target="rightframe"><strike>MediaStore.Audio.Radio</strike>
+()</A></nobr>&nbsp;constructor<br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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="#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="#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.service.notification.NotificationListenerService.Ranking.html#android.service.notification.NotificationListenerService.Ranking.ctor_added()" class="hiddenlink" target="rightframe"><b>NotificationListenerService.Ranking</b>
+()</A></nobr>&nbsp;constructor<br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#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="#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.webkit.PermissionRequest.html#android.webkit.PermissionRequest.ctor_added()" class="hiddenlink" target="rightframe"><b>PermissionRequest</b>
+()</A></nobr>&nbsp;constructor<br>
+<i>PlaybackState</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.ctor_removed()" class="hiddenlink" target="rightframe"><strike>PlaybackState</strike>
+()</A></nobr>&nbsp;constructor<br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.ctor_removed(android.media.session.PlaybackState)" class="hiddenlink" target="rightframe"><strike>PlaybackState</strike>
+(<code>PlaybackState</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#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="#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">
+<i>RestrictionEntry</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.ctor_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>RestrictionEntry</b>
+(<code>int, String</code>)</A></nobr>&nbsp;constructor<br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.ctor_added(java.lang.String, int)" class="hiddenlink" target="rightframe"><b>RestrictionEntry</b>
+(<code>String, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.graphics.drawable.RippleDrawable.html#android.graphics.drawable.RippleDrawable.ctor_changed(android.content.res.ColorStateList, android.graphics.drawable.Drawable, android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe">RippleDrawable
+(<code>ColorStateList, Drawable, Drawable</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#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="#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.bluetooth.le.ScanResult.html#android.bluetooth.le.ScanResult.ctor_added(android.bluetooth.BluetoothDevice, android.bluetooth.le.ScanRecord, int, long)" class="hiddenlink" target="rightframe"><b>ScanResult</b>
+(<code>BluetoothDevice, ScanRecord, int, long</code>)</A></nobr>&nbsp;constructor<br>
+<i>ScriptC</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptC.html#android.renderscript.ScriptC.ctor_added(android.renderscript.RenderScript, java.lang.String, byte[], byte[])" class="hiddenlink" target="rightframe"><b>ScriptC</b>
+(<code>RenderScript, String, byte[], byte[]</code>)</A></nobr>&nbsp;constructor<br>
+&nbsp;&nbsp;<nobr><A HREF="android.renderscript.ScriptC.html#android.renderscript.ScriptC.ctor_added(long, android.renderscript.RenderScript)" class="hiddenlink" target="rightframe"><b>ScriptC</b>
+(<code>long, RenderScript</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.transition.Slide.html#android.transition.Slide.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Slide</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.media.SoundPool.html#android.media.SoundPool.ctor_changed(int, int, int)" class="hiddenlink" target="rightframe">SoundPool
+(<code>int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.ctor_added(java.lang.CharSequence, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>SynthesisRequest</b>
+(<code>CharSequence, Bundle</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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="#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="#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.view.textservice.TextInfo.html#android.view.textservice.TextInfo.ctor_added(java.lang.CharSequence, int, int, int, int)" class="hiddenlink" target="rightframe"><b>TextInfo</b>
+(<code>CharSequence, int, int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Transition</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>TransitionSet</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.ctor_changed(android.content.Context)" class="hiddenlink" target="rightframe">TvInputService.Session
+(<code>Context</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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="#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="#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.transition.Visibility.html#android.transition.Visibility.ctor_added(android.content.Context, android.util.AttributeSet)" class="hiddenlink" target="rightframe"><b>Visibility</b>
+(<code>Context, AttributeSet</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#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.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.ctor_added(java.lang.String, java.lang.String, int, java.lang.String, java.util.Map<java.lang.String, java.lang.String>, java.io.InputStream)" class="hiddenlink" target="rightframe"><b>WebResourceResponse</b>
+(<code>String, String, int, String, Map&lt;String, String&gt;, InputStream</code>)</A></nobr>&nbsp;constructor<br>
+<script src="//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/preview-21/changes/constructors_index_changes.html b/docs/html/sdk/api_diff/preview-21/changes/constructors_index_changes.html
new file mode 100644
index 0000000..270524c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/constructors_index_changes.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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">
+<nobr><A HREF="android.graphics.drawable.RippleDrawable.html#android.graphics.drawable.RippleDrawable.ctor_changed(android.content.res.ColorStateList, android.graphics.drawable.Drawable, android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe">RippleDrawable
+(<code>ColorStateList, Drawable, Drawable</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<a href="#R"><font size="-2">R</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">
+<nobr><A HREF="android.media.SoundPool.html#android.media.SoundPool.ctor_changed(int, int, int)" class="hiddenlink" target="rightframe">SoundPool
+(<code>int, int, int</code>)</A></nobr>&nbsp;constructor<br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.ctor_changed(android.content.Context)" class="hiddenlink" target="rightframe">TvInputService.Session
+(<code>Context</code>)</A></nobr>&nbsp;constructor<br>
+<script src="//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/preview-21/changes/constructors_index_removals.html b/docs/html/sdk/api_diff/preview-21/changes/constructors_index_removals.html
new file mode 100644
index 0000000..7410128
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/constructors_index_removals.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<a href="#M"><font size="-2">M</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">
+<nobr><A HREF="android.app.ActionBar.LayoutParams.html#android.app.ActionBar.LayoutParams.ctor_removed(android.view.ViewGroup.MarginLayoutParams)" class="hiddenlink" target="rightframe"><strike>ActionBar.LayoutParams</strike>
+(<code>MarginLayoutParams</code>)</A></nobr>&nbsp;constructor<br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ctor_removed()" class="hiddenlink" target="rightframe"><strike>AudioFormat</strike>
+()</A></nobr>&nbsp;constructor<br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<a href="#A"><font size="-2">A</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">
+<nobr><A HREF="android.provider.MediaStore.Audio.Radio.html#android.provider.MediaStore.Audio.Radio.ctor_removed()" class="hiddenlink" target="rightframe"><strike>MediaStore.Audio.Radio</strike>
+()</A></nobr>&nbsp;constructor<br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<a href="#A"><font size="-2">A</font></a> 
+<a href="#M"><font size="-2">M</font></a> 
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>PlaybackState</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.ctor_removed()" class="hiddenlink" target="rightframe"><strike>PlaybackState</strike>
+()</A></nobr>&nbsp;constructor<br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.ctor_removed(android.media.session.PlaybackState)" class="hiddenlink" target="rightframe"><strike>PlaybackState</strike>
+(<code>PlaybackState</code>)</A></nobr>&nbsp;constructor<br>
+<script src="//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/preview-21/changes/fields_index_additions.html b/docs/html/sdk/api_diff/preview-21/changes/fields_index_additions.html
new file mode 100644
index 0000000..8128a4e
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/fields_index_additions.html
@@ -0,0 +1,1991 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<A HREF="fields_index_removals.html" xclass="hiddenlink">Removals</A>
+  <br>
+<b>Additions</b>
+  <br>
+<A HREF="fields_index_changes.html"xclass="hiddenlink">Changes</A>
+  </td>
+  </tr>
+</table>
+<div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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.ContactsContract.RawContactsColumns.html#android.provider.ContactsContract.RawContactsColumns.ACCOUNT_TYPE_AND_DATA_SET" class="hiddenlink" target="rightframe">ACCOUNT_TYPE_AND_DATA_SET</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.ACTION_BLOCKED_RATINGS_CHANGED" class="hiddenlink" target="rightframe">ACTION_BLOCKED_RATINGS_CHANGED</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_CAST_SETTINGS" class="hiddenlink" target="rightframe">ACTION_CAST_SETTINGS</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ACTION_HDMI_AUDIO_PLUG" class="hiddenlink" target="rightframe">ACTION_HDMI_AUDIO_PLUG</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ACTION_HEADSET_PLUG" class="hiddenlink" target="rightframe">ACTION_HEADSET_PLUG</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_HOME_SETTINGS" class="hiddenlink" target="rightframe">ACTION_HOME_SETTINGS</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.ACTION_LOCK_TASK_ENTERING" class="hiddenlink" target="rightframe">ACTION_LOCK_TASK_ENTERING</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.ACTION_LOCK_TASK_EXITING" class="hiddenlink" target="rightframe">ACTION_LOCK_TASK_EXITING</A>
+</nobr><br>
+<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.ACTION_NEXT_ALARM_CLOCK_CHANGED" class="hiddenlink" target="rightframe">ACTION_NEXT_ALARM_CLOCK_CHANGED</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.ACTION_PARENTAL_CONTROLS_ENABLED_CHANGED" class="hiddenlink" target="rightframe">ACTION_PARENTAL_CONTROLS_ENABLED_CHANGED</A>
+</nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.ACTION_PLAY_FROM_MEDIA_ID" class="hiddenlink" target="rightframe">ACTION_PLAY_FROM_MEDIA_ID</A>
+</nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.ACTION_PLAY_FROM_SEARCH" class="hiddenlink" target="rightframe">ACTION_PLAY_FROM_SEARCH</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.ACTION_QUERY_CONTENT_RATING_SYSTEMS" class="hiddenlink" target="rightframe">ACTION_QUERY_CONTENT_RATING_SYSTEMS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.QuickContact.html#android.provider.ContactsContract.QuickContact.ACTION_QUICK_CONTACT" class="hiddenlink" target="rightframe">ACTION_QUICK_CONTACT</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_SHOW_REGULATORY_INFO" class="hiddenlink" target="rightframe">ACTION_SHOW_REGULATORY_INFO</A>
+</nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.ACTION_SKIP_TO_QUEUE_ITEM" class="hiddenlink" target="rightframe">ACTION_SKIP_TO_QUEUE_ITEM</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_USAGE_ACCESS_SETTINGS" class="hiddenlink" target="rightframe">ACTION_USAGE_ACCESS_SETTINGS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_VOICE_INPUT_SETTINGS" class="hiddenlink" target="rightframe">ACTION_VOICE_INPUT_SETTINGS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionBarPopupTheme" class="hiddenlink" target="rightframe">actionBarPopupTheme</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionModeFindDrawable" class="hiddenlink" target="rightframe">actionModeFindDrawable</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionModeShareDrawable" class="hiddenlink" target="rightframe">actionModeShareDrawable</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionModeWebSearchDrawable" class="hiddenlink" target="rightframe">actionModeWebSearchDrawable</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_DATA_TOO_LARGE" class="hiddenlink" target="rightframe">ADVERTISE_FAILED_DATA_TOO_LARGE</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_FEATURE_UNSUPPORTED" class="hiddenlink" target="rightframe">ADVERTISE_FAILED_FEATURE_UNSUPPORTED</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_INTERNAL_ERROR" class="hiddenlink" target="rightframe">ADVERTISE_FAILED_INTERNAL_ERROR</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RecentTaskInfo.html#android.app.ActivityManager.RecentTaskInfo.affiliatedTaskId" class="hiddenlink" target="rightframe">affiliatedTaskId</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.ALL_CODECS" class="hiddenlink" target="rightframe">ALL_CODECS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.ambientShadowAlpha" class="hiddenlink" target="rightframe">ambientShadowAlpha</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.amPmBackgroundColor" class="hiddenlink" target="rightframe">amPmBackgroundColor</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.amPmTextColor" class="hiddenlink" target="rightframe">amPmTextColor</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.APPWIDGET_SERVICE" class="hiddenlink" target="rightframe">APPWIDGET_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Telephony.ThreadsColumns.html#android.provider.Telephony.ThreadsColumns.ARCHIVED" class="hiddenlink" target="rightframe">ARCHIVED</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.AUDIO_ATTRIBUTES_DEFAULT" class="hiddenlink" target="rightframe">AUDIO_ATTRIBUTES_DEFAULT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.AUDIO_SESSION_ID_GENERATE" class="hiddenlink" target="rightframe">AUDIO_SESSION_ID_GENERATE</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.audioAttributes" class="hiddenlink" target="rightframe">audioAttributes</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.AVCLevel52" class="hiddenlink" target="rightframe">AVCLevel52</A>
+</nobr><br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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.R.attr.html#android.R.attr.backgroundTint" class="hiddenlink" target="rightframe">backgroundTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.backgroundTintMode" class="hiddenlink" target="rightframe">backgroundTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.BACKOFF_POLICY_EXPONENTIAL" class="hiddenlink" target="rightframe">BACKOFF_POLICY_EXPONENTIAL</A>
+</nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.BACKOFF_POLICY_LINEAR" class="hiddenlink" target="rightframe">BACKOFF_POLICY_LINEAR</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.BIND_DREAM_SERVICE" class="hiddenlink" target="rightframe">BIND_DREAM_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WpsInfo.html#android.net.wifi.WpsInfo.BSSID" class="hiddenlink" target="rightframe">BSSID</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.BUFFER_FLAG_KEY_FRAME" class="hiddenlink" target="rightframe">BUFFER_FLAG_KEY_FRAME</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonBarNegativeButtonStyle" class="hiddenlink" target="rightframe">buttonBarNegativeButtonStyle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonBarNeutralButtonStyle" class="hiddenlink" target="rightframe">buttonBarNeutralButtonStyle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonBarPositiveButtonStyle" class="hiddenlink" target="rightframe">buttonBarPositiveButtonStyle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonTint" class="hiddenlink" target="rightframe">buttonTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonTintMode" class="hiddenlink" target="rightframe">buttonTintMode</A>
+</nobr><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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.R.attr.html#android.R.attr.calendarTextColor" class="hiddenlink" target="rightframe">calendarTextColor</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanSettings.html#android.bluetooth.le.ScanSettings.CALLBACK_TYPE_ALL_MATCHES" class="hiddenlink" target="rightframe">CALLBACK_TYPE_ALL_MATCHES</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_SIDE_LEFT" class="hiddenlink" target="rightframe">CHANNEL_OUT_SIDE_LEFT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_SIDE_RIGHT" class="hiddenlink" target="rightframe">CHANNEL_OUT_SIDE_RIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.checkMarkTint" class="hiddenlink" target="rightframe">checkMarkTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.checkMarkTintMode" class="hiddenlink" target="rightframe">checkMarkTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.closeIcon" class="hiddenlink" target="rightframe">closeIcon</A>
+</nobr><br>
+<i>COLOR_CORRECTION_ABERRATION_MODE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.hardware.camera2.CaptureRequest.html#android.hardware.camera2.CaptureRequest.COLOR_CORRECTION_ABERRATION_MODE" class="hiddenlink" target="rightframe">android.hardware.camera2.CaptureRequest</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.hardware.camera2.CaptureResult.html#android.hardware.camera2.CaptureResult.COLOR_CORRECTION_ABERRATION_MODE" class="hiddenlink" target="rightframe">android.hardware.camera2.CaptureResult</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.COLOR_CORRECTION_ABERRATION_MODE_FAST" class="hiddenlink" target="rightframe">COLOR_CORRECTION_ABERRATION_MODE_FAST</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.COLOR_CORRECTION_ABERRATION_MODE_HIGH_QUALITY" class="hiddenlink" target="rightframe">COLOR_CORRECTION_ABERRATION_MODE_HIGH_QUALITY</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.COLOR_CORRECTION_ABERRATION_MODE_OFF" class="hiddenlink" target="rightframe">COLOR_CORRECTION_ABERRATION_MODE_OFF</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraCharacteristics.html#android.hardware.camera2.CameraCharacteristics.COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES" class="hiddenlink" target="rightframe">COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.COLOR_FormatYUV420Flexible" class="hiddenlink" target="rightframe">COLOR_FormatYUV420Flexible</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorEdgeEffect" class="hiddenlink" target="rightframe">colorEdgeEffect</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.html#android.media.tv.TvContract.Programs.COLUMN_CONTENT_RATING" class="hiddenlink" target="rightframe">COLUMN_CONTENT_RATING</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.html#android.media.tv.TvContract.Programs.COLUMN_EPISODE_NUMBER" class="hiddenlink" target="rightframe">COLUMN_EPISODE_NUMBER</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.html#android.media.tv.TvContract.Programs.COLUMN_EPISODE_TITLE" class="hiddenlink" target="rightframe">COLUMN_EPISODE_TITLE</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.COLUMN_INPUT_ID" class="hiddenlink" target="rightframe">COLUMN_INPUT_ID</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.COLUMN_NETWORK_AFFILIATION" class="hiddenlink" target="rightframe">COLUMN_NETWORK_AFFILIATION</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.html#android.media.tv.TvContract.Programs.COLUMN_SEASON_NUMBER" class="hiddenlink" target="rightframe">COLUMN_SEASON_NUMBER</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.COLUMN_VIDEO_FORMAT" class="hiddenlink" target="rightframe">COLUMN_VIDEO_FORMAT</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.html#android.media.tv.TvContract.Programs.COLUMN_VIDEO_HEIGHT" class="hiddenlink" target="rightframe">COLUMN_VIDEO_HEIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.html#android.media.tv.TvContract.Programs.COLUMN_VIDEO_WIDTH" class="hiddenlink" target="rightframe">COLUMN_VIDEO_WIDTH</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.commitIcon" class="hiddenlink" target="rightframe">commitIcon</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_BALANCED" class="hiddenlink" target="rightframe">CONNECTION_PRIORITY_BALANCED</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_HIGH" class="hiddenlink" target="rightframe">CONNECTION_PRIORITY_HIGH</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_LOW_POWER" class="hiddenlink" target="rightframe">CONNECTION_PRIORITY_LOW_POWER</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.CONTENT_FREQUENT_URI" class="hiddenlink" target="rightframe">CONTENT_FREQUENT_URI</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentAgeHint" class="hiddenlink" target="rightframe">contentAgeHint</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.CONTROL_SCENE_MODE_HIGH_SPEED_VIDEO" class="hiddenlink" target="rightframe">CONTROL_SCENE_MODE_HIGH_SPEED_VIDEO</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.country" class="hiddenlink" target="rightframe">country</A>
+</nobr><br>
+<i>CREATOR</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.CREATOR" class="hiddenlink" target="rightframe">android.media.tv.TvInputInfo</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.net.LinkAddress.html#android.net.LinkAddress.CREATOR" class="hiddenlink" target="rightframe">android.net.LinkAddress</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.net.ProxyInfo.html#android.net.ProxyInfo.CREATOR" class="hiddenlink" target="rightframe">android.net.ProxyInfo</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.Telephony.BaseMmsColumns.html#android.provider.Telephony.BaseMmsColumns.CREATOR" class="hiddenlink" target="rightframe">android.provider.Telephony.BaseMmsColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.Telephony.TextBasedSmsColumns.html#android.provider.Telephony.TextBasedSmsColumns.CREATOR" class="hiddenlink" target="rightframe">android.provider.Telephony.TextBasedSmsColumns</A>
+</nobr><br>
+<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.CURSOR_UPDATE_IMMEDIATE" class="hiddenlink" target="rightframe">CURSOR_UPDATE_IMMEDIATE</A>
+</nobr><br>
+<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.CURSOR_UPDATE_MONITOR" class="hiddenlink" target="rightframe">CURSOR_UPDATE_MONITOR</A>
+</nobr><br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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.provider.CallLog.Calls.html#android.provider.CallLog.Calls.DATA_USAGE" class="hiddenlink" target="rightframe">DATA_USAGE</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.datePickerDialogTheme" class="hiddenlink" target="rightframe">datePickerDialogTheme</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.datePickerMode" class="hiddenlink" target="rightframe">datePickerMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.dayOfWeekBackground" class="hiddenlink" target="rightframe">dayOfWeekBackground</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.dayOfWeekTextAppearance" class="hiddenlink" target="rightframe">dayOfWeekTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.DEFAULT_INITIAL_BACKOFF_MILLIS" class="hiddenlink" target="rightframe">DEFAULT_INITIAL_BACKOFF_MILLIS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.html#android.provider.ContactsContract.DEFERRED_SNIPPETING" class="hiddenlink" target="rightframe">DEFERRED_SNIPPETING</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.html#android.provider.ContactsContract.DEFERRED_SNIPPETING_QUERY" class="hiddenlink" target="rightframe">DEFERRED_SNIPPETING_QUERY</A>
+</nobr><br>
+<nobr><A HREF="android.util.DisplayMetrics.html#android.util.DisplayMetrics.DENSITY_560" class="hiddenlink" target="rightframe">DENSITY_560</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_APPS_CONTROL" class="hiddenlink" target="rightframe">DISALLOW_APPS_CONTROL</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CREATE_WINDOWS" class="hiddenlink" target="rightframe">DISALLOW_CREATE_WINDOWS</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CROSS_PROFILE_COPY_PASTE" class="hiddenlink" target="rightframe">DISALLOW_CROSS_PROFILE_COPY_PASTE</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_OUTGOING_CALLS" class="hiddenlink" target="rightframe">DISALLOW_OUTGOING_CALLS</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_SMS" class="hiddenlink" target="rightframe">DISALLOW_SMS</A>
+</nobr><br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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.app.UiModeManager.html#android.app.UiModeManager.ENABLE_CAR_MODE_ALLOW_SLEEP" class="hiddenlink" target="rightframe">ENABLE_CAR_MODE_ALLOW_SLEEP</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ENCODING_AC3" class="hiddenlink" target="rightframe">ENCODING_AC3</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ENCODING_E_AC3" class="hiddenlink" target="rightframe">ENCODING_E_AC3</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.PhoneLookup.html#android.provider.ContactsContract.PhoneLookup.ENTERPRISE_CONTENT_FILTER_URI" class="hiddenlink" target="rightframe">ENTERPRISE_CONTENT_FILTER_URI</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ERROR" class="hiddenlink" target="rightframe">ERROR</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ERROR_DEAD_OBJECT" class="hiddenlink" target="rightframe">ERROR_DEAD_OBJECT</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodec.CryptoException.html#android.media.MediaCodec.CryptoException.ERROR_INSUFFICIENT_OUTPUT_PROTECTION" class="hiddenlink" target="rightframe">ERROR_INSUFFICIENT_OUTPUT_PROTECTION</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_INVALID_REQUEST" class="hiddenlink" target="rightframe">ERROR_INVALID_REQUEST</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_NETWORK" class="hiddenlink" target="rightframe">ERROR_NETWORK</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_NETWORK_TIMEOUT" class="hiddenlink" target="rightframe">ERROR_NETWORK_TIMEOUT</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_NOT_INSTALLED_YET" class="hiddenlink" target="rightframe">ERROR_NOT_INSTALLED_YET</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_OUTPUT" class="hiddenlink" target="rightframe">ERROR_OUTPUT</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_SERVICE" class="hiddenlink" target="rightframe">ERROR_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_SYNTHESIS" class="hiddenlink" target="rightframe">ERROR_SYNTHESIS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeName" class="hiddenlink" target="rightframe">excludeName</A>
+</nobr><br>
+<nobr><A HREF="android.R.transition.html#android.R.transition.explode" class="hiddenlink" target="rightframe">explode</A>
+</nobr><br>
+<i>EXTRA_ADDRESS_BOOK_INDEX</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Callable.html#android.provider.ContactsContract.CommonDataKinds.Callable.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Callable</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html#android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Contactables</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html#android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Email</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Event</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html#android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.GroupMembership</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html#android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Identity</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html#android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Im</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html#android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Nickname</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html#android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Note</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html#android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Organization</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html#android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Phone</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html#android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Photo</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html#android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Relation</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html#android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.SipAddress</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredName</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html#android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html#android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Website</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Data.html#android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Data</A>
+</nobr><br>
+<i>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Callable.html#android.provider.ContactsContract.CommonDataKinds.Callable.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Callable</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html#android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Contactables</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html#android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Email</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Event</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html#android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.GroupMembership</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html#android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Identity</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html#android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Im</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html#android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Nickname</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html#android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Note</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html#android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Organization</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html#android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Phone</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html#android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Photo</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html#android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Relation</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html#android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.SipAddress</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredName</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html#android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html#android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Website</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Data.html#android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Data</A>
+</nobr><br>
+<i>EXTRA_ADDRESS_BOOK_INDEX_TITLES</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Callable.html#android.provider.ContactsContract.CommonDataKinds.Callable.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Callable</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html#android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Contactables</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html#android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Email</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Event</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html#android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.GroupMembership</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html#android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Identity</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html#android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Im</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html#android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Nickname</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html#android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Note</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html#android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Organization</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html#android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Phone</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html#android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Photo</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html#android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Relation</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html#android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.SipAddress</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredName</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html#android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html#android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Website</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Data.html#android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Data</A>
+</nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE" class="hiddenlink" target="rightframe">EXTRA_APPWIDGET_PROVIDER_PROFILE</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD" class="hiddenlink" target="rightframe">EXTRA_ASSIST_INPUT_HINT_KEYBOARD</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.EXTRA_AUDIO_PLUG_STATE" class="hiddenlink" target="rightframe">EXTRA_AUDIO_PLUG_STATE</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_BIG_TEXT" class="hiddenlink" target="rightframe">EXTRA_BIG_TEXT</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.EXTRA_CALL_TYPE_FILTER" class="hiddenlink" target="rightframe">EXTRA_CALL_TYPE_FILTER</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_COMPACT_ACTIONS" class="hiddenlink" target="rightframe">EXTRA_COMPACT_ACTIONS</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.EXTRA_ENCODINGS" class="hiddenlink" target="rightframe">EXTRA_ENCODINGS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.QuickContact.html#android.provider.ContactsContract.QuickContact.EXTRA_EXCLUDE_MIMES" class="hiddenlink" target="rightframe">EXTRA_EXCLUDE_MIMES</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.EXTRA_INPUT_ID" class="hiddenlink" target="rightframe">EXTRA_INPUT_ID</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.EXTRA_LOCK_TASK_PACKAGE" class="hiddenlink" target="rightframe">EXTRA_LOCK_TASK_PACKAGE</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.EXTRA_MAX_CHANNEL_COUNT" class="hiddenlink" target="rightframe">EXTRA_MAX_CHANNEL_COUNT</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.EXTRA_MMS_DATA" class="hiddenlink" target="rightframe">EXTRA_MMS_DATA</A>
+</nobr><br>
+<nobr><A HREF="android.printservice.PrintService.html#android.printservice.PrintService.EXTRA_PRINTER_INFO" class="hiddenlink" target="rightframe">EXTRA_PRINTER_INFO</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_EMAIL_ADDRESS" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_EMAIL_ADDRESS</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_LOCAL_TIME" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_LOCAL_TIME</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_LOCALE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_LOCALE</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_TIME_ZONE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_TIME_ZONE</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_HIDDEN" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_HIDDEN</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PAC_URL" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PAC_URL</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PASSWORD" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PASSWORD</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_BYPASS" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PROXY_BYPASS</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_HOST" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PROXY_HOST</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_PORT" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PROXY_PORT</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_SECURITY_TYPE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_SECURITY_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_SSID" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_SSID</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_REPLACEMENT_EXTRAS" class="hiddenlink" target="rightframe">EXTRA_REPLACEMENT_EXTRAS</A>
+</nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.EXTRA_SIZE" class="hiddenlink" target="rightframe">EXTRA_SIZE</A>
+</nobr><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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.transition.html#android.R.transition.fade" class="hiddenlink" target="rightframe">fade</A>
+</nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.FEATURE_ACTIVITY_TRANSITIONS" class="hiddenlink" target="rightframe">FEATURE_ACTIVITY_TRANSITIONS</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_AUDIO_OUTPUT" class="hiddenlink" target="rightframe">FEATURE_AUDIO_OUTPUT</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING" class="hiddenlink" target="rightframe">FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR" class="hiddenlink" target="rightframe">FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_RAW" class="hiddenlink" target="rightframe">FEATURE_CAMERA_CAPABILITY_RAW</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_LEVEL_FULL" class="hiddenlink" target="rightframe">FEATURE_CAMERA_LEVEL_FULL</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CONNECTION_SERVICE" class="hiddenlink" target="rightframe">FEATURE_CONNECTION_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_GAMEPAD" class="hiddenlink" target="rightframe">FEATURE_GAMEPAD</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_LIVE_TV" class="hiddenlink" target="rightframe">FEATURE_LIVE_TV</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_MANAGED_USERS" class="hiddenlink" target="rightframe">FEATURE_MANAGED_USERS</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_OPENGLES_EXTENSION_PACK" class="hiddenlink" target="rightframe">FEATURE_OPENGLES_EXTENSION_PACK</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SECURELY_REMOVES_USERS" class="hiddenlink" target="rightframe">FEATURE_SECURELY_REMOVES_USERS</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.FEATURE_SecurePlayback" class="hiddenlink" target="rightframe">FEATURE_SecurePlayback</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SENSOR_AMBIENT_TEMPERATURE" class="hiddenlink" target="rightframe">FEATURE_SENSOR_AMBIENT_TEMPERATURE</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SENSOR_HEART_RATE_ECG" class="hiddenlink" target="rightframe">FEATURE_SENSOR_HEART_RATE_ECG</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SENSOR_RELATIVE_HUMIDITY" class="hiddenlink" target="rightframe">FEATURE_SENSOR_RELATIVE_HUMIDITY</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.FEATURE_TunneledPlayback" class="hiddenlink" target="rightframe">FEATURE_TunneledPlayback</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_VERIFIED_BOOT" class="hiddenlink" target="rightframe">FEATURE_VERIFIED_BOOT</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.featureGroups" class="hiddenlink" target="rightframe">featureGroups</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.FEATURES" class="hiddenlink" target="rightframe">FEATURES</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.FEATURES_VIDEO" class="hiddenlink" target="rightframe">FEATURES_VIDEO</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fillAlpha" class="hiddenlink" target="rightframe">fillAlpha</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fillColor" class="hiddenlink" target="rightframe">fillColor</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS" class="hiddenlink" target="rightframe">FLAG_ACTIVITY_RETAIN_IN_RECENTS</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.FLAG_FULL_BACKUP_ONLY" class="hiddenlink" target="rightframe">FLAG_FULL_BACKUP_ONLY</A>
+</nobr><br>
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.FLAG_HAS_INVISIBLE_REGION" class="hiddenlink" target="rightframe">FLAG_HAS_INVISIBLE_REGION</A>
+</nobr><br>
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.FLAG_HAS_VISIBLE_REGION" class="hiddenlink" target="rightframe">FLAG_HAS_VISIBLE_REGION</A>
+</nobr><br>
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.FLAG_IS_RTL" class="hiddenlink" target="rightframe">FLAG_IS_RTL</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.FLAG_MANAGED_CAN_ACCESS_PARENT" class="hiddenlink" target="rightframe">FLAG_MANAGED_CAN_ACCESS_PARENT</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.FLAG_MULTIARCH" class="hiddenlink" target="rightframe">FLAG_MULTIARCH</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.FLAG_PARENT_CAN_ACCESS_MANAGED" class="hiddenlink" target="rightframe">FLAG_PARENT_CAN_ACCESS_MANAGED</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY" class="hiddenlink" target="rightframe">FLAG_RELINQUISH_TASK_IDENTITY</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_RESUME_WHILE_PAUSING" class="hiddenlink" target="rightframe">FLAG_RESUME_WHILE_PAUSING</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fontFeatureSettings" class="hiddenlink" target="rightframe">fontFeatureSettings</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.foregroundTint" class="hiddenlink" target="rightframe">foregroundTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.foregroundTintMode" class="hiddenlink" target="rightframe">foregroundTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiConfiguration.html#android.net.wifi.WifiConfiguration.FQDN" class="hiddenlink" target="rightframe">FQDN</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentAllowEnterTransitionOverlap" class="hiddenlink" target="rightframe">fragmentAllowEnterTransitionOverlap</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentAllowReturnTransitionOverlap" class="hiddenlink" target="rightframe">fragmentAllowReturnTransitionOverlap</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentEnterTransition" class="hiddenlink" target="rightframe">fragmentEnterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentExitTransition" class="hiddenlink" target="rightframe">fragmentExitTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentReenterTransition" class="hiddenlink" target="rightframe">fragmentReenterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentReturnTransition" class="hiddenlink" target="rightframe">fragmentReturnTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentSharedElementEnterTransition" class="hiddenlink" target="rightframe">fragmentSharedElementEnterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentSharedElementReturnTransition" class="hiddenlink" target="rightframe">fragmentSharedElementReturnTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fullBackupOnly" class="hiddenlink" target="rightframe">fullBackupOnly</A>
+</nobr><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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">
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.GATT_CONNECTION_CONGESTED" class="hiddenlink" target="rightframe">GATT_CONNECTION_CONGESTED</A>
+</nobr><br>
+<nobr><A HREF="android.accessibilityservice.AccessibilityService.html#android.accessibilityservice.AccessibilityService.GLOBAL_ACTION_POWER_DIALOG" class="hiddenlink" target="rightframe">GLOBAL_ACTION_POWER_DIALOG</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.goIcon" class="hiddenlink" target="rightframe">goIcon</A>
+</nobr><br>
+<A NAME="H"></A>
+<br><font size="+2">H</font>&nbsp;
+<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.R.attr.html#android.R.attr.headerAmPmTextAppearance" class="hiddenlink" target="rightframe">headerAmPmTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerDayOfMonthTextAppearance" class="hiddenlink" target="rightframe">headerDayOfMonthTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerMonthTextAppearance" class="hiddenlink" target="rightframe">headerMonthTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerTimeTextAppearance" class="hiddenlink" target="rightframe">headerTimeTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerYearTextAppearance" class="hiddenlink" target="rightframe">headerYearTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.headsUpContentView" class="hiddenlink" target="rightframe">headsUpContentView</A>
+</nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.HINT_HOST_DISABLE_EFFECTS" class="hiddenlink" target="rightframe">HINT_HOST_DISABLE_EFFECTS</A>
+</nobr><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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.IMPORTANCE_GONE" class="hiddenlink" target="rightframe">IMPORTANCE_GONE</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.indeterminateTint" class="hiddenlink" target="rightframe">indeterminateTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.indeterminateTintMode" class="hiddenlink" target="rightframe">indeterminateTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.INFO_SUPPORTED_HARDWARE_LEVEL_LEGACY" class="hiddenlink" target="rightframe">INFO_SUPPORTED_HARDWARE_LEVEL_LEGACY</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.INPUT_STATE_CONNECTED" class="hiddenlink" target="rightframe">INPUT_STATE_CONNECTED</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.INPUT_STATE_CONNECTED_STANDBY" class="hiddenlink" target="rightframe">INPUT_STATE_CONNECTED_STANDBY</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.INPUT_STATE_DISCONNECTED" class="hiddenlink" target="rightframe">INPUT_STATE_DISCONNECTED</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.inset" class="hiddenlink" target="rightframe">inset</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.INSTALL_LOCATION_AUTO" class="hiddenlink" target="rightframe">INSTALL_LOCATION_AUTO</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY" class="hiddenlink" target="rightframe">INSTALL_LOCATION_INTERNAL_ONLY</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.INSTALL_LOCATION_PREFER_EXTERNAL" class="hiddenlink" target="rightframe">INSTALL_LOCATION_PREFER_EXTERNAL</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.installLocation" class="hiddenlink" target="rightframe">installLocation</A>
+</nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_ALL" class="hiddenlink" target="rightframe">INTERRUPTION_FILTER_ALL</A>
+</nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_NONE" class="hiddenlink" target="rightframe">INTERRUPTION_FILTER_NONE</A>
+</nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_PRIORITY" class="hiddenlink" target="rightframe">INTERRUPTION_FILTER_PRIORITY</A>
+</nobr><br>
+<A NAME="K"></A>
+<br><font size="+2">K</font>&nbsp;
+<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">
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_ATTENUATION_FACTOR" class="hiddenlink" target="rightframe">KEY_AAC_DRC_ATTENUATION_FACTOR</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_BOOST_FACTOR" class="hiddenlink" target="rightframe">KEY_AAC_DRC_BOOST_FACTOR</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_HEAVY_COMPRESSION" class="hiddenlink" target="rightframe">KEY_AAC_DRC_HEAVY_COMPRESSION</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_TARGET_REFERENCE_LEVEL" class="hiddenlink" target="rightframe">KEY_AAC_DRC_TARGET_REFERENCE_LEVEL</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_ENCODED_TARGET_LEVEL" class="hiddenlink" target="rightframe">KEY_AAC_ENCODED_TARGET_LEVEL</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT" class="hiddenlink" target="rightframe">KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_SBR_MODE" class="hiddenlink" target="rightframe">KEY_AAC_SBR_MODE</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AUDIO_SESSION_ID" class="hiddenlink" target="rightframe">KEY_AUDIO_SESSION_ID</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_BITRATE_MODE" class="hiddenlink" target="rightframe">KEY_BITRATE_MODE</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_CAPTURE_RATE" class="hiddenlink" target="rightframe">KEY_CAPTURE_RATE</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_COMPLEXITY" class="hiddenlink" target="rightframe">KEY_COMPLEXITY</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_RETRIES_COUNT" class="hiddenlink" target="rightframe">KEY_FEATURE_NETWORK_RETRIES_COUNT</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_TIMEOUT_MS" class="hiddenlink" target="rightframe">KEY_FEATURE_NETWORK_TIMEOUT_MS</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NOT_INSTALLED" class="hiddenlink" target="rightframe">KEY_FEATURE_NOT_INSTALLED</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_PARAM_SESSION_ID" class="hiddenlink" target="rightframe">KEY_PARAM_SESSION_ID</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_PROFILE" class="hiddenlink" target="rightframe">KEY_PROFILE</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_TEMPORAL_LAYERING" class="hiddenlink" target="rightframe">KEY_TEMPORAL_LAYERING</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_HELP" class="hiddenlink" target="rightframe">KEYCODE_HELP</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_ANTENNA_CABLE" class="hiddenlink" target="rightframe">KEYCODE_TV_ANTENNA_CABLE</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION" class="hiddenlink" target="rightframe">KEYCODE_TV_AUDIO_DESCRIPTION</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN" class="hiddenlink" target="rightframe">KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP" class="hiddenlink" target="rightframe">KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_CONTENTS_MENU" class="hiddenlink" target="rightframe">KEYCODE_TV_CONTENTS_MENU</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPONENT_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPONENT_1</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPONENT_2" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPONENT_2</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPOSITE_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPOSITE_1</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPOSITE_2" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPOSITE_2</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_1</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_2" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_2</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_3" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_3</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_4" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_4</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_VGA_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_VGA_1</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_MEDIA_CONTEXT_MENU" class="hiddenlink" target="rightframe">KEYCODE_TV_MEDIA_CONTEXT_MENU</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_NETWORK" class="hiddenlink" target="rightframe">KEYCODE_TV_NETWORK</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_NUMBER_ENTRY" class="hiddenlink" target="rightframe">KEYCODE_TV_NUMBER_ENTRY</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_RADIO_SERVICE" class="hiddenlink" target="rightframe">KEYCODE_TV_RADIO_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE_BS" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE_BS</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE_CS" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE_CS</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE_SERVICE" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TELETEXT" class="hiddenlink" target="rightframe">KEYCODE_TV_TELETEXT</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TERRESTRIAL_ANALOG" class="hiddenlink" target="rightframe">KEYCODE_TV_TERRESTRIAL_ANALOG</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TERRESTRIAL_DIGITAL" class="hiddenlink" target="rightframe">KEYCODE_TV_TERRESTRIAL_DIGITAL</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TIMER_PROGRAMMING" class="hiddenlink" target="rightframe">KEYCODE_TV_TIMER_PROGRAMMING</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_ZOOM_MODE" class="hiddenlink" target="rightframe">KEYCODE_TV_ZOOM_MODE</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_VOICE_ASSIST" class="hiddenlink" target="rightframe">KEYCODE_VOICE_ASSIST</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_FINGERPRINT" class="hiddenlink" target="rightframe">KEYGUARD_DISABLE_FINGERPRINT</A>
+</nobr><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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">
+<nobr><A HREF="android.R.attr.html#android.R.attr.launchTaskBehindSourceAnimation" class="hiddenlink" target="rightframe">launchTaskBehindSourceAnimation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.launchTaskBehindTargetAnimation" class="hiddenlink" target="rightframe">launchTaskBehindTargetAnimation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.layout_columnWeight" class="hiddenlink" target="rightframe">layout_columnWeight</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.layout_rowWeight" class="hiddenlink" target="rightframe">layout_rowWeight</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.letterSpacing" class="hiddenlink" target="rightframe">letterSpacing</A>
+</nobr><br>
+<nobr><A HREF="android.os.Build.VERSION_CODES.html#android.os.Build.VERSION_CODES.LOLLIPOP" class="hiddenlink" target="rightframe">LOLLIPOP</A>
+</nobr><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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.transition.Transition.html#android.transition.Transition.MATCH_NAME" class="hiddenlink" target="rightframe">MATCH_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.MAX_BACKOFF_DELAY_MILLIS" class="hiddenlink" target="rightframe">MAX_BACKOFF_DELAY_MILLIS</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.MAX_THUMBNAIL_DIMENSION" class="hiddenlink" target="rightframe">MAX_THUMBNAIL_DIMENSION</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.maximumAngle" class="hiddenlink" target="rightframe">maximumAngle</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.MEDIA_PROJECTION_SERVICE" class="hiddenlink" target="rightframe">MEDIA_PROJECTION_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaPlayer.TrackInfo.html#android.media.MediaPlayer.TrackInfo.MEDIA_TRACK_TYPE_SUBTITLE" class="hiddenlink" target="rightframe">MEDIA_TRACK_TYPE_SUBTITLE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Telephony.BaseMmsColumns.html#android.provider.Telephony.BaseMmsColumns.MESSAGE_BOX_FAILED" class="hiddenlink" target="rightframe">MESSAGE_BOX_FAILED</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.META_DATA_CONTENT_RATING_SYSTEMS" class="hiddenlink" target="rightframe">META_DATA_CONTENT_RATING_SYSTEMS</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.METADATA_KEY_DISPLAY_DESCRIPTION" class="hiddenlink" target="rightframe">METADATA_KEY_DISPLAY_DESCRIPTION</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.METADATA_KEY_DISPLAY_ICON" class="hiddenlink" target="rightframe">METADATA_KEY_DISPLAY_ICON</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.METADATA_KEY_DISPLAY_ICON_URI" class="hiddenlink" target="rightframe">METADATA_KEY_DISPLAY_ICON_URI</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.METADATA_KEY_DISPLAY_SUBTITLE" class="hiddenlink" target="rightframe">METADATA_KEY_DISPLAY_SUBTITLE</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.METADATA_KEY_DISPLAY_TITLE" class="hiddenlink" target="rightframe">METADATA_KEY_DISPLAY_TITLE</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.METADATA_KEY_MEDIA_ID" class="hiddenlink" target="rightframe">METADATA_KEY_MEDIA_ID</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.MIME_TYPE_PROVISIONING_NFC" class="hiddenlink" target="rightframe">MIME_TYPE_PROVISIONING_NFC</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AAC" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AAC</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AC3" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AC3</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AMR_NB" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AMR_NB</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AMR_WB" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AMR_WB</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_FLAC" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_FLAC</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_G711_ALAW" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_G711_ALAW</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_G711_MLAW" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_G711_MLAW</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_MPEG" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_MPEG</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_MSGSM" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_MSGSM</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_OPUS" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_OPUS</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_QCELP" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_QCELP</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_RAW" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_RAW</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_VORBIS" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_VORBIS</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_TEXT_CEA_608" class="hiddenlink" target="rightframe">MIMETYPE_TEXT_CEA_608</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_TEXT_VTT" class="hiddenlink" target="rightframe">MIMETYPE_TEXT_VTT</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_AVC" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_AVC</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_H263" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_H263</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_HEVC" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_HEVC</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_MPEG2" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_MPEG2</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_MPEG4" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_MPEG4</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_RAW" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_RAW</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_VP8" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_VP8</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_VP9" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_VP9</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.minimumHorizontalAngle" class="hiddenlink" target="rightframe">minimumHorizontalAngle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.minimumVerticalAngle" class="hiddenlink" target="rightframe">minimumVerticalAngle</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALIAS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_ALIAS_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALIAS_MAX_CHARS" class="hiddenlink" target="rightframe">MMS_CONFIG_ALIAS_MAX_CHARS</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALIAS_MIN_CHARS" class="hiddenlink" target="rightframe">MMS_CONFIG_ALIAS_MIN_CHARS</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALLOW_ATTACH_AUDIO" class="hiddenlink" target="rightframe">MMS_CONFIG_ALLOW_ATTACH_AUDIO</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_APPEND_TRANSACTION_ID" class="hiddenlink" target="rightframe">MMS_CONFIG_APPEND_TRANSACTION_ID</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_EMAIL_GATEWAY_NUMBER" class="hiddenlink" target="rightframe">MMS_CONFIG_EMAIL_GATEWAY_NUMBER</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_GROUP_MMS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_GROUP_MMS_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_HTTP_PARAMS" class="hiddenlink" target="rightframe">MMS_CONFIG_HTTP_PARAMS</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_HTTP_SOCKET_TIMEOUT" class="hiddenlink" target="rightframe">MMS_CONFIG_HTTP_SOCKET_TIMEOUT</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MAX_IMAGE_HEIGHT" class="hiddenlink" target="rightframe">MMS_CONFIG_MAX_IMAGE_HEIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MAX_IMAGE_WIDTH" class="hiddenlink" target="rightframe">MMS_CONFIG_MAX_IMAGE_WIDTH</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MAX_MESSAGE_SIZE" class="hiddenlink" target="rightframe">MMS_CONFIG_MAX_MESSAGE_SIZE</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE" class="hiddenlink" target="rightframe">MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MMS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MMS_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MMS_READ_REPORT_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MMS_READ_REPORT_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MULTIPART_SMS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MULTIPART_SMS_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_NAI_SUFFIX" class="hiddenlink" target="rightframe">MMS_CONFIG_NAI_SUFFIX</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_RECIPIENT_LIMIT" class="hiddenlink" target="rightframe">MMS_CONFIG_RECIPIENT_LIMIT</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES" class="hiddenlink" target="rightframe">MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD" class="hiddenlink" target="rightframe">MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD" class="hiddenlink" target="rightframe">MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SUBJECT_MAX_LENGTH" class="hiddenlink" target="rightframe">MMS_CONFIG_SUBJECT_MAX_LENGTH</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION" class="hiddenlink" target="rightframe">MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_UA_PROF_TAG_NAME" class="hiddenlink" target="rightframe">MMS_CONFIG_UA_PROF_TAG_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_UA_PROF_URL" class="hiddenlink" target="rightframe">MMS_CONFIG_UA_PROF_URL</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_USER_AGENT" class="hiddenlink" target="rightframe">MMS_CONFIG_USER_AGENT</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_CONFIGURATION_ERROR" class="hiddenlink" target="rightframe">MMS_ERROR_CONFIGURATION_ERROR</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_HTTP_FAILURE" class="hiddenlink" target="rightframe">MMS_ERROR_HTTP_FAILURE</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_INVALID_APN" class="hiddenlink" target="rightframe">MMS_ERROR_INVALID_APN</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_IO_ERROR" class="hiddenlink" target="rightframe">MMS_ERROR_IO_ERROR</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_RETRY" class="hiddenlink" target="rightframe">MMS_ERROR_RETRY</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_UNABLE_CONNECT_MMS" class="hiddenlink" target="rightframe">MMS_ERROR_UNABLE_CONNECT_MMS</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_UNSPECIFIED" class="hiddenlink" target="rightframe">MMS_ERROR_UNSPECIFIED</A>
+</nobr><br>
+<nobr><A HREF="android.app.AppOpsManager.html#android.app.AppOpsManager.MODE_DEFAULT" class="hiddenlink" target="rightframe">MODE_DEFAULT</A>
+</nobr><br>
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.MODE_IN" class="hiddenlink" target="rightframe">MODE_IN</A>
+</nobr><br>
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.MODE_OUT" class="hiddenlink" target="rightframe">MODE_OUT</A>
+</nobr><br>
+<nobr><A HREF="android.R.transition.html#android.R.transition.move" class="hiddenlink" target="rightframe">move</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.multiArch" class="hiddenlink" target="rightframe">multiArch</A>
+</nobr><br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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.provider.ContactsContract.ContactsColumns.html#android.provider.ContactsContract.ContactsColumns.NAME_RAW_CONTACT_ID" class="hiddenlink" target="rightframe">NAME_RAW_CONTACT_ID</A>
+</nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME" class="hiddenlink" target="rightframe">NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.R.id.html#android.R.id.navigationBarBackground" class="hiddenlink" target="rightframe">navigationBarBackground</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.navigationContentDescription" class="hiddenlink" target="rightframe">navigationContentDescription</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.navigationIcon" class="hiddenlink" target="rightframe">navigationIcon</A>
+</nobr><br>
+<nobr><A HREF="android.net.NetworkCapabilities.html#android.net.NetworkCapabilities.NET_CAPABILITY_NOT_VPN" class="hiddenlink" target="rightframe">NET_CAPABILITY_NOT_VPN</A>
+</nobr><br>
+<nobr><A HREF="android.net.NetworkCapabilities.html#android.net.NetworkCapabilities.NET_CAPABILITY_TRUSTED" class="hiddenlink" target="rightframe">NET_CAPABILITY_TRUSTED</A>
+</nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.NETWORK_TYPE_ANY" class="hiddenlink" target="rightframe">NETWORK_TYPE_ANY</A>
+</nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.NETWORK_TYPE_NONE" class="hiddenlink" target="rightframe">NETWORK_TYPE_NONE</A>
+</nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.NETWORK_TYPE_UNMETERED" class="hiddenlink" target="rightframe">NETWORK_TYPE_UNMETERED</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.numbersBackgroundColor" class="hiddenlink" target="rightframe">numbersBackgroundColor</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.numbersSelectorColor" class="hiddenlink" target="rightframe">numbersSelectorColor</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.numbersTextColor" class="hiddenlink" target="rightframe">numbersTextColor</A>
+</nobr><br>
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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.app.AppOpsManager.html#android.app.AppOpsManager.OPSTR_GET_USAGE_STATS" class="hiddenlink" target="rightframe">OPSTR_GET_USAGE_STATS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.outlineProvider" class="hiddenlink" target="rightframe">outlineProvider</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.overlapAnchor" class="hiddenlink" target="rightframe">overlapAnchor</A>
+</nobr><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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">
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.PASSWORD_QUALITY_NUMERIC_COMPLEX" class="hiddenlink" target="rightframe">PASSWORD_QUALITY_NUMERIC_COMPLEX</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.patternPathData" class="hiddenlink" target="rightframe">patternPathData</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.PERSIST_ACROSS_REBOOTS" class="hiddenlink" target="rightframe">PERSIST_ACROSS_REBOOTS</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.PERSIST_NEVER" class="hiddenlink" target="rightframe">PERSIST_NEVER</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.PERSIST_ROOT_ONLY" class="hiddenlink" target="rightframe">PERSIST_ROOT_ONLY</A>
+</nobr><br>
+<i>persistableMode</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.persistableMode" class="hiddenlink" target="rightframe">android.R.attr</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.persistableMode" class="hiddenlink" target="rightframe">android.content.pm.ActivityInfo</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.PHONE_ACCOUNT_COMPONENT_NAME" class="hiddenlink" target="rightframe">PHONE_ACCOUNT_COMPONENT_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.PHONE_ACCOUNT_ID" class="hiddenlink" target="rightframe">PHONE_ACCOUNT_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.ContactOptionsColumns.html#android.provider.ContactsContract.ContactOptionsColumns.PINNED" class="hiddenlink" target="rightframe">PINNED</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.popupElevation" class="hiddenlink" target="rightframe">popupElevation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.popupTheme" class="hiddenlink" target="rightframe">popupTheme</A>
+</nobr><br>
+<nobr><A HREF="android.system.OsConstants.html#android.system.OsConstants.PR_GET_DUMPABLE" class="hiddenlink" target="rightframe">PR_GET_DUMPABLE</A>
+</nobr><br>
+<nobr><A HREF="android.system.OsConstants.html#android.system.OsConstants.PR_SET_DUMPABLE" class="hiddenlink" target="rightframe">PR_SET_DUMPABLE</A>
+</nobr><br>
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.preferredRefreshRate" class="hiddenlink" target="rightframe">preferredRefreshRate</A>
+</nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.PRIVATE_USE_EXTENSION" class="hiddenlink" target="rightframe">PRIVATE_USE_EXTENSION</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressBackgroundTint" class="hiddenlink" target="rightframe">progressBackgroundTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressBackgroundTintMode" class="hiddenlink" target="rightframe">progressBackgroundTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressTint" class="hiddenlink" target="rightframe">progressTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressTintMode" class="hiddenlink" target="rightframe">progressTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.propertyXName" class="hiddenlink" target="rightframe">propertyXName</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.propertyYName" class="hiddenlink" target="rightframe">propertyYName</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PermissionInfo.html#android.content.pm.PermissionInfo.PROTECTION_FLAG_APPOP" class="hiddenlink" target="rightframe">PROTECTION_FLAG_APPOP</A>
+</nobr><br>
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.PROXIMITY_SCREEN_OFF_WAKE_LOCK" class="hiddenlink" target="rightframe">PROXIMITY_SCREEN_OFF_WAKE_LOCK</A>
+</nobr><br>
+<A NAME="Q"></A>
+<br><font size="+2">Q</font>&nbsp;
+<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">
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_2160P" class="hiddenlink" target="rightframe">QUALITY_2160P</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_1080P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_1080P</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_2160P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_2160P</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_480P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_480P</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_720P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_720P</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_HIGH" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_HIGH</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_LOW" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_LOW</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_TIME_LAPSE_2160P" class="hiddenlink" target="rightframe">QUALITY_TIME_LAPSE_2160P</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.queryBackground" class="hiddenlink" target="rightframe">queryBackground</A>
+</nobr><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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.graphics.ImageFormat.html#android.graphics.ImageFormat.RAW10" class="hiddenlink" target="rightframe">RAW10</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.READ_VOICEMAIL" class="hiddenlink" target="rightframe">READ_VOICEMAIL</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.recognitionService" class="hiddenlink" target="rightframe">recognitionService</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.REGULAR_CODECS" class="hiddenlink" target="rightframe">REGULAR_CODECS</A>
+</nobr><br>
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY" class="hiddenlink" target="rightframe">RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.relinquishTaskIdentity" class="hiddenlink" target="rightframe">relinquishTaskIdentity</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.reparent" class="hiddenlink" target="rightframe">reparent</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.reparentWithOverlay" class="hiddenlink" target="rightframe">reparentWithOverlay</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_CONTINUOUS" class="hiddenlink" target="rightframe">REPORTING_MODE_CONTINUOUS</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_ON_CHANGE" class="hiddenlink" target="rightframe">REPORTING_MODE_ON_CHANGE</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_ONE_SHOT" class="hiddenlink" target="rightframe">REPORTING_MODE_ONE_SHOT</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_SPECIAL_TRIGGER" class="hiddenlink" target="rightframe">REPORTING_MODE_SPECIAL_TRIGGER</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_BACKWARD_COMPATIBLE" class="hiddenlink" target="rightframe">REQUEST_AVAILABLE_CAPABILITIES_BACKWARD_COMPATIBLE</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_RAW" class="hiddenlink" target="rightframe">REQUEST_AVAILABLE_CAPABILITIES_RAW</A>
+</nobr><br>
+<i>RES_PACKAGE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.DataColumns.html#android.provider.ContactsContract.DataColumns.RES_PACKAGE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.DataColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.GroupsColumns.html#android.provider.ContactsContract.GroupsColumns.RES_PACKAGE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.GroupsColumns</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.PermissionRequest.html#android.webkit.PermissionRequest.RESOURCE_PROTECTED_MEDIA_ID" class="hiddenlink" target="rightframe">RESOURCE_PROTECTED_MEDIA_ID</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.RESTRICTIONS_SERVICE" class="hiddenlink" target="rightframe">RESTRICTIONS_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.restrictionType" class="hiddenlink" target="rightframe">restrictionType</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.resumeWhilePausing" class="hiddenlink" target="rightframe">resumeWhilePausing</A>
+</nobr><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.SCAN_FAILED_FEATURE_UNSUPPORTED" class="hiddenlink" target="rightframe">SCAN_FAILED_FEATURE_UNSUPPORTED</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.SCAN_FAILED_INTERNAL_ERROR" class="hiddenlink" target="rightframe">SCAN_FAILED_INTERNAL_ERROR</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.searchIcon" class="hiddenlink" target="rightframe">searchIcon</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.searchViewStyle" class="hiddenlink" target="rightframe">searchViewStyle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.secondaryProgressTint" class="hiddenlink" target="rightframe">secondaryProgressTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.secondaryProgressTintMode" class="hiddenlink" target="rightframe">secondaryProgressTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.os.Message.html#android.os.Message.sendingUid" class="hiddenlink" target="rightframe">sendingUid</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraCharacteristics.html#android.hardware.camera2.CameraCharacteristics.SENSOR_INFO_TIMESTAMP_SOURCE" class="hiddenlink" target="rightframe">SENSOR_INFO_TIMESTAMP_SOURCE</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.SENSOR_INFO_TIMESTAMP_SOURCE_REALTIME" class="hiddenlink" target="rightframe">SENSOR_INFO_TIMESTAMP_SOURCE_REALTIME</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.SENSOR_INFO_TIMESTAMP_SOURCE_UNKNOWN" class="hiddenlink" target="rightframe">SENSOR_INFO_TIMESTAMP_SOURCE_UNKNOWN</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CaptureResult.html#android.hardware.camera2.CaptureResult.SENSOR_NOISE_PROFILE" class="hiddenlink" target="rightframe">SENSOR_NOISE_PROFILE</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CaptureResult.html#android.hardware.camera2.CaptureResult.SENSOR_ROLLING_SHUTTER_SKEW" class="hiddenlink" target="rightframe">SENSOR_ROLLING_SHUTTER_SKEW</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.SensorManager.html#android.hardware.SensorManager.SENSOR_STATUS_NO_CONTACT" class="hiddenlink" target="rightframe">SENSOR_STATUS_NO_CONTACT</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.showText" class="hiddenlink" target="rightframe">showText</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.Secure.html#android.provider.Settings.Secure.SKIP_FIRST_USE_HINTS" class="hiddenlink" target="rightframe">SKIP_FIRST_USE_HINTS</A>
+</nobr><br>
+<nobr><A HREF="android.R.transition.html#android.R.transition.slide_bottom" class="hiddenlink" target="rightframe">slide_bottom</A>
+</nobr><br>
+<nobr><A HREF="android.R.transition.html#android.R.transition.slide_left" class="hiddenlink" target="rightframe">slide_left</A>
+</nobr><br>
+<nobr><A HREF="android.R.transition.html#android.R.transition.slide_right" class="hiddenlink" target="rightframe">slide_right</A>
+</nobr><br>
+<nobr><A HREF="android.R.transition.html#android.R.transition.slide_top" class="hiddenlink" target="rightframe">slide_top</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.splitNames" class="hiddenlink" target="rightframe">splitNames</A>
+</nobr><br>
+<i>splitPublicSourceDirs</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.splitPublicSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.ApplicationInfo</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.InstrumentationInfo.html#android.content.pm.InstrumentationInfo.splitPublicSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.InstrumentationInfo</A>
+</nobr><br>
+<i>splitSourceDirs</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.splitSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.ApplicationInfo</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.InstrumentationInfo.html#android.content.pm.InstrumentationInfo.splitSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.InstrumentationInfo</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.spotShadowAlpha" class="hiddenlink" target="rightframe">spotShadowAlpha</A>
+</nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.STATE_CONNECTING" class="hiddenlink" target="rightframe">STATE_CONNECTING</A>
+</nobr><br>
+<nobr><A HREF="android.view.Display.html#android.view.Display.STATE_DOZE" class="hiddenlink" target="rightframe">STATE_DOZE</A>
+</nobr><br>
+<nobr><A HREF="android.view.Display.html#android.view.Display.STATE_DOZE_SUSPEND" class="hiddenlink" target="rightframe">STATE_DOZE_SUSPEND</A>
+</nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.STATE_SKIPPING_TO_QUEUE_ITEM" class="hiddenlink" target="rightframe">STATE_SKIPPING_TO_QUEUE_ITEM</A>
+</nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.STATUS_BAR_BACKGROUND_TRANSITION_NAME" class="hiddenlink" target="rightframe">STATUS_BAR_BACKGROUND_TRANSITION_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.R.id.html#android.R.id.statusBarBackground" class="hiddenlink" target="rightframe">statusBarBackground</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.STOPPED" class="hiddenlink" target="rightframe">STOPPED</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeAlpha" class="hiddenlink" target="rightframe">strokeAlpha</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeColor" class="hiddenlink" target="rightframe">strokeColor</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeMiterLimit" class="hiddenlink" target="rightframe">strokeMiterLimit</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.submitBackground" class="hiddenlink" target="rightframe">submitBackground</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.suggestionRowLayout" class="hiddenlink" target="rightframe">suggestionRowLayout</A>
+</nobr><br>
+<nobr><A HREF="android.os.Build.html#android.os.Build.SUPPORTED_32_BIT_ABIS" class="hiddenlink" target="rightframe">SUPPORTED_32_BIT_ABIS</A>
+</nobr><br>
+<nobr><A HREF="android.os.Build.html#android.os.Build.SUPPORTED_64_BIT_ABIS" class="hiddenlink" target="rightframe">SUPPORTED_64_BIT_ABIS</A>
+</nobr><br>
+<nobr><A HREF="android.os.Build.html#android.os.Build.SUPPORTED_ABIS" class="hiddenlink" target="rightframe">SUPPORTED_ABIS</A>
+</nobr><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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.R.attr.html#android.R.attr.targetName" class="hiddenlink" target="rightframe">targetName</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RecentTaskInfo.html#android.app.ActivityManager.RecentTaskInfo.taskDescription" class="hiddenlink" target="rightframe">taskDescription</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.TELECOM_SERVICE" class="hiddenlink" target="rightframe">TELECOM_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Emphasis" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Emphasis</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Info" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Info</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Line2" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Line2</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Time" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Time</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_Toolbar_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_Toolbar_Subtitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_Toolbar_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_Toolbar_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_Alert" class="hiddenlink" target="rightframe">Theme_Material_Dialog_Alert</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_Presentation" class="hiddenlink" target="rightframe">Theme_Material_Dialog_Presentation</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_Alert" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_Alert</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_Presentation" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_Presentation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.thumbTint" class="hiddenlink" target="rightframe">thumbTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.thumbTintMode" class="hiddenlink" target="rightframe">thumbTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.tileModeX" class="hiddenlink" target="rightframe">tileModeX</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.tileModeY" class="hiddenlink" target="rightframe">tileModeY</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.timePickerDialogTheme" class="hiddenlink" target="rightframe">timePickerDialogTheme</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.timePickerMode" class="hiddenlink" target="rightframe">timePickerMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.timePickerStyle" class="hiddenlink" target="rightframe">timePickerStyle</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.GroupsColumns.html#android.provider.ContactsContract.GroupsColumns.TITLE_RES" class="hiddenlink" target="rightframe">TITLE_RES</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.toolbarStyle" class="hiddenlink" target="rightframe">toolbarStyle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.touchscreenBlocksFocus" class="hiddenlink" target="rightframe">touchscreenBlocksFocus</A>
+</nobr><br>
+<i>TRANSCRIPTION</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.TRANSCRIPTION" class="hiddenlink" target="rightframe">android.provider.CallLog.Calls</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.VoicemailContract.Voicemails.html#android.provider.VoicemailContract.Voicemails.TRANSCRIPTION" class="hiddenlink" target="rightframe">android.provider.VoicemailContract.Voicemails</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.transitionName" class="hiddenlink" target="rightframe">transitionName</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.transitionVisibilityMode" class="hiddenlink" target="rightframe">transitionVisibilityMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.translateX" class="hiddenlink" target="rightframe">translateX</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.translateY" class="hiddenlink" target="rightframe">translateY</A>
+</nobr><br>
+<nobr><A HREF="android.net.NetworkCapabilities.html#android.net.NetworkCapabilities.TRANSPORT_VPN" class="hiddenlink" target="rightframe">TRANSPORT_VPN</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_COMPONENT" class="hiddenlink" target="rightframe">TYPE_COMPONENT</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_COMPOSITE" class="hiddenlink" target="rightframe">TYPE_COMPOSITE</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_DISPLAY_PORT" class="hiddenlink" target="rightframe">TYPE_DISPLAY_PORT</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_DVI" class="hiddenlink" target="rightframe">TYPE_DVI</A>
+</nobr><br>
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.TYPE_INTEGER" class="hiddenlink" target="rightframe">TYPE_INTEGER</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_NTSC" class="hiddenlink" target="rightframe">TYPE_NTSC</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_OTHER" class="hiddenlink" target="rightframe">TYPE_OTHER</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_PAL" class="hiddenlink" target="rightframe">TYPE_PAL</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_SCART" class="hiddenlink" target="rightframe">TYPE_SCART</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_SECAM" class="hiddenlink" target="rightframe">TYPE_SECAM</A>
+</nobr><br>
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.TYPE_STRING" class="hiddenlink" target="rightframe">TYPE_STRING</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_SVIDEO" class="hiddenlink" target="rightframe">TYPE_SVIDEO</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_VGA" class="hiddenlink" target="rightframe">TYPE_VGA</A>
+</nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.TYPE_VPN" class="hiddenlink" target="rightframe">TYPE_VPN</A>
+</nobr><br>
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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">
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.UNICODE_LOCALE_EXTENSION" class="hiddenlink" target="rightframe">UNICODE_LOCALE_EXTENSION</A>
+</nobr><br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_1080I" class="hiddenlink" target="rightframe">VIDEO_FORMAT_1080I</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_1080P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_1080P</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_2160P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_2160P</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_240P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_240P</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_360P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_360P</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_4320P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_4320P</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_480I" class="hiddenlink" target="rightframe">VIDEO_FORMAT_480I</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_480P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_480P</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_576I" class="hiddenlink" target="rightframe">VIDEO_FORMAT_576I</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_576P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_576P</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_720P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_720P</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_ED" class="hiddenlink" target="rightframe">VIDEO_RESOLUTION_ED</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_FHD" class="hiddenlink" target="rightframe">VIDEO_RESOLUTION_FHD</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_HD" class="hiddenlink" target="rightframe">VIDEO_RESOLUTION_HD</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_SD" class="hiddenlink" target="rightframe">VIDEO_RESOLUTION_SD</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_UHD" class="hiddenlink" target="rightframe">VIDEO_RESOLUTION_UHD</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.VIDEO_UNAVAILABLE_REASON_BUFFERING" class="hiddenlink" target="rightframe">VIDEO_UNAVAILABLE_REASON_BUFFERING</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.VIDEO_UNAVAILABLE_REASON_TUNING" class="hiddenlink" target="rightframe">VIDEO_UNAVAILABLE_REASON_TUNING</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.VIDEO_UNAVAILABLE_REASON_UNKNOWN" class="hiddenlink" target="rightframe">VIDEO_UNAVAILABLE_REASON_UNKNOWN</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.VIDEO_UNAVAILABLE_REASON_WEAK_SIGNAL" class="hiddenlink" target="rightframe">VIDEO_UNAVAILABLE_REASON_WEAK_SIGNAL</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.display.DisplayManager.html#android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR" class="hiddenlink" target="rightframe">VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR</A>
+</nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_AUTO" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_AUTO</A>
+</nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_BINAURAL" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_BINAURAL</A>
+</nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_OFF" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_OFF</A>
+</nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_TRANSAURAL" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_TRANSAURAL</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.voiceIcon" class="hiddenlink" target="rightframe">voiceIcon</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaRecorder.AudioEncoder.html#android.media.MediaRecorder.AudioEncoder.VORBIS" class="hiddenlink" target="rightframe">VORBIS</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaRecorder.VideoEncoder.html#android.media.MediaRecorder.VideoEncoder.VP8" class="hiddenlink" target="rightframe">VP8</A>
+</nobr><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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.media.MediaRecorder.OutputFormat.html#android.media.MediaRecorder.OutputFormat.WEBM" class="hiddenlink" target="rightframe">WEBM</A>
+</nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX" class="hiddenlink" target="rightframe">WIDGET_CATEGORY_SEARCHBOX</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Borderless_Colored" class="hiddenlink" target="rightframe">Widget_Material_Button_Borderless_Colored</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Borderless_Colored" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Borderless_Colored</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_DatePicker" class="hiddenlink" target="rightframe">Widget_Material_Light_DatePicker</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_SearchView" class="hiddenlink" target="rightframe">Widget_Material_Light_SearchView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Spinner_Underlined" class="hiddenlink" target="rightframe">Widget_Material_Light_Spinner_Underlined</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TimePicker" class="hiddenlink" target="rightframe">Widget_Material_Light_TimePicker</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_SearchView" class="hiddenlink" target="rightframe">Widget_Material_SearchView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Spinner_Underlined" class="hiddenlink" target="rightframe">Widget_Material_Spinner_Underlined</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TimePicker" class="hiddenlink" target="rightframe">Widget_Material_TimePicker</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowActivityTransitions" class="hiddenlink" target="rightframe">windowActivityTransitions</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowAllowReturnTransitionOverlap" class="hiddenlink" target="rightframe">windowAllowReturnTransitionOverlap</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowClipToOutline" class="hiddenlink" target="rightframe">windowClipToOutline</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowElevation" class="hiddenlink" target="rightframe">windowElevation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowReenterTransition" class="hiddenlink" target="rightframe">windowReenterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowReturnTransition" class="hiddenlink" target="rightframe">windowReturnTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementReenterTransition" class="hiddenlink" target="rightframe">windowSharedElementReenterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementReturnTransition" class="hiddenlink" target="rightframe">windowSharedElementReturnTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementsUseOverlay" class="hiddenlink" target="rightframe">windowSharedElementsUseOverlay</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowTransitionBackgroundFadeDuration" class="hiddenlink" target="rightframe">windowTransitionBackgroundFadeDuration</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_AUTH_FAILURE" class="hiddenlink" target="rightframe">WPS_AUTH_FAILURE</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_OVERLAP_ERROR" class="hiddenlink" target="rightframe">WPS_OVERLAP_ERROR</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_TIMED_OUT" class="hiddenlink" target="rightframe">WPS_TIMED_OUT</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_TKIP_ONLY_PROHIBITED" class="hiddenlink" target="rightframe">WPS_TKIP_ONLY_PROHIBITED</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_WEP_PROHIBITED" class="hiddenlink" target="rightframe">WPS_WEP_PROHIBITED</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.WRITE_VOICEMAIL" class="hiddenlink" target="rightframe">WRITE_VOICEMAIL</A>
+</nobr><br>
+<A NAME="Y"></A>
+<br><font size="+2">Y</font>&nbsp;
+<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.R.attr.html#android.R.attr.yearListItemTextAppearance" class="hiddenlink" target="rightframe">yearListItemTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.yearListSelectorColor" class="hiddenlink" target="rightframe">yearListSelectorColor</A>
+</nobr><br>
+<script src="//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/preview-21/changes/fields_index_all.html b/docs/html/sdk/api_diff/preview-21/changes/fields_index_all.html
new file mode 100644
index 0000000..f176bd4
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/fields_index_all.html
@@ -0,0 +1,3168 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<A HREF="fields_index_removals.html" xclass="hiddenlink">Removals</A>
+  <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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.ACCOUNT_NAME" class="hiddenlink" target="rightframe">ACCOUNT_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.ACCOUNT_TYPE" class="hiddenlink" target="rightframe">ACCOUNT_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.RawContactsColumns.html#android.provider.ContactsContract.RawContactsColumns.ACCOUNT_TYPE_AND_DATA_SET" class="hiddenlink" target="rightframe">ACCOUNT_TYPE_AND_DATA_SET</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.ACTION_BLOCKED_RATINGS_CHANGED" class="hiddenlink" target="rightframe">ACTION_BLOCKED_RATINGS_CHANGED</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_CAST_SETTINGS" class="hiddenlink" target="rightframe">ACTION_CAST_SETTINGS</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ACTION_HDMI_AUDIO_PLUG" class="hiddenlink" target="rightframe">ACTION_HDMI_AUDIO_PLUG</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ACTION_HEADSET_PLUG" class="hiddenlink" target="rightframe">ACTION_HEADSET_PLUG</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_HOME_SETTINGS" class="hiddenlink" target="rightframe">ACTION_HOME_SETTINGS</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.ACTION_LOCK_TASK_ENTERING" class="hiddenlink" target="rightframe">ACTION_LOCK_TASK_ENTERING</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.ACTION_LOCK_TASK_EXITING" class="hiddenlink" target="rightframe">ACTION_LOCK_TASK_EXITING</A>
+</nobr><br>
+<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.ACTION_NEXT_ALARM_CLOCK_CHANGED" class="hiddenlink" target="rightframe">ACTION_NEXT_ALARM_CLOCK_CHANGED</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.ACTION_PARENTAL_CONTROLS_ENABLED_CHANGED" class="hiddenlink" target="rightframe">ACTION_PARENTAL_CONTROLS_ENABLED_CHANGED</A>
+</nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.ACTION_PLAY_FROM_MEDIA_ID" class="hiddenlink" target="rightframe">ACTION_PLAY_FROM_MEDIA_ID</A>
+</nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.ACTION_PLAY_FROM_SEARCH" class="hiddenlink" target="rightframe">ACTION_PLAY_FROM_SEARCH</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.ACTION_PROFILE_PROVISIONING_COMPLETE" class="hiddenlink" target="rightframe">ACTION_PROFILE_PROVISIONING_COMPLETE</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.ACTION_PROVISION_MANAGED_PROFILE" class="hiddenlink" target="rightframe">ACTION_PROVISION_MANAGED_PROFILE</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.ACTION_QUERY_CONTENT_RATING_SYSTEMS" class="hiddenlink" target="rightframe">ACTION_QUERY_CONTENT_RATING_SYSTEMS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.QuickContact.html#android.provider.ContactsContract.QuickContact.ACTION_QUICK_CONTACT" class="hiddenlink" target="rightframe">ACTION_QUICK_CONTACT</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_SHOW_REGULATORY_INFO" class="hiddenlink" target="rightframe">ACTION_SHOW_REGULATORY_INFO</A>
+</nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.ACTION_SKIP_TO_QUEUE_ITEM" class="hiddenlink" target="rightframe">ACTION_SKIP_TO_QUEUE_ITEM</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_USAGE_ACCESS_SETTINGS" class="hiddenlink" target="rightframe">ACTION_USAGE_ACCESS_SETTINGS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_VOICE_INPUT_SETTINGS" class="hiddenlink" target="rightframe">ACTION_VOICE_INPUT_SETTINGS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionBarPopupTheme" class="hiddenlink" target="rightframe">actionBarPopupTheme</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionBarTheme" class="hiddenlink" target="rightframe">actionBarTheme</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionModeFindDrawable" class="hiddenlink" target="rightframe">actionModeFindDrawable</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionModeShareDrawable" class="hiddenlink" target="rightframe">actionModeShareDrawable</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionModeWebSearchDrawable" class="hiddenlink" target="rightframe">actionModeWebSearchDrawable</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionOverflowMenuStyle" class="hiddenlink" target="rightframe">actionOverflowMenuStyle</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_CONTROLLER_FAILURE" class="hiddenlink" target="rightframe"><strike>ADVERTISE_FAILED_CONTROLLER_FAILURE</strike></A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_DATA_TOO_LARGE" class="hiddenlink" target="rightframe">ADVERTISE_FAILED_DATA_TOO_LARGE</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_FEATURE_UNSUPPORTED" class="hiddenlink" target="rightframe">ADVERTISE_FAILED_FEATURE_UNSUPPORTED</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_INTERNAL_ERROR" class="hiddenlink" target="rightframe">ADVERTISE_FAILED_INTERNAL_ERROR</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_NOT_STARTED" class="hiddenlink" target="rightframe"><strike>ADVERTISE_FAILED_NOT_STARTED</strike></A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_SERVICE_UNKNOWN" class="hiddenlink" target="rightframe"><strike>ADVERTISE_FAILED_SERVICE_UNKNOWN</strike></A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html#android.bluetooth.le.AdvertiseSettings.ADVERTISE_TYPE_CONNECTABLE" class="hiddenlink" target="rightframe"><strike>ADVERTISE_TYPE_CONNECTABLE</strike></A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html#android.bluetooth.le.AdvertiseSettings.ADVERTISE_TYPE_NON_CONNECTABLE" class="hiddenlink" target="rightframe"><strike>ADVERTISE_TYPE_NON_CONNECTABLE</strike></A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html#android.bluetooth.le.AdvertiseSettings.ADVERTISE_TYPE_SCANNABLE" class="hiddenlink" target="rightframe"><strike>ADVERTISE_TYPE_SCANNABLE</strike></A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RecentTaskInfo.html#android.app.ActivityManager.RecentTaskInfo.affiliatedTaskId" class="hiddenlink" target="rightframe">affiliatedTaskId</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.ALL_CODECS" class="hiddenlink" target="rightframe">ALL_CODECS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.ambientShadowAlpha" class="hiddenlink" target="rightframe">ambientShadowAlpha</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.amPmBackgroundColor" class="hiddenlink" target="rightframe">amPmBackgroundColor</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.amPmTextColor" class="hiddenlink" target="rightframe">amPmTextColor</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.ANIMAL_WILDLIFE" class="hiddenlink" target="rightframe">ANIMAL_WILDLIFE</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.APPWIDGET_SERVICE" class="hiddenlink" target="rightframe">APPWIDGET_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Telephony.ThreadsColumns.html#android.provider.Telephony.ThreadsColumns.ARCHIVED" class="hiddenlink" target="rightframe">ARCHIVED</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.AUDIO_ATTRIBUTES_DEFAULT" class="hiddenlink" target="rightframe">AUDIO_ATTRIBUTES_DEFAULT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.AUDIO_SESSION_ID_GENERATE" class="hiddenlink" target="rightframe">AUDIO_SESSION_ID_GENERATE</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.audioAttributes" class="hiddenlink" target="rightframe">audioAttributes</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.audioStreamType" class="hiddenlink" target="rightframe">audioStreamType</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.autoRemoveFromRecents" class="hiddenlink" target="rightframe">autoRemoveFromRecents</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html#android.media.MediaCodecInfo.CodecProfileLevel.AVCLevel52" class="hiddenlink" target="rightframe">AVCLevel52</A>
+</nobr><br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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.R.attr.html#android.R.attr.backgroundTint" class="hiddenlink" target="rightframe">backgroundTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.backgroundTintMode" class="hiddenlink" target="rightframe">backgroundTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.BACKOFF_POLICY_EXPONENTIAL" class="hiddenlink" target="rightframe">BACKOFF_POLICY_EXPONENTIAL</A>
+</nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.BACKOFF_POLICY_LINEAR" class="hiddenlink" target="rightframe">BACKOFF_POLICY_LINEAR</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.BIND_DREAM_SERVICE" class="hiddenlink" target="rightframe">BIND_DREAM_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WpsInfo.html#android.net.wifi.WpsInfo.BSSID" class="hiddenlink" target="rightframe">BSSID</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.BUFFER_FLAG_KEY_FRAME" class="hiddenlink" target="rightframe">BUFFER_FLAG_KEY_FRAME</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.BUFFER_FLAG_SYNC_FRAME" class="hiddenlink" target="rightframe">BUFFER_FLAG_SYNC_FRAME</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonBarNegativeButtonStyle" class="hiddenlink" target="rightframe">buttonBarNegativeButtonStyle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonBarNeutralButtonStyle" class="hiddenlink" target="rightframe">buttonBarNeutralButtonStyle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonBarPositiveButtonStyle" class="hiddenlink" target="rightframe">buttonBarPositiveButtonStyle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonTint" class="hiddenlink" target="rightframe">buttonTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.buttonTintMode" class="hiddenlink" target="rightframe">buttonTintMode</A>
+</nobr><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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.R.attr.html#android.R.attr.calendarTextColor" class="hiddenlink" target="rightframe">calendarTextColor</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanSettings.html#android.bluetooth.le.ScanSettings.CALLBACK_TYPE_ALL_MATCHES" class="hiddenlink" target="rightframe">CALLBACK_TYPE_ALL_MATCHES</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanSettings.html#android.bluetooth.le.ScanSettings.CALLBACK_TYPE_ON_UPDATE" class="hiddenlink" target="rightframe"><strike>CALLBACK_TYPE_ON_UPDATE</strike></A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.CATEGORY_VOICE" class="hiddenlink" target="rightframe"><strike>CATEGORY_VOICE</strike></A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_SIDE_LEFT" class="hiddenlink" target="rightframe">CHANNEL_OUT_SIDE_LEFT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_SIDE_RIGHT" class="hiddenlink" target="rightframe">CHANNEL_OUT_SIDE_RIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.checkMarkTint" class="hiddenlink" target="rightframe">checkMarkTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.checkMarkTintMode" class="hiddenlink" target="rightframe">checkMarkTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.clipToPath" class="hiddenlink" target="rightframe"><strike>clipToPath</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.closeIcon" class="hiddenlink" target="rightframe">closeIcon</A>
+</nobr><br>
+<i>COLOR_CORRECTION_ABERRATION_MODE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.hardware.camera2.CaptureRequest.html#android.hardware.camera2.CaptureRequest.COLOR_CORRECTION_ABERRATION_MODE" class="hiddenlink" target="rightframe">android.hardware.camera2.CaptureRequest</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.hardware.camera2.CaptureResult.html#android.hardware.camera2.CaptureResult.COLOR_CORRECTION_ABERRATION_MODE" class="hiddenlink" target="rightframe">android.hardware.camera2.CaptureResult</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.COLOR_CORRECTION_ABERRATION_MODE_FAST" class="hiddenlink" target="rightframe">COLOR_CORRECTION_ABERRATION_MODE_FAST</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.COLOR_CORRECTION_ABERRATION_MODE_HIGH_QUALITY" class="hiddenlink" target="rightframe">COLOR_CORRECTION_ABERRATION_MODE_HIGH_QUALITY</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.COLOR_CORRECTION_ABERRATION_MODE_OFF" class="hiddenlink" target="rightframe">COLOR_CORRECTION_ABERRATION_MODE_OFF</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraCharacteristics.html#android.hardware.camera2.CameraCharacteristics.COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES" class="hiddenlink" target="rightframe">COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.COLOR_FormatYUV420Flexible" class="hiddenlink" target="rightframe">COLOR_FormatYUV420Flexible</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorAccent" class="hiddenlink" target="rightframe">colorAccent</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorButtonNormal" class="hiddenlink" target="rightframe">colorButtonNormal</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorControlActivated" class="hiddenlink" target="rightframe">colorControlActivated</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorControlHighlight" class="hiddenlink" target="rightframe">colorControlHighlight</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorControlNormal" class="hiddenlink" target="rightframe">colorControlNormal</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorEdgeEffect" class="hiddenlink" target="rightframe">colorEdgeEffect</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorPrimary" class="hiddenlink" target="rightframe">colorPrimary</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorPrimaryDark" class="hiddenlink" target="rightframe">colorPrimaryDark</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.COLUMN_BROWSABLE" class="hiddenlink" target="rightframe"><strike>COLUMN_BROWSABLE</strike></A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.html#android.media.tv.TvContract.Programs.COLUMN_CONTENT_RATING" class="hiddenlink" target="rightframe">COLUMN_CONTENT_RATING</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.html#android.media.tv.TvContract.Programs.COLUMN_EPISODE_NUMBER" class="hiddenlink" target="rightframe">COLUMN_EPISODE_NUMBER</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.html#android.media.tv.TvContract.Programs.COLUMN_EPISODE_TITLE" class="hiddenlink" target="rightframe">COLUMN_EPISODE_TITLE</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.COLUMN_INPUT_ID" class="hiddenlink" target="rightframe">COLUMN_INPUT_ID</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.COLUMN_NETWORK_AFFILIATION" class="hiddenlink" target="rightframe">COLUMN_NETWORK_AFFILIATION</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.html#android.media.tv.TvContract.Programs.COLUMN_SEASON_NUMBER" class="hiddenlink" target="rightframe">COLUMN_SEASON_NUMBER</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.COLUMN_SERVICE_NAME" class="hiddenlink" target="rightframe"><strike>COLUMN_SERVICE_NAME</strike></A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.COLUMN_VIDEO_FORMAT" class="hiddenlink" target="rightframe">COLUMN_VIDEO_FORMAT</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.html#android.media.tv.TvContract.Programs.COLUMN_VIDEO_HEIGHT" class="hiddenlink" target="rightframe">COLUMN_VIDEO_HEIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.html#android.media.tv.TvContract.Programs.COLUMN_VIDEO_WIDTH" class="hiddenlink" target="rightframe">COLUMN_VIDEO_WIDTH</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.COMEDY" class="hiddenlink" target="rightframe">COMEDY</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.COMMENTS" class="hiddenlink" target="rightframe">COMMENTS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.commitIcon" class="hiddenlink" target="rightframe">commitIcon</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_BALANCED" class="hiddenlink" target="rightframe">CONNECTION_PRIORITY_BALANCED</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_HIGH" class="hiddenlink" target="rightframe">CONNECTION_PRIORITY_HIGH</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_LOW_POWER" class="hiddenlink" target="rightframe">CONNECTION_PRIORITY_LOW_POWER</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.CONTACT_ID" class="hiddenlink" target="rightframe">CONTACT_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.CONTACT_LOOKUP_KEY" class="hiddenlink" target="rightframe">CONTACT_LOOKUP_KEY</A>
+</nobr><br>
+<i>CONTENT_DIRECTORY</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.StreamItems.html#android.provider.ContactsContract.Contacts.StreamItems.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts.StreamItems</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.RawContacts.StreamItems.html#android.provider.ContactsContract.RawContacts.StreamItems.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.ContactsContract.RawContacts.StreamItems</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html#android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems.StreamItemPhotos</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.CONTENT_FREQUENT_URI" class="hiddenlink" target="rightframe">CONTENT_FREQUENT_URI</A>
+</nobr><br>
+<i>CONTENT_ITEM_TYPE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html#android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems.StreamItemPhotos</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_LIMIT_URI" class="hiddenlink" target="rightframe">CONTENT_LIMIT_URI</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_PHOTO_URI" class="hiddenlink" target="rightframe">CONTENT_PHOTO_URI</A>
+</nobr><br>
+<i>CONTENT_TYPE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html#android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems.StreamItemPhotos</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_URI" class="hiddenlink" target="rightframe">CONTENT_URI</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentAgeHint" class="hiddenlink" target="rightframe">contentAgeHint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetEnd" class="hiddenlink" target="rightframe">contentInsetEnd</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetLeft" class="hiddenlink" target="rightframe">contentInsetLeft</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetRight" class="hiddenlink" target="rightframe">contentInsetRight</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetStart" class="hiddenlink" target="rightframe">contentInsetStart</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.CONTROL_SCENE_MODE_HIGH_SPEED_VIDEO" class="hiddenlink" target="rightframe">CONTROL_SCENE_MODE_HIGH_SPEED_VIDEO</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlX1" class="hiddenlink" target="rightframe">controlX1</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlX2" class="hiddenlink" target="rightframe">controlX2</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlY1" class="hiddenlink" target="rightframe">controlY1</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlY2" class="hiddenlink" target="rightframe">controlY2</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.country" class="hiddenlink" target="rightframe">country</A>
+</nobr><br>
+<nobr><A HREF="android.os.Build.html#android.os.Build.CPU_ABI" class="hiddenlink" target="rightframe">CPU_ABI</A>
+</nobr><br>
+<nobr><A HREF="android.os.Build.html#android.os.Build.CPU_ABI2" class="hiddenlink" target="rightframe">CPU_ABI2</A>
+</nobr><br>
+<i>CREATOR</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.CREATOR" class="hiddenlink" target="rightframe">android.media.tv.TvInputInfo</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.net.LinkAddress.html#android.net.LinkAddress.CREATOR" class="hiddenlink" target="rightframe">android.net.LinkAddress</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.net.ProxyInfo.html#android.net.ProxyInfo.CREATOR" class="hiddenlink" target="rightframe">android.net.ProxyInfo</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.Telephony.BaseMmsColumns.html#android.provider.Telephony.BaseMmsColumns.CREATOR" class="hiddenlink" target="rightframe">android.provider.Telephony.BaseMmsColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.Telephony.TextBasedSmsColumns.html#android.provider.Telephony.TextBasedSmsColumns.CREATOR" class="hiddenlink" target="rightframe">android.provider.Telephony.TextBasedSmsColumns</A>
+</nobr><br>
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.CURSOR_ANCHOR_MONITOR_MODE_CURSOR_RECT" class="hiddenlink" target="rightframe"><strike>CURSOR_ANCHOR_MONITOR_MODE_CURSOR_RECT</strike></A>
+</nobr><br>
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.CURSOR_ANCHOR_MONITOR_MODE_NONE" class="hiddenlink" target="rightframe"><strike>CURSOR_ANCHOR_MONITOR_MODE_NONE</strike></A>
+</nobr><br>
+<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.CURSOR_UPDATE_IMMEDIATE" class="hiddenlink" target="rightframe">CURSOR_UPDATE_IMMEDIATE</A>
+</nobr><br>
+<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.CURSOR_UPDATE_MONITOR" class="hiddenlink" target="rightframe">CURSOR_UPDATE_MONITOR</A>
+</nobr><br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.DATA_SET" class="hiddenlink" target="rightframe">DATA_SET</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.DATA_USAGE" class="hiddenlink" target="rightframe">DATA_USAGE</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.datePickerDialogTheme" class="hiddenlink" target="rightframe">datePickerDialogTheme</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.datePickerMode" class="hiddenlink" target="rightframe">datePickerMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.dayOfWeekBackground" class="hiddenlink" target="rightframe">dayOfWeekBackground</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.dayOfWeekTextAppearance" class="hiddenlink" target="rightframe">dayOfWeekTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.DEFAULT_INITIAL_BACKOFF_MILLIS" class="hiddenlink" target="rightframe">DEFAULT_INITIAL_BACKOFF_MILLIS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.html#android.provider.ContactsContract.DEFERRED_SNIPPETING" class="hiddenlink" target="rightframe">DEFERRED_SNIPPETING</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.html#android.provider.ContactsContract.DEFERRED_SNIPPETING_QUERY" class="hiddenlink" target="rightframe">DEFERRED_SNIPPETING_QUERY</A>
+</nobr><br>
+<nobr><A HREF="android.util.DisplayMetrics.html#android.util.DisplayMetrics.DENSITY_560" class="hiddenlink" target="rightframe">DENSITY_560</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_APPS_CONTROL" class="hiddenlink" target="rightframe">DISALLOW_APPS_CONTROL</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CONFIG_APPS" class="hiddenlink" target="rightframe"><strike>DISALLOW_CONFIG_APPS</strike></A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CREATE_WINDOWS" class="hiddenlink" target="rightframe">DISALLOW_CREATE_WINDOWS</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_CROSS_PROFILE_COPY_PASTE" class="hiddenlink" target="rightframe">DISALLOW_CROSS_PROFILE_COPY_PASTE</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_OUTGOING_CALLS" class="hiddenlink" target="rightframe">DISALLOW_OUTGOING_CALLS</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_SMS" class="hiddenlink" target="rightframe">DISALLOW_SMS</A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_TELEPHONY" class="hiddenlink" target="rightframe"><strike>DISALLOW_TELEPHONY</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.documentLaunchMode" class="hiddenlink" target="rightframe">documentLaunchMode</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.DRAMA" class="hiddenlink" target="rightframe">DRAMA</A>
+</nobr><br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.EDUCATION" class="hiddenlink" target="rightframe">EDUCATION</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.elegantTextHeight" class="hiddenlink" target="rightframe">elegantTextHeight</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.elevation" class="hiddenlink" target="rightframe">elevation</A>
+</nobr><br>
+<nobr><A HREF="android.app.UiModeManager.html#android.app.UiModeManager.ENABLE_CAR_MODE_ALLOW_SLEEP" class="hiddenlink" target="rightframe">ENABLE_CAR_MODE_ALLOW_SLEEP</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ENCODING_AC3" class="hiddenlink" target="rightframe">ENCODING_AC3</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.ENCODING_E_AC3" class="hiddenlink" target="rightframe">ENCODING_E_AC3</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.PhoneLookup.html#android.provider.ContactsContract.PhoneLookup.ENTERPRISE_CONTENT_FILTER_URI" class="hiddenlink" target="rightframe">ENTERPRISE_CONTENT_FILTER_URI</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ERROR" class="hiddenlink" target="rightframe">ERROR</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.ERROR_BUSY" class="hiddenlink" target="rightframe"><strike>ERROR_BUSY</strike></A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ERROR_DEAD_OBJECT" class="hiddenlink" target="rightframe">ERROR_DEAD_OBJECT</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodec.CryptoException.html#android.media.MediaCodec.CryptoException.ERROR_INSUFFICIENT_OUTPUT_PROTECTION" class="hiddenlink" target="rightframe">ERROR_INSUFFICIENT_OUTPUT_PROTECTION</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_INVALID_REQUEST" class="hiddenlink" target="rightframe">ERROR_INVALID_REQUEST</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_NETWORK" class="hiddenlink" target="rightframe">ERROR_NETWORK</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_NETWORK_TIMEOUT" class="hiddenlink" target="rightframe">ERROR_NETWORK_TIMEOUT</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_NOT_INSTALLED_YET" class="hiddenlink" target="rightframe">ERROR_NOT_INSTALLED_YET</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_OUTPUT" class="hiddenlink" target="rightframe">ERROR_OUTPUT</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_SERVICE" class="hiddenlink" target="rightframe">ERROR_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.ERROR_SYNTHESIS" class="hiddenlink" target="rightframe">ERROR_SYNTHESIS</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.ERROR_TV_INPUT_DISCONNECTED" class="hiddenlink" target="rightframe"><strike>ERROR_TV_INPUT_DISCONNECTED</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeClass" class="hiddenlink" target="rightframe">excludeClass</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeId" class="hiddenlink" target="rightframe">excludeId</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeName" class="hiddenlink" target="rightframe">excludeName</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeViewName" class="hiddenlink" target="rightframe"><strike>excludeViewName</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.transition.html#android.R.transition.explode" class="hiddenlink" target="rightframe">explode</A>
+</nobr><br>
+<i>EXTRA_ADDRESS_BOOK_INDEX</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Callable.html#android.provider.ContactsContract.CommonDataKinds.Callable.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Callable</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html#android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Contactables</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html#android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Email</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Event</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html#android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.GroupMembership</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html#android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Identity</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html#android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Im</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html#android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Nickname</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html#android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Note</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html#android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Organization</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html#android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Phone</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html#android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Photo</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html#android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Relation</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html#android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.SipAddress</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredName</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html#android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html#android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Website</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Data.html#android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Data</A>
+</nobr><br>
+<i>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Callable.html#android.provider.ContactsContract.CommonDataKinds.Callable.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Callable</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html#android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Contactables</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html#android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Email</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Event</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html#android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.GroupMembership</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html#android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Identity</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html#android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Im</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html#android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Nickname</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html#android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Note</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html#android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Organization</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html#android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Phone</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html#android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Photo</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html#android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Relation</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html#android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.SipAddress</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredName</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html#android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html#android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Website</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Data.html#android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX_COUNTS" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Data</A>
+</nobr><br>
+<i>EXTRA_ADDRESS_BOOK_INDEX_TITLES</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Callable.html#android.provider.ContactsContract.CommonDataKinds.Callable.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Callable</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html#android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Contactables</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html#android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Email</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Event</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html#android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.GroupMembership</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html#android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Identity</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html#android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Im</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html#android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Nickname</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html#android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Note</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html#android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Organization</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html#android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Phone</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html#android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Photo</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html#android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Relation</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html#android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.SipAddress</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html#android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredName</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html#android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html#android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.CommonDataKinds.Website</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Data.html#android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX_TITLES" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Data</A>
+</nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE" class="hiddenlink" target="rightframe">EXTRA_APPWIDGET_PROVIDER_PROFILE</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD" class="hiddenlink" target="rightframe">EXTRA_ASSIST_INPUT_HINT_KEYBOARD</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.EXTRA_AUDIO_PLUG_STATE" class="hiddenlink" target="rightframe">EXTRA_AUDIO_PLUG_STATE</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_BIG_TEXT" class="hiddenlink" target="rightframe">EXTRA_BIG_TEXT</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.EXTRA_CALL_TYPE_FILTER" class="hiddenlink" target="rightframe">EXTRA_CALL_TYPE_FILTER</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.EXTRA_COMPACT_ACTIONS" class="hiddenlink" target="rightframe">EXTRA_COMPACT_ACTIONS</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.EXTRA_ENCODINGS" class="hiddenlink" target="rightframe">EXTRA_ENCODINGS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.QuickContact.html#android.provider.ContactsContract.QuickContact.EXTRA_EXCLUDE_MIMES" class="hiddenlink" target="rightframe">EXTRA_EXCLUDE_MIMES</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.EXTRA_INPUT_ID" class="hiddenlink" target="rightframe">EXTRA_INPUT_ID</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.EXTRA_LOCK_TASK_PACKAGE" class="hiddenlink" target="rightframe">EXTRA_LOCK_TASK_PACKAGE</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.EXTRA_MAX_CHANNEL_COUNT" class="hiddenlink" target="rightframe">EXTRA_MAX_CHANNEL_COUNT</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.EXTRA_MMS_DATA" class="hiddenlink" target="rightframe">EXTRA_MMS_DATA</A>
+</nobr><br>
+<nobr><A HREF="android.printservice.PrintService.html#android.printservice.PrintService.EXTRA_PRINTER_INFO" class="hiddenlink" target="rightframe">EXTRA_PRINTER_INFO</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEFAULT_MANAGED_PROFILE_NAME" class="hiddenlink" target="rightframe"><strike>EXTRA_PROVISIONING_DEFAULT_MANAGED_PROFILE_NAME</strike></A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_EMAIL_ADDRESS" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_EMAIL_ADDRESS</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_LOCAL_TIME" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_LOCAL_TIME</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_LOCALE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_LOCALE</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_TIME_ZONE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_TIME_ZONE</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_HIDDEN" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_HIDDEN</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PAC_URL" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PAC_URL</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PASSWORD" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PASSWORD</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_BYPASS" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PROXY_BYPASS</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_HOST" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PROXY_HOST</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_PORT" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_PROXY_PORT</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_SECURITY_TYPE" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_SECURITY_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_SSID" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_WIFI_SSID</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_REPLACEMENT_EXTRAS" class="hiddenlink" target="rightframe">EXTRA_REPLACEMENT_EXTRAS</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.EXTRA_SERVICE_NAME" class="hiddenlink" target="rightframe"><strike>EXTRA_SERVICE_NAME</strike></A>
+</nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.EXTRA_SIZE" class="hiddenlink" target="rightframe">EXTRA_SIZE</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_USER" class="hiddenlink" target="rightframe">EXTRA_USER</A>
+</nobr><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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.transition.html#android.R.transition.fade" class="hiddenlink" target="rightframe">fade</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.FAMILY_KIDS" class="hiddenlink" target="rightframe">FAMILY_KIDS</A>
+</nobr><br>
+<nobr><A HREF="android.R.interpolator.html#android.R.interpolator.fast_out_linear_in" class="hiddenlink" target="rightframe">fast_out_linear_in</A>
+</nobr><br>
+<nobr><A HREF="android.R.interpolator.html#android.R.interpolator.fast_out_slow_in" class="hiddenlink" target="rightframe">fast_out_slow_in</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fastScrollStyle" class="hiddenlink" target="rightframe">fastScrollStyle</A>
+</nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.FEATURE_ACTIVITY_TRANSITIONS" class="hiddenlink" target="rightframe">FEATURE_ACTIVITY_TRANSITIONS</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_AUDIO_OUTPUT" class="hiddenlink" target="rightframe">FEATURE_AUDIO_OUTPUT</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING" class="hiddenlink" target="rightframe">FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR" class="hiddenlink" target="rightframe">FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_RAW" class="hiddenlink" target="rightframe">FEATURE_CAMERA_CAPABILITY_RAW</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CAMERA_LEVEL_FULL" class="hiddenlink" target="rightframe">FEATURE_CAMERA_LEVEL_FULL</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_CONNECTION_SERVICE" class="hiddenlink" target="rightframe">FEATURE_CONNECTION_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_GAMEPAD" class="hiddenlink" target="rightframe">FEATURE_GAMEPAD</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_LIVE_TV" class="hiddenlink" target="rightframe">FEATURE_LIVE_TV</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_MANAGED_PROFILES" class="hiddenlink" target="rightframe"><strike>FEATURE_MANAGED_PROFILES</strike></A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_MANAGED_USERS" class="hiddenlink" target="rightframe">FEATURE_MANAGED_USERS</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_OPENGLES_EXTENSION_PACK" class="hiddenlink" target="rightframe">FEATURE_OPENGLES_EXTENSION_PACK</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SECURELY_REMOVES_USERS" class="hiddenlink" target="rightframe">FEATURE_SECURELY_REMOVES_USERS</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.FEATURE_SecurePlayback" class="hiddenlink" target="rightframe">FEATURE_SecurePlayback</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SENSOR_AMBIENT_TEMPERATURE" class="hiddenlink" target="rightframe">FEATURE_SENSOR_AMBIENT_TEMPERATURE</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SENSOR_HEART_RATE_ECG" class="hiddenlink" target="rightframe">FEATURE_SENSOR_HEART_RATE_ECG</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_SENSOR_RELATIVE_HUMIDITY" class="hiddenlink" target="rightframe">FEATURE_SENSOR_RELATIVE_HUMIDITY</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.FEATURE_TunneledPlayback" class="hiddenlink" target="rightframe">FEATURE_TunneledPlayback</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_VERIFIED_BOOT" class="hiddenlink" target="rightframe">FEATURE_VERIFIED_BOOT</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.featureGroups" class="hiddenlink" target="rightframe">featureGroups</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.FEATURES" class="hiddenlink" target="rightframe">FEATURES</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.FEATURES_VIDEO" class="hiddenlink" target="rightframe">FEATURES_VIDEO</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fill" class="hiddenlink" target="rightframe"><strike>fill</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fillAlpha" class="hiddenlink" target="rightframe">fillAlpha</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fillColor" class="hiddenlink" target="rightframe">fillColor</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fillOpacity" class="hiddenlink" target="rightframe"><strike>fillOpacity</strike></A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_ACTIVITY_AUTO_REMOVE_FROM_RECENTS" class="hiddenlink" target="rightframe"><strike>FLAG_ACTIVITY_AUTO_REMOVE_FROM_RECENTS</strike></A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS" class="hiddenlink" target="rightframe">FLAG_ACTIVITY_RETAIN_IN_RECENTS</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.FLAG_FULL_BACKUP_ONLY" class="hiddenlink" target="rightframe">FLAG_FULL_BACKUP_ONLY</A>
+</nobr><br>
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.FLAG_HAS_INVISIBLE_REGION" class="hiddenlink" target="rightframe">FLAG_HAS_INVISIBLE_REGION</A>
+</nobr><br>
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.FLAG_HAS_VISIBLE_REGION" class="hiddenlink" target="rightframe">FLAG_HAS_VISIBLE_REGION</A>
+</nobr><br>
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.FLAG_IS_RTL" class="hiddenlink" target="rightframe">FLAG_IS_RTL</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.FLAG_MANAGED_CAN_ACCESS_PARENT" class="hiddenlink" target="rightframe">FLAG_MANAGED_CAN_ACCESS_PARENT</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.FLAG_MULTIARCH" class="hiddenlink" target="rightframe">FLAG_MULTIARCH</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.FLAG_PARENT_CAN_ACCESS_MANAGED" class="hiddenlink" target="rightframe">FLAG_PARENT_CAN_ACCESS_MANAGED</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_PERSISTABLE" class="hiddenlink" target="rightframe"><strike>FLAG_PERSISTABLE</strike></A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY" class="hiddenlink" target="rightframe">FLAG_RELINQUISH_TASK_IDENTITY</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_RESUME_WHILE_PAUSING" class="hiddenlink" target="rightframe">FLAG_RESUME_WHILE_PAUSING</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.FLAG_TO_MANAGED_PROFILE" class="hiddenlink" target="rightframe"><strike>FLAG_TO_MANAGED_PROFILE</strike></A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.FLAG_TO_PRIMARY_USER" class="hiddenlink" target="rightframe"><strike>FLAG_TO_PRIMARY_USER</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fontFeatureSettings" class="hiddenlink" target="rightframe">fontFeatureSettings</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.foregroundTint" class="hiddenlink" target="rightframe">foregroundTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.foregroundTintMode" class="hiddenlink" target="rightframe">foregroundTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiConfiguration.html#android.net.wifi.WifiConfiguration.FQDN" class="hiddenlink" target="rightframe">FQDN</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentAllowEnterTransitionOverlap" class="hiddenlink" target="rightframe">fragmentAllowEnterTransitionOverlap</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentAllowReturnTransitionOverlap" class="hiddenlink" target="rightframe">fragmentAllowReturnTransitionOverlap</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentEnterTransition" class="hiddenlink" target="rightframe">fragmentEnterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentExitTransition" class="hiddenlink" target="rightframe">fragmentExitTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentReenterTransition" class="hiddenlink" target="rightframe">fragmentReenterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentReturnTransition" class="hiddenlink" target="rightframe">fragmentReturnTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentSharedElementEnterTransition" class="hiddenlink" target="rightframe">fragmentSharedElementEnterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fragmentSharedElementReturnTransition" class="hiddenlink" target="rightframe">fragmentSharedElementReturnTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fromId" class="hiddenlink" target="rightframe">fromId</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fullBackupOnly" class="hiddenlink" target="rightframe">fullBackupOnly</A>
+</nobr><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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">
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.GAMING" class="hiddenlink" target="rightframe">GAMING</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.GATT_CONNECTION_CONGESTED" class="hiddenlink" target="rightframe">GATT_CONNECTION_CONGESTED</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.GET_TASKS" class="hiddenlink" target="rightframe">GET_TASKS</A>
+</nobr><br>
+<nobr><A HREF="android.accessibilityservice.AccessibilityService.html#android.accessibilityservice.AccessibilityService.GLOBAL_ACTION_POWER_DIALOG" class="hiddenlink" target="rightframe">GLOBAL_ACTION_POWER_DIALOG</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.goIcon" class="hiddenlink" target="rightframe">goIcon</A>
+</nobr><br>
+<A NAME="H"></A>
+<br><font size="+2">H</font>&nbsp;
+<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.R.attr.html#android.R.attr.headerAmPmTextAppearance" class="hiddenlink" target="rightframe">headerAmPmTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerDayOfMonthTextAppearance" class="hiddenlink" target="rightframe">headerDayOfMonthTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerMonthTextAppearance" class="hiddenlink" target="rightframe">headerMonthTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerTimeTextAppearance" class="hiddenlink" target="rightframe">headerTimeTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.headerYearTextAppearance" class="hiddenlink" target="rightframe">headerYearTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.headsUpContentView" class="hiddenlink" target="rightframe">headsUpContentView</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.hideOnContentScroll" class="hiddenlink" target="rightframe">hideOnContentScroll</A>
+</nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.HINT_HOST_DISABLE_EFFECTS" class="hiddenlink" target="rightframe">HINT_HOST_DISABLE_EFFECTS</A>
+</nobr><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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.IMPORTANCE_GONE" class="hiddenlink" target="rightframe">IMPORTANCE_GONE</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.indeterminateTint" class="hiddenlink" target="rightframe">indeterminateTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.indeterminateTintMode" class="hiddenlink" target="rightframe">indeterminateTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.INFO_OUTPUT_BUFFERS_CHANGED" class="hiddenlink" target="rightframe">INFO_OUTPUT_BUFFERS_CHANGED</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.INFO_SUPPORTED_HARDWARE_LEVEL_LEGACY" class="hiddenlink" target="rightframe">INFO_SUPPORTED_HARDWARE_LEVEL_LEGACY</A>
+</nobr><br>
+<nobr><A HREF="android.graphics.BitmapFactory.Options.html#android.graphics.BitmapFactory.Options.inInputShareable" class="hiddenlink" target="rightframe">inInputShareable</A>
+</nobr><br>
+<nobr><A HREF="android.graphics.BitmapFactory.Options.html#android.graphics.BitmapFactory.Options.inPurgeable" class="hiddenlink" target="rightframe">inPurgeable</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.INPUT_STATE_CONNECTED" class="hiddenlink" target="rightframe">INPUT_STATE_CONNECTED</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.INPUT_STATE_CONNECTED_STANDBY" class="hiddenlink" target="rightframe">INPUT_STATE_CONNECTED_STANDBY</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.INPUT_STATE_DISCONNECTED" class="hiddenlink" target="rightframe">INPUT_STATE_DISCONNECTED</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.inset" class="hiddenlink" target="rightframe">inset</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.INSTALL_LOCATION_AUTO" class="hiddenlink" target="rightframe">INSTALL_LOCATION_AUTO</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY" class="hiddenlink" target="rightframe">INSTALL_LOCATION_INTERNAL_ONLY</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.INSTALL_LOCATION_PREFER_EXTERNAL" class="hiddenlink" target="rightframe">INSTALL_LOCATION_PREFER_EXTERNAL</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.installLocation" class="hiddenlink" target="rightframe">installLocation</A>
+</nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_ALL" class="hiddenlink" target="rightframe">INTERRUPTION_FILTER_ALL</A>
+</nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_NONE" class="hiddenlink" target="rightframe">INTERRUPTION_FILTER_NONE</A>
+</nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_PRIORITY" class="hiddenlink" target="rightframe">INTERRUPTION_FILTER_PRIORITY</A>
+</nobr><br>
+<A NAME="K"></A>
+<br><font size="+2">K</font>&nbsp;
+<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">
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_ATTENUATION_FACTOR" class="hiddenlink" target="rightframe">KEY_AAC_DRC_ATTENUATION_FACTOR</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_BOOST_FACTOR" class="hiddenlink" target="rightframe">KEY_AAC_DRC_BOOST_FACTOR</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_HEAVY_COMPRESSION" class="hiddenlink" target="rightframe">KEY_AAC_DRC_HEAVY_COMPRESSION</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_DRC_TARGET_REFERENCE_LEVEL" class="hiddenlink" target="rightframe">KEY_AAC_DRC_TARGET_REFERENCE_LEVEL</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_ENCODED_TARGET_LEVEL" class="hiddenlink" target="rightframe">KEY_AAC_ENCODED_TARGET_LEVEL</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT" class="hiddenlink" target="rightframe">KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AAC_SBR_MODE" class="hiddenlink" target="rightframe">KEY_AAC_SBR_MODE</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_AUDIO_SESSION_ID" class="hiddenlink" target="rightframe">KEY_AUDIO_SESSION_ID</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_BITRATE_MODE" class="hiddenlink" target="rightframe">KEY_BITRATE_MODE</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_CAPTURE_RATE" class="hiddenlink" target="rightframe">KEY_CAPTURE_RATE</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_COMPLEXITY" class="hiddenlink" target="rightframe">KEY_COMPLEXITY</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_EMBEDDED_SYNTHESIS" class="hiddenlink" target="rightframe">KEY_FEATURE_EMBEDDED_SYNTHESIS</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_RETRIES_COUNT" class="hiddenlink" target="rightframe">KEY_FEATURE_NETWORK_RETRIES_COUNT</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_SYNTHESIS" class="hiddenlink" target="rightframe">KEY_FEATURE_NETWORK_SYNTHESIS</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_TIMEOUT_MS" class="hiddenlink" target="rightframe">KEY_FEATURE_NETWORK_TIMEOUT_MS</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NOT_INSTALLED" class="hiddenlink" target="rightframe">KEY_FEATURE_NOT_INSTALLED</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_PARAM_SESSION_ID" class="hiddenlink" target="rightframe">KEY_PARAM_SESSION_ID</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_PROFILE" class="hiddenlink" target="rightframe">KEY_PROFILE</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.KEY_TEMPORAL_LAYERING" class="hiddenlink" target="rightframe">KEY_TEMPORAL_LAYERING</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_HELP" class="hiddenlink" target="rightframe">KEYCODE_HELP</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_ANTENNA_CABLE" class="hiddenlink" target="rightframe">KEYCODE_TV_ANTENNA_CABLE</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION" class="hiddenlink" target="rightframe">KEYCODE_TV_AUDIO_DESCRIPTION</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN" class="hiddenlink" target="rightframe">KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP" class="hiddenlink" target="rightframe">KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_CONTENTS_MENU" class="hiddenlink" target="rightframe">KEYCODE_TV_CONTENTS_MENU</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPONENT_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPONENT_1</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPONENT_2" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPONENT_2</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPOSITE_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPOSITE_1</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_COMPOSITE_2" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_COMPOSITE_2</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_1</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_2" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_2</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_3" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_3</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_4" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_HDMI_4</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_INPUT_VGA_1" class="hiddenlink" target="rightframe">KEYCODE_TV_INPUT_VGA_1</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_MEDIA_CONTEXT_MENU" class="hiddenlink" target="rightframe">KEYCODE_TV_MEDIA_CONTEXT_MENU</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_NETWORK" class="hiddenlink" target="rightframe">KEYCODE_TV_NETWORK</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_NUMBER_ENTRY" class="hiddenlink" target="rightframe">KEYCODE_TV_NUMBER_ENTRY</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_RADIO_SERVICE" class="hiddenlink" target="rightframe">KEYCODE_TV_RADIO_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE_BS" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE_BS</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE_CS" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE_CS</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_SATELLITE_SERVICE" class="hiddenlink" target="rightframe">KEYCODE_TV_SATELLITE_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TELETEXT" class="hiddenlink" target="rightframe">KEYCODE_TV_TELETEXT</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TERRESTRIAL_ANALOG" class="hiddenlink" target="rightframe">KEYCODE_TV_TERRESTRIAL_ANALOG</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TERRESTRIAL_DIGITAL" class="hiddenlink" target="rightframe">KEYCODE_TV_TERRESTRIAL_DIGITAL</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_TIMER_PROGRAMMING" class="hiddenlink" target="rightframe">KEYCODE_TV_TIMER_PROGRAMMING</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_TV_ZOOM_MODE" class="hiddenlink" target="rightframe">KEYCODE_TV_ZOOM_MODE</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.KEYCODE_VOICE_ASSIST" class="hiddenlink" target="rightframe">KEYCODE_VOICE_ASSIST</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_FINGERPRINT" class="hiddenlink" target="rightframe">KEYGUARD_DISABLE_FINGERPRINT</A>
+</nobr><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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">
+<nobr><A HREF="android.os.Build.VERSION_CODES.html#android.os.Build.VERSION_CODES.L" class="hiddenlink" target="rightframe">L</A>
+</nobr><br>
+<i>l_resource_pad1</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad1" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad1" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad1" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.interpolator.html#android.R.interpolator.l_resource_pad1" class="hiddenlink" target="rightframe"><strike>android.R.interpolator</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad1" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad10</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad10" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad10" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad10" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad10" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad11</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad11" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad11" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad11" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad12</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad12" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad12" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad12" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad13</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad13" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad13" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad13" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad14</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad14" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad14" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad14" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad15</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad15" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad15" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad15" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad16</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad16" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad16" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad16" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad17</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad17" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad17" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad17" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad18</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad18" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad18" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad18" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad19</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad19" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad19" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad19" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad2</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad2" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad2" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad2" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.interpolator.html#android.R.interpolator.l_resource_pad2" class="hiddenlink" target="rightframe"><strike>android.R.interpolator</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad2" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad20</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad20" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad20" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad21</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad21" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad21" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad22</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad22" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad22" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad23</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad23" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad23" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad24</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad24" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad24" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad25</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad25" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad25" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.l_resource_pad26" class="hiddenlink" target="rightframe"><strike>l_resource_pad26</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.l_resource_pad27" class="hiddenlink" target="rightframe"><strike>l_resource_pad27</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.l_resource_pad28" class="hiddenlink" target="rightframe"><strike>l_resource_pad28</strike></A>
+</nobr><br>
+<i>l_resource_pad3</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad3" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad3" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad3" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.interpolator.html#android.R.interpolator.l_resource_pad3" class="hiddenlink" target="rightframe"><strike>android.R.interpolator</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad3" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad4</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad4" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad4" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad4" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.interpolator.html#android.R.interpolator.l_resource_pad4" class="hiddenlink" target="rightframe"><strike>android.R.interpolator</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad4" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad5</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad5" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad5" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad5" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad5" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad6</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad6" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad6" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad6" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad6" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad7</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad7" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad7" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad7" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad7" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad8</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad8" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad8" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad8" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad8" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad9</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad9" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad9" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad9" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad9" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.label" class="hiddenlink" target="rightframe">label</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.launchTaskBehindSourceAnimation" class="hiddenlink" target="rightframe">launchTaskBehindSourceAnimation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.launchTaskBehindTargetAnimation" class="hiddenlink" target="rightframe">launchTaskBehindTargetAnimation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.layout_columnWeight" class="hiddenlink" target="rightframe">layout_columnWeight</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.layout_rowWeight" class="hiddenlink" target="rightframe">layout_rowWeight</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.letterSpacing" class="hiddenlink" target="rightframe">letterSpacing</A>
+</nobr><br>
+<nobr><A HREF="android.R.interpolator.html#android.R.interpolator.linear_out_slow_in" class="hiddenlink" target="rightframe">linear_out_slow_in</A>
+</nobr><br>
+<nobr><A HREF="android.os.Build.VERSION_CODES.html#android.os.Build.VERSION_CODES.LOLLIPOP" class="hiddenlink" target="rightframe">LOLLIPOP</A>
+</nobr><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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.R.id.html#android.R.id.mask" class="hiddenlink" target="rightframe">mask</A>
+</nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.MATCH_NAME" class="hiddenlink" target="rightframe">MATCH_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.MATCH_VIEW_NAME" class="hiddenlink" target="rightframe"><strike>MATCH_VIEW_NAME</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.matchOrder" class="hiddenlink" target="rightframe">matchOrder</A>
+</nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.MAX_BACKOFF_DELAY_MILLIS" class="hiddenlink" target="rightframe">MAX_BACKOFF_DELAY_MILLIS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.MAX_ITEMS" class="hiddenlink" target="rightframe">MAX_ITEMS</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.MAX_THUMBNAIL_DIMENSION" class="hiddenlink" target="rightframe">MAX_THUMBNAIL_DIMENSION</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.maximumAngle" class="hiddenlink" target="rightframe">maximumAngle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.maxRecents" class="hiddenlink" target="rightframe">maxRecents</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.MEDIA_PROJECTION_SERVICE" class="hiddenlink" target="rightframe">MEDIA_PROJECTION_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaPlayer.TrackInfo.html#android.media.MediaPlayer.TrackInfo.MEDIA_TRACK_TYPE_SUBTITLE" class="hiddenlink" target="rightframe">MEDIA_TRACK_TYPE_SUBTITLE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Telephony.BaseMmsColumns.html#android.provider.Telephony.BaseMmsColumns.MESSAGE_BOX_FAILED" class="hiddenlink" target="rightframe">MESSAGE_BOX_FAILED</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.META_DATA_CONTENT_RATING_SYSTEMS" class="hiddenlink" target="rightframe">META_DATA_CONTENT_RATING_SYSTEMS</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.METADATA_KEY_DISPLAY_DESCRIPTION" class="hiddenlink" target="rightframe">METADATA_KEY_DISPLAY_DESCRIPTION</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.METADATA_KEY_DISPLAY_ICON" class="hiddenlink" target="rightframe">METADATA_KEY_DISPLAY_ICON</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.METADATA_KEY_DISPLAY_ICON_URI" class="hiddenlink" target="rightframe">METADATA_KEY_DISPLAY_ICON_URI</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.METADATA_KEY_DISPLAY_SUBTITLE" class="hiddenlink" target="rightframe">METADATA_KEY_DISPLAY_SUBTITLE</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.METADATA_KEY_DISPLAY_TITLE" class="hiddenlink" target="rightframe">METADATA_KEY_DISPLAY_TITLE</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.METADATA_KEY_MEDIA_ID" class="hiddenlink" target="rightframe">METADATA_KEY_MEDIA_ID</A>
+</nobr><br>
+<nobr><A HREF="android.view.FrameStats.html#android.view.FrameStats.mFramesPresentedTimeNano" class="hiddenlink" target="rightframe"><strike>mFramesPresentedTimeNano</strike></A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.MIME_TYPE_PROVISIONING_NFC" class="hiddenlink" target="rightframe">MIME_TYPE_PROVISIONING_NFC</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AAC" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AAC</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AC3" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AC3</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AMR_NB" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AMR_NB</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_AMR_WB" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_AMR_WB</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_FLAC" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_FLAC</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_G711_ALAW" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_G711_ALAW</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_G711_MLAW" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_G711_MLAW</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_MPEG" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_MPEG</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_MSGSM" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_MSGSM</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_OPUS" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_OPUS</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_QCELP" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_QCELP</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_RAW" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_RAW</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_AUDIO_VORBIS" class="hiddenlink" target="rightframe">MIMETYPE_AUDIO_VORBIS</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_TEXT_CEA_608" class="hiddenlink" target="rightframe">MIMETYPE_TEXT_CEA_608</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_TEXT_VTT" class="hiddenlink" target="rightframe">MIMETYPE_TEXT_VTT</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_AVC" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_AVC</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_H263" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_H263</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_HEVC" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_HEVC</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_MPEG2" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_MPEG2</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_MPEG4" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_MPEG4</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_RAW" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_RAW</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_VP8" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_VP8</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.MIMETYPE_VIDEO_VP9" class="hiddenlink" target="rightframe">MIMETYPE_VIDEO_VP9</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.minimumHorizontalAngle" class="hiddenlink" target="rightframe">minimumHorizontalAngle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.minimumVerticalAngle" class="hiddenlink" target="rightframe">minimumVerticalAngle</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALIAS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_ALIAS_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALIAS_MAX_CHARS" class="hiddenlink" target="rightframe">MMS_CONFIG_ALIAS_MAX_CHARS</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALIAS_MIN_CHARS" class="hiddenlink" target="rightframe">MMS_CONFIG_ALIAS_MIN_CHARS</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_ALLOW_ATTACH_AUDIO" class="hiddenlink" target="rightframe">MMS_CONFIG_ALLOW_ATTACH_AUDIO</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_APPEND_TRANSACTION_ID" class="hiddenlink" target="rightframe">MMS_CONFIG_APPEND_TRANSACTION_ID</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_EMAIL_GATEWAY_NUMBER" class="hiddenlink" target="rightframe">MMS_CONFIG_EMAIL_GATEWAY_NUMBER</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_GROUP_MMS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_GROUP_MMS_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_HTTP_PARAMS" class="hiddenlink" target="rightframe">MMS_CONFIG_HTTP_PARAMS</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_HTTP_SOCKET_TIMEOUT" class="hiddenlink" target="rightframe">MMS_CONFIG_HTTP_SOCKET_TIMEOUT</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MAX_IMAGE_HEIGHT" class="hiddenlink" target="rightframe">MMS_CONFIG_MAX_IMAGE_HEIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MAX_IMAGE_WIDTH" class="hiddenlink" target="rightframe">MMS_CONFIG_MAX_IMAGE_WIDTH</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MAX_MESSAGE_SIZE" class="hiddenlink" target="rightframe">MMS_CONFIG_MAX_MESSAGE_SIZE</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE" class="hiddenlink" target="rightframe">MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MMS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MMS_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MMS_READ_REPORT_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MMS_READ_REPORT_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_MULTIPART_SMS_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_MULTIPART_SMS_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_NAI_SUFFIX" class="hiddenlink" target="rightframe">MMS_CONFIG_NAI_SUFFIX</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_RECIPIENT_LIMIT" class="hiddenlink" target="rightframe">MMS_CONFIG_RECIPIENT_LIMIT</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES" class="hiddenlink" target="rightframe">MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED" class="hiddenlink" target="rightframe">MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD" class="hiddenlink" target="rightframe">MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD" class="hiddenlink" target="rightframe">MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SUBJECT_MAX_LENGTH" class="hiddenlink" target="rightframe">MMS_CONFIG_SUBJECT_MAX_LENGTH</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION" class="hiddenlink" target="rightframe">MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_UA_PROF_TAG_NAME" class="hiddenlink" target="rightframe">MMS_CONFIG_UA_PROF_TAG_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_UA_PROF_URL" class="hiddenlink" target="rightframe">MMS_CONFIG_UA_PROF_URL</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_CONFIG_USER_AGENT" class="hiddenlink" target="rightframe">MMS_CONFIG_USER_AGENT</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_CONFIGURATION_ERROR" class="hiddenlink" target="rightframe">MMS_ERROR_CONFIGURATION_ERROR</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_HTTP_FAILURE" class="hiddenlink" target="rightframe">MMS_ERROR_HTTP_FAILURE</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_INVALID_APN" class="hiddenlink" target="rightframe">MMS_ERROR_INVALID_APN</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_IO_ERROR" class="hiddenlink" target="rightframe">MMS_ERROR_IO_ERROR</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_RETRY" class="hiddenlink" target="rightframe">MMS_ERROR_RETRY</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_UNABLE_CONNECT_MMS" class="hiddenlink" target="rightframe">MMS_ERROR_UNABLE_CONNECT_MMS</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.MMS_ERROR_UNSPECIFIED" class="hiddenlink" target="rightframe">MMS_ERROR_UNSPECIFIED</A>
+</nobr><br>
+<nobr><A HREF="android.app.AppOpsManager.html#android.app.AppOpsManager.MODE_DEFAULT" class="hiddenlink" target="rightframe">MODE_DEFAULT</A>
+</nobr><br>
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.MODE_IN" class="hiddenlink" target="rightframe">MODE_IN</A>
+</nobr><br>
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.MODE_OUT" class="hiddenlink" target="rightframe">MODE_OUT</A>
+</nobr><br>
+<nobr><A HREF="android.R.transition.html#android.R.transition.move" class="hiddenlink" target="rightframe">move</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.MOVIES" class="hiddenlink" target="rightframe">MOVIES</A>
+</nobr><br>
+<nobr><A HREF="android.view.FrameStats.html#android.view.FrameStats.mRefreshPeriodNano" class="hiddenlink" target="rightframe"><strike>mRefreshPeriodNano</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.multiArch" class="hiddenlink" target="rightframe">multiArch</A>
+</nobr><br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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.provider.ContactsContract.ContactsColumns.html#android.provider.ContactsContract.ContactsColumns.NAME_RAW_CONTACT_ID" class="hiddenlink" target="rightframe">NAME_RAW_CONTACT_ID</A>
+</nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME" class="hiddenlink" target="rightframe">NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.R.id.html#android.R.id.navigationBarBackground" class="hiddenlink" target="rightframe">navigationBarBackground</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.navigationBarColor" class="hiddenlink" target="rightframe">navigationBarColor</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.navigationContentDescription" class="hiddenlink" target="rightframe">navigationContentDescription</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.navigationIcon" class="hiddenlink" target="rightframe">navigationIcon</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.nestedScrollingEnabled" class="hiddenlink" target="rightframe">nestedScrollingEnabled</A>
+</nobr><br>
+<nobr><A HREF="android.net.NetworkCapabilities.html#android.net.NetworkCapabilities.NET_CAPABILITY_NOT_VPN" class="hiddenlink" target="rightframe">NET_CAPABILITY_NOT_VPN</A>
+</nobr><br>
+<nobr><A HREF="android.net.NetworkCapabilities.html#android.net.NetworkCapabilities.NET_CAPABILITY_TRUSTED" class="hiddenlink" target="rightframe">NET_CAPABILITY_TRUSTED</A>
+</nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.NETWORK_TYPE_ANY" class="hiddenlink" target="rightframe">NETWORK_TYPE_ANY</A>
+</nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.NETWORK_TYPE_NONE" class="hiddenlink" target="rightframe">NETWORK_TYPE_NONE</A>
+</nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.NETWORK_TYPE_UNMETERED" class="hiddenlink" target="rightframe">NETWORK_TYPE_UNMETERED</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.NEWS" class="hiddenlink" target="rightframe">NEWS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.System.html#android.provider.Settings.System.NEXT_ALARM_FORMATTED" class="hiddenlink" target="rightframe">NEXT_ALARM_FORMATTED</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.numbersBackgroundColor" class="hiddenlink" target="rightframe">numbersBackgroundColor</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.numbersSelectorColor" class="hiddenlink" target="rightframe">numbersSelectorColor</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.numbersTextColor" class="hiddenlink" target="rightframe">numbersTextColor</A>
+</nobr><br>
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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.app.AppOpsManager.html#android.app.AppOpsManager.OPSTR_GET_USAGE_STATS" class="hiddenlink" target="rightframe">OPSTR_GET_USAGE_STATS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.outlineProvider" class="hiddenlink" target="rightframe">outlineProvider</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.overlapAnchor" class="hiddenlink" target="rightframe">overlapAnchor</A>
+</nobr><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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">
+<nobr><A HREF="android.R.attr.html#android.R.attr.paddingMode" class="hiddenlink" target="rightframe">paddingMode</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.PASSWORD_QUALITY_NUMERIC_COMPLEX" class="hiddenlink" target="rightframe">PASSWORD_QUALITY_NUMERIC_COMPLEX</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.pathData" class="hiddenlink" target="rightframe">pathData</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.patternPathData" class="hiddenlink" target="rightframe">patternPathData</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.PERSIST_ACROSS_REBOOTS" class="hiddenlink" target="rightframe">PERSIST_ACROSS_REBOOTS</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.PERSIST_NEVER" class="hiddenlink" target="rightframe">PERSIST_NEVER</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.PERSIST_ROOT_ONLY" class="hiddenlink" target="rightframe">PERSIST_ROOT_ONLY</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.persistable" class="hiddenlink" target="rightframe"><strike>persistable</strike></A>
+</nobr><br>
+<i>persistableMode</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.persistableMode" class="hiddenlink" target="rightframe">android.R.attr</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.persistableMode" class="hiddenlink" target="rightframe">android.content.pm.ActivityInfo</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.PHONE_ACCOUNT_COMPONENT_NAME" class="hiddenlink" target="rightframe">PHONE_ACCOUNT_COMPONENT_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.PHONE_ACCOUNT_ID" class="hiddenlink" target="rightframe">PHONE_ACCOUNT_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotos.html#android.provider.ContactsContract.StreamItemPhotos.PHOTO" class="hiddenlink" target="rightframe">PHOTO</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.PHOTO_FILE_ID" class="hiddenlink" target="rightframe">PHOTO_FILE_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.PHOTO_URI" class="hiddenlink" target="rightframe">PHOTO_URI</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.ContactOptionsColumns.html#android.provider.ContactsContract.ContactOptionsColumns.PINNED" class="hiddenlink" target="rightframe">PINNED</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.popupElevation" class="hiddenlink" target="rightframe">popupElevation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.popupTheme" class="hiddenlink" target="rightframe">popupTheme</A>
+</nobr><br>
+<nobr><A HREF="android.system.OsConstants.html#android.system.OsConstants.PR_GET_DUMPABLE" class="hiddenlink" target="rightframe">PR_GET_DUMPABLE</A>
+</nobr><br>
+<nobr><A HREF="android.system.OsConstants.html#android.system.OsConstants.PR_SET_DUMPABLE" class="hiddenlink" target="rightframe">PR_SET_DUMPABLE</A>
+</nobr><br>
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.preferredRefreshRate" class="hiddenlink" target="rightframe">preferredRefreshRate</A>
+</nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.PRIVATE_USE_EXTENSION" class="hiddenlink" target="rightframe">PRIVATE_USE_EXTENSION</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressBackgroundTint" class="hiddenlink" target="rightframe">progressBackgroundTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressBackgroundTintMode" class="hiddenlink" target="rightframe">progressBackgroundTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressTint" class="hiddenlink" target="rightframe">progressTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.progressTintMode" class="hiddenlink" target="rightframe">progressTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.propertyXName" class="hiddenlink" target="rightframe">propertyXName</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.propertyYName" class="hiddenlink" target="rightframe">propertyYName</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PermissionInfo.html#android.content.pm.PermissionInfo.PROTECTION_FLAG_APPOP" class="hiddenlink" target="rightframe">PROTECTION_FLAG_APPOP</A>
+</nobr><br>
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.PROXIMITY_SCREEN_OFF_WAKE_LOCK" class="hiddenlink" target="rightframe">PROXIMITY_SCREEN_OFF_WAKE_LOCK</A>
+</nobr><br>
+<A NAME="Q"></A>
+<br><font size="+2">Q</font>&nbsp;
+<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">
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_2160P" class="hiddenlink" target="rightframe">QUALITY_2160P</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_1080P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_1080P</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_2160P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_2160P</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_480P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_480P</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_720P" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_720P</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_HIGH" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_HIGH</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_HIGH_SPEED_LOW" class="hiddenlink" target="rightframe">QUALITY_HIGH_SPEED_LOW</A>
+</nobr><br>
+<nobr><A HREF="android.media.CamcorderProfile.html#android.media.CamcorderProfile.QUALITY_TIME_LAPSE_2160P" class="hiddenlink" target="rightframe">QUALITY_TIME_LAPSE_2160P</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.queryBackground" class="hiddenlink" target="rightframe">queryBackground</A>
+</nobr><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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.graphics.ImageFormat.html#android.graphics.ImageFormat.RAW10" class="hiddenlink" target="rightframe">RAW10</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RAW_CONTACT_ID" class="hiddenlink" target="rightframe">RAW_CONTACT_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RAW_CONTACT_SOURCE_ID" class="hiddenlink" target="rightframe">RAW_CONTACT_SOURCE_ID</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.READ_SOCIAL_STREAM" class="hiddenlink" target="rightframe">READ_SOCIAL_STREAM</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.READ_VOICEMAIL" class="hiddenlink" target="rightframe">READ_VOICEMAIL</A>
+</nobr><br>
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.REBOOT_RECOVERY" class="hiddenlink" target="rightframe"><strike>REBOOT_RECOVERY</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.recognitionService" class="hiddenlink" target="rightframe">recognitionService</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.REGULAR_CODECS" class="hiddenlink" target="rightframe">REGULAR_CODECS</A>
+</nobr><br>
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY" class="hiddenlink" target="rightframe">RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.relinquishTaskIdentity" class="hiddenlink" target="rightframe">relinquishTaskIdentity</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.reparent" class="hiddenlink" target="rightframe">reparent</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.reparentWithOverlay" class="hiddenlink" target="rightframe">reparentWithOverlay</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_CONTINUOUS" class="hiddenlink" target="rightframe">REPORTING_MODE_CONTINUOUS</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_ON_CHANGE" class="hiddenlink" target="rightframe">REPORTING_MODE_ON_CHANGE</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_ONE_SHOT" class="hiddenlink" target="rightframe">REPORTING_MODE_ONE_SHOT</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.REPORTING_MODE_SPECIAL_TRIGGER" class="hiddenlink" target="rightframe">REPORTING_MODE_SPECIAL_TRIGGER</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_BACKWARD_COMPATIBLE" class="hiddenlink" target="rightframe">REQUEST_AVAILABLE_CAPABILITIES_BACKWARD_COMPATIBLE</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_DNG" class="hiddenlink" target="rightframe"><strike>REQUEST_AVAILABLE_CAPABILITIES_DNG</strike></A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_MANUAL_POST_PROCESSING" class="hiddenlink" target="rightframe">REQUEST_AVAILABLE_CAPABILITIES_MANUAL_POST_PROCESSING</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_MANUAL_SENSOR" class="hiddenlink" target="rightframe">REQUEST_AVAILABLE_CAPABILITIES_MANUAL_SENSOR</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_RAW" class="hiddenlink" target="rightframe">REQUEST_AVAILABLE_CAPABILITIES_RAW</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CaptureResult.html#android.hardware.camera2.CaptureResult.REQUEST_FRAME_COUNT" class="hiddenlink" target="rightframe"><strike>REQUEST_FRAME_COUNT</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.requiredForProfile" class="hiddenlink" target="rightframe"><strike>requiredForProfile</strike></A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RES_ICON" class="hiddenlink" target="rightframe">RES_ICON</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RES_LABEL" class="hiddenlink" target="rightframe">RES_LABEL</A>
+</nobr><br>
+<i>RES_PACKAGE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.DataColumns.html#android.provider.ContactsContract.DataColumns.RES_PACKAGE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.DataColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.GroupsColumns.html#android.provider.ContactsContract.GroupsColumns.RES_PACKAGE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.GroupsColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RES_PACKAGE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.PermissionRequest.html#android.webkit.PermissionRequest.RESOURCE_AUDIO_CAPTURE" class="hiddenlink" target="rightframe">RESOURCE_AUDIO_CAPTURE</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.PermissionRequest.html#android.webkit.PermissionRequest.RESOURCE_PROTECTED_MEDIA_ID" class="hiddenlink" target="rightframe">RESOURCE_PROTECTED_MEDIA_ID</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.PermissionRequest.html#android.webkit.PermissionRequest.RESOURCE_VIDEO_CAPTURE" class="hiddenlink" target="rightframe">RESOURCE_VIDEO_CAPTURE</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.RESTRICTIONS_SERVICE" class="hiddenlink" target="rightframe">RESTRICTIONS_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.restrictionType" class="hiddenlink" target="rightframe">restrictionType</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.resumeWhilePausing" class="hiddenlink" target="rightframe">resumeWhilePausing</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.reversible" class="hiddenlink" target="rightframe">reversible</A>
+</nobr><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.SCAN_FAILED_CONTROLLER_FAILURE" class="hiddenlink" target="rightframe"><strike>SCAN_FAILED_CONTROLLER_FAILURE</strike></A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.SCAN_FAILED_FEATURE_UNSUPPORTED" class="hiddenlink" target="rightframe">SCAN_FAILED_FEATURE_UNSUPPORTED</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.SCAN_FAILED_GATT_SERVICE_FAILURE" class="hiddenlink" target="rightframe"><strike>SCAN_FAILED_GATT_SERVICE_FAILURE</strike></A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.SCAN_FAILED_INTERNAL_ERROR" class="hiddenlink" target="rightframe">SCAN_FAILED_INTERNAL_ERROR</A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanSettings.html#android.bluetooth.le.ScanSettings.SCAN_RESULT_TYPE_FULL" class="hiddenlink" target="rightframe"><strike>SCAN_RESULT_TYPE_FULL</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.searchIcon" class="hiddenlink" target="rightframe">searchIcon</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.searchViewStyle" class="hiddenlink" target="rightframe">searchViewStyle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.secondaryProgressTint" class="hiddenlink" target="rightframe">secondaryProgressTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.secondaryProgressTintMode" class="hiddenlink" target="rightframe">secondaryProgressTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.selectableItemBackgroundBorderless" class="hiddenlink" target="rightframe">selectableItemBackgroundBorderless</A>
+</nobr><br>
+<nobr><A HREF="android.os.Message.html#android.os.Message.sendingUid" class="hiddenlink" target="rightframe">sendingUid</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraCharacteristics.html#android.hardware.camera2.CameraCharacteristics.SENSOR_INFO_TIMESTAMP_SOURCE" class="hiddenlink" target="rightframe">SENSOR_INFO_TIMESTAMP_SOURCE</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.SENSOR_INFO_TIMESTAMP_SOURCE_REALTIME" class="hiddenlink" target="rightframe">SENSOR_INFO_TIMESTAMP_SOURCE_REALTIME</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.SENSOR_INFO_TIMESTAMP_SOURCE_UNKNOWN" class="hiddenlink" target="rightframe">SENSOR_INFO_TIMESTAMP_SOURCE_UNKNOWN</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CaptureResult.html#android.hardware.camera2.CaptureResult.SENSOR_NOISE_PROFILE" class="hiddenlink" target="rightframe">SENSOR_NOISE_PROFILE</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CaptureResult.html#android.hardware.camera2.CaptureResult.SENSOR_ROLLING_SHUTTER_SKEW" class="hiddenlink" target="rightframe">SENSOR_ROLLING_SHUTTER_SKEW</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.SensorManager.html#android.hardware.SensorManager.SENSOR_STATUS_NO_CONTACT" class="hiddenlink" target="rightframe">SENSOR_STATUS_NO_CONTACT</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.SERVICE_TYPE_AUDIO" class="hiddenlink" target="rightframe">SERVICE_TYPE_AUDIO</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.SERVICE_TYPE_AUDIO_VIDEO" class="hiddenlink" target="rightframe">SERVICE_TYPE_AUDIO_VIDEO</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.SERVICE_TYPE_OTHER" class="hiddenlink" target="rightframe">SERVICE_TYPE_OTHER</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.sessionService" class="hiddenlink" target="rightframe">sessionService</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.SHOPPING" class="hiddenlink" target="rightframe">SHOPPING</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.showText" class="hiddenlink" target="rightframe">showText</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.Secure.html#android.provider.Settings.Secure.SKIP_FIRST_USE_HINTS" class="hiddenlink" target="rightframe">SKIP_FIRST_USE_HINTS</A>
+</nobr><br>
+<nobr><A HREF="android.R.transition.html#android.R.transition.slide_bottom" class="hiddenlink" target="rightframe">slide_bottom</A>
+</nobr><br>
+<nobr><A HREF="android.R.transition.html#android.R.transition.slide_left" class="hiddenlink" target="rightframe">slide_left</A>
+</nobr><br>
+<nobr><A HREF="android.R.transition.html#android.R.transition.slide_right" class="hiddenlink" target="rightframe">slide_right</A>
+</nobr><br>
+<nobr><A HREF="android.R.transition.html#android.R.transition.slide_top" class="hiddenlink" target="rightframe">slide_top</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.slideEdge" class="hiddenlink" target="rightframe">slideEdge</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SORT_INDEX" class="hiddenlink" target="rightframe">SORT_INDEX</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.splitNames" class="hiddenlink" target="rightframe">splitNames</A>
+</nobr><br>
+<i>splitPublicSourceDirs</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.splitPublicSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.ApplicationInfo</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.InstrumentationInfo.html#android.content.pm.InstrumentationInfo.splitPublicSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.InstrumentationInfo</A>
+</nobr><br>
+<i>splitSourceDirs</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.ApplicationInfo.html#android.content.pm.ApplicationInfo.splitSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.ApplicationInfo</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.content.pm.InstrumentationInfo.html#android.content.pm.InstrumentationInfo.splitSourceDirs" class="hiddenlink" target="rightframe">android.content.pm.InstrumentationInfo</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.splitTrack" class="hiddenlink" target="rightframe">splitTrack</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.SPORTS" class="hiddenlink" target="rightframe">SPORTS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.spotShadowAlpha" class="hiddenlink" target="rightframe">spotShadowAlpha</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.stackViewStyle" class="hiddenlink" target="rightframe">stackViewStyle</A>
+</nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.STATE_CONNECTING" class="hiddenlink" target="rightframe">STATE_CONNECTING</A>
+</nobr><br>
+<nobr><A HREF="android.view.Display.html#android.view.Display.STATE_DOZE" class="hiddenlink" target="rightframe">STATE_DOZE</A>
+</nobr><br>
+<nobr><A HREF="android.view.Display.html#android.view.Display.STATE_DOZE_SUSPEND" class="hiddenlink" target="rightframe">STATE_DOZE_SUSPEND</A>
+</nobr><br>
+<nobr><A HREF="android.view.Display.html#android.view.Display.STATE_DOZING" class="hiddenlink" target="rightframe"><strike>STATE_DOZING</strike></A>
+</nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.STATE_SKIPPING_TO_QUEUE_ITEM" class="hiddenlink" target="rightframe">STATE_SKIPPING_TO_QUEUE_ITEM</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.stateListAnimator" class="hiddenlink" target="rightframe">stateListAnimator</A>
+</nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.STATUS_BAR_BACKGROUND_TRANSITION_NAME" class="hiddenlink" target="rightframe">STATUS_BAR_BACKGROUND_TRANSITION_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.R.id.html#android.R.id.statusBarBackground" class="hiddenlink" target="rightframe">statusBarBackground</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.statusBarColor" class="hiddenlink" target="rightframe">statusBarColor</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.STOPPED" class="hiddenlink" target="rightframe">STOPPED</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.STREAM_DEFAULT" class="hiddenlink" target="rightframe">STREAM_DEFAULT</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.STREAM_ITEM_ID" class="hiddenlink" target="rightframe">STREAM_ITEM_ID</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.stroke" class="hiddenlink" target="rightframe"><strike>stroke</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeAlpha" class="hiddenlink" target="rightframe">strokeAlpha</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeColor" class="hiddenlink" target="rightframe">strokeColor</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeLineCap" class="hiddenlink" target="rightframe">strokeLineCap</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeLineJoin" class="hiddenlink" target="rightframe">strokeLineJoin</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeMiterLimit" class="hiddenlink" target="rightframe">strokeMiterLimit</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeOpacity" class="hiddenlink" target="rightframe"><strike>strokeOpacity</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeWidth" class="hiddenlink" target="rightframe">strokeWidth</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.submitBackground" class="hiddenlink" target="rightframe">submitBackground</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.subtitleTextAppearance" class="hiddenlink" target="rightframe">subtitleTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.suggestionRowLayout" class="hiddenlink" target="rightframe">suggestionRowLayout</A>
+</nobr><br>
+<nobr><A HREF="android.os.Build.html#android.os.Build.SUPPORTED_32_BIT_ABIS" class="hiddenlink" target="rightframe">SUPPORTED_32_BIT_ABIS</A>
+</nobr><br>
+<nobr><A HREF="android.os.Build.html#android.os.Build.SUPPORTED_64_BIT_ABIS" class="hiddenlink" target="rightframe">SUPPORTED_64_BIT_ABIS</A>
+</nobr><br>
+<nobr><A HREF="android.os.Build.html#android.os.Build.SUPPORTED_ABIS" class="hiddenlink" target="rightframe">SUPPORTED_ABIS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.switchStyle" class="hiddenlink" target="rightframe">switchStyle</A>
+</nobr><br>
+<i>SYNC1</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC1" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC1" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<i>SYNC2</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC2" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC2" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<i>SYNC3</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC3" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC3" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<i>SYNC4</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC4" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC4" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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.R.attr.html#android.R.attr.targetName" class="hiddenlink" target="rightframe">targetName</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.targetViewName" class="hiddenlink" target="rightframe"><strike>targetViewName</strike></A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RecentTaskInfo.html#android.app.ActivityManager.RecentTaskInfo.taskDescription" class="hiddenlink" target="rightframe">taskDescription</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.TELECOM_SERVICE" class="hiddenlink" target="rightframe">TELECOM_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.TEXT" class="hiddenlink" target="rightframe">TEXT</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material" class="hiddenlink" target="rightframe">TextAppearance_Material</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Body1" class="hiddenlink" target="rightframe">TextAppearance_Material_Body1</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Body2" class="hiddenlink" target="rightframe">TextAppearance_Material_Body2</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Button" class="hiddenlink" target="rightframe">TextAppearance_Material_Button</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Caption" class="hiddenlink" target="rightframe">TextAppearance_Material_Caption</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_DialogWindowTitle" class="hiddenlink" target="rightframe">TextAppearance_Material_DialogWindowTitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display1" class="hiddenlink" target="rightframe">TextAppearance_Material_Display1</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display2" class="hiddenlink" target="rightframe">TextAppearance_Material_Display2</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display3" class="hiddenlink" target="rightframe">TextAppearance_Material_Display3</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display4" class="hiddenlink" target="rightframe">TextAppearance_Material_Display4</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Headline" class="hiddenlink" target="rightframe">TextAppearance_Material_Headline</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Large" class="hiddenlink" target="rightframe">TextAppearance_Material_Large</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Large_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Large_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Medium" class="hiddenlink" target="rightframe">TextAppearance_Material_Medium</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Medium_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Medium_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Menu" class="hiddenlink" target="rightframe">TextAppearance_Material_Menu</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Emphasis" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Emphasis</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Info" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Info</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Line2" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Line2</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Time" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Time</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Notification_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Notification_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_SearchResult_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_SearchResult_Subtitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_SearchResult_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_SearchResult_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Small" class="hiddenlink" target="rightframe">TextAppearance_Material_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Small_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Small_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Subhead" class="hiddenlink" target="rightframe">TextAppearance_Material_Subhead</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Menu" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Menu</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Subtitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Title_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Title_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Subtitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Title_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Title_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_Button" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_Button</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_DropDownHint" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_DropDownHint</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_DropDownItem" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_DropDownItem</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_EditText" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_EditText</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_IconMenu_Item" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_IconMenu_Item</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_PopupMenu" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_PopupMenu</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_PopupMenu_Large" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_PopupMenu_Large</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_PopupMenu_Small" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_PopupMenu_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TabWidget" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TabWidget</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TextView" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TextView_PopupMenu" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TextView_PopupMenu</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TextView_SpinnerItem" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TextView_SpinnerItem</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_Toolbar_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_Toolbar_Subtitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_Toolbar_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_Toolbar_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_WindowTitle" class="hiddenlink" target="rightframe">TextAppearance_Material_WindowTitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.textAppearanceListItemSecondary" class="hiddenlink" target="rightframe">textAppearanceListItemSecondary</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_DeviceDefault_Settings" class="hiddenlink" target="rightframe">Theme_DeviceDefault_Settings</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material" class="hiddenlink" target="rightframe">Theme_Material</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog" class="hiddenlink" target="rightframe">Theme_Material_Dialog</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_Alert" class="hiddenlink" target="rightframe">Theme_Material_Dialog_Alert</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Dialog_MinWidth</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Dialog_NoActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_NoActionBar_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Dialog_NoActionBar_MinWidth</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_Presentation" class="hiddenlink" target="rightframe">Theme_Material_Dialog_Presentation</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_DialogWhenLarge" class="hiddenlink" target="rightframe">Theme_Material_DialogWhenLarge</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_DialogWhenLarge_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_DialogWhenLarge_NoActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_InputMethod" class="hiddenlink" target="rightframe">Theme_Material_InputMethod</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light" class="hiddenlink" target="rightframe">Theme_Material_Light</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_DarkActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_DarkActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_Alert" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_Alert</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_MinWidth</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_NoActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_NoActionBar_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_NoActionBar_MinWidth</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_Presentation" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_Presentation</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_DialogWhenLarge" class="hiddenlink" target="rightframe">Theme_Material_Light_DialogWhenLarge</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_DialogWhenLarge_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_DialogWhenLarge_NoActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar_Fullscreen" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar_Fullscreen</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar_Overscan" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar_Overscan</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar_TranslucentDecor" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar_TranslucentDecor</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Panel" class="hiddenlink" target="rightframe">Theme_Material_Light_Panel</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Voice" class="hiddenlink" target="rightframe">Theme_Material_Light_Voice</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar_Fullscreen" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar_Fullscreen</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar_Overscan" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar_Overscan</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar_TranslucentDecor" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar_TranslucentDecor</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Panel" class="hiddenlink" target="rightframe">Theme_Material_Panel</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Settings" class="hiddenlink" target="rightframe">Theme_Material_Settings</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Voice" class="hiddenlink" target="rightframe">Theme_Material_Voice</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Wallpaper" class="hiddenlink" target="rightframe">Theme_Material_Wallpaper</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Wallpaper_NoTitleBar" class="hiddenlink" target="rightframe">Theme_Material_Wallpaper_NoTitleBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay" class="hiddenlink" target="rightframe">ThemeOverlay</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material" class="hiddenlink" target="rightframe">ThemeOverlay_Material</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_ActionBar" class="hiddenlink" target="rightframe">ThemeOverlay_Material_ActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_Dark" class="hiddenlink" target="rightframe">ThemeOverlay_Material_Dark</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_Dark_ActionBar" class="hiddenlink" target="rightframe">ThemeOverlay_Material_Dark_ActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_Light" class="hiddenlink" target="rightframe">ThemeOverlay_Material_Light</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.thumbTint" class="hiddenlink" target="rightframe">thumbTint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.thumbTintMode" class="hiddenlink" target="rightframe">thumbTintMode</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.tickerView" class="hiddenlink" target="rightframe">tickerView</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.tileModeX" class="hiddenlink" target="rightframe">tileModeX</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.tileModeY" class="hiddenlink" target="rightframe">tileModeY</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.timePickerDialogTheme" class="hiddenlink" target="rightframe">timePickerDialogTheme</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.timePickerMode" class="hiddenlink" target="rightframe">timePickerMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.timePickerStyle" class="hiddenlink" target="rightframe">timePickerStyle</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.TIMESTAMP" class="hiddenlink" target="rightframe">TIMESTAMP</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.tintMode" class="hiddenlink" target="rightframe">tintMode</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.GroupsColumns.html#android.provider.ContactsContract.GroupsColumns.TITLE_RES" class="hiddenlink" target="rightframe">TITLE_RES</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.titleTextAppearance" class="hiddenlink" target="rightframe">titleTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.toId" class="hiddenlink" target="rightframe">toId</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.toolbarStyle" class="hiddenlink" target="rightframe">toolbarStyle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.touchscreenBlocksFocus" class="hiddenlink" target="rightframe">touchscreenBlocksFocus</A>
+</nobr><br>
+<i>TRANSCRIPTION</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.CallLog.Calls.html#android.provider.CallLog.Calls.TRANSCRIPTION" class="hiddenlink" target="rightframe">android.provider.CallLog.Calls</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.VoicemailContract.Voicemails.html#android.provider.VoicemailContract.Voicemails.TRANSCRIPTION" class="hiddenlink" target="rightframe">android.provider.VoicemailContract.Voicemails</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.transitionGroup" class="hiddenlink" target="rightframe">transitionGroup</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.transitionName" class="hiddenlink" target="rightframe">transitionName</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.transitionVisibilityMode" class="hiddenlink" target="rightframe">transitionVisibilityMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.translateX" class="hiddenlink" target="rightframe">translateX</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.translateY" class="hiddenlink" target="rightframe">translateY</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.translationZ" class="hiddenlink" target="rightframe">translationZ</A>
+</nobr><br>
+<nobr><A HREF="android.net.NetworkCapabilities.html#android.net.NetworkCapabilities.TRANSPORT_VPN" class="hiddenlink" target="rightframe">TRANSPORT_VPN</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.TRAVEL" class="hiddenlink" target="rightframe">TRAVEL</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.trimPathEnd" class="hiddenlink" target="rightframe">trimPathEnd</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.trimPathOffset" class="hiddenlink" target="rightframe">trimPathOffset</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.trimPathStart" class="hiddenlink" target="rightframe">trimPathStart</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.tvInputType" class="hiddenlink" target="rightframe"><strike>tvInputType</strike></A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_1SEG" class="hiddenlink" target="rightframe">TYPE_1SEG</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ATSC_C" class="hiddenlink" target="rightframe">TYPE_ATSC_C</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ATSC_M_H" class="hiddenlink" target="rightframe">TYPE_ATSC_M_H</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ATSC_T" class="hiddenlink" target="rightframe">TYPE_ATSC_T</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_CMMB" class="hiddenlink" target="rightframe">TYPE_CMMB</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_COMPONENT" class="hiddenlink" target="rightframe">TYPE_COMPONENT</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_COMPOSITE" class="hiddenlink" target="rightframe">TYPE_COMPOSITE</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_DISPLAY_PORT" class="hiddenlink" target="rightframe">TYPE_DISPLAY_PORT</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DTMB" class="hiddenlink" target="rightframe">TYPE_DTMB</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_C" class="hiddenlink" target="rightframe">TYPE_DVB_C</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_C2" class="hiddenlink" target="rightframe">TYPE_DVB_C2</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_H" class="hiddenlink" target="rightframe">TYPE_DVB_H</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_S" class="hiddenlink" target="rightframe">TYPE_DVB_S</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_S2" class="hiddenlink" target="rightframe">TYPE_DVB_S2</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_SH" class="hiddenlink" target="rightframe">TYPE_DVB_SH</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_T" class="hiddenlink" target="rightframe">TYPE_DVB_T</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_T2" class="hiddenlink" target="rightframe">TYPE_DVB_T2</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_DVI" class="hiddenlink" target="rightframe">TYPE_DVI</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_HDMI" class="hiddenlink" target="rightframe">TYPE_HDMI</A>
+</nobr><br>
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.TYPE_INTEGER" class="hiddenlink" target="rightframe">TYPE_INTEGER</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ISDB_C" class="hiddenlink" target="rightframe">TYPE_ISDB_C</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ISDB_S" class="hiddenlink" target="rightframe">TYPE_ISDB_S</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ISDB_T" class="hiddenlink" target="rightframe">TYPE_ISDB_T</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ISDB_TB" class="hiddenlink" target="rightframe">TYPE_ISDB_TB</A>
+</nobr><br>
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.TYPE_KEYGUARD" class="hiddenlink" target="rightframe"><strike>TYPE_KEYGUARD</strike></A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_NTSC" class="hiddenlink" target="rightframe">TYPE_NTSC</A>
+</nobr><br>
+<i>TYPE_OTHER</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_OTHER" class="hiddenlink" target="rightframe">android.media.tv.TvContract.Channels</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_OTHER" class="hiddenlink" target="rightframe">android.media.tv.TvInputInfo</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_PAL" class="hiddenlink" target="rightframe">TYPE_PAL</A>
+</nobr><br>
+<i>TYPE_PASSTHROUGH</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_PASSTHROUGH" class="hiddenlink" target="rightframe"><strike>android.media.tv.TvContract.Channels</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_PASSTHROUGH" class="hiddenlink" target="rightframe"><strike>android.media.tv.TvInputInfo</strike></A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_S_DMB" class="hiddenlink" target="rightframe">TYPE_S_DMB</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_SCART" class="hiddenlink" target="rightframe">TYPE_SCART</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_SECAM" class="hiddenlink" target="rightframe">TYPE_SECAM</A>
+</nobr><br>
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.TYPE_STRING" class="hiddenlink" target="rightframe">TYPE_STRING</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_SVIDEO" class="hiddenlink" target="rightframe">TYPE_SVIDEO</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_T_DMB" class="hiddenlink" target="rightframe">TYPE_T_DMB</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_TUNER" class="hiddenlink" target="rightframe">TYPE_TUNER</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_VGA" class="hiddenlink" target="rightframe">TYPE_VGA</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_VIRTUAL" class="hiddenlink" target="rightframe"><strike>TYPE_VIRTUAL</strike></A>
+</nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.TYPE_VPN" class="hiddenlink" target="rightframe">TYPE_VPN</A>
+</nobr><br>
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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">
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.UNICODE_LOCALE_EXTENSION" class="hiddenlink" target="rightframe">UNICODE_LOCALE_EXTENSION</A>
+</nobr><br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_1080I" class="hiddenlink" target="rightframe">VIDEO_FORMAT_1080I</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_1080P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_1080P</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_2160P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_2160P</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_240P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_240P</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_360P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_360P</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_4320P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_4320P</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_480I" class="hiddenlink" target="rightframe">VIDEO_FORMAT_480I</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_480P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_480P</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_576I" class="hiddenlink" target="rightframe">VIDEO_FORMAT_576I</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_576P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_576P</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_FORMAT_720P" class="hiddenlink" target="rightframe">VIDEO_FORMAT_720P</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_ED" class="hiddenlink" target="rightframe">VIDEO_RESOLUTION_ED</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_FHD" class="hiddenlink" target="rightframe">VIDEO_RESOLUTION_FHD</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_HD" class="hiddenlink" target="rightframe">VIDEO_RESOLUTION_HD</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_SD" class="hiddenlink" target="rightframe">VIDEO_RESOLUTION_SD</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_UHD" class="hiddenlink" target="rightframe">VIDEO_RESOLUTION_UHD</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.VIDEO_UNAVAILABLE_REASON_BUFFERING" class="hiddenlink" target="rightframe">VIDEO_UNAVAILABLE_REASON_BUFFERING</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.VIDEO_UNAVAILABLE_REASON_TUNING" class="hiddenlink" target="rightframe">VIDEO_UNAVAILABLE_REASON_TUNING</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.VIDEO_UNAVAILABLE_REASON_UNKNOWN" class="hiddenlink" target="rightframe">VIDEO_UNAVAILABLE_REASON_UNKNOWN</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.VIDEO_UNAVAILABLE_REASON_WEAK_SIGNAL" class="hiddenlink" target="rightframe">VIDEO_UNAVAILABLE_REASON_WEAK_SIGNAL</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.viewName" class="hiddenlink" target="rightframe"><strike>viewName</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.viewportHeight" class="hiddenlink" target="rightframe">viewportHeight</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.viewportWidth" class="hiddenlink" target="rightframe">viewportWidth</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.display.DisplayManager.html#android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR" class="hiddenlink" target="rightframe">VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR</A>
+</nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_AUTO" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_AUTO</A>
+</nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_BINAURAL" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_BINAURAL</A>
+</nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_OFF" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_OFF</A>
+</nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_TRANSAURAL" class="hiddenlink" target="rightframe">VIRTUALIZATION_MODE_TRANSAURAL</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.voiceIcon" class="hiddenlink" target="rightframe">voiceIcon</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaRecorder.AudioEncoder.html#android.media.MediaRecorder.AudioEncoder.VORBIS" class="hiddenlink" target="rightframe">VORBIS</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaRecorder.VideoEncoder.html#android.media.MediaRecorder.VideoEncoder.VP8" class="hiddenlink" target="rightframe">VP8</A>
+</nobr><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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.media.MediaRecorder.OutputFormat.html#android.media.MediaRecorder.OutputFormat.WEBM" class="hiddenlink" target="rightframe">WEBM</A>
+</nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.WIDGET_CATEGORY_RECENTS" class="hiddenlink" target="rightframe"><strike>WIDGET_CATEGORY_RECENTS</strike></A>
+</nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX" class="hiddenlink" target="rightframe">WIDGET_CATEGORY_SEARCHBOX</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_FastScroll" class="hiddenlink" target="rightframe">Widget_DeviceDefault_FastScroll</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_FastScroll" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_FastScroll</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_StackView" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_StackView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_StackView" class="hiddenlink" target="rightframe">Widget_DeviceDefault_StackView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_FastScroll" class="hiddenlink" target="rightframe">Widget_FastScroll</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Holo_FastScroll" class="hiddenlink" target="rightframe"><strike>Widget_Holo_FastScroll</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Holo_Light_Button_Borderless" class="hiddenlink" target="rightframe"><strike>Widget_Holo_Light_Button_Borderless</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Holo_Light_FastScroll" class="hiddenlink" target="rightframe"><strike>Widget_Holo_Light_FastScroll</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Holo_Light_StackView" class="hiddenlink" target="rightframe"><strike>Widget_Holo_Light_StackView</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Holo_StackView" class="hiddenlink" target="rightframe"><strike>Widget_Holo_StackView</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material" class="hiddenlink" target="rightframe">Widget_Material</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar" class="hiddenlink" target="rightframe">Widget_Material_ActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_Solid" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_Solid</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_TabBar" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_TabBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_TabText" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_TabText</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_TabView" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_TabView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionButton" class="hiddenlink" target="rightframe">Widget_Material_ActionButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionButton_CloseMode" class="hiddenlink" target="rightframe">Widget_Material_ActionButton_CloseMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionButton_Overflow" class="hiddenlink" target="rightframe">Widget_Material_ActionButton_Overflow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionMode" class="hiddenlink" target="rightframe">Widget_Material_ActionMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_AutoCompleteTextView" class="hiddenlink" target="rightframe">Widget_Material_AutoCompleteTextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button" class="hiddenlink" target="rightframe">Widget_Material_Button</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Borderless" class="hiddenlink" target="rightframe">Widget_Material_Button_Borderless</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Borderless_Colored" class="hiddenlink" target="rightframe">Widget_Material_Button_Borderless_Colored</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Borderless_Small" class="hiddenlink" target="rightframe">Widget_Material_Button_Borderless_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Inset" class="hiddenlink" target="rightframe">Widget_Material_Button_Inset</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Small" class="hiddenlink" target="rightframe">Widget_Material_Button_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Toggle" class="hiddenlink" target="rightframe">Widget_Material_Button_Toggle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ButtonBar" class="hiddenlink" target="rightframe">Widget_Material_ButtonBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ButtonBar_AlertDialog" class="hiddenlink" target="rightframe">Widget_Material_ButtonBar_AlertDialog</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CalendarView" class="hiddenlink" target="rightframe">Widget_Material_CalendarView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CheckedTextView" class="hiddenlink" target="rightframe">Widget_Material_CheckedTextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CompoundButton_CheckBox" class="hiddenlink" target="rightframe">Widget_Material_CompoundButton_CheckBox</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CompoundButton_RadioButton" class="hiddenlink" target="rightframe">Widget_Material_CompoundButton_RadioButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CompoundButton_Star" class="hiddenlink" target="rightframe">Widget_Material_CompoundButton_Star</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_DatePicker" class="hiddenlink" target="rightframe">Widget_Material_DatePicker</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_DropDownItem" class="hiddenlink" target="rightframe">Widget_Material_DropDownItem</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_DropDownItem_Spinner" class="hiddenlink" target="rightframe">Widget_Material_DropDownItem_Spinner</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_EditText" class="hiddenlink" target="rightframe">Widget_Material_EditText</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ExpandableListView" class="hiddenlink" target="rightframe">Widget_Material_ExpandableListView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_FastScroll" class="hiddenlink" target="rightframe">Widget_Material_FastScroll</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_GridView" class="hiddenlink" target="rightframe">Widget_Material_GridView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_HorizontalScrollView" class="hiddenlink" target="rightframe">Widget_Material_HorizontalScrollView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ImageButton" class="hiddenlink" target="rightframe">Widget_Material_ImageButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light" class="hiddenlink" target="rightframe">Widget_Material_Light</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_Solid" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_Solid</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_TabBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_TabBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_TabText" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_TabText</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_TabView" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_TabView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionButton" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionButton_CloseMode" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionButton_CloseMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionButton_Overflow" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionButton_Overflow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionMode" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_AutoCompleteTextView" class="hiddenlink" target="rightframe">Widget_Material_Light_AutoCompleteTextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button" class="hiddenlink" target="rightframe">Widget_Material_Light_Button</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Borderless" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Borderless</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Borderless_Colored" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Borderless_Colored</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Borderless_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Borderless_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Inset" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Inset</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Toggle" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Toggle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ButtonBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ButtonBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ButtonBar_AlertDialog" class="hiddenlink" target="rightframe">Widget_Material_Light_ButtonBar_AlertDialog</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CalendarView" class="hiddenlink" target="rightframe">Widget_Material_Light_CalendarView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CheckedTextView" class="hiddenlink" target="rightframe">Widget_Material_Light_CheckedTextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CompoundButton_CheckBox" class="hiddenlink" target="rightframe">Widget_Material_Light_CompoundButton_CheckBox</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CompoundButton_RadioButton" class="hiddenlink" target="rightframe">Widget_Material_Light_CompoundButton_RadioButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CompoundButton_Star" class="hiddenlink" target="rightframe">Widget_Material_Light_CompoundButton_Star</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_DatePicker" class="hiddenlink" target="rightframe">Widget_Material_Light_DatePicker</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_DropDownItem" class="hiddenlink" target="rightframe">Widget_Material_Light_DropDownItem</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_DropDownItem_Spinner" class="hiddenlink" target="rightframe">Widget_Material_Light_DropDownItem_Spinner</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_EditText" class="hiddenlink" target="rightframe">Widget_Material_Light_EditText</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ExpandableListView" class="hiddenlink" target="rightframe">Widget_Material_Light_ExpandableListView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_FastScroll" class="hiddenlink" target="rightframe">Widget_Material_Light_FastScroll</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_GridView" class="hiddenlink" target="rightframe">Widget_Material_Light_GridView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_HorizontalScrollView" class="hiddenlink" target="rightframe">Widget_Material_Light_HorizontalScrollView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ImageButton" class="hiddenlink" target="rightframe">Widget_Material_Light_ImageButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ListPopupWindow" class="hiddenlink" target="rightframe">Widget_Material_Light_ListPopupWindow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ListView" class="hiddenlink" target="rightframe">Widget_Material_Light_ListView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ListView_DropDown" class="hiddenlink" target="rightframe">Widget_Material_Light_ListView_DropDown</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_MediaRouteButton" class="hiddenlink" target="rightframe">Widget_Material_Light_MediaRouteButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_PopupMenu" class="hiddenlink" target="rightframe">Widget_Material_Light_PopupMenu</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_PopupMenu_Overflow" class="hiddenlink" target="rightframe">Widget_Material_Light_PopupMenu_Overflow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_PopupWindow" class="hiddenlink" target="rightframe">Widget_Material_Light_PopupWindow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Horizontal" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Horizontal</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Inverse" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Large" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Large</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Large_Inverse" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Large_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Small_Inverse" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Small_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Small_Title" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Small_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_RatingBar" class="hiddenlink" target="rightframe">Widget_Material_Light_RatingBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_RatingBar_Indicator" class="hiddenlink" target="rightframe">Widget_Material_Light_RatingBar_Indicator</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_RatingBar_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_RatingBar_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ScrollView" class="hiddenlink" target="rightframe">Widget_Material_Light_ScrollView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_SearchView" class="hiddenlink" target="rightframe">Widget_Material_Light_SearchView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_SeekBar" class="hiddenlink" target="rightframe">Widget_Material_Light_SeekBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_SegmentedButton" class="hiddenlink" target="rightframe">Widget_Material_Light_SegmentedButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Spinner" class="hiddenlink" target="rightframe">Widget_Material_Light_Spinner</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Spinner_Underlined" class="hiddenlink" target="rightframe">Widget_Material_Light_Spinner_Underlined</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_StackView" class="hiddenlink" target="rightframe">Widget_Material_Light_StackView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Tab" class="hiddenlink" target="rightframe">Widget_Material_Light_Tab</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TabWidget" class="hiddenlink" target="rightframe">Widget_Material_Light_TabWidget</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TextView" class="hiddenlink" target="rightframe">Widget_Material_Light_TextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TextView_SpinnerItem" class="hiddenlink" target="rightframe">Widget_Material_Light_TextView_SpinnerItem</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TimePicker" class="hiddenlink" target="rightframe">Widget_Material_Light_TimePicker</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ListPopupWindow" class="hiddenlink" target="rightframe">Widget_Material_ListPopupWindow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ListView" class="hiddenlink" target="rightframe">Widget_Material_ListView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ListView_DropDown" class="hiddenlink" target="rightframe">Widget_Material_ListView_DropDown</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_MediaRouteButton" class="hiddenlink" target="rightframe">Widget_Material_MediaRouteButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_PopupMenu" class="hiddenlink" target="rightframe">Widget_Material_PopupMenu</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_PopupMenu_Overflow" class="hiddenlink" target="rightframe">Widget_Material_PopupMenu_Overflow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_PopupWindow" class="hiddenlink" target="rightframe">Widget_Material_PopupWindow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Horizontal" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Horizontal</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Large" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Large</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Small" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Small_Title" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Small_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_RatingBar" class="hiddenlink" target="rightframe">Widget_Material_RatingBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_RatingBar_Indicator" class="hiddenlink" target="rightframe">Widget_Material_RatingBar_Indicator</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_RatingBar_Small" class="hiddenlink" target="rightframe">Widget_Material_RatingBar_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ScrollView" class="hiddenlink" target="rightframe">Widget_Material_ScrollView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_SearchView" class="hiddenlink" target="rightframe">Widget_Material_SearchView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_SeekBar" class="hiddenlink" target="rightframe">Widget_Material_SeekBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_SegmentedButton" class="hiddenlink" target="rightframe">Widget_Material_SegmentedButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Spinner" class="hiddenlink" target="rightframe">Widget_Material_Spinner</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Spinner_Underlined" class="hiddenlink" target="rightframe">Widget_Material_Spinner_Underlined</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_StackView" class="hiddenlink" target="rightframe">Widget_Material_StackView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Tab" class="hiddenlink" target="rightframe">Widget_Material_Tab</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TabWidget" class="hiddenlink" target="rightframe">Widget_Material_TabWidget</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TextView" class="hiddenlink" target="rightframe">Widget_Material_TextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TextView_SpinnerItem" class="hiddenlink" target="rightframe">Widget_Material_TextView_SpinnerItem</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TimePicker" class="hiddenlink" target="rightframe">Widget_Material_TimePicker</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Toolbar" class="hiddenlink" target="rightframe">Widget_Material_Toolbar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Toolbar_Button_Navigation" class="hiddenlink" target="rightframe">Widget_Material_Toolbar_Button_Navigation</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_WebTextView" class="hiddenlink" target="rightframe">Widget_Material_WebTextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_WebView" class="hiddenlink" target="rightframe">Widget_Material_WebView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_StackView" class="hiddenlink" target="rightframe">Widget_StackView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Toolbar" class="hiddenlink" target="rightframe">Widget_Toolbar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Toolbar_Button_Navigation" class="hiddenlink" target="rightframe">Widget_Toolbar_Button_Navigation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowActivityTransitions" class="hiddenlink" target="rightframe">windowActivityTransitions</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowAllowEnterTransitionOverlap" class="hiddenlink" target="rightframe">windowAllowEnterTransitionOverlap</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowAllowExitTransitionOverlap" class="hiddenlink" target="rightframe"><strike>windowAllowExitTransitionOverlap</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowAllowReturnTransitionOverlap" class="hiddenlink" target="rightframe">windowAllowReturnTransitionOverlap</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowClipToOutline" class="hiddenlink" target="rightframe">windowClipToOutline</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowContentTransitionManager" class="hiddenlink" target="rightframe">windowContentTransitionManager</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowContentTransitions" class="hiddenlink" target="rightframe">windowContentTransitions</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowDrawsSystemBarBackgrounds" class="hiddenlink" target="rightframe">windowDrawsSystemBarBackgrounds</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowElevation" class="hiddenlink" target="rightframe">windowElevation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowEnterTransition" class="hiddenlink" target="rightframe">windowEnterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowExitTransition" class="hiddenlink" target="rightframe">windowExitTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowReenterTransition" class="hiddenlink" target="rightframe">windowReenterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowReturnTransition" class="hiddenlink" target="rightframe">windowReturnTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementEnterTransition" class="hiddenlink" target="rightframe">windowSharedElementEnterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementExitTransition" class="hiddenlink" target="rightframe">windowSharedElementExitTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementReenterTransition" class="hiddenlink" target="rightframe">windowSharedElementReenterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementReturnTransition" class="hiddenlink" target="rightframe">windowSharedElementReturnTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementsUseOverlay" class="hiddenlink" target="rightframe">windowSharedElementsUseOverlay</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowTransitionBackgroundFadeDuration" class="hiddenlink" target="rightframe">windowTransitionBackgroundFadeDuration</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_AUTH_FAILURE" class="hiddenlink" target="rightframe">WPS_AUTH_FAILURE</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_OVERLAP_ERROR" class="hiddenlink" target="rightframe">WPS_OVERLAP_ERROR</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_TIMED_OUT" class="hiddenlink" target="rightframe">WPS_TIMED_OUT</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_TKIP_ONLY_PROHIBITED" class="hiddenlink" target="rightframe">WPS_TKIP_ONLY_PROHIBITED</A>
+</nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.WPS_WEP_PROHIBITED" class="hiddenlink" target="rightframe">WPS_WEP_PROHIBITED</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.WRITE_SOCIAL_STREAM" class="hiddenlink" target="rightframe">WRITE_SOCIAL_STREAM</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.WRITE_VOICEMAIL" class="hiddenlink" target="rightframe">WRITE_VOICEMAIL</A>
+</nobr><br>
+<A NAME="Y"></A>
+<br><font size="+2">Y</font>&nbsp;
+<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.R.attr.html#android.R.attr.yearListItemTextAppearance" class="hiddenlink" target="rightframe">yearListItemTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.yearListSelectorColor" class="hiddenlink" target="rightframe">yearListSelectorColor</A>
+</nobr><br>
+<script src="//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/preview-21/changes/fields_index_changes.html b/docs/html/sdk/api_diff/preview-21/changes/fields_index_changes.html
new file mode 100644
index 0000000..3d5b38b
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/fields_index_changes.html
@@ -0,0 +1,1259 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<A HREF="fields_index_removals.html" xclass="hiddenlink">Removals</A>
+  <br>
+<A HREF="fields_index_additions.html"xclass="hiddenlink">Additions</A>
+  <br>
+<b>Changes</b>
+  </td>
+  </tr>
+</table>
+<div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.ACCOUNT_NAME" class="hiddenlink" target="rightframe">ACCOUNT_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.ACCOUNT_TYPE" class="hiddenlink" target="rightframe">ACCOUNT_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.ACTION_PROFILE_PROVISIONING_COMPLETE" class="hiddenlink" target="rightframe">ACTION_PROFILE_PROVISIONING_COMPLETE</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.ACTION_PROVISION_MANAGED_PROFILE" class="hiddenlink" target="rightframe">ACTION_PROVISION_MANAGED_PROFILE</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionBarTheme" class="hiddenlink" target="rightframe">actionBarTheme</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.actionOverflowMenuStyle" class="hiddenlink" target="rightframe">actionOverflowMenuStyle</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.ANIMAL_WILDLIFE" class="hiddenlink" target="rightframe">ANIMAL_WILDLIFE</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.audioStreamType" class="hiddenlink" target="rightframe">audioStreamType</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.autoRemoveFromRecents" class="hiddenlink" target="rightframe">autoRemoveFromRecents</A>
+</nobr><br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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="#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.media.MediaCodec.html#android.media.MediaCodec.BUFFER_FLAG_SYNC_FRAME" class="hiddenlink" target="rightframe">BUFFER_FLAG_SYNC_FRAME</A>
+</nobr><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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="#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="#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.colorAccent" class="hiddenlink" target="rightframe">colorAccent</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorButtonNormal" class="hiddenlink" target="rightframe">colorButtonNormal</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorControlActivated" class="hiddenlink" target="rightframe">colorControlActivated</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorControlHighlight" class="hiddenlink" target="rightframe">colorControlHighlight</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorControlNormal" class="hiddenlink" target="rightframe">colorControlNormal</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorPrimary" class="hiddenlink" target="rightframe">colorPrimary</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorPrimaryDark" class="hiddenlink" target="rightframe">colorPrimaryDark</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.COMEDY" class="hiddenlink" target="rightframe">COMEDY</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.COMMENTS" class="hiddenlink" target="rightframe">COMMENTS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.CONTACT_ID" class="hiddenlink" target="rightframe">CONTACT_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.CONTACT_LOOKUP_KEY" class="hiddenlink" target="rightframe">CONTACT_LOOKUP_KEY</A>
+</nobr><br>
+<i>CONTENT_DIRECTORY</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.Contacts.StreamItems.html#android.provider.ContactsContract.Contacts.StreamItems.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.ContactsContract.Contacts.StreamItems</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.RawContacts.StreamItems.html#android.provider.ContactsContract.RawContacts.StreamItems.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.ContactsContract.RawContacts.StreamItems</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html#android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems.StreamItemPhotos</A>
+</nobr><br>
+<i>CONTENT_ITEM_TYPE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html#android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems.StreamItemPhotos</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_LIMIT_URI" class="hiddenlink" target="rightframe">CONTENT_LIMIT_URI</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_PHOTO_URI" class="hiddenlink" target="rightframe">CONTENT_PHOTO_URI</A>
+</nobr><br>
+<i>CONTENT_TYPE</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html#android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItems.StreamItemPhotos</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.CONTENT_URI" class="hiddenlink" target="rightframe">CONTENT_URI</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetEnd" class="hiddenlink" target="rightframe">contentInsetEnd</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetLeft" class="hiddenlink" target="rightframe">contentInsetLeft</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetRight" class="hiddenlink" target="rightframe">contentInsetRight</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentInsetStart" class="hiddenlink" target="rightframe">contentInsetStart</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlX1" class="hiddenlink" target="rightframe">controlX1</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlX2" class="hiddenlink" target="rightframe">controlX2</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlY1" class="hiddenlink" target="rightframe">controlY1</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.controlY2" class="hiddenlink" target="rightframe">controlY2</A>
+</nobr><br>
+<nobr><A HREF="android.os.Build.html#android.os.Build.CPU_ABI" class="hiddenlink" target="rightframe">CPU_ABI</A>
+</nobr><br>
+<nobr><A HREF="android.os.Build.html#android.os.Build.CPU_ABI2" class="hiddenlink" target="rightframe">CPU_ABI2</A>
+</nobr><br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.DATA_SET" class="hiddenlink" target="rightframe">DATA_SET</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.documentLaunchMode" class="hiddenlink" target="rightframe">documentLaunchMode</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.DRAMA" class="hiddenlink" target="rightframe">DRAMA</A>
+</nobr><br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.EDUCATION" class="hiddenlink" target="rightframe">EDUCATION</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.elegantTextHeight" class="hiddenlink" target="rightframe">elegantTextHeight</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.elevation" class="hiddenlink" target="rightframe">elevation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeClass" class="hiddenlink" target="rightframe">excludeClass</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeId" class="hiddenlink" target="rightframe">excludeId</A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME" class="hiddenlink" target="rightframe">EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_USER" class="hiddenlink" target="rightframe">EXTRA_USER</A>
+</nobr><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.FAMILY_KIDS" class="hiddenlink" target="rightframe">FAMILY_KIDS</A>
+</nobr><br>
+<nobr><A HREF="android.R.interpolator.html#android.R.interpolator.fast_out_linear_in" class="hiddenlink" target="rightframe">fast_out_linear_in</A>
+</nobr><br>
+<nobr><A HREF="android.R.interpolator.html#android.R.interpolator.fast_out_slow_in" class="hiddenlink" target="rightframe">fast_out_slow_in</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fastScrollStyle" class="hiddenlink" target="rightframe">fastScrollStyle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fromId" class="hiddenlink" target="rightframe">fromId</A>
+</nobr><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.GAMING" class="hiddenlink" target="rightframe">GAMING</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.GET_TASKS" class="hiddenlink" target="rightframe">GET_TASKS</A>
+</nobr><br>
+<A NAME="H"></A>
+<br><font size="+2">H</font>&nbsp;
+<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="#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="#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.hideOnContentScroll" class="hiddenlink" target="rightframe">hideOnContentScroll</A>
+</nobr><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.INFO_OUTPUT_BUFFERS_CHANGED" class="hiddenlink" target="rightframe">INFO_OUTPUT_BUFFERS_CHANGED</A>
+</nobr><br>
+<nobr><A HREF="android.graphics.BitmapFactory.Options.html#android.graphics.BitmapFactory.Options.inInputShareable" class="hiddenlink" target="rightframe">inInputShareable</A>
+</nobr><br>
+<nobr><A HREF="android.graphics.BitmapFactory.Options.html#android.graphics.BitmapFactory.Options.inPurgeable" class="hiddenlink" target="rightframe">inPurgeable</A>
+</nobr><br>
+<A NAME="K"></A>
+<br><font size="+2">K</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_EMBEDDED_SYNTHESIS" class="hiddenlink" target="rightframe">KEY_FEATURE_EMBEDDED_SYNTHESIS</A>
+</nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html#android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_SYNTHESIS" class="hiddenlink" target="rightframe">KEY_FEATURE_NETWORK_SYNTHESIS</A>
+</nobr><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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="#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="#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.L" class="hiddenlink" target="rightframe">L</A>
+</nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.label" class="hiddenlink" target="rightframe">label</A>
+</nobr><br>
+<nobr><A HREF="android.R.interpolator.html#android.R.interpolator.linear_out_slow_in" class="hiddenlink" target="rightframe">linear_out_slow_in</A>
+</nobr><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.R.id.html#android.R.id.mask" class="hiddenlink" target="rightframe">mask</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.matchOrder" class="hiddenlink" target="rightframe">matchOrder</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.MAX_ITEMS" class="hiddenlink" target="rightframe">MAX_ITEMS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.maxRecents" class="hiddenlink" target="rightframe">maxRecents</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.MOVIES" class="hiddenlink" target="rightframe">MOVIES</A>
+</nobr><br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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="#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="#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.navigationBarColor" class="hiddenlink" target="rightframe">navigationBarColor</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.nestedScrollingEnabled" class="hiddenlink" target="rightframe">nestedScrollingEnabled</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.NEWS" class="hiddenlink" target="rightframe">NEWS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.System.html#android.provider.Settings.System.NEXT_ALARM_FORMATTED" class="hiddenlink" target="rightframe">NEXT_ALARM_FORMATTED</A>
+</nobr><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#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="#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.paddingMode" class="hiddenlink" target="rightframe">paddingMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.pathData" class="hiddenlink" target="rightframe">pathData</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotos.html#android.provider.ContactsContract.StreamItemPhotos.PHOTO" class="hiddenlink" target="rightframe">PHOTO</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.PHOTO_FILE_ID" class="hiddenlink" target="rightframe">PHOTO_FILE_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.PHOTO_URI" class="hiddenlink" target="rightframe">PHOTO_URI</A>
+</nobr><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RAW_CONTACT_ID" class="hiddenlink" target="rightframe">RAW_CONTACT_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RAW_CONTACT_SOURCE_ID" class="hiddenlink" target="rightframe">RAW_CONTACT_SOURCE_ID</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.READ_SOCIAL_STREAM" class="hiddenlink" target="rightframe">READ_SOCIAL_STREAM</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_MANUAL_POST_PROCESSING" class="hiddenlink" target="rightframe">REQUEST_AVAILABLE_CAPABILITIES_MANUAL_POST_PROCESSING</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_MANUAL_SENSOR" class="hiddenlink" target="rightframe">REQUEST_AVAILABLE_CAPABILITIES_MANUAL_SENSOR</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RES_ICON" class="hiddenlink" target="rightframe">RES_ICON</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RES_LABEL" class="hiddenlink" target="rightframe">RES_LABEL</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.RES_PACKAGE" class="hiddenlink" target="rightframe">RES_PACKAGE</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.PermissionRequest.html#android.webkit.PermissionRequest.RESOURCE_AUDIO_CAPTURE" class="hiddenlink" target="rightframe">RESOURCE_AUDIO_CAPTURE</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.PermissionRequest.html#android.webkit.PermissionRequest.RESOURCE_VIDEO_CAPTURE" class="hiddenlink" target="rightframe">RESOURCE_VIDEO_CAPTURE</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.reversible" class="hiddenlink" target="rightframe">reversible</A>
+</nobr><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#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="#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.R.attr.html#android.R.attr.selectableItemBackgroundBorderless" class="hiddenlink" target="rightframe">selectableItemBackgroundBorderless</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.SERVICE_TYPE_AUDIO" class="hiddenlink" target="rightframe">SERVICE_TYPE_AUDIO</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.SERVICE_TYPE_AUDIO_VIDEO" class="hiddenlink" target="rightframe">SERVICE_TYPE_AUDIO_VIDEO</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.SERVICE_TYPE_OTHER" class="hiddenlink" target="rightframe">SERVICE_TYPE_OTHER</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.sessionService" class="hiddenlink" target="rightframe">sessionService</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.SHOPPING" class="hiddenlink" target="rightframe">SHOPPING</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.slideEdge" class="hiddenlink" target="rightframe">slideEdge</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SORT_INDEX" class="hiddenlink" target="rightframe">SORT_INDEX</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.splitTrack" class="hiddenlink" target="rightframe">splitTrack</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.SPORTS" class="hiddenlink" target="rightframe">SPORTS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.stackViewStyle" class="hiddenlink" target="rightframe">stackViewStyle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.stateListAnimator" class="hiddenlink" target="rightframe">stateListAnimator</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.statusBarColor" class="hiddenlink" target="rightframe">statusBarColor</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.STREAM_DEFAULT" class="hiddenlink" target="rightframe">STREAM_DEFAULT</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.STREAM_ITEM_ID" class="hiddenlink" target="rightframe">STREAM_ITEM_ID</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeLineCap" class="hiddenlink" target="rightframe">strokeLineCap</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeLineJoin" class="hiddenlink" target="rightframe">strokeLineJoin</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeWidth" class="hiddenlink" target="rightframe">strokeWidth</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.subtitleTextAppearance" class="hiddenlink" target="rightframe">subtitleTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.switchStyle" class="hiddenlink" target="rightframe">switchStyle</A>
+</nobr><br>
+<i>SYNC1</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC1" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC1" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<i>SYNC2</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC2" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC2" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<i>SYNC3</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC3" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC3" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<i>SYNC4</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html#android.provider.ContactsContract.StreamItemPhotosColumns.SYNC4" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemPhotosColumns</A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.SYNC4" class="hiddenlink" target="rightframe">android.provider.ContactsContract.StreamItemsColumns</A>
+</nobr><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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="#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="#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.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.TEXT" class="hiddenlink" target="rightframe">TEXT</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material" class="hiddenlink" target="rightframe">TextAppearance_Material</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Body1" class="hiddenlink" target="rightframe">TextAppearance_Material_Body1</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Body2" class="hiddenlink" target="rightframe">TextAppearance_Material_Body2</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Button" class="hiddenlink" target="rightframe">TextAppearance_Material_Button</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Caption" class="hiddenlink" target="rightframe">TextAppearance_Material_Caption</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_DialogWindowTitle" class="hiddenlink" target="rightframe">TextAppearance_Material_DialogWindowTitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display1" class="hiddenlink" target="rightframe">TextAppearance_Material_Display1</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display2" class="hiddenlink" target="rightframe">TextAppearance_Material_Display2</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display3" class="hiddenlink" target="rightframe">TextAppearance_Material_Display3</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Display4" class="hiddenlink" target="rightframe">TextAppearance_Material_Display4</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Headline" class="hiddenlink" target="rightframe">TextAppearance_Material_Headline</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Large" class="hiddenlink" target="rightframe">TextAppearance_Material_Large</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Large_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Large_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Medium" class="hiddenlink" target="rightframe">TextAppearance_Material_Medium</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Medium_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Medium_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Menu" class="hiddenlink" target="rightframe">TextAppearance_Material_Menu</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_SearchResult_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_SearchResult_Subtitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_SearchResult_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_SearchResult_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Small" class="hiddenlink" target="rightframe">TextAppearance_Material_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Small_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Small_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Subhead" class="hiddenlink" target="rightframe">TextAppearance_Material_Subhead</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Menu" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Menu</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Subtitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionBar_Title_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionBar_Title_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Subtitle" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Subtitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Title" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_ActionMode_Title_Inverse" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_ActionMode_Title_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_Button" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_Button</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_DropDownHint" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_DropDownHint</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_DropDownItem" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_DropDownItem</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_EditText" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_EditText</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_IconMenu_Item" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_IconMenu_Item</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_PopupMenu" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_PopupMenu</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_PopupMenu_Large" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_PopupMenu_Large</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_PopupMenu_Small" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_PopupMenu_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TabWidget" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TabWidget</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TextView" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TextView_PopupMenu" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TextView_PopupMenu</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_Widget_TextView_SpinnerItem" class="hiddenlink" target="rightframe">TextAppearance_Material_Widget_TextView_SpinnerItem</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.TextAppearance_Material_WindowTitle" class="hiddenlink" target="rightframe">TextAppearance_Material_WindowTitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.textAppearanceListItemSecondary" class="hiddenlink" target="rightframe">textAppearanceListItemSecondary</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_DeviceDefault_Settings" class="hiddenlink" target="rightframe">Theme_DeviceDefault_Settings</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material" class="hiddenlink" target="rightframe">Theme_Material</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog" class="hiddenlink" target="rightframe">Theme_Material_Dialog</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Dialog_MinWidth</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Dialog_NoActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Dialog_NoActionBar_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Dialog_NoActionBar_MinWidth</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_DialogWhenLarge" class="hiddenlink" target="rightframe">Theme_Material_DialogWhenLarge</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_DialogWhenLarge_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_DialogWhenLarge_NoActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_InputMethod" class="hiddenlink" target="rightframe">Theme_Material_InputMethod</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light" class="hiddenlink" target="rightframe">Theme_Material_Light</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_DarkActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_DarkActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_MinWidth</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_NoActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Dialog_NoActionBar_MinWidth" class="hiddenlink" target="rightframe">Theme_Material_Light_Dialog_NoActionBar_MinWidth</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_DialogWhenLarge" class="hiddenlink" target="rightframe">Theme_Material_Light_DialogWhenLarge</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_DialogWhenLarge_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_DialogWhenLarge_NoActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar_Fullscreen" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar_Fullscreen</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar_Overscan" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar_Overscan</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_NoActionBar_TranslucentDecor" class="hiddenlink" target="rightframe">Theme_Material_Light_NoActionBar_TranslucentDecor</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Panel" class="hiddenlink" target="rightframe">Theme_Material_Light_Panel</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Light_Voice" class="hiddenlink" target="rightframe">Theme_Material_Light_Voice</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar_Fullscreen" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar_Fullscreen</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar_Overscan" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar_Overscan</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_NoActionBar_TranslucentDecor" class="hiddenlink" target="rightframe">Theme_Material_NoActionBar_TranslucentDecor</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Panel" class="hiddenlink" target="rightframe">Theme_Material_Panel</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Settings" class="hiddenlink" target="rightframe">Theme_Material_Settings</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Voice" class="hiddenlink" target="rightframe">Theme_Material_Voice</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Wallpaper" class="hiddenlink" target="rightframe">Theme_Material_Wallpaper</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Material_Wallpaper_NoTitleBar" class="hiddenlink" target="rightframe">Theme_Material_Wallpaper_NoTitleBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay" class="hiddenlink" target="rightframe">ThemeOverlay</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material" class="hiddenlink" target="rightframe">ThemeOverlay_Material</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_ActionBar" class="hiddenlink" target="rightframe">ThemeOverlay_Material_ActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_Dark" class="hiddenlink" target="rightframe">ThemeOverlay_Material_Dark</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_Dark_ActionBar" class="hiddenlink" target="rightframe">ThemeOverlay_Material_Dark_ActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.ThemeOverlay_Material_Light" class="hiddenlink" target="rightframe">ThemeOverlay_Material_Light</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.tickerView" class="hiddenlink" target="rightframe">tickerView</A>
+</nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html#android.provider.ContactsContract.StreamItemsColumns.TIMESTAMP" class="hiddenlink" target="rightframe">TIMESTAMP</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.tintMode" class="hiddenlink" target="rightframe">tintMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.titleTextAppearance" class="hiddenlink" target="rightframe">titleTextAppearance</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.toId" class="hiddenlink" target="rightframe">toId</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.transitionGroup" class="hiddenlink" target="rightframe">transitionGroup</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.translationZ" class="hiddenlink" target="rightframe">translationZ</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html#android.media.tv.TvContract.Programs.Genres.TRAVEL" class="hiddenlink" target="rightframe">TRAVEL</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.trimPathEnd" class="hiddenlink" target="rightframe">trimPathEnd</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.trimPathOffset" class="hiddenlink" target="rightframe">trimPathOffset</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.trimPathStart" class="hiddenlink" target="rightframe">trimPathStart</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_1SEG" class="hiddenlink" target="rightframe">TYPE_1SEG</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ATSC_C" class="hiddenlink" target="rightframe">TYPE_ATSC_C</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ATSC_M_H" class="hiddenlink" target="rightframe">TYPE_ATSC_M_H</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ATSC_T" class="hiddenlink" target="rightframe">TYPE_ATSC_T</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_CMMB" class="hiddenlink" target="rightframe">TYPE_CMMB</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DTMB" class="hiddenlink" target="rightframe">TYPE_DTMB</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_C" class="hiddenlink" target="rightframe">TYPE_DVB_C</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_C2" class="hiddenlink" target="rightframe">TYPE_DVB_C2</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_H" class="hiddenlink" target="rightframe">TYPE_DVB_H</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_S" class="hiddenlink" target="rightframe">TYPE_DVB_S</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_S2" class="hiddenlink" target="rightframe">TYPE_DVB_S2</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_SH" class="hiddenlink" target="rightframe">TYPE_DVB_SH</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_T" class="hiddenlink" target="rightframe">TYPE_DVB_T</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_DVB_T2" class="hiddenlink" target="rightframe">TYPE_DVB_T2</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_HDMI" class="hiddenlink" target="rightframe">TYPE_HDMI</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ISDB_C" class="hiddenlink" target="rightframe">TYPE_ISDB_C</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ISDB_S" class="hiddenlink" target="rightframe">TYPE_ISDB_S</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ISDB_T" class="hiddenlink" target="rightframe">TYPE_ISDB_T</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_ISDB_TB" class="hiddenlink" target="rightframe">TYPE_ISDB_TB</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_OTHER" class="hiddenlink" target="rightframe">TYPE_OTHER</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_S_DMB" class="hiddenlink" target="rightframe">TYPE_S_DMB</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_T_DMB" class="hiddenlink" target="rightframe">TYPE_T_DMB</A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_TUNER" class="hiddenlink" target="rightframe">TYPE_TUNER</A>
+</nobr><br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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="#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="#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.viewportHeight" class="hiddenlink" target="rightframe">viewportHeight</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.viewportWidth" class="hiddenlink" target="rightframe">viewportWidth</A>
+</nobr><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#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.R.style.html#android.R.style.Widget_DeviceDefault_FastScroll" class="hiddenlink" target="rightframe">Widget_DeviceDefault_FastScroll</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_FastScroll" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_FastScroll</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_Light_StackView" class="hiddenlink" target="rightframe">Widget_DeviceDefault_Light_StackView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_DeviceDefault_StackView" class="hiddenlink" target="rightframe">Widget_DeviceDefault_StackView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_FastScroll" class="hiddenlink" target="rightframe">Widget_FastScroll</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material" class="hiddenlink" target="rightframe">Widget_Material</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar" class="hiddenlink" target="rightframe">Widget_Material_ActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_Solid" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_Solid</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_TabBar" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_TabBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_TabText" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_TabText</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionBar_TabView" class="hiddenlink" target="rightframe">Widget_Material_ActionBar_TabView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionButton" class="hiddenlink" target="rightframe">Widget_Material_ActionButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionButton_CloseMode" class="hiddenlink" target="rightframe">Widget_Material_ActionButton_CloseMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionButton_Overflow" class="hiddenlink" target="rightframe">Widget_Material_ActionButton_Overflow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ActionMode" class="hiddenlink" target="rightframe">Widget_Material_ActionMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_AutoCompleteTextView" class="hiddenlink" target="rightframe">Widget_Material_AutoCompleteTextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button" class="hiddenlink" target="rightframe">Widget_Material_Button</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Borderless" class="hiddenlink" target="rightframe">Widget_Material_Button_Borderless</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Borderless_Small" class="hiddenlink" target="rightframe">Widget_Material_Button_Borderless_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Inset" class="hiddenlink" target="rightframe">Widget_Material_Button_Inset</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Small" class="hiddenlink" target="rightframe">Widget_Material_Button_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Button_Toggle" class="hiddenlink" target="rightframe">Widget_Material_Button_Toggle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ButtonBar" class="hiddenlink" target="rightframe">Widget_Material_ButtonBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ButtonBar_AlertDialog" class="hiddenlink" target="rightframe">Widget_Material_ButtonBar_AlertDialog</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CalendarView" class="hiddenlink" target="rightframe">Widget_Material_CalendarView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CheckedTextView" class="hiddenlink" target="rightframe">Widget_Material_CheckedTextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CompoundButton_CheckBox" class="hiddenlink" target="rightframe">Widget_Material_CompoundButton_CheckBox</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CompoundButton_RadioButton" class="hiddenlink" target="rightframe">Widget_Material_CompoundButton_RadioButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_CompoundButton_Star" class="hiddenlink" target="rightframe">Widget_Material_CompoundButton_Star</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_DatePicker" class="hiddenlink" target="rightframe">Widget_Material_DatePicker</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_DropDownItem" class="hiddenlink" target="rightframe">Widget_Material_DropDownItem</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_DropDownItem_Spinner" class="hiddenlink" target="rightframe">Widget_Material_DropDownItem_Spinner</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_EditText" class="hiddenlink" target="rightframe">Widget_Material_EditText</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ExpandableListView" class="hiddenlink" target="rightframe">Widget_Material_ExpandableListView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_FastScroll" class="hiddenlink" target="rightframe">Widget_Material_FastScroll</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_GridView" class="hiddenlink" target="rightframe">Widget_Material_GridView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_HorizontalScrollView" class="hiddenlink" target="rightframe">Widget_Material_HorizontalScrollView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ImageButton" class="hiddenlink" target="rightframe">Widget_Material_ImageButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light" class="hiddenlink" target="rightframe">Widget_Material_Light</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_Solid" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_Solid</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_TabBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_TabBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_TabText" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_TabText</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionBar_TabView" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionBar_TabView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionButton" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionButton_CloseMode" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionButton_CloseMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionButton_Overflow" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionButton_Overflow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ActionMode" class="hiddenlink" target="rightframe">Widget_Material_Light_ActionMode</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_AutoCompleteTextView" class="hiddenlink" target="rightframe">Widget_Material_Light_AutoCompleteTextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button" class="hiddenlink" target="rightframe">Widget_Material_Light_Button</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Borderless" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Borderless</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Borderless_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Borderless_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Inset" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Inset</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Button_Toggle" class="hiddenlink" target="rightframe">Widget_Material_Light_Button_Toggle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ButtonBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ButtonBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ButtonBar_AlertDialog" class="hiddenlink" target="rightframe">Widget_Material_Light_ButtonBar_AlertDialog</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CalendarView" class="hiddenlink" target="rightframe">Widget_Material_Light_CalendarView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CheckedTextView" class="hiddenlink" target="rightframe">Widget_Material_Light_CheckedTextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CompoundButton_CheckBox" class="hiddenlink" target="rightframe">Widget_Material_Light_CompoundButton_CheckBox</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CompoundButton_RadioButton" class="hiddenlink" target="rightframe">Widget_Material_Light_CompoundButton_RadioButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_CompoundButton_Star" class="hiddenlink" target="rightframe">Widget_Material_Light_CompoundButton_Star</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_DropDownItem" class="hiddenlink" target="rightframe">Widget_Material_Light_DropDownItem</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_DropDownItem_Spinner" class="hiddenlink" target="rightframe">Widget_Material_Light_DropDownItem_Spinner</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_EditText" class="hiddenlink" target="rightframe">Widget_Material_Light_EditText</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ExpandableListView" class="hiddenlink" target="rightframe">Widget_Material_Light_ExpandableListView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_FastScroll" class="hiddenlink" target="rightframe">Widget_Material_Light_FastScroll</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_GridView" class="hiddenlink" target="rightframe">Widget_Material_Light_GridView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_HorizontalScrollView" class="hiddenlink" target="rightframe">Widget_Material_Light_HorizontalScrollView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ImageButton" class="hiddenlink" target="rightframe">Widget_Material_Light_ImageButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ListPopupWindow" class="hiddenlink" target="rightframe">Widget_Material_Light_ListPopupWindow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ListView" class="hiddenlink" target="rightframe">Widget_Material_Light_ListView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ListView_DropDown" class="hiddenlink" target="rightframe">Widget_Material_Light_ListView_DropDown</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_MediaRouteButton" class="hiddenlink" target="rightframe">Widget_Material_Light_MediaRouteButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_PopupMenu" class="hiddenlink" target="rightframe">Widget_Material_Light_PopupMenu</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_PopupMenu_Overflow" class="hiddenlink" target="rightframe">Widget_Material_Light_PopupMenu_Overflow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_PopupWindow" class="hiddenlink" target="rightframe">Widget_Material_Light_PopupWindow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Horizontal" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Horizontal</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Inverse" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Large" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Large</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Large_Inverse" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Large_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Small_Inverse" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Small_Inverse</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ProgressBar_Small_Title" class="hiddenlink" target="rightframe">Widget_Material_Light_ProgressBar_Small_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_RatingBar" class="hiddenlink" target="rightframe">Widget_Material_Light_RatingBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_RatingBar_Indicator" class="hiddenlink" target="rightframe">Widget_Material_Light_RatingBar_Indicator</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_RatingBar_Small" class="hiddenlink" target="rightframe">Widget_Material_Light_RatingBar_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_ScrollView" class="hiddenlink" target="rightframe">Widget_Material_Light_ScrollView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_SeekBar" class="hiddenlink" target="rightframe">Widget_Material_Light_SeekBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_SegmentedButton" class="hiddenlink" target="rightframe">Widget_Material_Light_SegmentedButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Spinner" class="hiddenlink" target="rightframe">Widget_Material_Light_Spinner</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_StackView" class="hiddenlink" target="rightframe">Widget_Material_Light_StackView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_Tab" class="hiddenlink" target="rightframe">Widget_Material_Light_Tab</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TabWidget" class="hiddenlink" target="rightframe">Widget_Material_Light_TabWidget</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TextView" class="hiddenlink" target="rightframe">Widget_Material_Light_TextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Light_TextView_SpinnerItem" class="hiddenlink" target="rightframe">Widget_Material_Light_TextView_SpinnerItem</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ListPopupWindow" class="hiddenlink" target="rightframe">Widget_Material_ListPopupWindow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ListView" class="hiddenlink" target="rightframe">Widget_Material_ListView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ListView_DropDown" class="hiddenlink" target="rightframe">Widget_Material_ListView_DropDown</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_MediaRouteButton" class="hiddenlink" target="rightframe">Widget_Material_MediaRouteButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_PopupMenu" class="hiddenlink" target="rightframe">Widget_Material_PopupMenu</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_PopupMenu_Overflow" class="hiddenlink" target="rightframe">Widget_Material_PopupMenu_Overflow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_PopupWindow" class="hiddenlink" target="rightframe">Widget_Material_PopupWindow</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Horizontal" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Horizontal</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Large" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Large</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Small" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ProgressBar_Small_Title" class="hiddenlink" target="rightframe">Widget_Material_ProgressBar_Small_Title</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_RatingBar" class="hiddenlink" target="rightframe">Widget_Material_RatingBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_RatingBar_Indicator" class="hiddenlink" target="rightframe">Widget_Material_RatingBar_Indicator</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_RatingBar_Small" class="hiddenlink" target="rightframe">Widget_Material_RatingBar_Small</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_ScrollView" class="hiddenlink" target="rightframe">Widget_Material_ScrollView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_SeekBar" class="hiddenlink" target="rightframe">Widget_Material_SeekBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_SegmentedButton" class="hiddenlink" target="rightframe">Widget_Material_SegmentedButton</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Spinner" class="hiddenlink" target="rightframe">Widget_Material_Spinner</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_StackView" class="hiddenlink" target="rightframe">Widget_Material_StackView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Tab" class="hiddenlink" target="rightframe">Widget_Material_Tab</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TabWidget" class="hiddenlink" target="rightframe">Widget_Material_TabWidget</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TextView" class="hiddenlink" target="rightframe">Widget_Material_TextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_TextView_SpinnerItem" class="hiddenlink" target="rightframe">Widget_Material_TextView_SpinnerItem</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Toolbar" class="hiddenlink" target="rightframe">Widget_Material_Toolbar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_Toolbar_Button_Navigation" class="hiddenlink" target="rightframe">Widget_Material_Toolbar_Button_Navigation</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_WebTextView" class="hiddenlink" target="rightframe">Widget_Material_WebTextView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Material_WebView" class="hiddenlink" target="rightframe">Widget_Material_WebView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_StackView" class="hiddenlink" target="rightframe">Widget_StackView</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Toolbar" class="hiddenlink" target="rightframe">Widget_Toolbar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Toolbar_Button_Navigation" class="hiddenlink" target="rightframe">Widget_Toolbar_Button_Navigation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowAllowEnterTransitionOverlap" class="hiddenlink" target="rightframe">windowAllowEnterTransitionOverlap</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowContentTransitionManager" class="hiddenlink" target="rightframe">windowContentTransitionManager</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowContentTransitions" class="hiddenlink" target="rightframe">windowContentTransitions</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowDrawsSystemBarBackgrounds" class="hiddenlink" target="rightframe">windowDrawsSystemBarBackgrounds</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowEnterTransition" class="hiddenlink" target="rightframe">windowEnterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowExitTransition" class="hiddenlink" target="rightframe">windowExitTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementEnterTransition" class="hiddenlink" target="rightframe">windowSharedElementEnterTransition</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowSharedElementExitTransition" class="hiddenlink" target="rightframe">windowSharedElementExitTransition</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.WRITE_SOCIAL_STREAM" class="hiddenlink" target="rightframe">WRITE_SOCIAL_STREAM</A>
+</nobr><br>
+<script src="//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/preview-21/changes/fields_index_removals.html b/docs/html/sdk/api_diff/preview-21/changes/fields_index_removals.html
new file mode 100644
index 0000000..dc3e3e3
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/fields_index_removals.html
@@ -0,0 +1,662 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<b>Removals</b>
+  <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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#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="#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.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_CONTROLLER_FAILURE" class="hiddenlink" target="rightframe"><strike>ADVERTISE_FAILED_CONTROLLER_FAILURE</strike></A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_NOT_STARTED" class="hiddenlink" target="rightframe"><strike>ADVERTISE_FAILED_NOT_STARTED</strike></A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_SERVICE_UNKNOWN" class="hiddenlink" target="rightframe"><strike>ADVERTISE_FAILED_SERVICE_UNKNOWN</strike></A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html#android.bluetooth.le.AdvertiseSettings.ADVERTISE_TYPE_CONNECTABLE" class="hiddenlink" target="rightframe"><strike>ADVERTISE_TYPE_CONNECTABLE</strike></A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html#android.bluetooth.le.AdvertiseSettings.ADVERTISE_TYPE_NON_CONNECTABLE" class="hiddenlink" target="rightframe"><strike>ADVERTISE_TYPE_NON_CONNECTABLE</strike></A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html#android.bluetooth.le.AdvertiseSettings.ADVERTISE_TYPE_SCANNABLE" class="hiddenlink" target="rightframe"><strike>ADVERTISE_TYPE_SCANNABLE</strike></A>
+</nobr><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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="#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="#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.bluetooth.le.ScanSettings.html#android.bluetooth.le.ScanSettings.CALLBACK_TYPE_ON_UPDATE" class="hiddenlink" target="rightframe"><strike>CALLBACK_TYPE_ON_UPDATE</strike></A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.CATEGORY_VOICE" class="hiddenlink" target="rightframe"><strike>CATEGORY_VOICE</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.clipToPath" class="hiddenlink" target="rightframe"><strike>clipToPath</strike></A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.COLUMN_BROWSABLE" class="hiddenlink" target="rightframe"><strike>COLUMN_BROWSABLE</strike></A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.COLUMN_SERVICE_NAME" class="hiddenlink" target="rightframe"><strike>COLUMN_SERVICE_NAME</strike></A>
+</nobr><br>
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.CURSOR_ANCHOR_MONITOR_MODE_CURSOR_RECT" class="hiddenlink" target="rightframe"><strike>CURSOR_ANCHOR_MONITOR_MODE_CURSOR_RECT</strike></A>
+</nobr><br>
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.CURSOR_ANCHOR_MONITOR_MODE_NONE" class="hiddenlink" target="rightframe"><strike>CURSOR_ANCHOR_MONITOR_MODE_NONE</strike></A>
+</nobr><br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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="#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="#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.os.UserManager.html#android.os.UserManager.DISALLOW_CONFIG_APPS" class="hiddenlink" target="rightframe"><strike>DISALLOW_CONFIG_APPS</strike></A>
+</nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.DISALLOW_TELEPHONY" class="hiddenlink" target="rightframe"><strike>DISALLOW_TELEPHONY</strike></A>
+</nobr><br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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="#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="#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.media.tv.TvView.html#android.media.tv.TvView.ERROR_BUSY" class="hiddenlink" target="rightframe"><strike>ERROR_BUSY</strike></A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.ERROR_TV_INPUT_DISCONNECTED" class="hiddenlink" target="rightframe"><strike>ERROR_TV_INPUT_DISCONNECTED</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.excludeViewName" class="hiddenlink" target="rightframe"><strike>excludeViewName</strike></A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEFAULT_MANAGED_PROFILE_NAME" class="hiddenlink" target="rightframe"><strike>EXTRA_PROVISIONING_DEFAULT_MANAGED_PROFILE_NAME</strike></A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.EXTRA_SERVICE_NAME" class="hiddenlink" target="rightframe"><strike>EXTRA_SERVICE_NAME</strike></A>
+</nobr><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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="#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="#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.content.pm.PackageManager.html#android.content.pm.PackageManager.FEATURE_MANAGED_PROFILES" class="hiddenlink" target="rightframe"><strike>FEATURE_MANAGED_PROFILES</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fill" class="hiddenlink" target="rightframe"><strike>fill</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.fillOpacity" class="hiddenlink" target="rightframe"><strike>fillOpacity</strike></A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_ACTIVITY_AUTO_REMOVE_FROM_RECENTS" class="hiddenlink" target="rightframe"><strike>FLAG_ACTIVITY_AUTO_REMOVE_FROM_RECENTS</strike></A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_PERSISTABLE" class="hiddenlink" target="rightframe"><strike>FLAG_PERSISTABLE</strike></A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.FLAG_TO_MANAGED_PROFILE" class="hiddenlink" target="rightframe"><strike>FLAG_TO_MANAGED_PROFILE</strike></A>
+</nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.FLAG_TO_PRIMARY_USER" class="hiddenlink" target="rightframe"><strike>FLAG_TO_PRIMARY_USER</strike></A>
+</nobr><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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="#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="#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">
+<i>l_resource_pad1</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad1" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad1" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad1" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.interpolator.html#android.R.interpolator.l_resource_pad1" class="hiddenlink" target="rightframe"><strike>android.R.interpolator</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad1" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad10</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad10" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad10" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad10" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad10" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad11</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad11" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad11" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad11" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad12</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad12" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad12" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad12" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad13</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad13" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad13" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad13" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad14</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad14" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad14" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad14" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad15</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad15" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad15" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad15" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad16</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad16" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad16" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad16" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad17</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad17" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad17" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad17" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad18</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad18" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad18" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad18" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad19</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad19" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad19" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad19" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad2</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad2" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad2" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad2" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.interpolator.html#android.R.interpolator.l_resource_pad2" class="hiddenlink" target="rightframe"><strike>android.R.interpolator</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad2" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad20</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad20" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad20" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad21</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad21" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad21" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad22</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad22" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad22" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad23</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad23" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad23" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad24</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad24" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad24" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad25</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad25" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad25" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.l_resource_pad26" class="hiddenlink" target="rightframe"><strike>l_resource_pad26</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.l_resource_pad27" class="hiddenlink" target="rightframe"><strike>l_resource_pad27</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.l_resource_pad28" class="hiddenlink" target="rightframe"><strike>l_resource_pad28</strike></A>
+</nobr><br>
+<i>l_resource_pad3</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad3" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad3" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad3" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.interpolator.html#android.R.interpolator.l_resource_pad3" class="hiddenlink" target="rightframe"><strike>android.R.interpolator</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad3" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad4</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad4" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad4" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad4" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.interpolator.html#android.R.interpolator.l_resource_pad4" class="hiddenlink" target="rightframe"><strike>android.R.interpolator</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad4" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad5</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad5" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad5" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad5" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad5" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad6</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad6" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad6" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad6" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad6" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad7</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad7" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad7" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad7" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad7" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad8</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad8" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad8" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad8" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad8" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<i>l_resource_pad9</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.attr.html#android.R.attr.l_resource_pad9" class="hiddenlink" target="rightframe"><strike>android.R.attr</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.dimen.html#android.R.dimen.l_resource_pad9" class="hiddenlink" target="rightframe"><strike>android.R.dimen</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.id.html#android.R.id.l_resource_pad9" class="hiddenlink" target="rightframe"><strike>android.R.id</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.R.style.html#android.R.style.l_resource_pad9" class="hiddenlink" target="rightframe"><strike>android.R.style</strike></A>
+</nobr><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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="#L"><font size="-2">L</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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.MATCH_VIEW_NAME" class="hiddenlink" target="rightframe"><strike>MATCH_VIEW_NAME</strike></A>
+</nobr><br>
+<nobr><A HREF="android.view.FrameStats.html#android.view.FrameStats.mFramesPresentedTimeNano" class="hiddenlink" target="rightframe"><strike>mFramesPresentedTimeNano</strike></A>
+</nobr><br>
+<nobr><A HREF="android.view.FrameStats.html#android.view.FrameStats.mRefreshPeriodNano" class="hiddenlink" target="rightframe"><strike>mRefreshPeriodNano</strike></A>
+</nobr><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#L"><font size="-2">L</font></a> 
+<a href="#M"><font size="-2">M</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="#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.persistable" class="hiddenlink" target="rightframe"><strike>persistable</strike></A>
+</nobr><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.REBOOT_RECOVERY" class="hiddenlink" target="rightframe"><strike>REBOOT_RECOVERY</strike></A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraMetadata.html#android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_DNG" class="hiddenlink" target="rightframe"><strike>REQUEST_AVAILABLE_CAPABILITIES_DNG</strike></A>
+</nobr><br>
+<nobr><A HREF="android.hardware.camera2.CaptureResult.html#android.hardware.camera2.CaptureResult.REQUEST_FRAME_COUNT" class="hiddenlink" target="rightframe"><strike>REQUEST_FRAME_COUNT</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.requiredForProfile" class="hiddenlink" target="rightframe"><strike>requiredForProfile</strike></A>
+</nobr><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.SCAN_FAILED_CONTROLLER_FAILURE" class="hiddenlink" target="rightframe"><strike>SCAN_FAILED_CONTROLLER_FAILURE</strike></A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.SCAN_FAILED_GATT_SERVICE_FAILURE" class="hiddenlink" target="rightframe"><strike>SCAN_FAILED_GATT_SERVICE_FAILURE</strike></A>
+</nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanSettings.html#android.bluetooth.le.ScanSettings.SCAN_RESULT_TYPE_FULL" class="hiddenlink" target="rightframe"><strike>SCAN_RESULT_TYPE_FULL</strike></A>
+</nobr><br>
+<nobr><A HREF="android.view.Display.html#android.view.Display.STATE_DOZING" class="hiddenlink" target="rightframe"><strike>STATE_DOZING</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.stroke" class="hiddenlink" target="rightframe"><strike>stroke</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.strokeOpacity" class="hiddenlink" target="rightframe"><strike>strokeOpacity</strike></A>
+</nobr><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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="#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="#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.R.attr.html#android.R.attr.targetViewName" class="hiddenlink" target="rightframe"><strike>targetViewName</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.tvInputType" class="hiddenlink" target="rightframe"><strike>tvInputType</strike></A>
+</nobr><br>
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.TYPE_KEYGUARD" class="hiddenlink" target="rightframe"><strike>TYPE_KEYGUARD</strike></A>
+</nobr><br>
+<i>TYPE_PASSTHROUGH</i><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.TYPE_PASSTHROUGH" class="hiddenlink" target="rightframe"><strike>android.media.tv.TvContract.Channels</strike></A>
+</nobr><br>
+<nobr>&nbsp;in&nbsp;
+<A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_PASSTHROUGH" class="hiddenlink" target="rightframe"><strike>android.media.tv.TvInputInfo</strike></A>
+</nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.TYPE_VIRTUAL" class="hiddenlink" target="rightframe"><strike>TYPE_VIRTUAL</strike></A>
+</nobr><br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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="#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="#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.R.attr.html#android.R.attr.viewName" class="hiddenlink" target="rightframe"><strike>viewName</strike></A>
+</nobr><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#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">
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.WIDGET_CATEGORY_RECENTS" class="hiddenlink" target="rightframe"><strike>WIDGET_CATEGORY_RECENTS</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Holo_FastScroll" class="hiddenlink" target="rightframe"><strike>Widget_Holo_FastScroll</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Holo_Light_Button_Borderless" class="hiddenlink" target="rightframe"><strike>Widget_Holo_Light_Button_Borderless</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Holo_Light_FastScroll" class="hiddenlink" target="rightframe"><strike>Widget_Holo_Light_FastScroll</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Holo_Light_StackView" class="hiddenlink" target="rightframe"><strike>Widget_Holo_Light_StackView</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Widget_Holo_StackView" class="hiddenlink" target="rightframe"><strike>Widget_Holo_StackView</strike></A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowAllowExitTransitionOverlap" class="hiddenlink" target="rightframe"><strike>windowAllowExitTransitionOverlap</strike></A>
+</nobr><br>
+<script src="//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/preview-21/changes/java.util.Locale.html b/docs/html/sdk/api_diff/preview-21/changes/java.util.Locale.html
new file mode 100644
index 0000000..f8b1886
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/java.util.Locale.html
@@ -0,0 +1,207 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.Locale
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/Locale.html" target="_top"><font size="+2"><code>Locale</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.Locale.forLanguageTag_added(java.lang.String)"></A>
+  <nobr><code>Locale</code>&nbsp;<A HREF="../../../../reference/java/util/Locale.html#forLanguageTag(java.lang.String)" target="_top"><code>forLanguageTag</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.Locale.getDisplayScript_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/java/util/Locale.html#getDisplayScript()" target="_top"><code>getDisplayScript</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.Locale.getDisplayScript_added(java.util.Locale)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/java/util/Locale.html#getDisplayScript(java.util.Locale)" target="_top"><code>getDisplayScript</code></A>(<code>Locale</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.Locale.getExtension_added(char)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/java/util/Locale.html#getExtension(char)" target="_top"><code>getExtension</code></A>(<code>char</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.Locale.getExtensionKeys_added()"></A>
+  <nobr><code>Set&lt;Character&gt;</code>&nbsp;<A HREF="../../../../reference/java/util/Locale.html#getExtensionKeys()" target="_top"><code>getExtensionKeys</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.Locale.getScript_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/java/util/Locale.html#getScript()" target="_top"><code>getScript</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.Locale.getUnicodeLocaleAttributes_added()"></A>
+  <nobr><code>Set&lt;String&gt;</code>&nbsp;<A HREF="../../../../reference/java/util/Locale.html#getUnicodeLocaleAttributes()" target="_top"><code>getUnicodeLocaleAttributes</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.Locale.getUnicodeLocaleKeys_added()"></A>
+  <nobr><code>Set&lt;String&gt;</code>&nbsp;<A HREF="../../../../reference/java/util/Locale.html#getUnicodeLocaleKeys()" target="_top"><code>getUnicodeLocaleKeys</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.Locale.getUnicodeLocaleType_added(java.lang.String)"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/java/util/Locale.html#getUnicodeLocaleType(java.lang.String)" target="_top"><code>getUnicodeLocaleType</code></A>(<code>String</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.Locale.toLanguageTag_added()"></A>
+  <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/java/util/Locale.html#toLanguageTag()" target="_top"><code>toLanguageTag</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="java.util.Locale.PRIVATE_USE_EXTENSION"></A>
+  <nobr><code>char</code>&nbsp;<A HREF="../../../../reference/java/util/Locale.html#PRIVATE_USE_EXTENSION" target="_top"><code>PRIVATE_USE_EXTENSION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.Locale.UNICODE_LOCALE_EXTENSION"></A>
+  <nobr><code>char</code>&nbsp;<A HREF="../../../../reference/java/util/Locale.html#UNICODE_LOCALE_EXTENSION" target="_top"><code>UNICODE_LOCALE_EXTENSION</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/java.util.concurrent.ScheduledThreadPoolExecutor.html b/docs/html/sdk/api_diff/preview-21/changes/java.util.concurrent.ScheduledThreadPoolExecutor.html
new file mode 100644
index 0000000..d257ac1
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/java.util.concurrent.ScheduledThreadPoolExecutor.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.ScheduledThreadPoolExecutor
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.concurrent.<A HREF="../../../../reference/java/util/concurrent/ScheduledThreadPoolExecutor.html" target="_top"><font size="+2"><code>ScheduledThreadPoolExecutor</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.ScheduledThreadPoolExecutor.getRemoveOnCancelPolicy_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/java/util/concurrent/ScheduledThreadPoolExecutor.html#getRemoveOnCancelPolicy()" target="_top"><code>getRemoveOnCancelPolicy</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="java.util.concurrent.ScheduledThreadPoolExecutor.setRemoveOnCancelPolicy_added(boolean)"></A>
+  <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/java/util/concurrent/ScheduledThreadPoolExecutor.html#setRemoveOnCancelPolicy(boolean)" target="_top"><code>setRemoveOnCancelPolicy</code></A>(<code>boolean</code>)</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html b/docs/html/sdk/api_diff/preview-21/changes/java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html
new file mode 100644
index 0000000..0731ae4
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AbstractQueuedLongSynchronizer
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.concurrent.locks.<A HREF="../../../../reference/java/util/concurrent/locks/AbstractQueuedLongSynchronizer.html" target="_top"><font size="+2"><code>AbstractQueuedLongSynchronizer</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.locks.AbstractQueuedLongSynchronizer.hasQueuedPredecessors_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/java/util/concurrent/locks/AbstractQueuedLongSynchronizer.html#hasQueuedPredecessors()" target="_top"><code>hasQueuedPredecessors</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/java.util.concurrent.locks.AbstractQueuedSynchronizer.html b/docs/html/sdk/api_diff/preview-21/changes/java.util.concurrent.locks.AbstractQueuedSynchronizer.html
new file mode 100644
index 0000000..058a44b
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/java.util.concurrent.locks.AbstractQueuedSynchronizer.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.AbstractQueuedSynchronizer
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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.concurrent.locks.<A HREF="../../../../reference/java/util/concurrent/locks/AbstractQueuedSynchronizer.html" target="_top"><font size="+2"><code>AbstractQueuedSynchronizer</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.locks.AbstractQueuedSynchronizer.hasQueuedPredecessors_added()"></A>
+  <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/java/util/concurrent/locks/AbstractQueuedSynchronizer.html#hasQueuedPredecessors()" target="_top"><code>hasQueuedPredecessors</code></A>()</nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<a NAME="fields"></a>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/jdiff_help.html b/docs/html/sdk/api_diff/preview-21/changes/jdiff_help.html
new file mode 100644
index 0000000..804faa5
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/jdiff_help.html
@@ -0,0 +1,134 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>21</code></B></FONT></A>&nbsp;</TD>
+      <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="changes-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
+      <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> &nbsp;<FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
+      <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1"> &nbsp;<FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
+      <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="jdiff_statistics.html"><FONT CLASS="NavBarFont1"><B>Statistics</B></FONT></A>&nbsp;</TD>
+      <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Help</B></FONT>&nbsp;</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>  &nbsp;
+  &nbsp;<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="//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/preview-21/changes/jdiff_statistics.html b/docs/html/sdk/api_diff/preview-21/changes/jdiff_statistics.html
new file mode 100644
index 0000000..19886d65
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/jdiff_statistics.html
@@ -0,0 +1,1919 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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&nbsp;Change&nbsp;Statistics</h1>
+<p>The overall difference between API Levels l-preview and 21 is approximately <span style="color:222;font-weight:bold;">4.63%</span>.
+</p>
+<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 added, changed, or removed. The table includes only the highest-level program elements &mdash; 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>Type</th>
+  <TH ALIGN="center"><b>Additions</b></TH>
+  <TH ALIGN="center"><b>Changes</b></TH>
+  <TH ALIGN="center">Removals</TH>
+  <TH ALIGN="center"><b>Total</b></TH>
+</TR>
+<TR>
+  <TD>Packages</TD>
+  <TD ALIGN="right">6</TD>
+  <TD ALIGN="right">54</TD>
+  <TD ALIGN="right">1</TD>
+  <TD ALIGN="right">61</TD>
+</TR>
+<TR>
+  <TD>Classes and <i>Interfaces</i></TD>
+  <TD ALIGN="right">92</TD>
+  <TD ALIGN="right">302</TD>
+  <TD ALIGN="right">26</TD>
+  <TD ALIGN="right">420</TD>
+</TR>
+<TR>
+  <TD>Constructors</TD>
+  <TD ALIGN="right">24</TD>
+  <TD ALIGN="right">3</TD>
+  <TD ALIGN="right">5</TD>
+  <TD ALIGN="right">32</TD>
+</TR>
+<TR>
+  <TD>Methods</TD>
+  <TD ALIGN="right">575</TD>
+  <TD ALIGN="right">84</TD>
+  <TD ALIGN="right">131</TD>
+  <TD ALIGN="right">790</TD>
+</TR>
+<TR>
+  <TD>Fields</TD>
+  <TD ALIGN="right">624</TD>
+  <TD ALIGN="right">379</TD>
+  <TD ALIGN="right">141</TD>
+  <TD ALIGN="right">1144</TD>
+</TR>
+<TR>
+  <TD style="background-color:#FAFAFA"><b>Total</b></TD>
+  <TD  style="background-color:#FAFAFA" ALIGN="right"><strong>1321</strong></TD>
+  <TD  style="background-color:#FAFAFA" ALIGN="right"><strong>822</strong></TD>
+  <TD  style="background-color:#FAFAFA" ALIGN="right"><strong>304</strong></TD>
+  <TD  style="background-color:#FAFAFA" ALIGN="right"><strong>2447</strong></TD>
+</TR>
+</TABLE>
+<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">73</TD>
+  <TD><A HREF="pkg_android.media.session.html">android.media.session</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">61</TD>
+  <TD><A HREF="pkg_android.service.voice.html">android.service.voice</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">47</TD>
+  <TD><A HREF="pkg_android.media.tv.html">android.media.tv</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">47</TD>
+  <TD><A HREF="pkg_android.bluetooth.le.html">android.bluetooth.le</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">32</TD>
+  <TD><A HREF="pkg_android.hardware.camera2.html">android.hardware.camera2</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">24</TD>
+  <TD><A HREF="pkg_android.app.job.html">android.app.job</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">21</TD>
+  <TD><A HREF="pkg_android.transition.html">android.transition</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">20</TD>
+  <TD><A HREF="pkg_android.speech.tts.html">android.speech.tts</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">19</TD>
+  <TD><A HREF="pkg_android.hardware.display.html">android.hardware.display</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">18</TD>
+  <TD><A HREF="pkg_android.hardware.html">android.hardware</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">18</TD>
+  <TD><A HREF="pkg_android.service.notification.html">android.service.notification</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">18</TD>
+  <TD><A HREF="pkg_android.content.pm.html">android.content.pm</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">16</TD>
+  <TD><A HREF="pkg_android.text.style.html">android.text.style</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">13</TD>
+  <TD><A HREF="pkg_android.app.admin.html">android.app.admin</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="pkg_java.util.concurrent.html">java.util.concurrent</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="pkg_android.media.html">android.media</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">8</TD>
+  <TD><A HREF="pkg_android.hardware.camera2.params.html">android.hardware.camera2.params</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="pkg_android.html">android</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="pkg_android.graphics.drawable.html">android.graphics.drawable</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="pkg_android.app.html">android.app</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="pkg_android.webkit.html">android.webkit</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="pkg_android.provider.html">android.provider</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.net.wifi.html">android.net.wifi</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="pkg_android.appwidget.html">android.appwidget</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="pkg_android.net.html">android.net</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="pkg_android.view.inputmethod.html">android.view.inputmethod</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="pkg_android.graphics.html">android.graphics</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="pkg_android.service.dreams.html">android.service.dreams</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.view.html">android.view</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="pkg_android.view.textservice.html">android.view.textservice</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="pkg_android.os.html">android.os</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="pkg_android.service.wallpaper.html">android.service.wallpaper</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="pkg_android.media.audiofx.html">android.media.audiofx</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_android.bluetooth.html">android.bluetooth</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.graphics.drawable.shapes.html">android.graphics.drawable.shapes</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.printservice.html">android.printservice</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.nfc.cardemulation.html">android.nfc.cardemulation</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.content.html">android.content</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.widget.html">android.widget</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.accessibilityservice.html">android.accessibilityservice</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.renderscript.html">android.renderscript</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.test.mock.html">android.test.mock</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.text.html">android.text</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.location.html">android.location</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.app.backup.html">android.app.backup</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.content.res.html">android.content.res</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_java.util.concurrent.locks.html">java.util.concurrent.locks</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.view.accessibility.html">android.view.accessibility</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.inputmethodservice.html">android.inputmethodservice</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.accounts.html">android.accounts</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="pkg_android.system.html">android.system</A></TD>
+</TR>
+</TABLE>
+<p style="font-size:10px">* See <a href="#calculation">Calculation of Change Percentages</a>, below.</p>
+<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%">Percentage<br>Difference*</TH>
+  <TH><b>Class or <i>Interface</i></b></TH>
+</TR>
+<TR>
+  <TD ALIGN="center">100</TD>
+  <TD><A HREF="android.media.session.MediaSessionManager.html">
+android.media.session.MediaSessionManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">90</TD>
+  <TD><A HREF="android.media.tv.TvInputManager.html">
+android.media.tv.TvInputManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">84</TD>
+  <TD><A HREF="android.media.session.MediaSession.Callback.html">
+android.media.session.MediaSession.Callback</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">80</TD>
+  <TD><A HREF="android.media.MediaCodecList.html">
+android.media.MediaCodecList</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">75</TD>
+  <TD><A HREF="android.content.pm.LauncherApps.html">
+android.content.pm.LauncherApps</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">66</TD>
+  <TD><A HREF="android.bluetooth.le.BluetoothLeAdvertiser.html">
+android.bluetooth.le.BluetoothLeAdvertiser</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">66</TD>
+  <TD><A HREF="android.bluetooth.le.ScanRecord.html">
+android.bluetooth.le.ScanRecord</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">66</TD>
+  <TD><A HREF="android.graphics.LightingColorFilter.html">
+android.graphics.LightingColorFilter</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">66</TD>
+  <TD><A HREF="android.graphics.PorterDuffColorFilter.html">
+android.graphics.PorterDuffColorFilter</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">66</TD>
+  <TD><A HREF="android.media.session.MediaController.html">
+android.media.session.MediaController</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">63</TD>
+  <TD><A HREF="android.media.tv.TvInputInfo.html">
+android.media.tv.TvInputInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">63</TD>
+  <TD><A HREF="android.R.transition.html">
+android.R.transition</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">62</TD>
+  <TD><A HREF="android.bluetooth.le.AdvertiseCallback.html">
+android.bluetooth.le.AdvertiseCallback</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">58</TD>
+  <TD><A HREF="android.telephony.SmsManager.html">
+android.telephony.SmsManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">57</TD>
+  <TD><A HREF="android.hardware.camera2.DngCreator.html">
+android.hardware.camera2.DngCreator</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">53</TD>
+  <TD><A HREF="android.bluetooth.le.ScanCallback.html">
+android.bluetooth.le.ScanCallback</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">52</TD>
+  <TD><A HREF="android.util.Range.html">
+android.util.Range</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.hardware.Camera.AutoFocusCallback.html">
+<i>android.hardware.Camera.AutoFocusCallback</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.hardware.Camera.AutoFocusMoveCallback.html">
+<i>android.hardware.Camera.AutoFocusMoveCallback</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.hardware.Camera.ErrorCallback.html">
+<i>android.hardware.Camera.ErrorCallback</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.hardware.Camera.FaceDetectionListener.html">
+<i>android.hardware.Camera.FaceDetectionListener</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.hardware.Camera.OnZoomChangeListener.html">
+<i>android.hardware.Camera.OnZoomChangeListener</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.hardware.Camera.PictureCallback.html">
+<i>android.hardware.Camera.PictureCallback</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.hardware.Camera.PreviewCallback.html">
+<i>android.hardware.Camera.PreviewCallback</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.hardware.Camera.ShutterCallback.html">
+<i>android.hardware.Camera.ShutterCallback</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.hardware.camera2.CameraManager.html">
+android.hardware.camera2.CameraManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.provider.ContactsContract.Contacts.StreamItems.html">
+android.provider.ContactsContract.Contacts.StreamItems</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.provider.ContactsContract.RawContacts.StreamItems.html">
+android.provider.ContactsContract.RawContacts.StreamItems</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.provider.ContactsContract.StreamItemPhotos.html">
+android.provider.ContactsContract.StreamItemPhotos</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html">
+<i>android.provider.ContactsContract.StreamItemPhotosColumns</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.provider.ContactsContract.StreamItems.html">
+android.provider.ContactsContract.StreamItems</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html">
+android.provider.ContactsContract.StreamItems.StreamItemPhotos</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.provider.ContactsContract.StreamItemsColumns.html">
+<i>android.provider.ContactsContract.StreamItemsColumns</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">50</TD>
+  <TD><A HREF="android.view.ViewAnimationUtils.html">
+android.view.ViewAnimationUtils</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">49</TD>
+  <TD><A HREF="android.media.tv.TvContract.Channels.html">
+android.media.tv.TvContract.Channels</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">47</TD>
+  <TD><A HREF="android.media.session.MediaSession.html">
+android.media.session.MediaSession</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">45</TD>
+  <TD><A HREF="android.transition.ChangeTransform.html">
+android.transition.ChangeTransform</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">42</TD>
+  <TD><A HREF="android.app.ActivityManager.AppTask.html">
+android.app.ActivityManager.AppTask</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">42</TD>
+  <TD><A HREF="android.bluetooth.le.ScanFilter.Builder.html">
+android.bluetooth.le.ScanFilter.Builder</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">42</TD>
+  <TD><A HREF="android.graphics.ColorMatrixColorFilter.html">
+android.graphics.ColorMatrixColorFilter</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">42</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html">
+android.provider.ContactsContract.CommonDataKinds.Note</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">42</TD>
+  <TD><A HREF="android.webkit.PermissionRequest.html">
+android.webkit.PermissionRequest</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">42</TD>
+  <TD><A HREF="android.media.tv.TvContract.Programs.Genres.html">
+android.media.tv.TvContract.Programs.Genres</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">42</TD>
+  <TD><A HREF="android.service.voice.VoiceInteractionSession.html">
+android.service.voice.VoiceInteractionSession</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">38</TD>
+  <TD><A HREF="android.R.dimen.html">
+android.R.dimen</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">38</TD>
+  <TD><A HREF="android.media.session.MediaController.Callback.html">
+android.media.session.MediaController.Callback</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">35</TD>
+  <TD><A HREF="android.speech.tts.TextToSpeech.html">
+android.speech.tts.TextToSpeech</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">33</TD>
+  <TD><A HREF="android.bluetooth.le.BluetoothLeScanner.html">
+android.bluetooth.le.BluetoothLeScanner</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">33</TD>
+  <TD><A HREF="android.bluetooth.le.ScanSettings.Builder.html">
+android.bluetooth.le.ScanSettings.Builder</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">33</TD>
+  <TD><A HREF="android.media.MediaFormat.html">
+android.media.MediaFormat</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">33</TD>
+  <TD><A HREF="android.media.tv.TvContract.html">
+android.media.tv.TvContract</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">33</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Callable.html">
+android.provider.ContactsContract.CommonDataKinds.Callable</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">33</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html">
+android.provider.ContactsContract.CommonDataKinds.GroupMembership</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">33</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html">
+android.provider.ContactsContract.CommonDataKinds.Identity</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">33</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html">
+android.provider.ContactsContract.CommonDataKinds.Photo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">33</TD>
+  <TD><A HREF="android.provider.MediaStore.Audio.Radio.html">
+android.provider.MediaStore.Audio.Radio</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">33</TD>
+  <TD><A HREF="android.renderscript.ScriptC.html">
+android.renderscript.ScriptC</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">33</TD>
+  <TD><A HREF="android.service.notification.NotificationListenerService.Ranking.html">
+android.service.notification.NotificationListenerService.Ranking</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">33</TD>
+  <TD><A HREF="android.speech.tts.UtteranceProgressListener.html">
+android.speech.tts.UtteranceProgressListener</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">33</TD>
+  <TD><A HREF="android.transition.AutoTransition.html">
+android.transition.AutoTransition</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">33</TD>
+  <TD><A HREF="android.transition.Explode.html">
+android.transition.Explode</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">32</TD>
+  <TD><A HREF="android.webkit.CookieManager.html">
+android.webkit.CookieManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">30</TD>
+  <TD><A HREF="android.media.audiofx.Virtualizer.html">
+android.media.audiofx.Virtualizer</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">30</TD>
+  <TD><A HREF="android.media.tv.TvInputService.Session.html">
+android.media.tv.TvInputService.Session</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">30</TD>
+  <TD><A HREF="android.webkit.WebResourceResponse.html">
+android.webkit.WebResourceResponse</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">29</TD>
+  <TD><A HREF="android.hardware.camera2.CameraDevice.html">
+android.hardware.camera2.CameraDevice</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">28</TD>
+  <TD><A HREF="android.media.Ringtone.html">
+android.media.Ringtone</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">28</TD>
+  <TD><A HREF="android.media.tv.TvView.html">
+android.media.tv.TvView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">28</TD>
+  <TD><A HREF="android.service.voice.VoiceInteractionService.html">
+android.service.voice.VoiceInteractionService</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">28</TD>
+  <TD><A HREF="android.view.WindowInsets.html">
+android.view.WindowInsets</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">28</TD>
+  <TD><A HREF="android.app.admin.DevicePolicyManager.html">
+android.app.admin.DevicePolicyManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">27</TD>
+  <TD><A HREF="android.bluetooth.le.AdvertiseSettings.Builder.html">
+android.bluetooth.le.AdvertiseSettings.Builder</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">27</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html">
+android.provider.ContactsContract.CommonDataKinds.Contactables</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">27</TD>
+  <TD><A HREF="android.provider.ContactsContract.Data.html">
+android.provider.ContactsContract.Data</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">26</TD>
+  <TD><A HREF="android.service.notification.NotificationListenerService.html">
+android.service.notification.NotificationListenerService</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">26</TD>
+  <TD><A HREF="android.app.job.JobInfo.html">
+android.app.job.JobInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">25</TD>
+  <TD><A HREF="android.graphics.drawable.RippleDrawable.html">
+android.graphics.drawable.RippleDrawable</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">25</TD>
+  <TD><A HREF="android.media.RemoteControlClient.MetadataEditor.html">
+android.media.RemoteControlClient.MetadataEditor</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">25</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html">
+android.provider.ContactsContract.CommonDataKinds.Event</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">25</TD>
+  <TD><A HREF="android.transition.Slide.html">
+android.transition.Slide</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">24</TD>
+  <TD><A HREF="android.media.session.PlaybackState.html">
+android.media.session.PlaybackState</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">24</TD>
+  <TD><A HREF="android.view.inputmethod.CursorAnchorInfo.html">
+android.view.inputmethod.CursorAnchorInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">24</TD>
+  <TD><A HREF="android.widget.ProgressBar.html">
+android.widget.ProgressBar</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">23</TD>
+  <TD><A HREF="android.transition.Visibility.html">
+android.transition.Visibility</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">23</TD>
+  <TD><A HREF="android.speech.tts.SynthesisCallback.html">
+<i>android.speech.tts.SynthesisCallback</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">22</TD>
+  <TD><A HREF="android.os.PowerManager.html">
+android.os.PowerManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">22</TD>
+  <TD><A HREF="android.app.Notification.MediaStyle.html">
+android.app.Notification.MediaStyle</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">22</TD>
+  <TD><A HREF="android.hardware.camera2.CameraCaptureSession.html">
+android.hardware.camera2.CameraCaptureSession</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">21</TD>
+  <TD><A HREF="android.bluetooth.le.ScanSettings.html">
+android.bluetooth.le.ScanSettings</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">21</TD>
+  <TD><A HREF="android.media.session.MediaController.TransportControls.html">
+android.media.session.MediaController.TransportControls</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">20</TD>
+  <TD><A HREF="android.bluetooth.le.AdvertiseSettings.html">
+android.bluetooth.le.AdvertiseSettings</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">20</TD>
+  <TD><A HREF="android.os.Vibrator.html">
+android.os.Vibrator</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">20</TD>
+  <TD><A HREF="android.provider.ContactsContract.PhoneLookup.html">
+android.provider.ContactsContract.PhoneLookup</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">20</TD>
+  <TD><A HREF="android.speech.tts.TextToSpeechService.html">
+android.speech.tts.TextToSpeechService</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">20</TD>
+  <TD><A HREF="android.text.InputFilter.LengthFilter.html">
+android.text.InputFilter.LengthFilter</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">19</TD>
+  <TD><A HREF="android.speech.tts.SynthesisRequest.html">
+android.speech.tts.SynthesisRequest</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">18</TD>
+  <TD><A HREF="android.R.id.html">
+android.R.id</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">18</TD>
+  <TD><A HREF="android.view.inputmethod.CursorAnchorInfo.Builder.html">
+android.view.inputmethod.CursorAnchorInfo.Builder</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">18</TD>
+  <TD><A HREF="android.R.interpolator.html">
+android.R.interpolator</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">18</TD>
+  <TD><A HREF="android.R.style.html">
+android.R.style</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">18</TD>
+  <TD><A HREF="android.transition.ChangeBounds.html">
+android.transition.ChangeBounds</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">17</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html">
+android.provider.ContactsContract.CommonDataKinds.SipAddress</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">17</TD>
+  <TD><A HREF="android.os.UserManager.html">
+android.os.UserManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">17</TD>
+  <TD><A HREF="android.bluetooth.le.ScanFilter.html">
+android.bluetooth.le.ScanFilter</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">17</TD>
+  <TD><A HREF="android.net.VpnService.Builder.html">
+android.net.VpnService.Builder</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">16</TD>
+  <TD><A HREF="android.graphics.drawable.AnimatedStateListDrawable.html">
+android.graphics.drawable.AnimatedStateListDrawable</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">16</TD>
+  <TD><A HREF="android.hardware.Camera.Area.html">
+android.hardware.Camera.Area</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">16</TD>
+  <TD><A HREF="android.hardware.Camera.Size.html">
+android.hardware.Camera.Size</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">16</TD>
+  <TD><A HREF="android.hardware.camera2.params.StreamConfigurationMap.html">
+android.hardware.camera2.params.StreamConfigurationMap</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">16</TD>
+  <TD><A HREF="android.provider.ContactsContract.Contacts.Entity.html">
+android.provider.ContactsContract.Contacts.Entity</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">16</TD>
+  <TD><A HREF="android.widget.CheckedTextView.html">
+android.widget.CheckedTextView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">16</TD>
+  <TD><A HREF="android.widget.CompoundButton.html">
+android.widget.CompoundButton</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">15</TD>
+  <TD><A HREF="android.media.tv.TvContract.Programs.html">
+android.media.tv.TvContract.Programs</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">15</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html">
+android.provider.ContactsContract.CommonDataKinds.Nickname</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">15</TD>
+  <TD><A HREF="android.media.MediaCodec.html">
+android.media.MediaCodec</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.app.job.JobInfo.Builder.html">
+android.app.job.JobInfo.Builder</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.media.Image.html">
+android.media.Image</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.net.Network.html">
+android.net.Network</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html">
+android.provider.ContactsContract.CommonDataKinds.Website</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.provider.ContactsContract.QuickContact.html">
+android.provider.ContactsContract.QuickContact</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.transition.ChangeClipBounds.html">
+android.transition.ChangeClipBounds</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.transition.TransitionSet.html">
+android.transition.TransitionSet</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.util.Size.html">
+android.util.Size</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.util.SizeF.html">
+android.util.SizeF</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.widget.AbsSeekBar.html">
+android.widget.AbsSeekBar</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">14</TD>
+  <TD><A HREF="android.widget.FrameLayout.html">
+android.widget.FrameLayout</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">13</TD>
+  <TD><A HREF="android.bluetooth.le.ScanResult.html">
+android.bluetooth.le.ScanResult</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">12</TD>
+  <TD><A HREF="android.provider.ContactsContract.Contacts.html">
+android.provider.ContactsContract.Contacts</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">12</TD>
+  <TD><A HREF="android.view.FrameStats.html">
+android.view.FrameStats</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">12</TD>
+  <TD><A HREF="android.app.admin.DeviceAdminReceiver.html">
+android.app.admin.DeviceAdminReceiver</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">12</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html">
+android.provider.ContactsContract.CommonDataKinds.StructuredName</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="java.util.Locale.html">
+java.util.Locale</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="android.appwidget.AppWidgetProviderInfo.html">
+android.appwidget.AppWidgetProviderInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="android.media.MediaMetadata.html">
+android.media.MediaMetadata</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="android.app.Fragment.html">
+android.app.Fragment</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="android.hardware.display.VirtualDisplay.html">
+android.hardware.display.VirtualDisplay</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="android.media.CamcorderProfile.html">
+android.media.CamcorderProfile</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="android.media.MediaRecorder.VideoEncoder.html">
+android.media.MediaRecorder.VideoEncoder</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html">
+android.provider.ContactsContract.CommonDataKinds.Organization</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">11</TD>
+  <TD><A HREF="android.transition.Fade.html">
+android.transition.Fade</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">10</TD>
+  <TD><A HREF="android.net.wifi.WifiManager.html">
+android.net.wifi.WifiManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">10</TD>
+  <TD><A HREF="android.view.Display.html">
+android.view.Display</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">10</TD>
+  <TD><A HREF="android.content.pm.PackageInfo.html">
+android.content.pm.PackageInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">10</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html">
+android.provider.ContactsContract.CommonDataKinds.Email</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">10</TD>
+  <TD><A HREF="android.speech.tts.TextToSpeech.Engine.html">
+android.speech.tts.TextToSpeech.Engine</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">10</TD>
+  <TD><A HREF="android.os.Build.html">
+android.os.Build</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">10</TD>
+  <TD><A HREF="android.media.tv.TvInputService.html">
+android.media.tv.TvInputService</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">10</TD>
+  <TD><A HREF="android.service.notification.NotificationListenerService.RankingMap.html">
+android.service.notification.NotificationListenerService.RankingMap</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">10</TD>
+  <TD><A HREF="android.view.textservice.TextInfo.html">
+android.view.textservice.TextInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html">
+android.media.MediaCodecInfo.CodecCapabilities</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.R.attr.html">
+android.R.attr</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.bluetooth.BluetoothGatt.html">
+android.bluetooth.BluetoothGatt</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.app.ActivityManager.RecentTaskInfo.html">
+android.app.ActivityManager.RecentTaskInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.app.KeyguardManager.html">
+android.app.KeyguardManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.app.job.JobParameters.html">
+android.app.job.JobParameters</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.content.RestrictionEntry.html">
+android.content.RestrictionEntry</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.content.pm.InstrumentationInfo.html">
+android.content.pm.InstrumentationInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.media.MediaCodec.CryptoException.html">
+android.media.MediaCodec.CryptoException</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.provider.ContactsContract.ContactOptionsColumns.html">
+<i>android.provider.ContactsContract.ContactOptionsColumns</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.widget.ActionMenuView.html">
+android.widget.ActionMenuView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">9</TD>
+  <TD><A HREF="android.widget.EdgeEffect.html">
+android.widget.EdgeEffect</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">8</TD>
+  <TD><A HREF="android.provider.CallLog.Calls.html">
+android.provider.CallLog.Calls</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">8</TD>
+  <TD><A HREF="android.media.AudioManager.html">
+android.media.AudioManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">8</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html">
+android.provider.ContactsContract.CommonDataKinds.StructuredPostal</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">8</TD>
+  <TD><A HREF="android.media.AudioFormat.html">
+android.media.AudioFormat</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">8</TD>
+  <TD><A HREF="android.hardware.Camera.CameraInfo.html">
+android.hardware.Camera.CameraInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">8</TD>
+  <TD><A HREF="android.hardware.display.DisplayManager.html">
+android.hardware.display.DisplayManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">8</TD>
+  <TD><A HREF="android.provider.ContactsContract.html">
+android.provider.ContactsContract</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">8</TD>
+  <TD><A HREF="android.webkit.CookieSyncManager.html">
+android.webkit.CookieSyncManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">8</TD>
+  <TD><A HREF="android.app.AlarmManager.html">
+android.app.AlarmManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">8</TD>
+  <TD><A HREF="android.net.ConnectivityManager.html">
+android.net.ConnectivityManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">8</TD>
+  <TD><A HREF="android.widget.Toolbar.html">
+android.widget.Toolbar</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.view.Window.html">
+android.view.Window</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.media.MediaRecorder.AudioEncoder.html">
+android.media.MediaRecorder.AudioEncoder</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.net.LinkAddress.html">
+android.net.LinkAddress</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.net.NetworkRequest.Builder.html">
+android.net.NetworkRequest.Builder</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.os.PowerManager.WakeLock.html">
+android.os.PowerManager.WakeLock</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html">
+android.provider.ContactsContract.CommonDataKinds.Relation</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.provider.ContactsContract.GroupsColumns.html">
+<i>android.provider.ContactsContract.GroupsColumns</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.provider.ContactsContract.RawContactsColumns.html">
+<i>android.provider.ContactsContract.RawContactsColumns</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.transition.Transition.html">
+android.transition.Transition</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.bluetooth.BluetoothAdapter.html">
+android.bluetooth.BluetoothAdapter</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.graphics.Outline.html">
+android.graphics.Outline</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.hardware.Camera.Face.html">
+android.hardware.Camera.Face</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">7</TD>
+  <TD><A HREF="android.hardware.camera2.CaptureFailure.html">
+android.hardware.camera2.CaptureFailure</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html">
+android.provider.ContactsContract.CommonDataKinds.Im</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.app.ActionBar.LayoutParams.html">
+android.app.ActionBar.LayoutParams</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.app.ActivityOptions.html">
+android.app.ActivityOptions</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.media.MediaMetadata.Builder.html">
+android.media.MediaMetadata.Builder</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.media.MediaRecorder.OutputFormat.html">
+android.media.MediaRecorder.OutputFormat</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html">
+java.util.concurrent.ScheduledThreadPoolExecutor</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.view.inputmethod.InputConnection.html">
+<i>android.view.inputmethod.InputConnection</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">6</TD>
+  <TD><A HREF="android.hardware.Sensor.html">
+android.hardware.Sensor</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.bluetooth.BluetoothGattServerCallback.html">
+android.bluetooth.BluetoothGattServerCallback</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.content.pm.PackageManager.html">
+android.content.pm.PackageManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.app.AppOpsManager.html">
+android.app.AppOpsManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.graphics.drawable.shapes.Shape.html">
+android.graphics.drawable.shapes.Shape</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.provider.Settings.html">
+android.provider.Settings</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.net.NetworkCapabilities.html">
+android.net.NetworkCapabilities</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.app.Notification.Builder.html">
+android.app.Notification.Builder</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.media.MediaPlayer.TrackInfo.html">
+android.media.MediaPlayer.TrackInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.net.ProxyInfo.html">
+android.net.ProxyInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.provider.Telephony.ThreadsColumns.html">
+<i>android.provider.Telephony.ThreadsColumns</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.widget.DatePicker.html">
+android.widget.DatePicker</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.widget.ImageView.html">
+android.widget.ImageView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.widget.GridLayout.html">
+android.widget.GridLayout</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.app.Activity.html">
+android.app.Activity</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.location.SettingInjectorService.html">
+android.location.SettingInjectorService</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">5</TD>
+  <TD><A HREF="android.webkit.WebSyncManager.html">
+android.webkit.WebSyncManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.app.ActivityManager.html">
+android.app.ActivityManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.app.backup.BackupAgent.html">
+android.app.backup.BackupAgent</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.bluetooth.BluetoothGattCallback.html">
+android.bluetooth.BluetoothGattCallback</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.graphics.BitmapFactory.Options.html">
+android.graphics.BitmapFactory.Options</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html">
+android.provider.ContactsContract.CommonDataKinds.Phone</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.content.pm.ActivityInfo.html">
+android.content.pm.ActivityInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.telephony.TelephonyManager.html">
+android.telephony.TelephonyManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.media.RemoteController.html">
+android.media.RemoteController</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.webkit.WebViewClient.html">
+android.webkit.WebViewClient</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.graphics.Path.html">
+android.graphics.Path</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.graphics.ImageFormat.html">
+android.graphics.ImageFormat</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.provider.ContactsContract.ContactsColumns.html">
+<i>android.provider.ContactsContract.ContactsColumns</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.os.Build.VERSION_CODES.html">
+android.os.Build.VERSION_CODES</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.app.Notification.html">
+android.app.Notification</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.appwidget.AppWidgetHost.html">
+android.appwidget.AppWidgetHost</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.net.wifi.WpsInfo.html">
+android.net.wifi.WpsInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">4</TD>
+  <TD><A HREF="android.provider.VoicemailContract.Voicemails.html">
+android.provider.VoicemailContract.Voicemails</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.printservice.PrintService.html">
+android.printservice.PrintService</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.widget.Switch.html">
+android.widget.Switch</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.hardware.camera2.CaptureResult.html">
+android.hardware.camera2.CaptureResult</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.content.Context.html">
+android.content.Context</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.content.pm.ApplicationInfo.html">
+android.content.pm.ApplicationInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.appwidget.AppWidgetManager.html">
+android.appwidget.AppWidgetManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.content.res.AssetManager.html">
+android.content.res.AssetManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.hardware.camera2.CameraMetadata.html">
+android.hardware.camera2.CameraMetadata</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.app.UiModeManager.html">
+android.app.UiModeManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.inputmethodservice.InputMethodService.html">
+android.inputmethodservice.InputMethodService</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.graphics.drawable.Drawable.html">
+android.graphics.drawable.Drawable</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.media.MediaMetadataEditor.html">
+android.media.MediaMetadataEditor</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.graphics.Canvas.html">
+android.graphics.Canvas</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.service.notification.StatusBarNotification.html">
+android.service.notification.StatusBarNotification</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">3</TD>
+  <TD><A HREF="android.util.Rational.html">
+android.util.Rational</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.os.Bundle.html">
+android.os.Bundle</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.media.SoundPool.html">
+android.media.SoundPool</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.media.MediaPlayer.html">
+android.media.MediaPlayer</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.net.wifi.WifiConfiguration.html">
+android.net.wifi.WifiConfiguration</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.nfc.cardemulation.CardEmulation.html">
+android.nfc.cardemulation.CardEmulation</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.provider.Telephony.BaseMmsColumns.html">
+<i>android.provider.Telephony.BaseMmsColumns</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.content.pm.PermissionInfo.html">
+android.content.pm.PermissionInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.test.mock.MockPackageManager.html">
+android.test.mock.MockPackageManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.view.accessibility.AccessibilityWindowInfo.html">
+android.view.accessibility.AccessibilityWindowInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.service.wallpaper.WallpaperService.Engine.html">
+android.service.wallpaper.WallpaperService.Engine</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.util.DisplayMetrics.html">
+android.util.DisplayMetrics</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.service.dreams.DreamService.html">
+android.service.dreams.DreamService</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.view.inputmethod.InputMethodManager.html">
+android.view.inputmethod.InputMethodManager</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.view.inputmethod.InputConnectionWrapper.html">
+android.view.inputmethod.InputConnectionWrapper</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.widget.TextView.html">
+android.widget.TextView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">2</TD>
+  <TD><A HREF="android.util.ArrayMap.html">
+android.util.ArrayMap</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.app.ActivityManager.RunningAppProcessInfo.html">
+android.app.ActivityManager.RunningAppProcessInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.provider.ContactsContract.DataColumns.html">
+<i>android.provider.ContactsContract.DataColumns</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.graphics.Paint.html">
+android.graphics.Paint</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.os.Parcel.html">
+android.os.Parcel</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.os.Message.html">
+android.os.Message</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.provider.Telephony.TextBasedSmsColumns.html">
+<i>android.provider.Telephony.TextBasedSmsColumns</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.view.inputmethod.BaseInputConnection.html">
+android.view.inputmethod.BaseInputConnection</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.webkit.WebChromeClient.html">
+android.webkit.WebChromeClient</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.widget.VideoView.html">
+android.widget.VideoView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.widget.PopupWindow.html">
+android.widget.PopupWindow</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.content.res.TypedArray.html">
+android.content.res.TypedArray</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.text.SpannableStringBuilder.html">
+android.text.SpannableStringBuilder</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.media.RemoteControlClient.html">
+android.media.RemoteControlClient</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html">
+java.util.concurrent.locks.AbstractQueuedLongSynchronizer</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="java.util.concurrent.locks.AbstractQueuedSynchronizer.html">
+java.util.concurrent.locks.AbstractQueuedSynchronizer</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.accounts.AccountManager.html">
+android.accounts.AccountManager</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.app.FragmentTransaction.html">
+android.app.FragmentTransaction</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.hardware.camera2.CameraCharacteristics.html">
+android.hardware.camera2.CameraCharacteristics</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.media.MediaDrm.html">
+android.media.MediaDrm</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.view.ViewGroup.html">
+android.view.ViewGroup</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.app.ActionBar.html">
+android.app.ActionBar</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.view.accessibility.AccessibilityNodeInfo.html">
+android.view.accessibility.AccessibilityNodeInfo</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.hardware.Camera.html">
+android.hardware.Camera</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.accessibilityservice.AccessibilityService.html">
+android.accessibilityservice.AccessibilityService</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.media.MediaRecorder.html">
+android.media.MediaRecorder</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.view.ViewParent.html">
+<i>android.view.ViewParent</i></A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">1</TD>
+  <TD><A HREF="android.hardware.SensorManager.html">
+android.hardware.SensorManager</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.content.ContextWrapper.html">
+android.content.ContextWrapper</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="android.hardware.camera2.CaptureRequest.html">
+android.hardware.camera2.CaptureRequest</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="android.media.AudioTrack.html">
+android.media.AudioTrack</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="android.content.Intent.html">
+android.content.Intent</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="android.view.WindowManager.LayoutParams.html">
+android.view.WindowManager.LayoutParams</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="android.content.ContentResolver.html">
+android.content.ContentResolver</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="android.provider.Settings.Secure.html">
+android.provider.Settings.Secure</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="android.widget.AbsListView.html">
+android.widget.AbsListView</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html">
+android.media.MediaCodecInfo.CodecProfileLevel</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="android.provider.Settings.System.html">
+android.provider.Settings.System</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="android.hardware.Camera.Parameters.html">
+android.hardware.Camera.Parameters</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="android.view.MotionEvent.html">
+android.view.MotionEvent</A></TD>
+</TR>
+<TR>
+  <TD ALIGN="center">&lt;1</TD>
+  <TD><A HREF="android.system.OsConstants.html">
+android.system.OsConstants</A></TD>
+</TR>
+</TABLE>
+<p style="font-size:10px">* See <a href="#calculation">Calculation of Change Percentages</a>, below.</p>
+<br>
+<h2 id="calculation">Calculation of Change Percentages</h2>
+<p>
+The percent change statistic reported for all elements in the &quot;to&quot; 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%.</p>
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/jdiff_topleftframe.html b/docs/html/sdk/api_diff/preview-21/changes/jdiff_topleftframe.html
new file mode 100644
index 0000000..d39a99c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/jdiff_topleftframe.html
@@ -0,0 +1,63 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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" style="margin: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="//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/preview-21/changes/methods_index_additions.html b/docs/html/sdk/api_diff/preview-21/changes/methods_index_additions.html
new file mode 100644
index 0000000..80ff1c1
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/methods_index_additions.html
@@ -0,0 +1,1896 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<A HREF="methods_index_removals.html" xclass="hiddenlink">Removals</A>
+  <br>
+<b>Additions</b>
+  <br>
+<A HREF="methods_index_changes.html"xclass="hiddenlink">Changes</A>
+  </td>
+  </tr>
+</table>
+<div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#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.CookieManager.html#android.webkit.CookieManager.acceptThirdPartyCookies_added(android.webkit.WebView)" class="hiddenlink" target="rightframe"><b>acceptThirdPartyCookies</b>
+(<code>WebView</code>)</A></nobr><br>
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.addAllowedApplication_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>addAllowedApplication</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.addAppTask_added(android.app.Activity, android.content.Intent, android.app.ActivityManager.TaskDescription, android.graphics.Bitmap)" class="hiddenlink" target="rightframe"><b>addAppTask</b>
+(<code>Activity, Intent, TaskDescription, Bitmap</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addArc_added(float, float, float, float, float, float)" class="hiddenlink" target="rightframe"><b>addArc</b>
+(<code>float, float, float, float, float, float</code>)</A></nobr><br>
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.Builder.html#android.view.inputmethod.CursorAnchorInfo.Builder.addCharacterBounds_added(int, float, float, float, float, int)" class="hiddenlink" target="rightframe"><b>addCharacterBounds</b>
+(<code>int, float, float, float, float, int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addCrossProfileIntentFilter_added(android.content.ComponentName, android.content.IntentFilter, int)" class="hiddenlink" target="rightframe"><b>addCrossProfileIntentFilter</b>
+(<code>ComponentName, IntentFilter, int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>addCrossProfileWidgetProvider</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.addDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><b>addDefaultNetworkActiveListener</b>
+(<code>OnNetworkActiveListener</code>)</A></nobr><br>
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.addDisallowedApplication_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>addDisallowedApplication</b>
+(<code>String</code>)</A></nobr><br>
+<i>addEarcon</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.io.File)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, File</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, String</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<i>addOnActiveSessionsChangedListener</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSessionManager.html#android.media.session.MediaSessionManager.addOnActiveSessionsChangedListener_added(android.media.session.MediaSessionManager.OnActiveSessionsChangedListener, android.content.ComponentName)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>OnActiveSessionsChangedListener, ComponentName</code>)</b>&nbsp;in&nbsp;android.media.session.MediaSessionManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSessionManager.html#android.media.session.MediaSessionManager.addOnActiveSessionsChangedListener_added(android.media.session.MediaSessionManager.OnActiveSessionsChangedListener, android.content.ComponentName, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>OnActiveSessionsChangedListener, ComponentName, Handler</code>)</b>&nbsp;in&nbsp;android.media.session.MediaSessionManager
+</A></nobr><br>
+<i>addRoundRect</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addRoundRect_added(float, float, float, float, float, float, android.graphics.Path.Direction)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float, float, float, float, float, float, Direction</code>)</b>&nbsp;in&nbsp;android.graphics.Path
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addRoundRect_added(float, float, float, float, float[], android.graphics.Path.Direction)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float, float, float, float, float[], Direction</code>)</b>&nbsp;in&nbsp;android.graphics.Path
+</A></nobr><br>
+<nobr><A HREF="android.app.FragmentTransaction.html#android.app.FragmentTransaction.addSharedElement_added(android.view.View, java.lang.String)" class="hiddenlink" target="rightframe"><b>addSharedElement</b>
+(<code>View, String</code>)</A></nobr><br>
+<i>addSpeech</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.io.File)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, File</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, String, int</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.adjustVolume_added(int, int)" class="hiddenlink" target="rightframe"><b>adjustVolume</b>
+(<code>int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.allowBypass_added()" class="hiddenlink" target="rightframe"><b>allowBypass</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.allowFamily_added(int)" class="hiddenlink" target="rightframe"><b>allowFamily</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.text.SpannableStringBuilder.html#android.text.SpannableStringBuilder.append_added(java.lang.CharSequence, java.lang.Object, int)" class="hiddenlink" target="rightframe"><b>append</b>
+(<code>CharSequence, Object, int</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.arcTo_added(float, float, float, float, float, float, boolean)" class="hiddenlink" target="rightframe"><b>arcTo</b>
+(<code>float, float, float, float, float, float, boolean</code>)</A></nobr><br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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="#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.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.bindAppWidgetIdIfAllowed_added(int, android.os.UserHandle, android.content.ComponentName, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>bindAppWidgetIdIfAllowed</b>
+(<code>int, UserHandle, ComponentName, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.net.Network.html#android.net.Network.bindSocket_added(java.net.Socket)" class="hiddenlink" target="rightframe"><b>bindSocket</b>
+(<code>Socket</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildChannelsUriForInput_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>buildChannelsUriForInput</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildChannelUriForPassthroughInput_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>buildChannelUriForPassthroughInput</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildInputId_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>buildInputId</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<i>buildProgramsUriForChannel</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildProgramsUriForChannel_added(long)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long</code>)</b>&nbsp;in&nbsp;android.media.tv.TvContract
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildProgramsUriForChannel_added(long, long, long)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long, long, long</code>)</b>&nbsp;in&nbsp;android.media.tv.TvContract
+</A></nobr><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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="#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.net.wifi.WifiManager.html#android.net.wifi.WifiManager.cancelWps_added(android.net.wifi.WifiManager.WpsCallback)" class="hiddenlink" target="rightframe"><b>cancelWps</b>
+(<code>WpsCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.canVirtualize_added(int, int)" class="hiddenlink" target="rightframe"><b>canVirtualize</b>
+(<code>int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.util.Range.html#android.util.Range.clamp_added(T)" class="hiddenlink" target="rightframe"><b>clamp</b>
+(<code>T</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearCrossProfileIntentFilters_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>clearCrossProfileIntentFilters</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearDeviceOwnerApp_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>clearDeviceOwnerApp</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.computeSystemWindowInsets_added(android.view.WindowInsets, android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>computeSystemWindowInsets</b>
+(<code>WindowInsets, Rect</code>)</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.consumeStableInsets_added()" class="hiddenlink" target="rightframe"><b>consumeStableInsets</b>
+()</A></nobr><br>
+<i>contains</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.contains_added(T)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.contains_added(android.util.Range<T>)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Range&lt;T&gt;</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+<i>create</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.create_added(android.content.Context, android.net.Uri, android.view.SurfaceHolder, android.media.AudioAttributes, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context, Uri, SurfaceHolder, AudioAttributes, int</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.create_added(android.content.Context, int, android.media.AudioAttributes, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context, int, AudioAttributes, int</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionService.html#android.service.voice.VoiceInteractionService.createAlwaysOnHotwordDetector_added(java.lang.String, java.util.Locale, android.service.voice.AlwaysOnHotwordDetector.Callback)" class="hiddenlink" target="rightframe"><b>createAlwaysOnHotwordDetector</b>
+(<code>String, Locale, Callback</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.createAndInitializeUser_added(android.content.ComponentName, java.lang.String, java.lang.String, android.content.ComponentName, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>createAndInitializeUser</b>
+(<code>ComponentName, String, String, ComponentName, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.KeyguardManager.html#android.app.KeyguardManager.createConfirmDeviceCredentialIntent_added(java.lang.CharSequence, java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>createConfirmDeviceCredentialIntent</b>
+(<code>CharSequence, CharSequence</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.createFromProfileLevel_added(java.lang.String, int, int)" class="hiddenlink" target="rightframe"><b>createFromProfileLevel</b>
+(<code>String, int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.createSettingsIntent_added()" class="hiddenlink" target="rightframe"><b>createSettingsIntent</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.createSetupIntent_added()" class="hiddenlink" target="rightframe"><b>createSetupIntent</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.display.DisplayManager.html#android.hardware.display.DisplayManager.createVirtualDisplay_added(java.lang.String, int, int, int, android.view.Surface, int, android.hardware.display.VirtualDisplay.Callback, android.os.Handler)" class="hiddenlink" target="rightframe"><b>createVirtualDisplay</b>
+(<code>String, int, int, int, Surface, int, Callback, Handler</code>)</A></nobr><br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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="#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.view.View.html#android.view.View.dispatchNestedPreFling_added(float, float)" class="hiddenlink" target="rightframe"><b>dispatchNestedPreFling</b>
+(<code>float, float</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.downloadMultimediaMessage_added(android.content.Context, java.lang.String, android.net.Uri, android.os.Bundle, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>downloadMultimediaMessage</b>
+(<code>Context, String, Uri, Bundle, PendingIntent</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.drawableHotspotChanged_added(float, float)" class="hiddenlink" target="rightframe"><b>drawableHotspotChanged</b>
+(<code>float, float</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawArc_added(float, float, float, float, float, float, boolean, android.graphics.Paint)" class="hiddenlink" target="rightframe"><b>drawArc</b>
+(<code>float, float, float, float, float, float, boolean, Paint</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawOval_added(float, float, float, float, android.graphics.Paint)" class="hiddenlink" target="rightframe"><b>drawOval</b>
+(<code>float, float, float, float, Paint</code>)</A></nobr><br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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="#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.WebView.html#android.webkit.WebView.enableSlowWholeDocumentDraw_added()" class="hiddenlink" target="rightframe"><b>enableSlowWholeDocumentDraw</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.error_added(int)" class="hiddenlink" target="rightframe"><b>error</b>
+(<code>int</code>)</A></nobr><br>
+<i>extend</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.extend_added(T)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.extend_added(T, T)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, T</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.extend_added(android.util.Range<T>)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Range&lt;T&gt;</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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="#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.media.MediaCodecList.html#android.media.MediaCodecList.findDecoderForFormat_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>findDecoderForFormat</b>
+(<code>MediaFormat</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.findEncoderForFormat_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>findEncoderForFormat</b>
+(<code>MediaFormat</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.AbsListView.html#android.widget.AbsListView.fling_added(int)" class="hiddenlink" target="rightframe"><b>fling</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.flush_added()" class="hiddenlink" target="rightframe"><b>flush</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.BluetoothLeScanner.html#android.bluetooth.le.BluetoothLeScanner.flushPendingScanResults_added(android.bluetooth.le.ScanCallback)" class="hiddenlink" target="rightframe"><b>flushPendingScanResults</b>
+(<code>ScanCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.forceVirtualizationMode_added(int)" class="hiddenlink" target="rightframe"><b>forceVirtualizationMode</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.forLanguageTag_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>forLanguageTag</b>
+(<code>String</code>)</A></nobr><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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="#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.media.AudioManager.html#android.media.AudioManager.generateAudioSessionId_added()" class="hiddenlink" target="rightframe"><b>generateAudioSessionId</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getActiveNotifications_added(java.lang.String[])" class="hiddenlink" target="rightframe"><b>getActiveNotifications</b>
+(<code>String[]</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getActiveQueueItemId_added()" class="hiddenlink" target="rightframe"><b>getActiveQueueItemId</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSessionManager.html#android.media.session.MediaSessionManager.getActiveSessions_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getActiveSessions</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getAllNetworks_added()" class="hiddenlink" target="rightframe"><b>getAllNetworks</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getAllowEnterTransitionOverlap_added()" class="hiddenlink" target="rightframe"><b>getAllowEnterTransitionOverlap</b>
+()</A></nobr><br>
+<i>getAllowReturnTransitionOverlap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getAllowReturnTransitionOverlap_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getAllowReturnTransitionOverlap_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.graphics.Outline.html#android.graphics.Outline.getAlpha_added()" class="hiddenlink" target="rightframe"><b>getAlpha</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getAppTaskThumbnailSize_added()" class="hiddenlink" target="rightframe"><b>getAppTaskThumbnailSize</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.Display.html#android.view.Display.getAppVsyncOffsetNanos_added()" class="hiddenlink" target="rightframe"><b>getAppVsyncOffsetNanos</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.getAudioAttributes_added()" class="hiddenlink" target="rightframe"><b>getAudioAttributes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getAudioCapabilities_added()" class="hiddenlink" target="rightframe"><b>getAudioCapabilities</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getAutoTimeRequired_added()" class="hiddenlink" target="rightframe"><b>getAutoTimeRequired</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getAvailableLanguages_added()" class="hiddenlink" target="rightframe"><b>getAvailableLanguages</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getBackgroundTintList_added()" class="hiddenlink" target="rightframe"><b>getBackgroundTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getBackgroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getBackgroundTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getBufferedPosition_added()" class="hiddenlink" target="rightframe"><b>getBufferedPosition</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.getButtonTintList_added()" class="hiddenlink" target="rightframe"><b>getButtonTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.getButtonTintMode_added()" class="hiddenlink" target="rightframe"><b>getButtonTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getBytes_added()" class="hiddenlink" target="rightframe"><b>getBytes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.getCarrierConfigValues_added()" class="hiddenlink" target="rightframe"><b>getCarrierConfigValues</b>
+()</A></nobr><br>
+<nobr><A HREF="android.content.res.TypedArray.html#android.content.res.TypedArray.getChangingConfigurations_added()" class="hiddenlink" target="rightframe"><b>getChangingConfigurations</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getChannelMask_added()" class="hiddenlink" target="rightframe"><b>getChannelMask</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.getCharacterBounds_added(int)" class="hiddenlink" target="rightframe"><b>getCharacterBounds</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.getCharacterBoundsFlags_added(int)" class="hiddenlink" target="rightframe"><b>getCharacterBoundsFlags</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.textservice.TextInfo.html#android.view.textservice.TextInfo.getCharSequence_added()" class="hiddenlink" target="rightframe"><b>getCharSequence</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getCharSequenceText_added()" class="hiddenlink" target="rightframe"><b>getCharSequenceText</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.getCheckMarkTintList_added()" class="hiddenlink" target="rightframe"><b>getCheckMarkTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.getCheckMarkTintMode_added()" class="hiddenlink" target="rightframe"><b>getCheckMarkTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.getClipToPadding_added()" class="hiddenlink" target="rightframe"><b>getClipToPadding</b>
+()</A></nobr><br>
+<i>getCodeCacheDir</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.Context.html#android.content.Context.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.Context
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.ContextWrapper
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockContext
+</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecInfos_added()" class="hiddenlink" target="rightframe"><b>getCodecInfos</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.getColor_added()" class="hiddenlink" target="rightframe"><b>getColor</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.getController_added()" class="hiddenlink" target="rightframe"><b>getController</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.Image.html#android.media.Image.getCropRect_added()" class="hiddenlink" target="rightframe"><b>getCropRect</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getCrossProfileCallerIdDisabled_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getCrossProfileCallerIdDisabled</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getCrossProfileWidgetProviders_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getCrossProfileWidgetProviders</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getCurrentInterruptionFilter_added()" class="hiddenlink" target="rightframe"><b>getCurrentInterruptionFilter</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getCurrentListenerHints_added()" class="hiddenlink" target="rightframe"><b>getCurrentListenerHints</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getCustomActions_added()" class="hiddenlink" target="rightframe"><b>getCustomActions</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getDefaultFormat_added()" class="hiddenlink" target="rightframe"><b>getDefaultFormat</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.SensorManager.html#android.hardware.SensorManager.getDefaultSensor_added(int, boolean)" class="hiddenlink" target="rightframe"><b>getDefaultSensor</b>
+(<code>int, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getDefaultVoice_added()" class="hiddenlink" target="rightframe"><b>getDefaultVoice</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.getDescription_added()" class="hiddenlink" target="rightframe"><b>getDescription</b>
+()</A></nobr><br>
+<i>getDeviceName</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.html#android.bluetooth.le.ScanFilter.getDeviceName_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getDeviceName_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.bluetooth.le.ScanRecord
+</A></nobr><br>
+<i>getDisplayScript</i><br>
+&nbsp;&nbsp;<nobr><A HREF="java.util.Locale.html#java.util.Locale.getDisplayScript_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;java.util.Locale
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="java.util.Locale.html#java.util.Locale.getDisplayScript_added(java.util.Locale)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Locale</code>)</b>&nbsp;in&nbsp;java.util.Locale
+</A></nobr><br>
+<i>getElevation</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getElevation_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.PopupWindow.html#android.widget.PopupWindow.getElevation_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.PopupWindow
+</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getEncoderCapabilities_added()" class="hiddenlink" target="rightframe"><b>getEncoderCapabilities</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getEncoding_added()" class="hiddenlink" target="rightframe"><b>getEncoding</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getEnterTransition_added()" class="hiddenlink" target="rightframe"><b>getEnterTransition</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getError_added()" class="hiddenlink" target="rightframe"><b>getError</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getExitTransition_added()" class="hiddenlink" target="rightframe"><b>getExitTransition</b>
+()</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getExtension_added(char)" class="hiddenlink" target="rightframe"><b>getExtension</b>
+(<code>char</code>)</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getExtensionKeys_added()" class="hiddenlink" target="rightframe"><b>getExtensionKeys</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getExtras_added()" class="hiddenlink" target="rightframe"><b>getExtras</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.getFeatureEnabled_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getFeatureEnabled</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.DatePicker.html#android.widget.DatePicker.getFirstDayOfWeek_added()" class="hiddenlink" target="rightframe"><b>getFirstDayOfWeek</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getFlags_added()" class="hiddenlink" target="rightframe"><b>getFlags</b>
+()</A></nobr><br>
+<i>getFontFeatureSettings</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.getFontFeatureSettings_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getFontFeatureSettings_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.getForegroundTintList_added()" class="hiddenlink" target="rightframe"><b>getForegroundTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.getForegroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getForegroundTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.StatusBarNotification.html#android.service.notification.StatusBarNotification.getGroupKey_added()" class="hiddenlink" target="rightframe"><b>getGroupKey</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.params.StreamConfigurationMap.html#android.hardware.camera2.params.StreamConfigurationMap.getHighSpeedVideoFpsRanges_added()" class="hiddenlink" target="rightframe"><b>getHighSpeedVideoFpsRanges</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.params.StreamConfigurationMap.html#android.hardware.camera2.params.StreamConfigurationMap.getHighSpeedVideoFpsRangesFor_added(android.util.Size)" class="hiddenlink" target="rightframe"><b>getHighSpeedVideoFpsRangesFor</b>
+(<code>Size</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.params.StreamConfigurationMap.html#android.hardware.camera2.params.StreamConfigurationMap.getHighSpeedVideoSizes_added()" class="hiddenlink" target="rightframe"><b>getHighSpeedVideoSizes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.params.StreamConfigurationMap.html#android.hardware.camera2.params.StreamConfigurationMap.getHighSpeedVideoSizesFor_added(android.util.Range<java.lang.Integer>)" class="hiddenlink" target="rightframe"><b>getHighSpeedVideoSizesFor</b>
+(<code>Range&lt;Integer&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.getImageTintList_added()" class="hiddenlink" target="rightframe"><b>getImageTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.getImageTintMode_added()" class="hiddenlink" target="rightframe"><b>getImageTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getIndeterminateTintList_added()" class="hiddenlink" target="rightframe"><b>getIndeterminateTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getIndeterminateTintMode_added()" class="hiddenlink" target="rightframe"><b>getIndeterminateTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputBuffer_added(int)" class="hiddenlink" target="rightframe"><b>getInputBuffer</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputFormat_added()" class="hiddenlink" target="rightframe"><b>getInputFormat</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputImage_added(int)" class="hiddenlink" target="rightframe"><b>getInputImage</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.getInputState_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getInputState</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.getInsertionMarkerFlags_added()" class="hiddenlink" target="rightframe"><b>getInsertionMarkerFlags</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getInstalledCaCerts_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getInstalledCaCerts</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.getInstalledProvidersForProfile_added(android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>getInstalledProvidersForProfile</b>
+(<code>UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.getIntValue_added()" class="hiddenlink" target="rightframe"><b>getIntValue</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getLastPositionUpdateTime_added()" class="hiddenlink" target="rightframe"><b>getLastPositionUpdateTime</b>
+()</A></nobr><br>
+<i>getLetterSpacing</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.getLetterSpacing_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getLetterSpacing_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getManufacturerSpecificData_added(int)" class="hiddenlink" target="rightframe"><b>getManufacturerSpecificData</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.text.InputFilter.LengthFilter.html#android.text.InputFilter.LengthFilter.getMax_added()" class="hiddenlink" target="rightframe"><b>getMax</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.getMaxDelay_added()" class="hiddenlink" target="rightframe"><b>getMaxDelay</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getMaxTextLength_added()" class="hiddenlink" target="rightframe"><b>getMaxTextLength</b>
+()</A></nobr><br>
+<i>getMediaController</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.getMediaController_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getMediaController_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getMimeType_added()" class="hiddenlink" target="rightframe"><b>getMimeType</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.getMode_added()" class="hiddenlink" target="rightframe"><b>getMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.getNavigationContentDescription_added()" class="hiddenlink" target="rightframe"><b>getNavigationContentDescription</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getNetworkInfo_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>getNetworkInfo</b>
+(<code>Network</code>)</A></nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.getNetworkType_added()" class="hiddenlink" target="rightframe"><b>getNetworkType</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.getNextAlarmClock_added()" class="hiddenlink" target="rightframe"><b>getNextAlarmClock</b>
+()</A></nobr><br>
+<i>getNoBackupFilesDir</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.Context.html#android.content.Context.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.Context
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.ContextWrapper
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockContext
+</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getOutlineProvider_added()" class="hiddenlink" target="rightframe"><b>getOutlineProvider</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputBuffer_added(int)" class="hiddenlink" target="rightframe"><b>getOutputBuffer</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputFormat_added(int)" class="hiddenlink" target="rightframe"><b>getOutputFormat</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputImage_added(int)" class="hiddenlink" target="rightframe"><b>getOutputImage</b>
+(<code>int</code>)</A></nobr><br>
+<i>getPackageInstaller</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getPackageInstaller_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getPackageInstaller_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getPackageName_added()" class="hiddenlink" target="rightframe"><b>getPackageName</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.getParentId_added()" class="hiddenlink" target="rightframe"><b>getParentId</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getPathMotion_added()" class="hiddenlink" target="rightframe"><b>getPathMotion</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getPermittedAccessibilityServices_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getPermittedAccessibilityServices</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getPermittedInputMethods_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getPermittedInputMethods</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getPlaybackInfo_added()" class="hiddenlink" target="rightframe"><b>getPlaybackInfo</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getPlaybackSpeed_added()" class="hiddenlink" target="rightframe"><b>getPlaybackSpeed</b>
+()</A></nobr><br>
+<i>getPopupTheme</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.ActionMenuView.html#android.widget.ActionMenuView.getPopupTheme_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.ActionMenuView
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.getPopupTheme_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.Toolbar
+</A></nobr><br>
+<nobr><A HREF="android.view.Display.html#android.view.Display.getPresentationDeadlineNanos_added()" class="hiddenlink" target="rightframe"><b>getPresentationDeadlineNanos</b>
+()</A></nobr><br>
+<nobr><A HREF="android.accounts.AccountManager.html#android.accounts.AccountManager.getPreviousName_added(android.accounts.Account)" class="hiddenlink" target="rightframe"><b>getPreviousName</b>
+(<code>Account</code>)</A></nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.getProfile_added()" class="hiddenlink" target="rightframe"><b>getProfile</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressBackgroundTintList_added()" class="hiddenlink" target="rightframe"><b>getProgressBackgroundTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressBackgroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getProgressBackgroundTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressTintList_added()" class="hiddenlink" target="rightframe"><b>getProgressTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressTintMode_added()" class="hiddenlink" target="rightframe"><b>getProgressTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getQueue_added()" class="hiddenlink" target="rightframe"><b>getQueue</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getQueueTitle_added()" class="hiddenlink" target="rightframe"><b>getQueueTitle</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getReasonPhrase_added()" class="hiddenlink" target="rightframe"><b>getReasonPhrase</b>
+()</A></nobr><br>
+<i>getReenterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getReenterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getReenterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html#java.util.concurrent.ScheduledThreadPoolExecutor.getRemoveOnCancelPolicy_added()" class="hiddenlink" target="rightframe"><b>getRemoveOnCancelPolicy</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.ChangeTransform.html#android.transition.ChangeTransform.getReparent_added()" class="hiddenlink" target="rightframe"><b>getReparent</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.ChangeTransform.html#android.transition.ChangeTransform.getReparentWithOverlay_added()" class="hiddenlink" target="rightframe"><b>getReparentWithOverlay</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanSettings.html#android.bluetooth.le.ScanSettings.getReportDelayMillis_added()" class="hiddenlink" target="rightframe"><b>getReportDelayMillis</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.getReportingMode_added()" class="hiddenlink" target="rightframe"><b>getReportingMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getResponseHeaders_added()" class="hiddenlink" target="rightframe"><b>getResponseHeaders</b>
+()</A></nobr><br>
+<i>getReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getSampleRate_added()" class="hiddenlink" target="rightframe"><b>getSampleRate</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getScreenCaptureDisabled_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getScreenCaptureDisabled</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getScript_added()" class="hiddenlink" target="rightframe"><b>getScript</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getSecondaryProgressTintList_added()" class="hiddenlink" target="rightframe"><b>getSecondaryProgressTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getSecondaryProgressTintMode_added()" class="hiddenlink" target="rightframe"><b>getSecondaryProgressTintMode</b>
+()</A></nobr><br>
+<i>getSelectedTrack</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.getSelectedTrack_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.getSelectedTrack_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.media.tv.TvView
+</A></nobr><br>
+<i>getServiceData</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getServiceData_added(android.os.ParcelUuid)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ParcelUuid</code>)</b>&nbsp;in&nbsp;android.bluetooth.le.ScanRecord
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getServiceData_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.bluetooth.le.ScanRecord
+</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanFilter.html#android.bluetooth.le.ScanFilter.getServiceDataUuid_added()" class="hiddenlink" target="rightframe"><b>getServiceDataUuid</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getSessionActivity_added()" class="hiddenlink" target="rightframe"><b>getSessionActivity</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getSessionToken_added()" class="hiddenlink" target="rightframe"><b>getSessionToken</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getSharedElementEnterTransition_added()" class="hiddenlink" target="rightframe"><b>getSharedElementEnterTransition</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementReenterTransition_added()" class="hiddenlink" target="rightframe"><b>getSharedElementReenterTransition</b>
+()</A></nobr><br>
+<i>getSharedElementReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getSharedElementReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementsUseOverlay_added()" class="hiddenlink" target="rightframe"><b>getSharedElementsUseOverlay</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getShowSoftInputOnFocus_added()" class="hiddenlink" target="rightframe"><b>getShowSoftInputOnFocus</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.getShowText_added()" class="hiddenlink" target="rightframe"><b>getShowText</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getSize_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getSize</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getSizeF_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getSizeF</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.Slide.html#android.transition.Slide.getSlideEdge_added()" class="hiddenlink" target="rightframe"><b>getSlideEdge</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.getSpeakerAngles_added(int, int, int[])" class="hiddenlink" target="rightframe"><b>getSpeakerAngles</b>
+(<code>int, int, int[]</code>)</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetBottom_added()" class="hiddenlink" target="rightframe"><b>getStableInsetBottom</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetLeft_added()" class="hiddenlink" target="rightframe"><b>getStableInsetLeft</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetRight_added()" class="hiddenlink" target="rightframe"><b>getStableInsetRight</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetTop_added()" class="hiddenlink" target="rightframe"><b>getStableInsetTop</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getStatusCode_added()" class="hiddenlink" target="rightframe"><b>getStatusCode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.Display.html#android.view.Display.getSupportedRefreshRates_added()" class="hiddenlink" target="rightframe"><b>getSupportedRefreshRates</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getTargetNames_added()" class="hiddenlink" target="rightframe"><b>getTargetNames</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.getText_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getText</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.getThumbTintList_added()" class="hiddenlink" target="rightframe"><b>getThumbTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.getThumbTintMode_added()" class="hiddenlink" target="rightframe"><b>getThumbTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html#android.bluetooth.le.AdvertiseSettings.getTimeout_added()" class="hiddenlink" target="rightframe"><b>getTimeout</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.getTouchscreenBlocksFocus_added()" class="hiddenlink" target="rightframe"><b>getTouchscreenBlocksFocus</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.getTracks_added(int)" class="hiddenlink" target="rightframe"><b>getTracks</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.getTransitionAt_added(int)" class="hiddenlink" target="rightframe"><b>getTransitionAt</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.getTransitionBackgroundFadeDuration_added()" class="hiddenlink" target="rightframe"><b>getTransitionBackgroundFadeDuration</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.getTransitionCount_added()" class="hiddenlink" target="rightframe"><b>getTransitionCount</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getTransitionName_added()" class="hiddenlink" target="rightframe"><b>getTransitionName</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.getTvInputInfo_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getTvInputInfo</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.getTypeLabel_added(android.content.res.Resources, int, java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>getTypeLabel</b>
+(<code>Resources, int, CharSequence</code>)</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleAttributes_added()" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleAttributes</b>
+()</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleKeys_added()" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleKeys</b>
+()</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleType_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleType</b>
+(<code>String</code>)</A></nobr><br>
+<i>getUserBadgedDrawableForDensity</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle, Rect, int</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle, Rect, int</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<i>getUserBadgedIcon</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<i>getUserBadgedLabel</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, UserHandle</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, UserHandle</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getVideoCapabilities_added()" class="hiddenlink" target="rightframe"><b>getVideoCapabilities</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.getVideoResolution_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getVideoResolution</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.getVirtualizationMode_added()" class="hiddenlink" target="rightframe"><b>getVirtualizationMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getVoice_added()" class="hiddenlink" target="rightframe"><b>getVoice</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getVoiceName_added()" class="hiddenlink" target="rightframe"><b>getVoiceName</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getVoices_added()" class="hiddenlink" target="rightframe"><b>getVoices</b>
+()</A></nobr><br>
+<A NAME="H"></A>
+<br><font size="+2">H</font>&nbsp;
+<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="#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.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.hasCaCertInstalled_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>hasCaCertInstalled</b>
+(<code>ComponentName, byte[]</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.hasFinished_added()" class="hiddenlink" target="rightframe"><b>hasFinished</b>
+()</A></nobr><br>
+<i>hasQueuedPredecessors</i><br>
+&nbsp;&nbsp;<nobr><A HREF="java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html#java.util.concurrent.locks.AbstractQueuedLongSynchronizer.hasQueuedPredecessors_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;java.util.concurrent.locks.AbstractQueuedLongSynchronizer
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="java.util.concurrent.locks.AbstractQueuedSynchronizer.html#java.util.concurrent.locks.AbstractQueuedSynchronizer.hasQueuedPredecessors_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;java.util.concurrent.locks.AbstractQueuedSynchronizer
+</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.hasStableInsets_added()" class="hiddenlink" target="rightframe"><b>hasStableInsets</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.hasStarted_added()" class="hiddenlink" target="rightframe"><b>hasStarted</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.hasUserRestriction_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>hasUserRestriction</b>
+(<code>String</code>)</A></nobr><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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="#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.TelephonyManager.html#android.telephony.TelephonyManager.iccCloseLogicalChannel_added(int)" class="hiddenlink" target="rightframe"><b>iccCloseLogicalChannel</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccExchangeSimIO_added(int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccExchangeSimIO</b>
+(<code>int, int, int, int, int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccOpenLogicalChannel_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>iccOpenLogicalChannel</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccTransmitApduBasicChannel_added(int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccTransmitApduBasicChannel</b>
+(<code>int, int, int, int, int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccTransmitApduLogicalChannel_added(int, int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccTransmitApduLogicalChannel</b>
+(<code>int, int, int, int, int, int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.util.ArrayMap.html#android.util.ArrayMap.indexOfKey_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>indexOfKey</b>
+(<code>Object</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.installCaCert_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>installCaCert</b>
+(<code>ComponentName, byte[]</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.installKeyPair_added(android.content.ComponentName, java.security.PrivateKey, java.security.cert.Certificate, java.lang.String)" class="hiddenlink" target="rightframe"><b>installKeyPair</b>
+(<code>ComponentName, PrivateKey, Certificate, String</code>)</A></nobr><br>
+<i>intersect</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.intersect_added(T, T)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, T</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.intersect_added(android.util.Range<T>)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Range&lt;T&gt;</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.invalidateOutline_added()" class="hiddenlink" target="rightframe"><b>invalidateOutline</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.is5GHzBandSupported_added()" class="hiddenlink" target="rightframe"><b>is5GHzBandSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityWindowInfo.html#android.view.accessibility.AccessibilityWindowInfo.isAccessibilityFocused_added()" class="hiddenlink" target="rightframe"><b>isAccessibilityFocused</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionService.html#android.service.voice.VoiceInteractionService.isActiveService_added(android.content.Context, android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>isActiveService</b>
+(<code>Context, ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.isActivityEnabled_added(android.content.ComponentName, android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>isActivityEnabled</b>
+(<code>ComponentName, UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isApplicationHidden_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>isApplicationHidden</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.isButtonPressed_added(int)" class="hiddenlink" target="rightframe"><b>isButtonPressed</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html#android.bluetooth.le.AdvertiseSettings.isConnectable_added()" class="hiddenlink" target="rightframe"><b>isConnectable</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.isConsumed_added()" class="hiddenlink" target="rightframe"><b>isConsumed</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isDeviceToApRttSupported_added()" class="hiddenlink" target="rightframe"><b>isDeviceToApRttSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isEnhancedPowerReportingSupported_added()" class="hiddenlink" target="rightframe"><b>isEnhancedPowerReportingSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.isEnterpriseContactId_added(long)" class="hiddenlink" target="rightframe"><b>isEnterpriseContactId</b>
+(<code>long</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.isFeatureRequired_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>isFeatureRequired</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.isFormatSupported_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>isFormatSupported</b>
+(<code>MediaFormat</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.isInLockTaskMode_added()" class="hiddenlink" target="rightframe"><b>isInLockTaskMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isMasterVolumeMuted_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>isMasterVolumeMuted</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isMultipleAdvertisementSupported_added()" class="hiddenlink" target="rightframe"><b>isMultipleAdvertisementSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isOffloadedFilteringSupported_added()" class="hiddenlink" target="rightframe"><b>isOffloadedFilteringSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isOffloadedScanBatchingSupported_added()" class="hiddenlink" target="rightframe"><b>isOffloadedScanBatchingSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.job.JobParameters.html#android.app.job.JobParameters.isOverrideDeadlineExpired_added()" class="hiddenlink" target="rightframe"><b>isOverrideDeadlineExpired</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isP2pSupported_added()" class="hiddenlink" target="rightframe"><b>isP2pSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.isPackageEnabled_added(java.lang.String, android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>isPackageEnabled</b>
+(<code>String, UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.isParentalControlsEnabled_added()" class="hiddenlink" target="rightframe"><b>isParentalControlsEnabled</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.isPassthroughInput_added()" class="hiddenlink" target="rightframe"><b>isPassthroughInput</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.isPersisted_added()" class="hiddenlink" target="rightframe"><b>isPersisted</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isPreferredNetworkOffloadSupported_added()" class="hiddenlink" target="rightframe"><b>isPreferredNetworkOffloadSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.isRatingBlocked_added(android.media.tv.TvContentRating)" class="hiddenlink" target="rightframe"><b>isRatingBlocked</b>
+(<code>TvContentRating</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.isSmsCapable_added()" class="hiddenlink" target="rightframe"><b>isSmsCapable</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isTdlsSupported_added()" class="hiddenlink" target="rightframe"><b>isTdlsSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isUninstallBlocked_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>isUninstallBlocked</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.isVolumeFixed_added()" class="hiddenlink" target="rightframe"><b>isVolumeFixed</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.isWakeLockLevelSupported_added(int)" class="hiddenlink" target="rightframe"><b>isWakeLockLevelSupported</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.isWakeUpSensor_added()" class="hiddenlink" target="rightframe"><b>isWakeUpSensor</b>
+()</A></nobr><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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="#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>loadIcon</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadIcon_added(android.content.Context, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context, int</code>)</b>&nbsp;in&nbsp;android.appwidget.AppWidgetProviderInfo
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.loadIcon_added(android.content.Context)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context</code>)</b>&nbsp;in&nbsp;android.media.tv.TvInputInfo
+</A></nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadLabel_added(android.content.pm.PackageManager)" class="hiddenlink" target="rightframe"><b>loadLabel</b>
+(<code>PackageManager</code>)</A></nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadPreviewImage_added(android.content.Context, int)" class="hiddenlink" target="rightframe"><b>loadPreviewImage</b>
+(<code>Context, int</code>)</A></nobr><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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="#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.app.ActivityOptions.html#android.app.ActivityOptions.makeTaskLaunchBehind_added()" class="hiddenlink" target="rightframe"><b>makeTaskLaunchBehind</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.Ranking.html#android.service.notification.NotificationListenerService.Ranking.matchesInterruptionFilter_added()" class="hiddenlink" target="rightframe"><b>matchesInterruptionFilter</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.AppTask.html#android.app.ActivityManager.AppTask.moveToFront_added()" class="hiddenlink" target="rightframe"><b>moveToFront</b>
+()</A></nobr><br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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="#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.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyChannelRetuned_added(android.net.Uri)" class="hiddenlink" target="rightframe"><b>notifyChannelRetuned</b>
+(<code>Uri</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyContentAllowed_added()" class="hiddenlink" target="rightframe"><b>notifyContentAllowed</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyContentBlocked_added(android.media.tv.TvContentRating)" class="hiddenlink" target="rightframe"><b>notifyContentBlocked</b>
+(<code>TvContentRating</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyTracksChanged_added(java.util.List<android.media.tv.TvTrackInfo>)" class="hiddenlink" target="rightframe"><b>notifyTracksChanged</b>
+(<code>List&lt;TvTrackInfo&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyTrackSelected_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>notifyTrackSelected</b>
+(<code>int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyVideoAvailable_added()" class="hiddenlink" target="rightframe"><b>notifyVideoAvailable</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyVideoUnavailable_added(int)" class="hiddenlink" target="rightframe"><b>notifyVideoUnavailable</b>
+(<code>int</code>)</A></nobr><br>
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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="#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.service.wallpaper.WallpaperService.Engine.html#android.service.wallpaper.WallpaperService.Engine.onApplyWindowInsets_added(android.view.WindowInsets)" class="hiddenlink" target="rightframe"><b>onApplyWindowInsets</b>
+(<code>WindowInsets</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.Callback.html#android.media.session.MediaController.Callback.onAudioInfoChanged_added(android.media.session.MediaController.PlaybackInfo)" class="hiddenlink" target="rightframe"><b>onAudioInfoChanged</b>
+(<code>PlaybackInfo</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.onBatchScanResults_added(java.util.List<android.bluetooth.le.ScanResult>)" class="hiddenlink" target="rightframe"><b>onBatchScanResults</b>
+(<code>List&lt;ScanResult&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onCommand_added(java.lang.String, android.os.Bundle, android.os.ResultReceiver)" class="hiddenlink" target="rightframe"><b>onCommand</b>
+(<code>String, Bundle, ResultReceiver</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onCustomAction_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>onCustomAction</b>
+(<code>String, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onEnterAnimationComplete_added()" class="hiddenlink" target="rightframe"><b>onEnterAnimationComplete</b>
+()</A></nobr><br>
+<i>onError</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_added(java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, int</code>)</b>&nbsp;in&nbsp;android.speech.tts.UtteranceProgressListener
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.speech.tts.UtteranceProgressListener
+</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.Callback.html#android.media.session.MediaController.Callback.onExtrasChanged_added(android.os.Bundle)" class="hiddenlink" target="rightframe"><b>onExtrasChanged</b>
+(<code>Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onFastForward_added()" class="hiddenlink" target="rightframe"><b>onFastForward</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onGetDefaultVoiceNameFor_added(java.lang.String, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>onGetDefaultVoiceNameFor</b>
+(<code>String, String, String</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onGetVoices_added()" class="hiddenlink" target="rightframe"><b>onGetVoices</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onInterruptionFilterChanged_added(int)" class="hiddenlink" target="rightframe"><b>onInterruptionFilterChanged</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onIsValidVoiceName_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>onIsValidVoiceName</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onListenerHintsChanged_added(int)" class="hiddenlink" target="rightframe"><b>onListenerHintsChanged</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onLoadVoice_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>onLoadVoice</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.onLockTaskModeEntering_added(android.content.Context, android.content.Intent, java.lang.String)" class="hiddenlink" target="rightframe"><b>onLockTaskModeEntering</b>
+(<code>Context, Intent, String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.onLockTaskModeExiting_added(android.content.Context, android.content.Intent)" class="hiddenlink" target="rightframe"><b>onLockTaskModeExiting</b>
+(<code>Context, Intent</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGattCallback.html#android.bluetooth.BluetoothGattCallback.onMtuChanged_added(android.bluetooth.BluetoothGatt, int, int)" class="hiddenlink" target="rightframe"><b>onMtuChanged</b>
+(<code>BluetoothGatt, int, int</code>)</A></nobr><br>
+<i>onNestedPreFling</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedPreFling_added(android.view.View, float, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, float, float</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedPreFling_added(android.view.View, float, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, float, float</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGattServerCallback.html#android.bluetooth.BluetoothGattServerCallback.onNotificationSent_added(android.bluetooth.BluetoothDevice, int)" class="hiddenlink" target="rightframe"><b>onNotificationSent</b>
+(<code>BluetoothDevice, int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onPause_added()" class="hiddenlink" target="rightframe"><b>onPause</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onPlay_added()" class="hiddenlink" target="rightframe"><b>onPlay</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onPlayFromMediaId_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>onPlayFromMediaId</b>
+(<code>String, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onPlayFromSearch_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>onPlayFromSearch</b>
+(<code>String, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.Callback.html#android.media.session.MediaController.Callback.onQueueChanged_added(java.util.List<android.media.session.MediaSession.QueueItem>)" class="hiddenlink" target="rightframe"><b>onQueueChanged</b>
+(<code>List&lt;QueueItem&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.Callback.html#android.media.session.MediaController.Callback.onQueueTitleChanged_added(java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>onQueueTitleChanged</b>
+(<code>CharSequence</code>)</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionService.html#android.service.voice.VoiceInteractionService.onReady_added()" class="hiddenlink" target="rightframe"><b>onReady</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.backup.BackupAgent.html#android.app.backup.BackupAgent.onRestoreFinished_added()" class="hiddenlink" target="rightframe"><b>onRestoreFinished</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onRewind_added()" class="hiddenlink" target="rightframe"><b>onRewind</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.onScanResult_added(int, android.bluetooth.le.ScanResult)" class="hiddenlink" target="rightframe"><b>onScanResult</b>
+(<code>int, ScanResult</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onSeekTo_added(long)" class="hiddenlink" target="rightframe"><b>onSeekTo</b>
+(<code>long</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.onSelectTrack_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>onSelectTrack</b>
+(<code>int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.Callback.html#android.media.session.MediaController.Callback.onSessionDestroyed_added()" class="hiddenlink" target="rightframe"><b>onSessionDestroyed</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.onSetCaptionEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>onSetCaptionEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onSetRating_added(android.media.Rating)" class="hiddenlink" target="rightframe"><b>onSetRating</b>
+(<code>Rating</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onShowFileChooser_added(android.webkit.WebView, android.webkit.ValueCallback<android.net.Uri[]>, android.webkit.WebChromeClient.FileChooserParams)" class="hiddenlink" target="rightframe"><b>onShowFileChooser</b>
+(<code>WebView, ValueCallback&lt;Uri[]&gt;, FileChooserParams</code>)</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionService.html#android.service.voice.VoiceInteractionService.onShutdown_added()" class="hiddenlink" target="rightframe"><b>onShutdown</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onSkipToNext_added()" class="hiddenlink" target="rightframe"><b>onSkipToNext</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onSkipToPrevious_added()" class="hiddenlink" target="rightframe"><b>onSkipToPrevious</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onSkipToQueueItem_added(long)" class="hiddenlink" target="rightframe"><b>onSkipToQueueItem</b>
+(<code>long</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.onStartFailure_added(int)" class="hiddenlink" target="rightframe"><b>onStartFailure</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.onStartSuccess_added(android.bluetooth.le.AdvertiseSettings)" class="hiddenlink" target="rightframe"><b>onStartSuccess</b>
+(<code>AdvertiseSettings</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onStop_added()" class="hiddenlink" target="rightframe"><b>onStop</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.onSurfaceChanged_added(int, int, int)" class="hiddenlink" target="rightframe"><b>onSurfaceChanged</b>
+(<code>int, int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.onUnblockContent_added(android.media.tv.TvContentRating)" class="hiddenlink" target="rightframe"><b>onUnblockContent</b>
+(<code>TvContentRating</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onVisibleBehindCanceled_added()" class="hiddenlink" target="rightframe"><b>onVisibleBehindCanceled</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.dreams.DreamService.html#android.service.dreams.DreamService.onWakeUp_added()" class="hiddenlink" target="rightframe"><b>onWakeUp</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.Network.html#android.net.Network.openConnection_added(java.net.URL)" class="hiddenlink" target="rightframe"><b>openConnection</b>
+(<code>URL</code>)</A></nobr><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#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.util.Rational.html#android.util.Rational.parseRational_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>parseRational</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.util.Size.html#android.util.Size.parseSize_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>parseSize</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.util.SizeF.html#android.util.SizeF.parseSizeF_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>parseSizeF</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playEarcon_added(java.lang.String, int, android.os.Bundle, java.lang.String)" class="hiddenlink" target="rightframe"><b>playEarcon</b>
+(<code>String, int, Bundle, String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.TransportControls.html#android.media.session.MediaController.TransportControls.playFromMediaId_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>playFromMediaId</b>
+(<code>String, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.TransportControls.html#android.media.session.MediaController.TransportControls.playFromSearch_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>playFromSearch</b>
+(<code>String, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playSilentUtterance_added(long, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>playSilentUtterance</b>
+(<code>long, int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putSize_added(java.lang.String, android.util.Size)" class="hiddenlink" target="rightframe"><b>putSize</b>
+(<code>String, Size</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putSizeF_added(java.lang.String, android.util.SizeF)" class="hiddenlink" target="rightframe"><b>putSizeF</b>
+(<code>String, SizeF</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaMetadata.Builder.html#android.media.MediaMetadata.Builder.putText_added(java.lang.String, java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>putText</b>
+(<code>String, CharSequence</code>)</A></nobr><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#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.os.Parcel.html#android.os.Parcel.readSize_added()" class="hiddenlink" target="rightframe"><b>readSize</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readSizeF_added()" class="hiddenlink" target="rightframe"><b>readSizeF</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraManager.html#android.hardware.camera2.CameraManager.registerAvailabilityCallback_added(android.hardware.camera2.CameraManager.AvailabilityCallback, android.os.Handler)" class="hiddenlink" target="rightframe"><b>registerAvailabilityCallback</b>
+(<code>AvailabilityCallback, Handler</code>)</A></nobr><br>
+<i>registerCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.registerCallback_added(android.content.pm.LauncherApps.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback</code>)</b>&nbsp;in&nbsp;android.content.pm.LauncherApps
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.registerCallback_added(android.content.pm.LauncherApps.Callback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback, Handler</code>)</b>&nbsp;in&nbsp;android.content.pm.LauncherApps
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.registerCallback_added(android.media.session.MediaController.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback</code>)</b>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.registerCallback_added(android.media.session.MediaController.Callback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback, Handler</code>)</b>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.registerCallback_added(android.media.tv.TvInputManager.TvInputCallback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>TvInputCallback, Handler</code>)</b>&nbsp;in&nbsp;android.media.tv.TvInputManager
+</A></nobr><br>
+<nobr><A HREF="android.os.PowerManager.WakeLock.html#android.os.PowerManager.WakeLock.release_added(int)" class="hiddenlink" target="rightframe"><b>release</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.releaseInstance_added()" class="hiddenlink" target="rightframe"><b>releaseInstance</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeAllCookies_added(android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>removeAllCookies</b>
+(<code>ValueCallback&lt;Boolean&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.removeCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>removeCrossProfileWidgetProvider</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.removeDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><b>removeDefaultNetworkActiveListener</b>
+(<code>OnNetworkActiveListener</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSessionManager.html#android.media.session.MediaSessionManager.removeOnActiveSessionsChangedListener_added(android.media.session.MediaSessionManager.OnActiveSessionsChangedListener)" class="hiddenlink" target="rightframe"><b>removeOnActiveSessionsChangedListener</b>
+(<code>OnActiveSessionsChangedListener</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeSessionCookies_added(android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>removeSessionCookies</b>
+(<code>ValueCallback&lt;Boolean&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.accounts.AccountManager.html#android.accounts.AccountManager.renameAccount_added(android.accounts.Account, java.lang.String, android.accounts.AccountManagerCallback<android.accounts.Account>, android.os.Handler)" class="hiddenlink" target="rightframe"><b>renameAccount</b>
+(<code>Account, String, AccountManagerCallback&lt;Account&gt;, Handler</code>)</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.replaceSystemWindowInsets_added(android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>replaceSystemWindowInsets</b>
+(<code>Rect</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.requestConnectionPriority_added(int)" class="hiddenlink" target="rightframe"><b>requestConnectionPriority</b>
+(<code>int</code>)</A></nobr><br>
+<i>requestCursorUpdates</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.BaseInputConnection.html#android.view.inputmethod.BaseInputConnection.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.BaseInputConnection
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.InputConnection
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.InputConnectionWrapper.html#android.view.inputmethod.InputConnectionWrapper.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.InputConnectionWrapper
+</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.requestInterruptionFilter_added(int)" class="hiddenlink" target="rightframe"><b>requestInterruptionFilter</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.requestListenerHints_added(int)" class="hiddenlink" target="rightframe"><b>requestListenerHints</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.requestMtu_added(int)" class="hiddenlink" target="rightframe"><b>requestMtu</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.requestUnbufferedDispatch_added(android.view.MotionEvent)" class="hiddenlink" target="rightframe"><b>requestUnbufferedDispatch</b>
+(<code>MotionEvent</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.requestVisibleBehind_added(boolean)" class="hiddenlink" target="rightframe"><b>requestVisibleBehind</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.reset_added()" class="hiddenlink" target="rightframe"><b>reset</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.display.VirtualDisplay.html#android.hardware.display.VirtualDisplay.resize_added(int, int, int)" class="hiddenlink" target="rightframe"><b>resize</b>
+(<code>int, int, int</code>)</A></nobr><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#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.media.tv.TvView.html#android.media.tv.TvView.selectTrack_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>selectTrack</b>
+(<code>int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.sendCommand_added(java.lang.String, android.os.Bundle, android.os.ResultReceiver)" class="hiddenlink" target="rightframe"><b>sendCommand</b>
+(<code>String, Bundle, ResultReceiver</code>)</A></nobr><br>
+<i>sendCustomAction</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.TransportControls.html#android.media.session.MediaController.TransportControls.sendCustomAction_added(android.media.session.PlaybackState.CustomAction, android.os.Bundle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CustomAction, Bundle</code>)</b>&nbsp;in&nbsp;android.media.session.MediaController.TransportControls
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.TransportControls.html#android.media.session.MediaController.TransportControls.sendCustomAction_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, Bundle</code>)</b>&nbsp;in&nbsp;android.media.session.MediaController.TransportControls
+</A></nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.sendEnvelopeWithStatus_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>sendEnvelopeWithStatus</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.sendMultimediaMessage_added(android.content.Context, android.net.Uri, java.lang.String, android.os.Bundle, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>sendMultimediaMessage</b>
+(<code>Context, Uri, String, Bundle, PendingIntent</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.setAcceptThirdPartyCookies_added(android.webkit.WebView, boolean)" class="hiddenlink" target="rightframe"><b>setAcceptThirdPartyCookies</b>
+(<code>WebView, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.setAlarmClock_added(android.app.AlarmManager.AlarmClockInfo, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>setAlarmClock</b>
+(<code>AlarmClockInfo, PendingIntent</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setAllowEnterTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe"><b>setAllowEnterTransitionOverlap</b>
+(<code>boolean</code>)</A></nobr><br>
+<i>setAllowReturnTransitionOverlap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setAllowReturnTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setAllowReturnTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.graphics.Outline.html#android.graphics.Outline.setAlpha_added(float)" class="hiddenlink" target="rightframe"><b>setAlpha</b>
+(<code>float</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setApplicationHidden_added(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setApplicationHidden</b>
+(<code>ComponentName, String, boolean</code>)</A></nobr><br>
+<i>setAudioAttributes</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AudioAttributes</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AudioAttributes</code>)</b>&nbsp;in&nbsp;android.media.Ringtone
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AudioAttributes</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setAutoTimeRequired_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setAutoTimeRequired</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setBackgroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setBackgroundTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setBackgroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setBackgroundTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.setBlocking_added(boolean)" class="hiddenlink" target="rightframe"><b>setBlocking</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.setButtonTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setButtonTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.setButtonTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setButtonTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<i>setCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.setCallback_added(android.media.MediaCodec.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback</code>)</b>&nbsp;in&nbsp;android.media.MediaCodec
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setCallback_added(android.media.session.MediaSession.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback</code>)</b>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setCallback_added(android.media.session.MediaSession.Callback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback, Handler</code>)</b>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.setCallback_added(android.media.tv.TvView.TvInputCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>TvInputCallback</code>)</b>&nbsp;in&nbsp;android.media.tv.TvView
+</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.setCaptionEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setCaptionEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.setCheckMarkTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setCheckMarkTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.setCheckMarkTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setCheckMarkTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.setColor_added(int)" class="hiddenlink" target="rightframe"><b>setColor</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.Builder.html#android.bluetooth.le.AdvertiseSettings.Builder.setConnectable_added(boolean)" class="hiddenlink" target="rightframe"><b>setConnectable</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.setCookie_added(java.lang.String, java.lang.String, android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>setCookie</b>
+(<code>String, String, ValueCallback&lt;Boolean&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.media.Image.html#android.media.Image.setCropRect_added(android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>setCropRect</b>
+(<code>Rect</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setCrossProfileCallerIdDisabled_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setCrossProfileCallerIdDisabled</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.setDescription_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setDescription</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setDeviceAddress_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setDeviceAddress</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setDeviceName_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setDeviceName</b>
+(<code>String</code>)</A></nobr><br>
+<i>setElevation</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setElevation_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.PopupWindow.html#android.widget.PopupWindow.setElevation_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.widget.PopupWindow
+</A></nobr><br>
+<i>setEnterSharedElementCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setEnterSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setEnterSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setEnterTransition</b>
+(<code>Transition</code>)</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.setError_added(java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>setError</b>
+(<code>CharSequence</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.AppTask.html#android.app.ActivityManager.AppTask.setExcludeFromRecents_added(boolean)" class="hiddenlink" target="rightframe"><b>setExcludeFromRecents</b>
+(<code>boolean</code>)</A></nobr><br>
+<i>setExitSharedElementCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setExitSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setExitSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setExitTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setExitTransition</b>
+(<code>Transition</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setExtras_added(android.os.Bundle)" class="hiddenlink" target="rightframe"><b>setExtras</b>
+(<code>Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.setFeatureEnabled_added(java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setFeatureEnabled</b>
+(<code>String, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.DatePicker.html#android.widget.DatePicker.setFirstDayOfWeek_added(int)" class="hiddenlink" target="rightframe"><b>setFirstDayOfWeek</b>
+(<code>int</code>)</A></nobr><br>
+<i>setFontFeatureSettings</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setFontFeatureSettings_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setFontFeatureSettings_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.setForegroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setForegroundTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.setForegroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setForegroundTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.setImageTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setImageTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.setImageTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setImageTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setIndeterminateTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setIndeterminateTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setIndeterminateTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setIndeterminateTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.setIntValue_added(int)" class="hiddenlink" target="rightframe"><b>setIntValue</b>
+(<code>int</code>)</A></nobr><br>
+<i>setLetterSpacing</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setLetterSpacing_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setLetterSpacing_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.setLocation_added(android.location.Location)" class="hiddenlink" target="rightframe"><b>setLocation</b>
+(<code>Location</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setLockTaskPackages_added(android.content.ComponentName, java.lang.String[])" class="hiddenlink" target="rightframe"><b>setLockTaskPackages</b>
+(<code>ComponentName, String[]</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setMasterVolumeMuted_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setMasterVolumeMuted</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.setMaxTextLength_added(int)" class="hiddenlink" target="rightframe"><b>setMaxTextLength</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setMediaButtonReceiver_added(android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>setMediaButtonReceiver</b>
+(<code>PendingIntent</code>)</A></nobr><br>
+<i>setMediaController</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setMediaController_added(android.media.session.MediaController)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>MediaController</code>)</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setMediaController_added(android.media.session.MediaController)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>MediaController</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.setMode_added(int)" class="hiddenlink" target="rightframe"><b>setMode</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.net.NetworkRequest.Builder.html#android.net.NetworkRequest.Builder.setNetworkSpecifier_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setNetworkSpecifier</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.setOrientation_added(int)" class="hiddenlink" target="rightframe"><b>setOrientation</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setOutlineProvider_added(android.view.ViewOutlineProvider)" class="hiddenlink" target="rightframe"><b>setOutlineProvider</b>
+(<code>ViewOutlineProvider</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.setPathMotion_added(android.transition.PathMotion)" class="hiddenlink" target="rightframe"><b>setPathMotion</b>
+(<code>PathMotion</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setPermittedAccessibilityServices_added(android.content.ComponentName, java.util.List<java.lang.String>)" class="hiddenlink" target="rightframe"><b>setPermittedAccessibilityServices</b>
+(<code>ComponentName, List&lt;String&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setPermittedInputMethods_added(android.content.ComponentName, java.util.List<java.lang.String>)" class="hiddenlink" target="rightframe"><b>setPermittedInputMethods</b>
+(<code>ComponentName, List&lt;String&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.Builder.html#android.app.job.JobInfo.Builder.setPersisted_added(boolean)" class="hiddenlink" target="rightframe"><b>setPersisted</b>
+(<code>boolean</code>)</A></nobr><br>
+<i>setPopupTheme</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.ActionMenuView.html#android.widget.ActionMenuView.setPopupTheme_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.widget.ActionMenuView
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.setPopupTheme_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.widget.Toolbar
+</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setProfileName_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>setProfileName</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressBackgroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setProgressBackgroundTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressBackgroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setProgressBackgroundTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setProgressTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setProgressTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setQueue_added(java.util.List<android.media.session.MediaSession.QueueItem>)" class="hiddenlink" target="rightframe"><b>setQueue</b>
+(<code>List&lt;QueueItem&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setQueueTitle_added(java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>setQueueTitle</b>
+(<code>CharSequence</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setRecommendedGlobalProxy_added(android.content.ComponentName, android.net.ProxyInfo)" class="hiddenlink" target="rightframe"><b>setRecommendedGlobalProxy</b>
+(<code>ComponentName, ProxyInfo</code>)</A></nobr><br>
+<i>setReenterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html#java.util.concurrent.ScheduledThreadPoolExecutor.setRemoveOnCancelPolicy_added(boolean)" class="hiddenlink" target="rightframe"><b>setRemoveOnCancelPolicy</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.ChangeTransform.html#android.transition.ChangeTransform.setReparent_added(boolean)" class="hiddenlink" target="rightframe"><b>setReparent</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.ChangeTransform.html#android.transition.ChangeTransform.setReparentWithOverlay_added(boolean)" class="hiddenlink" target="rightframe"><b>setReparentWithOverlay</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanSettings.Builder.html#android.bluetooth.le.ScanSettings.Builder.setReportDelay_added(long)" class="hiddenlink" target="rightframe"><b>setReportDelay</b>
+(<code>long</code>)</A></nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.Builder.html#android.app.job.JobInfo.Builder.setRequiredNetworkType_added(int)" class="hiddenlink" target="rightframe"><b>setRequiredNetworkType</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.setResponseHeaders_added(java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe"><b>setResponseHeaders</b>
+(<code>Map&lt;String, String&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setRestrictionsProvider_added(android.content.ComponentName, android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>setRestrictionsProvider</b>
+(<code>ComponentName, ComponentName</code>)</A></nobr><br>
+<i>setReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setScreenCaptureDisabled_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setScreenCaptureDisabled</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setSecondaryProgressTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setSecondaryProgressTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setSecondaryProgressTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setSecondaryProgressTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<i>setServiceData</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setServiceData_added(android.os.ParcelUuid, byte[])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ParcelUuid, byte[]</code>)</b>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter.Builder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setServiceData_added(android.os.ParcelUuid, byte[], byte[])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ParcelUuid, byte[], byte[]</code>)</b>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter.Builder
+</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setSessionActivity_added(android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>setSessionActivity</b>
+(<code>PendingIntent</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setSharedElementEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setSharedElementEnterTransition</b>
+(<code>Transition</code>)</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setSharedElementReenterTransition</b>
+(<code>Transition</code>)</A></nobr><br>
+<i>setSharedElementReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setSharedElementReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementsUseOverlay_added(boolean)" class="hiddenlink" target="rightframe"><b>setSharedElementsUseOverlay</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setShowSoftInputOnFocus_added(boolean)" class="hiddenlink" target="rightframe"><b>setShowSoftInputOnFocus</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.setShowText_added(boolean)" class="hiddenlink" target="rightframe"><b>setShowText</b>
+(<code>boolean</code>)</A></nobr><br>
+<i>setSound</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_added(android.net.Uri, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Uri, AudioAttributes</code>)</b>&nbsp;in&nbsp;android.app.Notification.Builder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_added(android.net.Uri, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Uri, int</code>)</b>&nbsp;in&nbsp;android.app.Notification.Builder
+</A></nobr><br>
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.setStatusCodeAndReasonPhrase_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>setStatusCodeAndReasonPhrase</b>
+(<code>int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.setSubtitleTextColor_added(int)" class="hiddenlink" target="rightframe"><b>setSubtitleTextColor</b>
+(<code>int</code>)</A></nobr><br>
+<i>setThumbnail</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.setThumbnail_added(android.graphics.Bitmap)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Bitmap</code>)</b>&nbsp;in&nbsp;android.hardware.camera2.DngCreator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.setThumbnail_added(android.media.Image)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Image</code>)</b>&nbsp;in&nbsp;android.hardware.camera2.DngCreator
+</A></nobr><br>
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.setThumbTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setThumbTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.setThumbTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setThumbTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.Builder.html#android.bluetooth.le.AdvertiseSettings.Builder.setTimeout_added(int)" class="hiddenlink" target="rightframe"><b>setTimeout</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.setTitleTextColor_added(int)" class="hiddenlink" target="rightframe"><b>setTitleTextColor</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.setTouchscreenBlocksFocus_added(boolean)" class="hiddenlink" target="rightframe"><b>setTouchscreenBlocksFocus</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.setTransitionBackgroundFadeDuration_added(long)" class="hiddenlink" target="rightframe"><b>setTransitionBackgroundFadeDuration</b>
+(<code>long</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setTransitionName_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setTransitionName</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setUninstallBlocked_added(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setUninstallBlocked</b>
+(<code>ComponentName, String, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.VideoView.html#android.widget.VideoView.setVideoURI_added(android.net.Uri, java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe"><b>setVideoURI</b>
+(<code>Uri, Map&lt;String, String&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.setVoice_added(android.speech.tts.Voice)" class="hiddenlink" target="rightframe"><b>setVoice</b>
+(<code>Voice</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.setVolumeTo_added(int, int)" class="hiddenlink" target="rightframe"><b>setVolumeTo</b>
+(<code>int, int</code>)</A></nobr><br>
+<i>shouldInterceptRequest</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, android.webkit.WebResourceRequest)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>WebView, WebResourceRequest</code>)</b>&nbsp;in&nbsp;android.webkit.WebViewClient
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>WebView, String</code>)</b>&nbsp;in&nbsp;android.webkit.WebViewClient
+</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.TransportControls.html#android.media.session.MediaController.TransportControls.skipToQueueItem_added(long)" class="hiddenlink" target="rightframe"><b>skipToQueueItem</b>
+(<code>long</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.speak_added(java.lang.CharSequence, int, android.os.Bundle, java.lang.String)" class="hiddenlink" target="rightframe"><b>speak</b>
+(<code>CharSequence, int, Bundle, String</code>)</A></nobr><br>
+<i>spec</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, android.widget.GridLayout.Alignment, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, Alignment, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, int, android.widget.GridLayout.Alignment, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, Alignment, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, int, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.AppTask.html#android.app.ActivityManager.AppTask.startActivity_added(android.content.Context, android.content.Intent, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>startActivity</b>
+(<code>Context, Intent, Bundle</code>)</A></nobr><br>
+<i>startAdvertising</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.BluetoothLeAdvertiser.html#android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising_added(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AdvertiseSettings, AdvertiseData, AdvertiseCallback</code>)</b>&nbsp;in&nbsp;android.bluetooth.le.BluetoothLeAdvertiser
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.BluetoothLeAdvertiser.html#android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising_added(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AdvertiseSettings, AdvertiseData, AdvertiseData, AdvertiseCallback</code>)</b>&nbsp;in&nbsp;android.bluetooth.le.BluetoothLeAdvertiser
+</A></nobr><br>
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.startAppDetailsActivity_added(android.content.ComponentName, android.os.UserHandle, android.graphics.Rect, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>startAppDetailsActivity</b>
+(<code>ComponentName, UserHandle, Rect, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetHost.html#android.appwidget.AppWidgetHost.startAppWidgetConfigureActivityForResult_added(android.app.Activity, int, int, int, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>startAppWidgetConfigureActivityForResult</b>
+(<code>Activity, int, int, int, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.startMainActivity_added(android.content.ComponentName, android.os.UserHandle, android.graphics.Rect, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>startMainActivity</b>
+(<code>ComponentName, UserHandle, Rect, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.BluetoothLeScanner.html#android.bluetooth.le.BluetoothLeScanner.startScan_added(android.bluetooth.le.ScanCallback)" class="hiddenlink" target="rightframe"><b>startScan</b>
+(<code>ScanCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.startWps_added(android.net.wifi.WpsInfo, android.net.wifi.WifiManager.WpsCallback)" class="hiddenlink" target="rightframe"><b>startWps</b>
+(<code>WpsInfo, WpsCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.supportsAidPrefixRegistration_added()" class="hiddenlink" target="rightframe"><b>supportsAidPrefixRegistration</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.switchUser_added(android.content.ComponentName, android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>switchUser</b>
+(<code>ComponentName, UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.synthesizeToFile_added(java.lang.CharSequence, android.os.Bundle, java.io.File, java.lang.String)" class="hiddenlink" target="rightframe"><b>synthesizeToFile</b>
+(<code>CharSequence, Bundle, File, String</code>)</A></nobr><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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="#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="java.util.Locale.html#java.util.Locale.toLanguageTag_added()" class="hiddenlink" target="rightframe"><b>toLanguageTag</b>
+()</A></nobr><br>
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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="#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.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.uninstallAllUserCaCerts_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>uninstallAllUserCaCerts</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.uninstallCaCert_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>uninstallCaCert</b>
+(<code>ComponentName, byte[]</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraManager.html#android.hardware.camera2.CameraManager.unregisterAvailabilityCallback_added(android.hardware.camera2.CameraManager.AvailabilityCallback)" class="hiddenlink" target="rightframe"><b>unregisterAvailabilityCallback</b>
+(<code>AvailabilityCallback</code>)</A></nobr><br>
+<i>unregisterCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.unregisterCallback_added(android.content.pm.LauncherApps.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback</code>)</b>&nbsp;in&nbsp;android.content.pm.LauncherApps
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.unregisterCallback_added(android.media.session.MediaController.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback</code>)</b>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.unregisterCallback_added(android.media.tv.TvInputManager.TvInputCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>TvInputCallback</code>)</b>&nbsp;in&nbsp;android.media.tv.TvInputManager
+</A></nobr><br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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="#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>vibrate</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_added(long, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long, AudioAttributes</code>)</b>&nbsp;in&nbsp;android.os.Vibrator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_added(long[], int, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long[], int, AudioAttributes</code>)</b>&nbsp;in&nbsp;android.os.Vibrator
+</A></nobr><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#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">
+<nobr><A HREF="android.service.dreams.DreamService.html#android.service.dreams.DreamService.wakeUp_added()" class="hiddenlink" target="rightframe"><b>wakeUp</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.writeByteBuffer_added(java.io.OutputStream, android.util.Size, java.nio.ByteBuffer, long)" class="hiddenlink" target="rightframe"><b>writeByteBuffer</b>
+(<code>OutputStream, Size, ByteBuffer, long</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.writeInputStream_added(java.io.OutputStream, android.util.Size, java.io.InputStream, long)" class="hiddenlink" target="rightframe"><b>writeInputStream</b>
+(<code>OutputStream, Size, InputStream, long</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.writeSize_added(android.util.Size)" class="hiddenlink" target="rightframe"><b>writeSize</b>
+(<code>Size</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.writeSizeF_added(android.util.SizeF)" class="hiddenlink" target="rightframe"><b>writeSizeF</b>
+(<code>SizeF</code>)</A></nobr><br>
+<A NAME="Z"></A>
+<br><font size="+2">Z</font>&nbsp;
+<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="#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.webkit.WebView.html#android.webkit.WebView.zoomBy_added(float)" class="hiddenlink" target="rightframe"><b>zoomBy</b>
+(<code>float</code>)</A></nobr><br>
+<script src="//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/preview-21/changes/methods_index_all.html b/docs/html/sdk/api_diff/preview-21/changes/methods_index_all.html
new file mode 100644
index 0000000..19c167c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/methods_index_all.html
@@ -0,0 +1,2440 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<A HREF="methods_index_removals.html" xclass="hiddenlink">Removals</A>
+  <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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#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.CookieManager.html#android.webkit.CookieManager.acceptThirdPartyCookies_added(android.webkit.WebView)" class="hiddenlink" target="rightframe"><b>acceptThirdPartyCookies</b>
+(<code>WebView</code>)</A></nobr><br>
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.addAllowedApplication_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>addAllowedApplication</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.addAppTask_added(android.app.Activity, android.content.Intent, android.app.ActivityManager.TaskDescription, android.graphics.Bitmap)" class="hiddenlink" target="rightframe"><b>addAppTask</b>
+(<code>Activity, Intent, TaskDescription, Bitmap</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addArc_added(float, float, float, float, float, float)" class="hiddenlink" target="rightframe"><b>addArc</b>
+(<code>float, float, float, float, float, float</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraManager.html#android.hardware.camera2.CameraManager.addAvailabilityListener_removed(android.hardware.camera2.CameraManager.AvailabilityListener, android.os.Handler)" class="hiddenlink" target="rightframe"><strike>addAvailabilityListener</strike>
+(<code>AvailabilityListener, Handler</code>)</A></nobr><br>
+<i>addCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.addCallback_removed(android.media.session.MediaController.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Callback</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.addCallback_removed(android.media.session.MediaController.Callback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Callback, Handler</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.addCallback_removed(android.media.session.MediaSession.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Callback</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.addCallback_removed(android.media.session.MediaSession.Callback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Callback, Handler</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.Builder.html#android.view.inputmethod.CursorAnchorInfo.Builder.addCharacterBounds_added(int, float, float, float, float, int)" class="hiddenlink" target="rightframe"><b>addCharacterBounds</b>
+(<code>int, float, float, float, float, int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.Builder.html#android.view.inputmethod.CursorAnchorInfo.Builder.addCharacterRect_removed(int, float, float, float, float)" class="hiddenlink" target="rightframe"><strike>addCharacterRect</strike>
+(<code>int, float, float, float, float</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addCrossProfileIntentFilter_added(android.content.ComponentName, android.content.IntentFilter, int)" class="hiddenlink" target="rightframe"><b>addCrossProfileIntentFilter</b>
+(<code>ComponentName, IntentFilter, int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>addCrossProfileWidgetProvider</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.addDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><b>addDefaultNetworkActiveListener</b>
+(<code>OnNetworkActiveListener</code>)</A></nobr><br>
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.addDisallowedApplication_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>addDisallowedApplication</b>
+(<code>String</code>)</A></nobr><br>
+<i>addEarcon</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_removed(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String, String</code>)</strike>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.io.File)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, File</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, String</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addForwardingIntentFilter_removed(android.content.ComponentName, android.content.IntentFilter, int)" class="hiddenlink" target="rightframe"><strike>addForwardingIntentFilter</strike>
+(<code>ComponentName, IntentFilter, int</code>)</A></nobr><br>
+<i>addOnActiveSessionsChangedListener</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSessionManager.html#android.media.session.MediaSessionManager.addOnActiveSessionsChangedListener_added(android.media.session.MediaSessionManager.OnActiveSessionsChangedListener, android.content.ComponentName)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>OnActiveSessionsChangedListener, ComponentName</code>)</b>&nbsp;in&nbsp;android.media.session.MediaSessionManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSessionManager.html#android.media.session.MediaSessionManager.addOnActiveSessionsChangedListener_added(android.media.session.MediaSessionManager.OnActiveSessionsChangedListener, android.content.ComponentName, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>OnActiveSessionsChangedListener, ComponentName, Handler</code>)</b>&nbsp;in&nbsp;android.media.session.MediaSessionManager
+</A></nobr><br>
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.addOnAppsChangedListener_removed(android.content.pm.LauncherApps.OnAppsChangedListener)" class="hiddenlink" target="rightframe"><strike>addOnAppsChangedListener</strike>
+(<code>OnAppsChangedListener</code>)</A></nobr><br>
+<i>addRoundRect</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addRoundRect_added(float, float, float, float, float, float, android.graphics.Path.Direction)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float, float, float, float, float, float, Direction</code>)</b>&nbsp;in&nbsp;android.graphics.Path
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addRoundRect_added(float, float, float, float, float[], android.graphics.Path.Direction)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float, float, float, float, float[], Direction</code>)</b>&nbsp;in&nbsp;android.graphics.Path
+</A></nobr><br>
+<nobr><A HREF="android.app.FragmentTransaction.html#android.app.FragmentTransaction.addSharedElement_added(android.view.View, java.lang.String)" class="hiddenlink" target="rightframe"><b>addSharedElement</b>
+(<code>View, String</code>)</A></nobr><br>
+<i>addSpeech</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.io.File)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, File</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, String, int</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.AnimatedStateListDrawable.html#android.graphics.drawable.AnimatedStateListDrawable.addTransition_changed(int, int, T, boolean)" class="hiddenlink" target="rightframe">addTransition
+(<code>int, int, T, boolean</code>)</A></nobr><br>
+<i>addTransportControlsCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.addTransportControlsCallback_removed(android.media.session.MediaSession.TransportControlsCallback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>TransportControlsCallback</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.addTransportControlsCallback_removed(android.media.session.MediaSession.TransportControlsCallback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>TransportControlsCallback, Handler</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.adjustVolume_added(int, int)" class="hiddenlink" target="rightframe"><b>adjustVolume</b>
+(<code>int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.allowBypass_added()" class="hiddenlink" target="rightframe"><b>allowBypass</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.allowFamily_added(int)" class="hiddenlink" target="rightframe"><b>allowFamily</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.text.SpannableStringBuilder.html#android.text.SpannableStringBuilder.append_added(java.lang.CharSequence, java.lang.Object, int)" class="hiddenlink" target="rightframe"><b>append</b>
+(<code>CharSequence, Object, int</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.arcTo_added(float, float, float, float, float, float, boolean)" class="hiddenlink" target="rightframe"><b>arcTo</b>
+(<code>float, float, float, float, float, float, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.areDefaultsEnforced_changed()" class="hiddenlink" target="rightframe">areDefaultsEnforced
+()</A></nobr><br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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="#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.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.bindAppWidgetIdIfAllowed_added(int, android.os.UserHandle, android.content.ComponentName, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>bindAppWidgetIdIfAllowed</b>
+(<code>int, UserHandle, ComponentName, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.net.Network.html#android.net.Network.bindSocket_added(java.net.Socket)" class="hiddenlink" target="rightframe"><b>bindSocket</b>
+(<code>Socket</code>)</A></nobr><br>
+<i>buildChannelsUriForInput</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildChannelsUriForInput_removed(android.content.ComponentName)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>ComponentName</code>)</strike>&nbsp;in&nbsp;android.media.tv.TvContract
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildChannelsUriForInput_removed(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>ComponentName, boolean</code>)</strike>&nbsp;in&nbsp;android.media.tv.TvContract
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildChannelsUriForInput_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.media.tv.TvContract
+</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildChannelUriForPassthroughInput_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>buildChannelUriForPassthroughInput</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildInputId_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>buildInputId</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<i>buildProgramsUriForChannel</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildProgramsUriForChannel_added(long)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long</code>)</b>&nbsp;in&nbsp;android.media.tv.TvContract
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildProgramsUriForChannel_added(long, long, long)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long, long, long</code>)</b>&nbsp;in&nbsp;android.media.tv.TvContract
+</A></nobr><br>
+<nobr><A HREF="android.app.Notification.MediaStyle.html#android.app.Notification.MediaStyle.buildStyled_removed(android.app.Notification)" class="hiddenlink" target="rightframe"><strike>buildStyled</strike>
+(<code>Notification</code>)</A></nobr><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<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="#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.net.wifi.WifiManager.html#android.net.wifi.WifiManager.cancelWps_added(android.net.wifi.WifiManager.WpsCallback)" class="hiddenlink" target="rightframe"><b>cancelWps</b>
+(<code>WpsCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.canVirtualize_added(int, int)" class="hiddenlink" target="rightframe"><b>canVirtualize</b>
+(<code>int, int</code>)</A></nobr><br>
+<i>capture</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CameraCaptureSession.html#android.hardware.camera2.CameraCaptureSession.capture_changed(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>CaptureRequest, CaptureCallback, Handler</code>)&nbsp;in&nbsp;android.hardware.camera2.CameraCaptureSession
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.capture_removed(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraDevice.CaptureListener, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>CaptureRequest, CaptureListener, Handler</code>)</strike>&nbsp;in&nbsp;android.hardware.camera2.CameraDevice
+</A></nobr><br>
+<i>captureBurst</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CameraCaptureSession.html#android.hardware.camera2.CameraCaptureSession.captureBurst_changed(java.util.List<android.hardware.camera2.CaptureRequest>, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>List&lt;CaptureRequest&gt;, CaptureCallback, Handler</code>)&nbsp;in&nbsp;android.hardware.camera2.CameraCaptureSession
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.captureBurst_removed(java.util.List<android.hardware.camera2.CaptureRequest>, android.hardware.camera2.CameraDevice.CaptureListener, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>List&lt;CaptureRequest&gt;, CaptureListener, Handler</code>)</strike>&nbsp;in&nbsp;android.hardware.camera2.CameraDevice
+</A></nobr><br>
+<nobr><A HREF="android.util.Range.html#android.util.Range.clamp_added(T)" class="hiddenlink" target="rightframe"><b>clamp</b>
+(<code>T</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearCrossProfileIntentFilters_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>clearCrossProfileIntentFilters</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearDeviceOwnerApp_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>clearDeviceOwnerApp</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearForwardingIntentFilters_removed(android.content.ComponentName)" class="hiddenlink" target="rightframe"><strike>clearForwardingIntentFilters</strike>
+(<code>ComponentName</code>)</A></nobr><br>
+<i>clipRegion</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.clipRegion_changed(android.graphics.Region)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Region</code>)&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.clipRegion_changed(android.graphics.Region, android.graphics.Region.Op)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Region, Op</code>)&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.computeSystemWindowInsets_added(android.view.WindowInsets, android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>computeSystemWindowInsets</b>
+(<code>WindowInsets, Rect</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.configureOutputs_removed(java.util.List<android.view.Surface>)" class="hiddenlink" target="rightframe"><strike>configureOutputs</strike>
+(<code>List&lt;Surface&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.consumeStableInsets_added()" class="hiddenlink" target="rightframe"><b>consumeStableInsets</b>
+()</A></nobr><br>
+<i>contains</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.contains_added(T)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.contains_added(android.util.Range<T>)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Range&lt;T&gt;</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+<i>create</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.create_added(android.content.Context, android.net.Uri, android.view.SurfaceHolder, android.media.AudioAttributes, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context, Uri, SurfaceHolder, AudioAttributes, int</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.create_added(android.content.Context, int, android.media.AudioAttributes, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context, int, AudioAttributes, int</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionService.html#android.service.voice.VoiceInteractionService.createAlwaysOnHotwordDetector_added(java.lang.String, java.util.Locale, android.service.voice.AlwaysOnHotwordDetector.Callback)" class="hiddenlink" target="rightframe"><b>createAlwaysOnHotwordDetector</b>
+(<code>String, Locale, Callback</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.createAndInitializeUser_added(android.content.ComponentName, java.lang.String, java.lang.String, android.content.ComponentName, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>createAndInitializeUser</b>
+(<code>ComponentName, String, String, ComponentName, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.createCaptureSession_changed(java.util.List<android.view.Surface>, android.hardware.camera2.CameraCaptureSession.StateCallback, android.os.Handler)" class="hiddenlink" target="rightframe">createCaptureSession
+(<code>List&lt;Surface&gt;, StateCallback, Handler</code>)</A></nobr><br>
+<nobr><A HREF="android.view.ViewAnimationUtils.html#android.view.ViewAnimationUtils.createCircularReveal_changed(android.view.View, int, int, float, float)" class="hiddenlink" target="rightframe">createCircularReveal
+(<code>View, int, int, float, float</code>)</A></nobr><br>
+<nobr><A HREF="android.app.KeyguardManager.html#android.app.KeyguardManager.createConfirmDeviceCredentialIntent_added(java.lang.CharSequence, java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>createConfirmDeviceCredentialIntent</b>
+(<code>CharSequence, CharSequence</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.createFromProfileLevel_added(java.lang.String, int, int)" class="hiddenlink" target="rightframe"><b>createFromProfileLevel</b>
+(<code>String, int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSessionManager.html#android.media.session.MediaSessionManager.createSession_removed(java.lang.String)" class="hiddenlink" target="rightframe"><strike>createSession</strike>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.createSettingsIntent_added()" class="hiddenlink" target="rightframe"><b>createSettingsIntent</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.createSetupIntent_added()" class="hiddenlink" target="rightframe"><b>createSetupIntent</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.display.DisplayManager.html#android.hardware.display.DisplayManager.createVirtualDisplay_added(java.lang.String, int, int, int, android.view.Surface, int, android.hardware.display.VirtualDisplay.Callback, android.os.Handler)" class="hiddenlink" target="rightframe"><b>createVirtualDisplay</b>
+(<code>String, int, int, int, Surface, int, Callback, Handler</code>)</A></nobr><br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>&nbsp;
+<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="#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.view.View.html#android.view.View.dispatchNestedPreFling_added(float, float)" class="hiddenlink" target="rightframe"><b>dispatchNestedPreFling</b>
+(<code>float, float</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.downloadMultimediaMessage_added(android.content.Context, java.lang.String, android.net.Uri, android.os.Bundle, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>downloadMultimediaMessage</b>
+(<code>Context, String, Uri, Bundle, PendingIntent</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.drawableHotspotChanged_added(float, float)" class="hiddenlink" target="rightframe"><b>drawableHotspotChanged</b>
+(<code>float, float</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawArc_added(float, float, float, float, float, float, boolean, android.graphics.Paint)" class="hiddenlink" target="rightframe"><b>drawArc</b>
+(<code>float, float, float, float, float, float, boolean, Paint</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawOval_added(float, float, float, float, android.graphics.Paint)" class="hiddenlink" target="rightframe"><b>drawOval</b>
+(<code>float, float, float, float, Paint</code>)</A></nobr><br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<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="#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.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.enableHardwareAcceleration_changed()" class="hiddenlink" target="rightframe">enableHardwareAcceleration
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.enableSlowWholeDocumentDraw_added()" class="hiddenlink" target="rightframe"><b>enableSlowWholeDocumentDraw</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.error_added(int)" class="hiddenlink" target="rightframe"><b>error</b>
+(<code>int</code>)</A></nobr><br>
+<i>extend</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.extend_added(T)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.extend_added(T, T)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, T</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.extend_added(android.util.Range<T>)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Range&lt;T&gt;</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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="#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.media.MediaCodecList.html#android.media.MediaCodecList.findDecoderForFormat_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>findDecoderForFormat</b>
+(<code>MediaFormat</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.findEncoderForFormat_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>findEncoderForFormat</b>
+(<code>MediaFormat</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.AbsListView.html#android.widget.AbsListView.fling_added(int)" class="hiddenlink" target="rightframe"><b>fling</b>
+(<code>int</code>)</A></nobr><br>
+<i>flush</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.flush_removed()" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+()</strike>&nbsp;in&nbsp;android.hardware.camera2.CameraDevice
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.flush_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.webkit.CookieManager
+</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.BluetoothLeScanner.html#android.bluetooth.le.BluetoothLeScanner.flushPendingScanResults_added(android.bluetooth.le.ScanCallback)" class="hiddenlink" target="rightframe"><b>flushPendingScanResults</b>
+(<code>ScanCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.forceVirtualizationMode_added(int)" class="hiddenlink" target="rightframe"><b>forceVirtualizationMode</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.forLanguageTag_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>forLanguageTag</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.fromToken_removed(android.media.session.MediaSessionToken)" class="hiddenlink" target="rightframe"><strike>fromToken</strike>
+(<code>MediaSessionToken</code>)</A></nobr><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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="#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.media.AudioManager.html#android.media.AudioManager.generateAudioSessionId_added()" class="hiddenlink" target="rightframe"><b>generateAudioSessionId</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getActiveNotifications_added(java.lang.String[])" class="hiddenlink" target="rightframe"><b>getActiveNotifications</b>
+(<code>String[]</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getActiveQueueItemId_added()" class="hiddenlink" target="rightframe"><b>getActiveQueueItemId</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSessionManager.html#android.media.session.MediaSessionManager.getActiveSessions_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getActiveSessions</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getAllNetworks_added()" class="hiddenlink" target="rightframe"><b>getAllNetworks</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getAllowEnterTransitionOverlap_added()" class="hiddenlink" target="rightframe"><b>getAllowEnterTransitionOverlap</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.getAllowExitTransitionOverlap_removed()" class="hiddenlink" target="rightframe"><strike>getAllowExitTransitionOverlap</strike>
+()</A></nobr><br>
+<i>getAllowReturnTransitionOverlap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getAllowReturnTransitionOverlap_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getAllowReturnTransitionOverlap_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.graphics.Outline.html#android.graphics.Outline.getAlpha_added()" class="hiddenlink" target="rightframe"><b>getAlpha</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getAppTaskThumbnailSize_added()" class="hiddenlink" target="rightframe"><b>getAppTaskThumbnailSize</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.Display.html#android.view.Display.getAppVsyncOffsetNanos_added()" class="hiddenlink" target="rightframe"><b>getAppVsyncOffsetNanos</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.getAudioAttributes_added()" class="hiddenlink" target="rightframe"><b>getAudioAttributes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getAudioCapabilities_added()" class="hiddenlink" target="rightframe"><b>getAudioCapabilities</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getAutoTimeRequired_added()" class="hiddenlink" target="rightframe"><b>getAutoTimeRequired</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.getAvailability_removed(java.lang.String)" class="hiddenlink" target="rightframe"><strike>getAvailability</strike>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getAvailableLanguages_added()" class="hiddenlink" target="rightframe"><b>getAvailableLanguages</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getBackgroundTintList_added()" class="hiddenlink" target="rightframe"><b>getBackgroundTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getBackgroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getBackgroundTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.getBadgedDrawableForUser_removed(android.graphics.drawable.Drawable, android.os.UserHandle)" class="hiddenlink" target="rightframe"><strike>getBadgedDrawableForUser</strike>
+(<code>Drawable, UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getBufferedPosition_added()" class="hiddenlink" target="rightframe"><b>getBufferedPosition</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getBufferPosition_removed()" class="hiddenlink" target="rightframe"><strike>getBufferPosition</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.getButtonTintList_added()" class="hiddenlink" target="rightframe"><b>getButtonTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.getButtonTintMode_added()" class="hiddenlink" target="rightframe"><b>getButtonTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getBytes_added()" class="hiddenlink" target="rightframe"><b>getBytes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.getCarrierConfigValues_added()" class="hiddenlink" target="rightframe"><b>getCarrierConfigValues</b>
+()</A></nobr><br>
+<nobr><A HREF="android.content.res.TypedArray.html#android.content.res.TypedArray.getChangingConfigurations_added()" class="hiddenlink" target="rightframe"><b>getChangingConfigurations</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getChannelMask_added()" class="hiddenlink" target="rightframe"><b>getChannelMask</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.getCharacterBounds_added(int)" class="hiddenlink" target="rightframe"><b>getCharacterBounds</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.getCharacterBoundsFlags_added(int)" class="hiddenlink" target="rightframe"><b>getCharacterBoundsFlags</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.getCharacterRect_removed(int)" class="hiddenlink" target="rightframe"><strike>getCharacterRect</strike>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.textservice.TextInfo.html#android.view.textservice.TextInfo.getCharSequence_added()" class="hiddenlink" target="rightframe"><b>getCharSequence</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getCharSequenceText_added()" class="hiddenlink" target="rightframe"><b>getCharSequenceText</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.getCheckMarkTintList_added()" class="hiddenlink" target="rightframe"><b>getCheckMarkTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.getCheckMarkTintMode_added()" class="hiddenlink" target="rightframe"><b>getCheckMarkTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.getClipToPadding_added()" class="hiddenlink" target="rightframe"><b>getClipToPadding</b>
+()</A></nobr><br>
+<i>getCodeCacheDir</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.Context.html#android.content.Context.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.Context
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.ContextWrapper
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockContext
+</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecCount_changed()" class="hiddenlink" target="rightframe">getCodecCount
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecInfoAt_changed(int)" class="hiddenlink" target="rightframe">getCodecInfoAt
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecInfos_added()" class="hiddenlink" target="rightframe"><b>getCodecInfos</b>
+()</A></nobr><br>
+<i>getColor</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.PorterDuffColorFilter.html#android.graphics.PorterDuffColorFilter.getColor_removed()" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+()</strike>&nbsp;in&nbsp;android.graphics.PorterDuffColorFilter
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.getColor_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.EdgeEffect
+</A></nobr><br>
+<nobr><A HREF="android.graphics.LightingColorFilter.html#android.graphics.LightingColorFilter.getColorAdd_removed()" class="hiddenlink" target="rightframe"><strike>getColorAdd</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.ColorMatrixColorFilter.html#android.graphics.ColorMatrixColorFilter.getColorMatrix_removed()" class="hiddenlink" target="rightframe"><strike>getColorMatrix</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.LightingColorFilter.html#android.graphics.LightingColorFilter.getColorMultiply_removed()" class="hiddenlink" target="rightframe"><strike>getColorMultiply</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.getComposingText_changed()" class="hiddenlink" target="rightframe">getComposingText
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.getController_added()" class="hiddenlink" target="rightframe"><b>getController</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.Image.html#android.media.Image.getCropRect_added()" class="hiddenlink" target="rightframe"><b>getCropRect</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getCrossProfileCallerIdDisabled_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getCrossProfileCallerIdDisabled</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getCrossProfileWidgetProviders_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getCrossProfileWidgetProviders</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getCurrentInterruptionFilter_added()" class="hiddenlink" target="rightframe"><b>getCurrentInterruptionFilter</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getCurrentListenerHints_added()" class="hiddenlink" target="rightframe"><b>getCurrentListenerHints</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getCustomActions_added()" class="hiddenlink" target="rightframe"><b>getCustomActions</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getDefaultFormat_added()" class="hiddenlink" target="rightframe"><b>getDefaultFormat</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getDefaultLanguage_changed()" class="hiddenlink" target="rightframe">getDefaultLanguage
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.SensorManager.html#android.hardware.SensorManager.getDefaultSensor_added(int, boolean)" class="hiddenlink" target="rightframe"><b>getDefaultSensor</b>
+(<code>int, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getDefaultVoice_added()" class="hiddenlink" target="rightframe"><b>getDefaultVoice</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.getDescription_added()" class="hiddenlink" target="rightframe"><b>getDescription</b>
+()</A></nobr><br>
+<i>getDeviceName</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.html#android.bluetooth.le.ScanFilter.getDeviceName_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getDeviceName_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.bluetooth.le.ScanRecord
+</A></nobr><br>
+<i>getDisplayScript</i><br>
+&nbsp;&nbsp;<nobr><A HREF="java.util.Locale.html#java.util.Locale.getDisplayScript_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;java.util.Locale
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="java.util.Locale.html#java.util.Locale.getDisplayScript_added(java.util.Locale)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Locale</code>)</b>&nbsp;in&nbsp;java.util.Locale
+</A></nobr><br>
+<i>getElevation</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getElevation_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.PopupWindow.html#android.widget.PopupWindow.getElevation_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.PopupWindow
+</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getEncoderCapabilities_added()" class="hiddenlink" target="rightframe"><b>getEncoderCapabilities</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getEncoding_added()" class="hiddenlink" target="rightframe"><b>getEncoding</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getEnterTransition_added()" class="hiddenlink" target="rightframe"><b>getEnterTransition</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getError_added()" class="hiddenlink" target="rightframe"><b>getError</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getExitTransition_added()" class="hiddenlink" target="rightframe"><b>getExitTransition</b>
+()</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getExtension_added(char)" class="hiddenlink" target="rightframe"><b>getExtension</b>
+(<code>char</code>)</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getExtensionKeys_added()" class="hiddenlink" target="rightframe"><b>getExtensionKeys</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getExtras_added()" class="hiddenlink" target="rightframe"><b>getExtras</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.getFeatureEnabled_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getFeatureEnabled</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getFeatures_changed(java.util.Locale)" class="hiddenlink" target="rightframe">getFeatures
+(<code>Locale</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.DatePicker.html#android.widget.DatePicker.getFirstDayOfWeek_added()" class="hiddenlink" target="rightframe"><b>getFirstDayOfWeek</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getFlags_added()" class="hiddenlink" target="rightframe"><b>getFlags</b>
+()</A></nobr><br>
+<i>getFontFeatureSettings</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.getFontFeatureSettings_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getFontFeatureSettings_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.getForegroundTintList_added()" class="hiddenlink" target="rightframe"><b>getForegroundTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.getForegroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getForegroundTintMode</b>
+()</A></nobr><br>
+<i>getFrameNumber</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CaptureFailure.html#android.hardware.camera2.CaptureFailure.getFrameNumber_changed()" class="hiddenlink" target="rightframe">type&nbsp;
+()&nbsp;in&nbsp;android.hardware.camera2.CaptureFailure
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CaptureResult.html#android.hardware.camera2.CaptureResult.getFrameNumber_changed()" class="hiddenlink" target="rightframe">type&nbsp;
+()&nbsp;in&nbsp;android.hardware.camera2.CaptureResult
+</A></nobr><br>
+<nobr><A HREF="android.service.notification.StatusBarNotification.html#android.service.notification.StatusBarNotification.getGroupKey_added()" class="hiddenlink" target="rightframe"><b>getGroupKey</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.params.StreamConfigurationMap.html#android.hardware.camera2.params.StreamConfigurationMap.getHighSpeedVideoFpsRanges_added()" class="hiddenlink" target="rightframe"><b>getHighSpeedVideoFpsRanges</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.params.StreamConfigurationMap.html#android.hardware.camera2.params.StreamConfigurationMap.getHighSpeedVideoFpsRangesFor_added(android.util.Size)" class="hiddenlink" target="rightframe"><b>getHighSpeedVideoFpsRangesFor</b>
+(<code>Size</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.params.StreamConfigurationMap.html#android.hardware.camera2.params.StreamConfigurationMap.getHighSpeedVideoSizes_added()" class="hiddenlink" target="rightframe"><b>getHighSpeedVideoSizes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.params.StreamConfigurationMap.html#android.hardware.camera2.params.StreamConfigurationMap.getHighSpeedVideoSizesFor_added(android.util.Range<java.lang.Integer>)" class="hiddenlink" target="rightframe"><b>getHighSpeedVideoSizesFor</b>
+(<code>Range&lt;Integer&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.getImageTintList_added()" class="hiddenlink" target="rightframe"><b>getImageTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.getImageTintMode_added()" class="hiddenlink" target="rightframe"><b>getImageTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getIndeterminateTintList_added()" class="hiddenlink" target="rightframe"><b>getIndeterminateTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getIndeterminateTintMode_added()" class="hiddenlink" target="rightframe"><b>getIndeterminateTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputBuffer_added(int)" class="hiddenlink" target="rightframe"><b>getInputBuffer</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputBuffers_changed()" class="hiddenlink" target="rightframe">getInputBuffers
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputFormat_added()" class="hiddenlink" target="rightframe"><b>getInputFormat</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputImage_added(int)" class="hiddenlink" target="rightframe"><b>getInputImage</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.getInputState_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getInputState</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.getInsertionMarkerFlags_added()" class="hiddenlink" target="rightframe"><b>getInsertionMarkerFlags</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getInstalledCaCerts_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getInstalledCaCerts</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.getInstalledProvidersForProfile_added(android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>getInstalledProvidersForProfile</b>
+(<code>UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.getIntentForSettingsActivity_removed()" class="hiddenlink" target="rightframe"><strike>getIntentForSettingsActivity</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.getIntentForSetupActivity_removed()" class="hiddenlink" target="rightframe"><strike>getIntentForSetupActivity</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.getIntValue_added()" class="hiddenlink" target="rightframe"><b>getIntValue</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getLanguage_changed()" class="hiddenlink" target="rightframe">getLanguage
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getLastPositionUpdateTime_added()" class="hiddenlink" target="rightframe"><b>getLastPositionUpdateTime</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.getLayoutInflater_removed()" class="hiddenlink" target="rightframe"><strike>getLayoutInflater</strike>
+()</A></nobr><br>
+<i>getLetterSpacing</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.getLetterSpacing_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getLetterSpacing_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<i>getLocalName</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.html#android.bluetooth.le.ScanFilter.getLocalName_removed()" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+()</strike>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getLocalName_removed()" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+()</strike>&nbsp;in&nbsp;android.bluetooth.le.ScanRecord
+</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getManufacturerId_removed()" class="hiddenlink" target="rightframe"><strike>getManufacturerId</strike>
+()</A></nobr><br>
+<i>getManufacturerSpecificData</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getManufacturerSpecificData_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.bluetooth.le.ScanRecord
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getManufacturerSpecificData_changed()" class="hiddenlink" target="rightframe">type&nbsp;
+()&nbsp;in&nbsp;android.bluetooth.le.ScanRecord
+</A></nobr><br>
+<nobr><A HREF="android.text.InputFilter.LengthFilter.html#android.text.InputFilter.LengthFilter.getMax_added()" class="hiddenlink" target="rightframe"><b>getMax</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.getMaxDelay_added()" class="hiddenlink" target="rightframe"><b>getMaxDelay</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanFilter.html#android.bluetooth.le.ScanFilter.getMaxRssi_removed()" class="hiddenlink" target="rightframe"><strike>getMaxRssi</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getMaxTextLength_added()" class="hiddenlink" target="rightframe"><b>getMaxTextLength</b>
+()</A></nobr><br>
+<i>getMediaController</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.getMediaController_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getMediaController_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getMimeType_added()" class="hiddenlink" target="rightframe"><b>getMimeType</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanFilter.html#android.bluetooth.le.ScanFilter.getMinRssi_removed()" class="hiddenlink" target="rightframe"><strike>getMinRssi</strike>
+()</A></nobr><br>
+<i>getMode</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.PorterDuffColorFilter.html#android.graphics.PorterDuffColorFilter.getMode_removed()" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+()</strike>&nbsp;in&nbsp;android.graphics.PorterDuffColorFilter
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.getMode_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.transition.Visibility
+</A></nobr><br>
+<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.getNavigationContentDescription_added()" class="hiddenlink" target="rightframe"><b>getNavigationContentDescription</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.getNetworkCapabilities_removed()" class="hiddenlink" target="rightframe"><strike>getNetworkCapabilities</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getNetworkInfo_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>getNetworkInfo</b>
+(<code>Network</code>)</A></nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.getNetworkType_added()" class="hiddenlink" target="rightframe"><b>getNetworkType</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.getNextAlarmClock_added()" class="hiddenlink" target="rightframe"><b>getNextAlarmClock</b>
+()</A></nobr><br>
+<i>getNoBackupFilesDir</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.Context.html#android.content.Context.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.Context
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.ContextWrapper
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockContext
+</A></nobr><br>
+<i>getOutline</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.getOutline_changed(android.graphics.Outline)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Outline</code>)&nbsp;in&nbsp;android.graphics.drawable.Drawable
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.shapes.Shape.html#android.graphics.drawable.shapes.Shape.getOutline_changed(android.graphics.Outline)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Outline</code>)&nbsp;in&nbsp;android.graphics.drawable.shapes.Shape
+</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getOutlineProvider_added()" class="hiddenlink" target="rightframe"><b>getOutlineProvider</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputBuffer_added(int)" class="hiddenlink" target="rightframe"><b>getOutputBuffer</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputBuffers_changed()" class="hiddenlink" target="rightframe">getOutputBuffers
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputFormat_added(int)" class="hiddenlink" target="rightframe"><b>getOutputFormat</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputImage_added(int)" class="hiddenlink" target="rightframe"><b>getOutputImage</b>
+(<code>int</code>)</A></nobr><br>
+<i>getPackageInstaller</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getPackageInstaller_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getPackageInstaller_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getPackageName_added()" class="hiddenlink" target="rightframe"><b>getPackageName</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.getParentId_added()" class="hiddenlink" target="rightframe"><b>getParentId</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getPathMotion_added()" class="hiddenlink" target="rightframe"><b>getPathMotion</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getPermittedAccessibilityServices_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getPermittedAccessibilityServices</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getPermittedInputMethods_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getPermittedInputMethods</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getPlaybackInfo_added()" class="hiddenlink" target="rightframe"><b>getPlaybackInfo</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getPlaybackRate_removed()" class="hiddenlink" target="rightframe"><strike>getPlaybackRate</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getPlaybackSpeed_added()" class="hiddenlink" target="rightframe"><b>getPlaybackSpeed</b>
+()</A></nobr><br>
+<i>getPopupTheme</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.ActionMenuView.html#android.widget.ActionMenuView.getPopupTheme_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.ActionMenuView
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.getPopupTheme_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.widget.Toolbar
+</A></nobr><br>
+<nobr><A HREF="android.view.Display.html#android.view.Display.getPresentationDeadlineNanos_added()" class="hiddenlink" target="rightframe"><b>getPresentationDeadlineNanos</b>
+()</A></nobr><br>
+<nobr><A HREF="android.accounts.AccountManager.html#android.accounts.AccountManager.getPreviousName_added(android.accounts.Account)" class="hiddenlink" target="rightframe"><b>getPreviousName</b>
+(<code>Account</code>)</A></nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.getProfile_added()" class="hiddenlink" target="rightframe"><b>getProfile</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressBackgroundTintList_added()" class="hiddenlink" target="rightframe"><b>getProgressBackgroundTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressBackgroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getProgressBackgroundTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressTintList_added()" class="hiddenlink" target="rightframe"><b>getProgressTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressTintMode_added()" class="hiddenlink" target="rightframe"><b>getProgressTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getQueue_added()" class="hiddenlink" target="rightframe"><b>getQueue</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getQueueTitle_added()" class="hiddenlink" target="rightframe"><b>getQueueTitle</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.RankingMap.html#android.service.notification.NotificationListenerService.RankingMap.getRanking_changed(java.lang.String, android.service.notification.NotificationListenerService.Ranking)" class="hiddenlink" target="rightframe">getRanking
+(<code>String, Ranking</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getReasonPhrase_added()" class="hiddenlink" target="rightframe"><b>getReasonPhrase</b>
+()</A></nobr><br>
+<i>getReenterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getReenterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getReenterTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html#java.util.concurrent.ScheduledThreadPoolExecutor.getRemoveOnCancelPolicy_added()" class="hiddenlink" target="rightframe"><b>getRemoveOnCancelPolicy</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.ChangeTransform.html#android.transition.ChangeTransform.getReparent_added()" class="hiddenlink" target="rightframe"><b>getReparent</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.ChangeTransform.html#android.transition.ChangeTransform.getReparentWithOverlay_added()" class="hiddenlink" target="rightframe"><b>getReparentWithOverlay</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanSettings.html#android.bluetooth.le.ScanSettings.getReportDelayMillis_added()" class="hiddenlink" target="rightframe"><b>getReportDelayMillis</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanSettings.html#android.bluetooth.le.ScanSettings.getReportDelayNanos_removed()" class="hiddenlink" target="rightframe"><strike>getReportDelayNanos</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.getReportingMode_added()" class="hiddenlink" target="rightframe"><b>getReportingMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.PermissionRequest.html#android.webkit.PermissionRequest.getResources_changed()" class="hiddenlink" target="rightframe">getResources
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getResponseHeaders_added()" class="hiddenlink" target="rightframe"><b>getResponseHeaders</b>
+()</A></nobr><br>
+<i>getReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getSampleRate_added()" class="hiddenlink" target="rightframe"><b>getSampleRate</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanResult.html#android.bluetooth.le.ScanResult.getScanRecord_changed()" class="hiddenlink" target="rightframe">getScanRecord
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getScreenCaptureDisabled_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getScreenCaptureDisabled</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getScript_added()" class="hiddenlink" target="rightframe"><b>getScript</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getSecondaryProgressTintList_added()" class="hiddenlink" target="rightframe"><b>getSecondaryProgressTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getSecondaryProgressTintMode_added()" class="hiddenlink" target="rightframe"><b>getSecondaryProgressTintMode</b>
+()</A></nobr><br>
+<i>getSelectedTrack</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.getSelectedTrack_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.getSelectedTrack_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.media.tv.TvView
+</A></nobr><br>
+<i>getServiceData</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getServiceData_removed()" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+()</strike>&nbsp;in&nbsp;android.bluetooth.le.ScanRecord
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getServiceData_added(android.os.ParcelUuid)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ParcelUuid</code>)</b>&nbsp;in&nbsp;android.bluetooth.le.ScanRecord
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getServiceData_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.bluetooth.le.ScanRecord
+</A></nobr><br>
+<i>getServiceDataUuid</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.html#android.bluetooth.le.ScanFilter.getServiceDataUuid_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getServiceDataUuid_removed()" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+()</strike>&nbsp;in&nbsp;android.bluetooth.le.ScanRecord
+</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getSessionActivity_added()" class="hiddenlink" target="rightframe"><b>getSessionActivity</b>
+()</A></nobr><br>
+<i>getSessionToken</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.getSessionToken_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.getSessionToken_changed()" class="hiddenlink" target="rightframe">type&nbsp;
+()&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getSharedElementEnterTransition_added()" class="hiddenlink" target="rightframe"><b>getSharedElementEnterTransition</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementReenterTransition_added()" class="hiddenlink" target="rightframe"><b>getSharedElementReenterTransition</b>
+()</A></nobr><br>
+<i>getSharedElementReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getSharedElementReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementReturnTransition_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementsUseOverlay_added()" class="hiddenlink" target="rightframe"><b>getSharedElementsUseOverlay</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getShowSoftInputOnFocus_added()" class="hiddenlink" target="rightframe"><b>getShowSoftInputOnFocus</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.getShowText_added()" class="hiddenlink" target="rightframe"><b>getShowText</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getSize_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getSize</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getSizeF_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getSizeF</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.Slide.html#android.transition.Slide.getSlideEdge_added()" class="hiddenlink" target="rightframe"><b>getSlideEdge</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.getSpeakerAngles_added(int, int, int[])" class="hiddenlink" target="rightframe"><b>getSpeakerAngles</b>
+(<code>int, int, int[]</code>)</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetBottom_added()" class="hiddenlink" target="rightframe"><b>getStableInsetBottom</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetLeft_added()" class="hiddenlink" target="rightframe"><b>getStableInsetLeft</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetRight_added()" class="hiddenlink" target="rightframe"><b>getStableInsetRight</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetTop_added()" class="hiddenlink" target="rightframe"><b>getStableInsetTop</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getStatusCode_added()" class="hiddenlink" target="rightframe"><b>getStatusCode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.getStreamType_changed()" class="hiddenlink" target="rightframe">getStreamType
+()</A></nobr><br>
+<nobr><A HREF="android.view.Display.html#android.view.Display.getSupportedRefreshRates_added()" class="hiddenlink" target="rightframe"><b>getSupportedRefreshRates</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getTargetNames_added()" class="hiddenlink" target="rightframe"><b>getTargetNames</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getTargetViewNames_removed()" class="hiddenlink" target="rightframe"><strike>getTargetViewNames</strike>
+()</A></nobr><br>
+<i>getText</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaMetadata.html#android.media.MediaMetadata.getText_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.media.MediaMetadata
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getText_changed()" class="hiddenlink" target="rightframe">type&nbsp;
+()&nbsp;in&nbsp;android.speech.tts.SynthesisRequest
+</A></nobr><br>
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getTextColor_removed(android.content.Context, android.content.res.TypedArray, int)" class="hiddenlink" target="rightframe"><strike>getTextColor</strike>
+(<code>Context, TypedArray, int</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getTextColors_removed(android.content.Context, android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>getTextColors</strike>
+(<code>Context, TypedArray</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.getThumbTintList_added()" class="hiddenlink" target="rightframe"><b>getThumbTintList</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.getThumbTintMode_added()" class="hiddenlink" target="rightframe"><b>getThumbTintMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html#android.bluetooth.le.AdvertiseSettings.getTimeout_added()" class="hiddenlink" target="rightframe"><b>getTimeout</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.getTouchscreenBlocksFocus_added()" class="hiddenlink" target="rightframe"><b>getTouchscreenBlocksFocus</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.getTracks_added(int)" class="hiddenlink" target="rightframe"><b>getTracks</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.getTransitionAt_added(int)" class="hiddenlink" target="rightframe"><b>getTransitionAt</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.getTransitionBackgroundFadeDuration_added()" class="hiddenlink" target="rightframe"><b>getTransitionBackgroundFadeDuration</b>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.getTransitionCount_added()" class="hiddenlink" target="rightframe"><b>getTransitionCount</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getTransitionName_added()" class="hiddenlink" target="rightframe"><b>getTransitionName</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.getTvInputInfo_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getTvInputInfo</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html#android.bluetooth.le.AdvertiseSettings.getType_removed()" class="hiddenlink" target="rightframe"><strike>getType</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.getTypeLabel_added(android.content.res.Resources, int, java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>getTypeLabel</b>
+(<code>Resources, int, CharSequence</code>)</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleAttributes_added()" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleAttributes</b>
+()</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleKeys_added()" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleKeys</b>
+()</A></nobr><br>
+<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleType_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleType</b>
+(<code>String</code>)</A></nobr><br>
+<i>getUserBadgedDrawableForDensity</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle, Rect, int</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle, Rect, int</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<i>getUserBadgedIcon</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Drawable, UserHandle</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<i>getUserBadgedLabel</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, UserHandle</code>)</b>&nbsp;in&nbsp;android.content.pm.PackageManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, UserHandle</code>)</b>&nbsp;in&nbsp;android.test.mock.MockPackageManager
+</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getVideoCapabilities_added()" class="hiddenlink" target="rightframe"><b>getVideoCapabilities</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvContract.Channels.html#android.media.tv.TvContract.Channels.getVideoResolution_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getVideoResolution</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getViewName_removed()" class="hiddenlink" target="rightframe"><strike>getViewName</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.getVirtualizationMode_added()" class="hiddenlink" target="rightframe"><b>getVirtualizationMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getVoice_added()" class="hiddenlink" target="rightframe"><b>getVoice</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.getVoiceInteractor_removed()" class="hiddenlink" target="rightframe"><strike>getVoiceInteractor</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getVoiceName_added()" class="hiddenlink" target="rightframe"><b>getVoiceName</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getVoices_added()" class="hiddenlink" target="rightframe"><b>getVoices</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.getWindow_removed()" class="hiddenlink" target="rightframe"><strike>getWindow</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.goToSleep_removed(long)" class="hiddenlink" target="rightframe"><strike>goToSleep</strike>
+(<code>long</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.PermissionRequest.html#android.webkit.PermissionRequest.grant_changed(java.lang.String[])" class="hiddenlink" target="rightframe">grant
+(<code>String[]</code>)</A></nobr><br>
+<A NAME="H"></A>
+<br><font size="+2">H</font>&nbsp;
+<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="#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.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.hasCaCertInstalled_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>hasCaCertInstalled</b>
+(<code>ComponentName, byte[]</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.hasFinished_added()" class="hiddenlink" target="rightframe"><b>hasFinished</b>
+()</A></nobr><br>
+<i>hasQueuedPredecessors</i><br>
+&nbsp;&nbsp;<nobr><A HREF="java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html#java.util.concurrent.locks.AbstractQueuedLongSynchronizer.hasQueuedPredecessors_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;java.util.concurrent.locks.AbstractQueuedLongSynchronizer
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="java.util.concurrent.locks.AbstractQueuedSynchronizer.html#java.util.concurrent.locks.AbstractQueuedSynchronizer.hasQueuedPredecessors_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;java.util.concurrent.locks.AbstractQueuedSynchronizer
+</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.hasStableInsets_added()" class="hiddenlink" target="rightframe"><b>hasStableInsets</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.hasStarted_added()" class="hiddenlink" target="rightframe"><b>hasStarted</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.hasUserRestriction_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>hasUserRestriction</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.hideWindow_removed()" class="hiddenlink" target="rightframe"><strike>hideWindow</strike>
+()</A></nobr><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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="#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.TelephonyManager.html#android.telephony.TelephonyManager.iccCloseLogicalChannel_added(int)" class="hiddenlink" target="rightframe"><b>iccCloseLogicalChannel</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccExchangeSimIO_added(int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccExchangeSimIO</b>
+(<code>int, int, int, int, int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccOpenLogicalChannel_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>iccOpenLogicalChannel</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccTransmitApduBasicChannel_added(int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccTransmitApduBasicChannel</b>
+(<code>int, int, int, int, int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccTransmitApduLogicalChannel_added(int, int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccTransmitApduLogicalChannel</b>
+(<code>int, int, int, int, int, int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.util.ArrayMap.html#android.util.ArrayMap.indexOfKey_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>indexOfKey</b>
+(<code>Object</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.initializeFadingEdge_removed(android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>initializeFadingEdge</strike>
+(<code>TypedArray</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.initializeScrollbars_removed(android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>initializeScrollbars</strike>
+(<code>TypedArray</code>)</A></nobr><br>
+<nobr><A HREF="android.util.Range.html#android.util.Range.inRange_removed(T)" class="hiddenlink" target="rightframe"><strike>inRange</strike>
+(<code>T</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.installCaCert_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>installCaCert</b>
+(<code>ComponentName, byte[]</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.installKeyPair_added(android.content.ComponentName, java.security.PrivateKey, java.security.cert.Certificate, java.lang.String)" class="hiddenlink" target="rightframe"><b>installKeyPair</b>
+(<code>ComponentName, PrivateKey, Certificate, String</code>)</A></nobr><br>
+<i>intersect</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.intersect_added(T, T)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>T, T</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.util.Range.html#android.util.Range.intersect_added(android.util.Range<T>)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Range&lt;T&gt;</code>)</b>&nbsp;in&nbsp;android.util.Range
+</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.invalidateOutline_added()" class="hiddenlink" target="rightframe"><b>invalidateOutline</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.is5GHzBandSupported_added()" class="hiddenlink" target="rightframe"><b>is5GHzBandSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityWindowInfo.html#android.view.accessibility.AccessibilityWindowInfo.isAccessibilityFocused_added()" class="hiddenlink" target="rightframe"><b>isAccessibilityFocused</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionService.html#android.service.voice.VoiceInteractionService.isActiveService_added(android.content.Context, android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>isActiveService</b>
+(<code>Context, ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.isActivityEnabled_added(android.content.ComponentName, android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>isActivityEnabled</b>
+(<code>ComponentName, UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.isActivityEnabledForProfile_removed(android.content.ComponentName, android.os.UserHandle)" class="hiddenlink" target="rightframe"><strike>isActivityEnabledForProfile</strike>
+(<code>ComponentName, UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isApplicationBlocked_removed(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><strike>isApplicationBlocked</strike>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isApplicationHidden_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>isApplicationHidden</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.isButtonPressed_added(int)" class="hiddenlink" target="rightframe"><b>isButtonPressed</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html#android.bluetooth.le.AdvertiseSettings.isConnectable_added()" class="hiddenlink" target="rightframe"><b>isConnectable</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.isConsumed_added()" class="hiddenlink" target="rightframe"><b>isConsumed</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isDeviceToApRttSupported_added()" class="hiddenlink" target="rightframe"><b>isDeviceToApRttSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isEnhancedPowerReportingSupported_added()" class="hiddenlink" target="rightframe"><b>isEnhancedPowerReportingSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.isEnterpriseContactId_added(long)" class="hiddenlink" target="rightframe"><b>isEnterpriseContactId</b>
+(<code>long</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.isFeatureRequired_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>isFeatureRequired</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.isFormatSupported_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>isFormatSupported</b>
+(<code>MediaFormat</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.isInLockTaskMode_added()" class="hiddenlink" target="rightframe"><b>isInLockTaskMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.Ranking.html#android.service.notification.NotificationListenerService.Ranking.isInterceptedByDoNotDisturb_removed()" class="hiddenlink" target="rightframe"><strike>isInterceptedByDoNotDisturb</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isLockTaskPermitted_changed(java.lang.String)" class="hiddenlink" target="rightframe">isLockTaskPermitted
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isMasterVolumeMuted_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>isMasterVolumeMuted</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isMultipleAdvertisementSupported_added()" class="hiddenlink" target="rightframe"><b>isMultipleAdvertisementSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isOffloadedFilteringSupported_added()" class="hiddenlink" target="rightframe"><b>isOffloadedFilteringSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isOffloadedScanBatchingSupported_added()" class="hiddenlink" target="rightframe"><b>isOffloadedScanBatchingSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.job.JobParameters.html#android.app.job.JobParameters.isOverrideDeadlineExpired_added()" class="hiddenlink" target="rightframe"><b>isOverrideDeadlineExpired</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isP2pSupported_added()" class="hiddenlink" target="rightframe"><b>isP2pSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.isPackageEnabled_added(java.lang.String, android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>isPackageEnabled</b>
+(<code>String, UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.isPackageEnabledForProfile_removed(java.lang.String, android.os.UserHandle)" class="hiddenlink" target="rightframe"><strike>isPackageEnabledForProfile</strike>
+(<code>String, UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.isParentalControlsEnabled_added()" class="hiddenlink" target="rightframe"><b>isParentalControlsEnabled</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.isPassthroughInput_added()" class="hiddenlink" target="rightframe"><b>isPassthroughInput</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.isPersisted_added()" class="hiddenlink" target="rightframe"><b>isPersisted</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isPreferredNetworkOffloadSupported_added()" class="hiddenlink" target="rightframe"><b>isPreferredNetworkOffloadSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.isRatingBlocked_added(android.media.tv.TvContentRating)" class="hiddenlink" target="rightframe"><b>isRatingBlocked</b>
+(<code>TvContentRating</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.isSmsCapable_added()" class="hiddenlink" target="rightframe"><b>isSmsCapable</b>
+()</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isTdlsSupported_added()" class="hiddenlink" target="rightframe"><b>isTdlsSupported</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isUninstallBlocked_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>isUninstallBlocked</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.isVoiceInteraction_removed()" class="hiddenlink" target="rightframe"><strike>isVoiceInteraction</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.isVolumeFixed_added()" class="hiddenlink" target="rightframe"><b>isVolumeFixed</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.isWakeLockLevelSupported_added(int)" class="hiddenlink" target="rightframe"><b>isWakeLockLevelSupported</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.isWakeUpSensor_added()" class="hiddenlink" target="rightframe"><b>isWakeUpSensor</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.inputmethod.InputMethodManager.html#android.view.inputmethod.InputMethodManager.isWatchingCursor_changed(android.view.View)" class="hiddenlink" target="rightframe">isWatchingCursor
+(<code>View</code>)</A></nobr><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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="#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>loadIcon</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadIcon_added(android.content.Context, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context, int</code>)</b>&nbsp;in&nbsp;android.appwidget.AppWidgetProviderInfo
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.loadIcon_added(android.content.Context)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Context</code>)</b>&nbsp;in&nbsp;android.media.tv.TvInputInfo
+</A></nobr><br>
+<i>loadLabel</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadLabel_added(android.content.pm.PackageManager)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>PackageManager</code>)</b>&nbsp;in&nbsp;android.appwidget.AppWidgetProviderInfo
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.loadLabel_changed(android.content.Context)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Context</code>)&nbsp;in&nbsp;android.media.tv.TvInputInfo
+</A></nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadPreviewImage_added(android.content.Context, int)" class="hiddenlink" target="rightframe"><b>loadPreviewImage</b>
+(<code>Context, int</code>)</A></nobr><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>&nbsp;
+<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="#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.app.ActivityOptions.html#android.app.ActivityOptions.makeTaskLaunchBehind_added()" class="hiddenlink" target="rightframe"><b>makeTaskLaunchBehind</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.Ranking.html#android.service.notification.NotificationListenerService.Ranking.matchesInterruptionFilter_added()" class="hiddenlink" target="rightframe"><b>matchesInterruptionFilter</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.AppTask.html#android.app.ActivityManager.AppTask.moveToFront_added()" class="hiddenlink" target="rightframe"><b>moveToFront</b>
+()</A></nobr><br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>&nbsp;
+<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="#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.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyChannelRetuned_added(android.net.Uri)" class="hiddenlink" target="rightframe"><b>notifyChannelRetuned</b>
+(<code>Uri</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyContentAllowed_added()" class="hiddenlink" target="rightframe"><b>notifyContentAllowed</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyContentBlocked_added(android.media.tv.TvContentRating)" class="hiddenlink" target="rightframe"><b>notifyContentBlocked</b>
+(<code>TvContentRating</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyTracksChanged_added(java.util.List<android.media.tv.TvTrackInfo>)" class="hiddenlink" target="rightframe"><b>notifyTracksChanged</b>
+(<code>List&lt;TvTrackInfo&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyTrackSelected_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>notifyTrackSelected</b>
+(<code>int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyVideoAvailable_added()" class="hiddenlink" target="rightframe"><b>notifyVideoAvailable</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.notifyVideoUnavailable_added(int)" class="hiddenlink" target="rightframe"><b>notifyVideoUnavailable</b>
+(<code>int</code>)</A></nobr><br>
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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="#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.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onAbortVoice_removed(android.service.voice.VoiceInteractionSession.Caller, android.service.voice.VoiceInteractionSession.Request, java.lang.CharSequence, android.os.Bundle)" class="hiddenlink" target="rightframe"><strike>onAbortVoice</strike>
+(<code>Caller, Request, CharSequence, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onActivityReenter_changed(int, android.content.Intent)" class="hiddenlink" target="rightframe">onActivityReenter
+(<code>int, Intent</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.onAdvertisementUpdate_removed(android.bluetooth.le.ScanResult)" class="hiddenlink" target="rightframe"><strike>onAdvertisementUpdate</strike>
+(<code>ScanResult</code>)</A></nobr><br>
+<nobr><A HREF="android.service.wallpaper.WallpaperService.Engine.html#android.service.wallpaper.WallpaperService.Engine.onApplyWindowInsets_added(android.view.WindowInsets)" class="hiddenlink" target="rightframe"><b>onApplyWindowInsets</b>
+(<code>WindowInsets</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.Callback.html#android.media.session.MediaController.Callback.onAudioInfoChanged_added(android.media.session.MediaController.PlaybackInfo)" class="hiddenlink" target="rightframe"><b>onAudioInfoChanged</b>
+(<code>PlaybackInfo</code>)</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onBackPressed_removed()" class="hiddenlink" target="rightframe"><strike>onBackPressed</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.onBatchScanResults_added(java.util.List<android.bluetooth.le.ScanResult>)" class="hiddenlink" target="rightframe"><b>onBatchScanResults</b>
+(<code>List&lt;ScanResult&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onCancel_removed(android.service.voice.VoiceInteractionSession.Request)" class="hiddenlink" target="rightframe"><strike>onCancel</strike>
+(<code>Request</code>)</A></nobr><br>
+<i>onCommand</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onCommand_added(java.lang.String, android.os.Bundle, android.os.ResultReceiver)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, Bundle, ResultReceiver</code>)</b>&nbsp;in&nbsp;android.media.session.MediaSession.Callback
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onCommand_removed(android.service.voice.VoiceInteractionSession.Caller, android.service.voice.VoiceInteractionSession.Request, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Caller, Request, String, Bundle</code>)</strike>&nbsp;in&nbsp;android.service.voice.VoiceInteractionSession
+</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onComputeInsets_removed(android.service.voice.VoiceInteractionSession.Insets)" class="hiddenlink" target="rightframe"><strike>onComputeInsets</strike>
+(<code>Insets</code>)</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onConfirm_removed(android.service.voice.VoiceInteractionSession.Caller, android.service.voice.VoiceInteractionSession.Request, java.lang.CharSequence, android.os.Bundle)" class="hiddenlink" target="rightframe"><strike>onConfirm</strike>
+(<code>Caller, Request, CharSequence, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onControlCommand_removed(java.lang.String, android.os.Bundle, android.os.ResultReceiver)" class="hiddenlink" target="rightframe"><strike>onControlCommand</strike>
+(<code>String, Bundle, ResultReceiver</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onCreate_changed(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe">onCreate
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onCreateContentView_removed()" class="hiddenlink" target="rightframe"><strike>onCreateContentView</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputService.html#android.media.tv.TvInputService.onCreateSession_changed(java.lang.String)" class="hiddenlink" target="rightframe">onCreateSession
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onCustomAction_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>onCustomAction</b>
+(<code>String, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onEnterAnimationComplete_added()" class="hiddenlink" target="rightframe"><b>onEnterAnimationComplete</b>
+()</A></nobr><br>
+<i>onError</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_removed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>String</code>)</strike>&nbsp;in&nbsp;android.speech.tts.UtteranceProgressListener
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_added(java.lang.String, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, int</code>)</b>&nbsp;in&nbsp;android.speech.tts.UtteranceProgressListener
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.speech.tts.UtteranceProgressListener
+</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.Callback.html#android.media.session.MediaController.Callback.onExtrasChanged_added(android.os.Bundle)" class="hiddenlink" target="rightframe"><b>onExtrasChanged</b>
+(<code>Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.onFailure_removed(int)" class="hiddenlink" target="rightframe"><strike>onFailure</strike>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onFastForward_added()" class="hiddenlink" target="rightframe"><b>onFastForward</b>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onGetDefaultVoiceNameFor_added(java.lang.String, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>onGetDefaultVoiceNameFor</b>
+(<code>String, String, String</code>)</A></nobr><br>
+<nobr><A HREF="android.location.SettingInjectorService.html#android.location.SettingInjectorService.onGetSummary_changed()" class="hiddenlink" target="rightframe">onGetSummary
+()</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onGetSupportedCommands_removed(android.service.voice.VoiceInteractionSession.Caller, java.lang.String[])" class="hiddenlink" target="rightframe"><strike>onGetSupportedCommands</strike>
+(<code>Caller, String[]</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onGetVoices_added()" class="hiddenlink" target="rightframe"><b>onGetVoices</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onInterruptionFilterChanged_added(int)" class="hiddenlink" target="rightframe"><b>onInterruptionFilterChanged</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onIsValidVoiceName_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>onIsValidVoiceName</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onListenerHintsChanged_added(int)" class="hiddenlink" target="rightframe"><b>onListenerHintsChanged</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onLoadVoice_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>onLoadVoice</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.onLockTaskModeEntering_added(android.content.Context, android.content.Intent, java.lang.String)" class="hiddenlink" target="rightframe"><b>onLockTaskModeEntering</b>
+(<code>Context, Intent, String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.onLockTaskModeExiting_added(android.content.Context, android.content.Intent)" class="hiddenlink" target="rightframe"><b>onLockTaskModeExiting</b>
+(<code>Context, Intent</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onMediaButtonEvent_changed(android.content.Intent)" class="hiddenlink" target="rightframe">onMediaButtonEvent
+(<code>Intent</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGattCallback.html#android.bluetooth.BluetoothGattCallback.onMtuChanged_added(android.bluetooth.BluetoothGatt, int, int)" class="hiddenlink" target="rightframe"><b>onMtuChanged</b>
+(<code>BluetoothGatt, int, int</code>)</A></nobr><br>
+<i>onNestedPreFling</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedPreFling_added(android.view.View, float, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, float, float</code>)</b>&nbsp;in&nbsp;android.view.ViewGroup
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedPreFling_added(android.view.View, float, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>View, float, float</code>)</b>&nbsp;in&nbsp;android.view.ViewParent
+</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGattServerCallback.html#android.bluetooth.BluetoothGattServerCallback.onNotificationSent_added(android.bluetooth.BluetoothDevice, int)" class="hiddenlink" target="rightframe"><b>onNotificationSent</b>
+(<code>BluetoothDevice, int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onPause_added()" class="hiddenlink" target="rightframe"><b>onPause</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onPlay_added()" class="hiddenlink" target="rightframe"><b>onPlay</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onPlayFromMediaId_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>onPlayFromMediaId</b>
+(<code>String, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onPlayFromSearch_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>onPlayFromSearch</b>
+(<code>String, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onPostCreate_changed(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe">onPostCreate
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.Callback.html#android.media.session.MediaController.Callback.onQueueChanged_added(java.util.List<android.media.session.MediaSession.QueueItem>)" class="hiddenlink" target="rightframe"><b>onQueueChanged</b>
+(<code>List&lt;QueueItem&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.Callback.html#android.media.session.MediaController.Callback.onQueueTitleChanged_added(java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>onQueueTitleChanged</b>
+(<code>CharSequence</code>)</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionService.html#android.service.voice.VoiceInteractionService.onReady_added()" class="hiddenlink" target="rightframe"><b>onReady</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.backup.BackupAgent.html#android.app.backup.BackupAgent.onRestoreFinished_added()" class="hiddenlink" target="rightframe"><b>onRestoreFinished</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onRestoreInstanceState_changed(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe">onRestoreInstanceState
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onRewind_added()" class="hiddenlink" target="rightframe"><b>onRewind</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onSaveInstanceState_changed(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe">onSaveInstanceState
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.onScanFailed_changed(int)" class="hiddenlink" target="rightframe">onScanFailed
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.onScanResult_added(int, android.bluetooth.le.ScanResult)" class="hiddenlink" target="rightframe"><b>onScanResult</b>
+(<code>int, ScanResult</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onSeekTo_added(long)" class="hiddenlink" target="rightframe"><b>onSeekTo</b>
+(<code>long</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.onSelectTrack_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>onSelectTrack</b>
+(<code>int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.Callback.html#android.media.session.MediaController.Callback.onSessionDestroyed_added()" class="hiddenlink" target="rightframe"><b>onSessionDestroyed</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.onSetCaptionEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>onSetCaptionEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onSetRating_added(android.media.Rating)" class="hiddenlink" target="rightframe"><b>onSetRating</b>
+(<code>Rating</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onShowFileChooser_added(android.webkit.WebView, android.webkit.ValueCallback<android.net.Uri[]>, android.webkit.WebChromeClient.FileChooserParams)" class="hiddenlink" target="rightframe"><b>onShowFileChooser</b>
+(<code>WebView, ValueCallback&lt;Uri[]&gt;, FileChooserParams</code>)</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionService.html#android.service.voice.VoiceInteractionService.onShutdown_added()" class="hiddenlink" target="rightframe"><b>onShutdown</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onSkipToNext_added()" class="hiddenlink" target="rightframe"><b>onSkipToNext</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onSkipToPrevious_added()" class="hiddenlink" target="rightframe"><b>onSkipToPrevious</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onSkipToQueueItem_added(long)" class="hiddenlink" target="rightframe"><b>onSkipToQueueItem</b>
+(<code>long</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.onStartFailure_added(int)" class="hiddenlink" target="rightframe"><b>onStartFailure</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.onStartSuccess_added(android.bluetooth.le.AdvertiseSettings)" class="hiddenlink" target="rightframe"><b>onStartSuccess</b>
+(<code>AdvertiseSettings</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onStop_added()" class="hiddenlink" target="rightframe"><b>onStop</b>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.onSuccess_removed(android.bluetooth.le.AdvertiseSettings)" class="hiddenlink" target="rightframe"><strike>onSuccess</strike>
+(<code>AdvertiseSettings</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.onSurfaceChanged_added(int, int, int)" class="hiddenlink" target="rightframe"><b>onSurfaceChanged</b>
+(<code>int, int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onTaskFinished_removed(android.content.Intent, int)" class="hiddenlink" target="rightframe"><strike>onTaskFinished</strike>
+(<code>Intent, int</code>)</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onTaskStarted_removed(android.content.Intent, int)" class="hiddenlink" target="rightframe"><strike>onTaskStarted</strike>
+(<code>Intent, int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputService.Session.html#android.media.tv.TvInputService.Session.onUnblockContent_added(android.media.tv.TvContentRating)" class="hiddenlink" target="rightframe"><b>onUnblockContent</b>
+(<code>TvContentRating</code>)</A></nobr><br>
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.onUpdateCursor_changed(android.graphics.Rect)" class="hiddenlink" target="rightframe">onUpdateCursor
+(<code>Rect</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onVisibleBehindCanceled_added()" class="hiddenlink" target="rightframe"><b>onVisibleBehindCanceled</b>
+()</A></nobr><br>
+<nobr><A HREF="android.service.dreams.DreamService.html#android.service.dreams.DreamService.onWakeUp_added()" class="hiddenlink" target="rightframe"><b>onWakeUp</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraManager.html#android.hardware.camera2.CameraManager.openCamera_changed(java.lang.String, android.hardware.camera2.CameraDevice.StateCallback, android.os.Handler)" class="hiddenlink" target="rightframe">openCamera
+(<code>String, StateCallback, Handler</code>)</A></nobr><br>
+<nobr><A HREF="android.net.Network.html#android.net.Network.openConnection_added(java.net.URL)" class="hiddenlink" target="rightframe"><b>openConnection</b>
+(<code>URL</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaDrm.html#android.media.MediaDrm.openSession_changed()" class="hiddenlink" target="rightframe">openSession
+()</A></nobr><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#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.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.parseFromBytes_removed(byte[])" class="hiddenlink" target="rightframe"><strike>parseFromBytes</strike>
+(<code>byte[]</code>)</A></nobr><br>
+<nobr><A HREF="android.util.Rational.html#android.util.Rational.parseRational_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>parseRational</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.util.Size.html#android.util.Size.parseSize_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>parseSize</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.util.SizeF.html#android.util.SizeF.parseSizeF_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>parseSizeF</b>
+(<code>String</code>)</A></nobr><br>
+<i>playEarcon</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playEarcon_added(java.lang.String, int, android.os.Bundle, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, int, Bundle, String</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playEarcon_changed(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>String, int, HashMap&lt;String, String&gt;</code>)&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.TransportControls.html#android.media.session.MediaController.TransportControls.playFromMediaId_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>playFromMediaId</b>
+(<code>String, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.TransportControls.html#android.media.session.MediaController.TransportControls.playFromSearch_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>playFromSearch</b>
+(<code>String, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playSilence_changed(long, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">playSilence
+(<code>long, int, HashMap&lt;String, String&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playSilentUtterance_added(long, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>playSilentUtterance</b>
+(<code>long, int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.preauthorizePermission_removed(android.net.Uri, long)" class="hiddenlink" target="rightframe"><strike>preauthorizePermission</strike>
+(<code>Uri, long</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putSize_added(java.lang.String, android.util.Size)" class="hiddenlink" target="rightframe"><b>putSize</b>
+(<code>String, Size</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putSizeF_added(java.lang.String, android.util.SizeF)" class="hiddenlink" target="rightframe"><b>putSizeF</b>
+(<code>String, SizeF</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaMetadata.Builder.html#android.media.MediaMetadata.Builder.putText_added(java.lang.String, java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>putText</b>
+(<code>String, CharSequence</code>)</A></nobr><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#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.os.Parcel.html#android.os.Parcel.readSize_added()" class="hiddenlink" target="rightframe"><b>readSize</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readSizeF_added()" class="hiddenlink" target="rightframe"><b>readSizeF</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraManager.html#android.hardware.camera2.CameraManager.registerAvailabilityCallback_added(android.hardware.camera2.CameraManager.AvailabilityCallback, android.os.Handler)" class="hiddenlink" target="rightframe"><b>registerAvailabilityCallback</b>
+(<code>AvailabilityCallback, Handler</code>)</A></nobr><br>
+<i>registerCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.registerCallback_added(android.content.pm.LauncherApps.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback</code>)</b>&nbsp;in&nbsp;android.content.pm.LauncherApps
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.registerCallback_added(android.content.pm.LauncherApps.Callback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback, Handler</code>)</b>&nbsp;in&nbsp;android.content.pm.LauncherApps
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.registerCallback_added(android.media.session.MediaController.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback</code>)</b>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.registerCallback_added(android.media.session.MediaController.Callback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback, Handler</code>)</b>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.registerCallback_added(android.media.tv.TvInputManager.TvInputCallback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>TvInputCallback, Handler</code>)</b>&nbsp;in&nbsp;android.media.tv.TvInputManager
+</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.registerDefaultNetworkActiveListener_removed(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><strike>registerDefaultNetworkActiveListener</strike>
+(<code>OnNetworkActiveListener</code>)</A></nobr><br>
+<i>registerMediaButtonEventReceiver</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.app.PendingIntent)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>PendingIntent</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.content.ComponentName)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>ComponentName</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerRemoteControlClient_changed(android.media.RemoteControlClient)" class="hiddenlink" target="rightframe">registerRemoteControlClient
+(<code>RemoteControlClient</code>)</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerRemoteController_changed(android.media.RemoteController)" class="hiddenlink" target="rightframe">registerRemoteController
+(<code>RemoteController</code>)</A></nobr><br>
+<nobr><A HREF="android.os.PowerManager.WakeLock.html#android.os.PowerManager.WakeLock.release_added(int)" class="hiddenlink" target="rightframe"><b>release</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.releaseInstance_added()" class="hiddenlink" target="rightframe"><b>releaseInstance</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeAllCookie_changed()" class="hiddenlink" target="rightframe">removeAllCookie
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeAllCookies_added(android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>removeAllCookies</b>
+(<code>ValueCallback&lt;Boolean&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraManager.html#android.hardware.camera2.CameraManager.removeAvailabilityListener_removed(android.hardware.camera2.CameraManager.AvailabilityListener)" class="hiddenlink" target="rightframe"><strike>removeAvailabilityListener</strike>
+(<code>AvailabilityListener</code>)</A></nobr><br>
+<i>removeCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.removeCallback_removed(android.media.session.MediaController.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Callback</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.removeCallback_removed(android.media.session.MediaSession.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Callback</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.removeCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>removeCrossProfileWidgetProvider</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.removeDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><b>removeDefaultNetworkActiveListener</b>
+(<code>OnNetworkActiveListener</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeExpiredCookie_changed()" class="hiddenlink" target="rightframe">removeExpiredCookie
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSessionManager.html#android.media.session.MediaSessionManager.removeOnActiveSessionsChangedListener_added(android.media.session.MediaSessionManager.OnActiveSessionsChangedListener)" class="hiddenlink" target="rightframe"><b>removeOnActiveSessionsChangedListener</b>
+(<code>OnActiveSessionsChangedListener</code>)</A></nobr><br>
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.removeOnAppsChangedListener_removed(android.content.pm.LauncherApps.OnAppsChangedListener)" class="hiddenlink" target="rightframe"><strike>removeOnAppsChangedListener</strike>
+(<code>OnAppsChangedListener</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeSessionCookie_changed()" class="hiddenlink" target="rightframe">removeSessionCookie
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeSessionCookies_added(android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>removeSessionCookies</b>
+(<code>ValueCallback&lt;Boolean&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.removeStickyBroadcast_changed(android.content.Intent)" class="hiddenlink" target="rightframe">removeStickyBroadcast
+(<code>Intent</code>)</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.removeStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)" class="hiddenlink" target="rightframe">removeStickyBroadcastAsUser
+(<code>Intent, UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.removeTransportControlsCallback_removed(android.media.session.MediaSession.TransportControlsCallback)" class="hiddenlink" target="rightframe"><strike>removeTransportControlsCallback</strike>
+(<code>TransportControlsCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.accounts.AccountManager.html#android.accounts.AccountManager.renameAccount_added(android.accounts.Account, java.lang.String, android.accounts.AccountManagerCallback<android.accounts.Account>, android.os.Handler)" class="hiddenlink" target="rightframe"><b>renameAccount</b>
+(<code>Account, String, AccountManagerCallback&lt;Account&gt;, Handler</code>)</A></nobr><br>
+<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.replaceSystemWindowInsets_added(android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>replaceSystemWindowInsets</b>
+(<code>Rect</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.requestConnectionPriority_added(int)" class="hiddenlink" target="rightframe"><b>requestConnectionPriority</b>
+(<code>int</code>)</A></nobr><br>
+<i>requestCursorUpdates</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.BaseInputConnection.html#android.view.inputmethod.BaseInputConnection.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.BaseInputConnection
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.InputConnection
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.inputmethod.InputConnectionWrapper.html#android.view.inputmethod.InputConnectionWrapper.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.view.inputmethod.InputConnectionWrapper
+</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.requestInterruptionFilter_added(int)" class="hiddenlink" target="rightframe"><b>requestInterruptionFilter</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.requestListenerHints_added(int)" class="hiddenlink" target="rightframe"><b>requestListenerHints</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.requestMtu_added(int)" class="hiddenlink" target="rightframe"><b>requestMtu</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.requestUnbufferedDispatch_added(android.view.MotionEvent)" class="hiddenlink" target="rightframe"><b>requestUnbufferedDispatch</b>
+(<code>MotionEvent</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.requestVisibleBehind_added(boolean)" class="hiddenlink" target="rightframe"><b>requestVisibleBehind</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.reset_added()" class="hiddenlink" target="rightframe"><b>reset</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.display.VirtualDisplay.html#android.hardware.display.VirtualDisplay.resize_added(int, int, int)" class="hiddenlink" target="rightframe"><b>resize</b>
+(<code>int, int, int</code>)</A></nobr><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#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.media.tv.TvView.html#android.media.tv.TvView.selectTrack_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>selectTrack</b>
+(<code>int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.sendCommand_added(java.lang.String, android.os.Bundle, android.os.ResultReceiver)" class="hiddenlink" target="rightframe"><b>sendCommand</b>
+(<code>String, Bundle, ResultReceiver</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.sendControlCommand_removed(java.lang.String, android.os.Bundle, android.os.ResultReceiver)" class="hiddenlink" target="rightframe"><strike>sendControlCommand</strike>
+(<code>String, Bundle, ResultReceiver</code>)</A></nobr><br>
+<i>sendCustomAction</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.TransportControls.html#android.media.session.MediaController.TransportControls.sendCustomAction_added(android.media.session.PlaybackState.CustomAction, android.os.Bundle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CustomAction, Bundle</code>)</b>&nbsp;in&nbsp;android.media.session.MediaController.TransportControls
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.TransportControls.html#android.media.session.MediaController.TransportControls.sendCustomAction_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String, Bundle</code>)</b>&nbsp;in&nbsp;android.media.session.MediaController.TransportControls
+</A></nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.sendEnvelopeWithStatus_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>sendEnvelopeWithStatus</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.sendMultimediaMessage_added(android.content.Context, android.net.Uri, java.lang.String, android.os.Bundle, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>sendMultimediaMessage</b>
+(<code>Context, Uri, String, Bundle, PendingIntent</code>)</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyBroadcast_changed(android.content.Intent)" class="hiddenlink" target="rightframe">sendStickyBroadcast
+(<code>Intent</code>)</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)" class="hiddenlink" target="rightframe">sendStickyBroadcastAsUser
+(<code>Intent, UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyOrderedBroadcast_changed(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">sendStickyOrderedBroadcast
+(<code>Intent, BroadcastReceiver, Handler, int, String, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyOrderedBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">sendStickyOrderedBroadcastAsUser
+(<code>Intent, UserHandle, BroadcastReceiver, Handler, int, String, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.setAcceptThirdPartyCookies_added(android.webkit.WebView, boolean)" class="hiddenlink" target="rightframe"><b>setAcceptThirdPartyCookies</b>
+(<code>WebView, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.setActions_removed(long)" class="hiddenlink" target="rightframe"><strike>setActions</strike>
+(<code>long</code>)</A></nobr><br>
+<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.setAlarmClock_added(android.app.AlarmManager.AlarmClockInfo, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>setAlarmClock</b>
+(<code>AlarmClockInfo, PendingIntent</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setAllowEnterTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe"><b>setAllowEnterTransitionOverlap</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.setAllowExitTransitionOverlap_removed(boolean)" class="hiddenlink" target="rightframe"><strike>setAllowExitTransitionOverlap</strike>
+(<code>boolean</code>)</A></nobr><br>
+<i>setAllowReturnTransitionOverlap</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setAllowReturnTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setAllowReturnTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.graphics.Outline.html#android.graphics.Outline.setAlpha_added(float)" class="hiddenlink" target="rightframe"><b>setAlpha</b>
+(<code>float</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setApplicationBlocked_removed(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><strike>setApplicationBlocked</strike>
+(<code>ComponentName, String, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setApplicationHidden_added(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setApplicationHidden</b>
+(<code>ComponentName, String, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setApplicationsBlocked_removed(android.content.ComponentName, android.content.Intent, boolean)" class="hiddenlink" target="rightframe"><strike>setApplicationsBlocked</strike>
+(<code>ComponentName, Intent, boolean</code>)</A></nobr><br>
+<i>setAudioAttributes</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AudioAttributes</code>)</b>&nbsp;in&nbsp;android.media.MediaPlayer
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AudioAttributes</code>)</b>&nbsp;in&nbsp;android.media.Ringtone
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AudioAttributes</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setAutoTimeRequired_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setAutoTimeRequired</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setBackgroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setBackgroundTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setBackgroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setBackgroundTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.setBlocking_added(boolean)" class="hiddenlink" target="rightframe"><b>setBlocking</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.setBufferPosition_removed(long)" class="hiddenlink" target="rightframe"><strike>setBufferPosition</strike>
+(<code>long</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.setButtonTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setButtonTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.setButtonTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setButtonTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<i>setCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.setCallback_added(android.media.MediaCodec.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback</code>)</b>&nbsp;in&nbsp;android.media.MediaCodec
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setCallback_added(android.media.session.MediaSession.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback</code>)</b>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setCallback_added(android.media.session.MediaSession.Callback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback, Handler</code>)</b>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.setCallback_added(android.media.tv.TvView.TvInputCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>TvInputCallback</code>)</b>&nbsp;in&nbsp;android.media.tv.TvView
+</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanSettings.Builder.html#android.bluetooth.le.ScanSettings.Builder.setCallbackType_removed(int)" class="hiddenlink" target="rightframe"><strike>setCallbackType</strike>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaRecorder.html#android.media.MediaRecorder.setCamera_changed(android.hardware.Camera)" class="hiddenlink" target="rightframe">setCamera
+(<code>Camera</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.setCaptionEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setCaptionEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.setCheckMarkTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setCheckMarkTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.setCheckMarkTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setCheckMarkTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<i>setColor</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.PorterDuffColorFilter.html#android.graphics.PorterDuffColorFilter.setColor_removed(int)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>int</code>)</strike>&nbsp;in&nbsp;android.graphics.PorterDuffColorFilter
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.setColor_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.widget.EdgeEffect
+</A></nobr><br>
+<nobr><A HREF="android.graphics.LightingColorFilter.html#android.graphics.LightingColorFilter.setColorAdd_removed(int)" class="hiddenlink" target="rightframe"><strike>setColorAdd</strike>
+(<code>int</code>)</A></nobr><br>
+<i>setColorMatrix</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.ColorMatrixColorFilter.html#android.graphics.ColorMatrixColorFilter.setColorMatrix_removed(android.graphics.ColorMatrix)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>ColorMatrix</code>)</strike>&nbsp;in&nbsp;android.graphics.ColorMatrixColorFilter
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.ColorMatrixColorFilter.html#android.graphics.ColorMatrixColorFilter.setColorMatrix_removed(float[])" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>float[]</code>)</strike>&nbsp;in&nbsp;android.graphics.ColorMatrixColorFilter
+</A></nobr><br>
+<nobr><A HREF="android.graphics.LightingColorFilter.html#android.graphics.LightingColorFilter.setColorMultiply_removed(int)" class="hiddenlink" target="rightframe"><strike>setColorMultiply</strike>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.Builder.html#android.bluetooth.le.AdvertiseSettings.Builder.setConnectable_added(boolean)" class="hiddenlink" target="rightframe"><b>setConnectable</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.setCookie_added(java.lang.String, java.lang.String, android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>setCookie</b>
+(<code>String, String, ValueCallback&lt;Boolean&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.media.Image.html#android.media.Image.setCropRect_added(android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>setCropRect</b>
+(<code>Rect</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setCrossProfileCallerIdDisabled_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setCrossProfileCallerIdDisabled</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.setCursorAnchorMonitorMode_removed(int)" class="hiddenlink" target="rightframe"><strike>setCursorAnchorMonitorMode</strike>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.setDescription_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setDescription</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setDeviceAddress_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setDeviceAddress</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setDeviceName_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setDeviceName</b>
+(<code>String</code>)</A></nobr><br>
+<i>setElevation</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setElevation_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.app.ActionBar
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.PopupWindow.html#android.widget.PopupWindow.setElevation_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.widget.PopupWindow
+</A></nobr><br>
+<i>setEnterSharedElementCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setEnterSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setEnterSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.setEnterSharedElementListener_removed(android.app.SharedElementListener)" class="hiddenlink" target="rightframe"><strike>setEnterSharedElementListener</strike>
+(<code>SharedElementListener</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setEnterTransition</b>
+(<code>Transition</code>)</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.setError_added(java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>setError</b>
+(<code>CharSequence</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.setErrorMessage_removed(java.lang.CharSequence)" class="hiddenlink" target="rightframe"><strike>setErrorMessage</strike>
+(<code>CharSequence</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.AppTask.html#android.app.ActivityManager.AppTask.setExcludeFromRecents_added(boolean)" class="hiddenlink" target="rightframe"><b>setExcludeFromRecents</b>
+(<code>boolean</code>)</A></nobr><br>
+<i>setExitSharedElementCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setExitSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setExitSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>SharedElementCallback</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.setExitSharedElementListener_removed(android.app.SharedElementListener)" class="hiddenlink" target="rightframe"><strike>setExitSharedElementListener</strike>
+(<code>SharedElementListener</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setExitTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setExitTransition</b>
+(<code>Transition</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setExtras_added(android.os.Bundle)" class="hiddenlink" target="rightframe"><b>setExtras</b>
+(<code>Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.setFeatureEnabled_added(java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setFeatureEnabled</b>
+(<code>String, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.DatePicker.html#android.widget.DatePicker.setFirstDayOfWeek_added(int)" class="hiddenlink" target="rightframe"><b>setFirstDayOfWeek</b>
+(<code>int</code>)</A></nobr><br>
+<i>setFontFeatureSettings</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setFontFeatureSettings_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setFontFeatureSettings_added(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>String</code>)</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.setForegroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setForegroundTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.setForegroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setForegroundTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.setImageTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setImageTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.setImageTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setImageTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setIndeterminateTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setIndeterminateTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setIndeterminateTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setIndeterminateTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.Builder.html#android.view.inputmethod.CursorAnchorInfo.Builder.setInsertionMarkerLocation_changed(float, float, float, float, int)" class="hiddenlink" target="rightframe">setInsertionMarkerLocation
+(<code>float, float, float, float, int</code>)</A></nobr><br>
+<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.setIntValue_added(int)" class="hiddenlink" target="rightframe"><b>setIntValue</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setLaunchPendingIntent_removed(android.app.PendingIntent)" class="hiddenlink" target="rightframe"><strike>setLaunchPendingIntent</strike>
+(<code>PendingIntent</code>)</A></nobr><br>
+<i>setLetterSpacing</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setLetterSpacing_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.graphics.Paint
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setLetterSpacing_added(float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>float</code>)</b>&nbsp;in&nbsp;android.widget.TextView
+</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.setLocation_added(android.location.Location)" class="hiddenlink" target="rightframe"><b>setLocation</b>
+(<code>Location</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setLockTaskComponents_removed(android.content.ComponentName[])" class="hiddenlink" target="rightframe"><strike>setLockTaskComponents</strike>
+(<code>ComponentName[]</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setLockTaskPackages_added(android.content.ComponentName, java.lang.String[])" class="hiddenlink" target="rightframe"><b>setLockTaskPackages</b>
+(<code>ComponentName, String[]</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setMacAddress_removed(java.lang.String)" class="hiddenlink" target="rightframe"><strike>setMacAddress</strike>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setMasterVolumeMuted_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setMasterVolumeMuted</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.setMaxTextLength_added(int)" class="hiddenlink" target="rightframe"><b>setMaxTextLength</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setMediaButtonReceiver_added(android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>setMediaButtonReceiver</b>
+(<code>PendingIntent</code>)</A></nobr><br>
+<i>setMediaController</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Activity.html#android.app.Activity.setMediaController_added(android.media.session.MediaController)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>MediaController</code>)</b>&nbsp;in&nbsp;android.app.Activity
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setMediaController_added(android.media.session.MediaController)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>MediaController</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.app.Notification.MediaStyle.html#android.app.Notification.MediaStyle.setMediaSession_changed(android.media.session.MediaSession.Token)" class="hiddenlink" target="rightframe">setMediaSession
+(<code>Token</code>)</A></nobr><br>
+<i>setMode</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.PorterDuffColorFilter.html#android.graphics.PorterDuffColorFilter.setMode_removed(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Mode</code>)</strike>&nbsp;in&nbsp;android.graphics.PorterDuffColorFilter
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.setMode_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.transition.Visibility
+</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setName_removed(java.lang.String)" class="hiddenlink" target="rightframe"><strike>setName</strike>
+(<code>String</code>)</A></nobr><br>
+<i>setNavigationDescription</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.setNavigationDescription_removed(int)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>int</code>)</strike>&nbsp;in&nbsp;android.widget.Toolbar
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.setNavigationDescription_removed(java.lang.CharSequence)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>CharSequence</code>)</strike>&nbsp;in&nbsp;android.widget.Toolbar
+</A></nobr><br>
+<nobr><A HREF="android.net.NetworkRequest.Builder.html#android.net.NetworkRequest.Builder.setNetworkSpecifier_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setNetworkSpecifier</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.setOrientation_added(int)" class="hiddenlink" target="rightframe"><b>setOrientation</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setOutline_removed(android.graphics.Outline)" class="hiddenlink" target="rightframe"><strike>setOutline</strike>
+(<code>Outline</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setOutlineProvider_added(android.view.ViewOutlineProvider)" class="hiddenlink" target="rightframe"><b>setOutlineProvider</b>
+(<code>ViewOutlineProvider</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.setPathMotion_added(android.transition.PathMotion)" class="hiddenlink" target="rightframe"><b>setPathMotion</b>
+(<code>PathMotion</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setPermittedAccessibilityServices_added(android.content.ComponentName, java.util.List<java.lang.String>)" class="hiddenlink" target="rightframe"><b>setPermittedAccessibilityServices</b>
+(<code>ComponentName, List&lt;String&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setPermittedInputMethods_added(android.content.ComponentName, java.util.List<java.lang.String>)" class="hiddenlink" target="rightframe"><b>setPermittedInputMethods</b>
+(<code>ComponentName, List&lt;String&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.Builder.html#android.app.job.JobInfo.Builder.setPersisted_added(boolean)" class="hiddenlink" target="rightframe"><b>setPersisted</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setPlaybackToLocal_changed(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">setPlaybackToLocal
+(<code>AudioAttributes</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setPlaybackToRemote_changed(android.media.VolumeProvider)" class="hiddenlink" target="rightframe">setPlaybackToRemote
+(<code>VolumeProvider</code>)</A></nobr><br>
+<i>setPopupTheme</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.ActionMenuView.html#android.widget.ActionMenuView.setPopupTheme_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.widget.ActionMenuView
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.setPopupTheme_added(int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int</code>)</b>&nbsp;in&nbsp;android.widget.Toolbar
+</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setProfileName_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>setProfileName</b>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressBackgroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setProgressBackgroundTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressBackgroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setProgressBackgroundTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setProgressTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setProgressTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setQueue_added(java.util.List<android.media.session.MediaSession.QueueItem>)" class="hiddenlink" target="rightframe"><b>setQueue</b>
+(<code>List&lt;QueueItem&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setQueueTitle_added(java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>setQueueTitle</b>
+(<code>CharSequence</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setRecommendedGlobalProxy_added(android.content.ComponentName, android.net.ProxyInfo)" class="hiddenlink" target="rightframe"><b>setRecommendedGlobalProxy</b>
+(<code>ComponentName, ProxyInfo</code>)</A></nobr><br>
+<i>setReenterTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html#java.util.concurrent.ScheduledThreadPoolExecutor.setRemoveOnCancelPolicy_added(boolean)" class="hiddenlink" target="rightframe"><b>setRemoveOnCancelPolicy</b>
+(<code>boolean</code>)</A></nobr><br>
+<i>setReparent</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.transition.ChangeBounds.html#android.transition.ChangeBounds.setReparent_changed(boolean)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>boolean</code>)&nbsp;in&nbsp;android.transition.ChangeBounds
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.transition.ChangeTransform.html#android.transition.ChangeTransform.setReparent_added(boolean)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>boolean</code>)</b>&nbsp;in&nbsp;android.transition.ChangeTransform
+</A></nobr><br>
+<nobr><A HREF="android.transition.ChangeTransform.html#android.transition.ChangeTransform.setReparentWithOverlay_added(boolean)" class="hiddenlink" target="rightframe"><b>setReparentWithOverlay</b>
+(<code>boolean</code>)</A></nobr><br>
+<i>setRepeatingBurst</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CameraCaptureSession.html#android.hardware.camera2.CameraCaptureSession.setRepeatingBurst_changed(java.util.List<android.hardware.camera2.CaptureRequest>, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>List&lt;CaptureRequest&gt;, CaptureCallback, Handler</code>)&nbsp;in&nbsp;android.hardware.camera2.CameraCaptureSession
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.setRepeatingBurst_removed(java.util.List<android.hardware.camera2.CaptureRequest>, android.hardware.camera2.CameraDevice.CaptureListener, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>List&lt;CaptureRequest&gt;, CaptureListener, Handler</code>)</strike>&nbsp;in&nbsp;android.hardware.camera2.CameraDevice
+</A></nobr><br>
+<i>setRepeatingRequest</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CameraCaptureSession.html#android.hardware.camera2.CameraCaptureSession.setRepeatingRequest_changed(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>CaptureRequest, CaptureCallback, Handler</code>)&nbsp;in&nbsp;android.hardware.camera2.CameraCaptureSession
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.setRepeatingRequest_removed(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraDevice.CaptureListener, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>CaptureRequest, CaptureListener, Handler</code>)</strike>&nbsp;in&nbsp;android.hardware.camera2.CameraDevice
+</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanSettings.Builder.html#android.bluetooth.le.ScanSettings.Builder.setReportDelay_added(long)" class="hiddenlink" target="rightframe"><b>setReportDelay</b>
+(<code>long</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanSettings.Builder.html#android.bluetooth.le.ScanSettings.Builder.setReportDelayNanos_removed(long)" class="hiddenlink" target="rightframe"><strike>setReportDelayNanos</strike>
+(<code>long</code>)</A></nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.Builder.html#android.app.job.JobInfo.Builder.setRequiredNetworkCapabilities_removed(int)" class="hiddenlink" target="rightframe"><strike>setRequiredNetworkCapabilities</strike>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.Builder.html#android.app.job.JobInfo.Builder.setRequiredNetworkType_added(int)" class="hiddenlink" target="rightframe"><b>setRequiredNetworkType</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.setResponseHeaders_added(java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe"><b>setResponseHeaders</b>
+(<code>Map&lt;String, String&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setRestrictionsProvider_added(android.content.ComponentName, android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>setRestrictionsProvider</b>
+(<code>ComponentName, ComponentName</code>)</A></nobr><br>
+<i>setReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setRssiRange_removed(int, int)" class="hiddenlink" target="rightframe"><strike>setRssiRange</strike>
+(<code>int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setScreenCaptureDisabled_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setScreenCaptureDisabled</b>
+(<code>ComponentName, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setSecondaryProgressTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setSecondaryProgressTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setSecondaryProgressTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setSecondaryProgressTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<i>setServiceData</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setServiceData_removed(byte[])" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>byte[]</code>)</strike>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter.Builder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setServiceData_removed(byte[], byte[])" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>byte[], byte[]</code>)</strike>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter.Builder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setServiceData_added(android.os.ParcelUuid, byte[])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ParcelUuid, byte[]</code>)</b>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter.Builder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setServiceData_added(android.os.ParcelUuid, byte[], byte[])" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>ParcelUuid, byte[], byte[]</code>)</b>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter.Builder
+</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setSessionActivity_added(android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>setSessionActivity</b>
+(<code>PendingIntent</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setSharedElementEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setSharedElementEnterTransition</b>
+(<code>Transition</code>)</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setSharedElementReenterTransition</b>
+(<code>Transition</code>)</A></nobr><br>
+<i>setSharedElementReturnTransition</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setSharedElementReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.app.Fragment
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Transition</code>)</b>&nbsp;in&nbsp;android.view.Window
+</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementsUseOverlay_added(boolean)" class="hiddenlink" target="rightframe"><b>setSharedElementsUseOverlay</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setShowSoftInputOnFocus_added(boolean)" class="hiddenlink" target="rightframe"><b>setShowSoftInputOnFocus</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.setShowText_added(boolean)" class="hiddenlink" target="rightframe"><b>setShowText</b>
+(<code>boolean</code>)</A></nobr><br>
+<i>setSound</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_removed(android.net.Uri, int)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Uri, int</code>)</strike>&nbsp;in&nbsp;android.app.Notification.Builder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_added(android.net.Uri, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Uri, AudioAttributes</code>)</b>&nbsp;in&nbsp;android.app.Notification.Builder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_added(android.net.Uri, int)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Uri, int</code>)</b>&nbsp;in&nbsp;android.app.Notification.Builder
+</A></nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.setState_removed(int, long, float)" class="hiddenlink" target="rightframe"><strike>setState</strike>
+(<code>int, long, float</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.setStatusCodeAndReasonPhrase_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>setStatusCodeAndReasonPhrase</b>
+(<code>int, String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.setStreamType_changed(int)" class="hiddenlink" target="rightframe">setStreamType
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.setSubtitleTextColor_added(int)" class="hiddenlink" target="rightframe"><b>setSubtitleTextColor</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.setTheme_removed(int)" class="hiddenlink" target="rightframe"><strike>setTheme</strike>
+(<code>int</code>)</A></nobr><br>
+<i>setThumbnail</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.setThumbnail_added(android.graphics.Bitmap)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Bitmap</code>)</b>&nbsp;in&nbsp;android.hardware.camera2.DngCreator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.setThumbnail_added(android.media.Image)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Image</code>)</b>&nbsp;in&nbsp;android.hardware.camera2.DngCreator
+</A></nobr><br>
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.setThumbTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setThumbTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.setThumbTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setThumbTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setTicker_changed(java.lang.CharSequence, android.widget.RemoteViews)" class="hiddenlink" target="rightframe">setTicker
+(<code>CharSequence, RemoteViews</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.Builder.html#android.bluetooth.le.AdvertiseSettings.Builder.setTimeout_added(int)" class="hiddenlink" target="rightframe"><b>setTimeout</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTint_changed(int)" class="hiddenlink" target="rightframe">setTint
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setTintList</b>
+(<code>ColorStateList</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setTintMode</b>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.setTitleTextColor_added(int)" class="hiddenlink" target="rightframe"><b>setTitleTextColor</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.setTouchscreenBlocksFocus_added(boolean)" class="hiddenlink" target="rightframe"><b>setTouchscreenBlocksFocus</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.setTransitionBackgroundFadeDuration_added(long)" class="hiddenlink" target="rightframe"><b>setTransitionBackgroundFadeDuration</b>
+(<code>long</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setTransitionName_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setTransitionName</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.setTvInputListener_removed(android.media.tv.TvView.TvInputListener)" class="hiddenlink" target="rightframe"><strike>setTvInputListener</strike>
+(<code>TvInputListener</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.Builder.html#android.bluetooth.le.AdvertiseSettings.Builder.setType_removed(int)" class="hiddenlink" target="rightframe"><strike>setType</strike>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setUninstallBlocked_added(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setUninstallBlocked</b>
+(<code>ComponentName, String, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestriction_changed(java.lang.String, boolean)" class="hiddenlink" target="rightframe">setUserRestriction
+(<code>String, boolean</code>)</A></nobr><br>
+<i>setUserRestrictions</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestrictions_changed(android.os.Bundle)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Bundle</code>)&nbsp;in&nbsp;android.os.UserManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestrictions_changed(android.os.Bundle, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Bundle, UserHandle</code>)&nbsp;in&nbsp;android.os.UserManager
+</A></nobr><br>
+<nobr><A HREF="android.widget.VideoView.html#android.widget.VideoView.setVideoURI_added(android.net.Uri, java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe"><b>setVideoURI</b>
+(<code>Uri, Map&lt;String, String&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setViewName_removed(java.lang.String)" class="hiddenlink" target="rightframe"><strike>setViewName</strike>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.setVoice_added(android.speech.tts.Voice)" class="hiddenlink" target="rightframe"><b>setVoice</b>
+(<code>Voice</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.setVolumeTo_added(int, int)" class="hiddenlink" target="rightframe"><b>setVolumeTo</b>
+(<code>int, int</code>)</A></nobr><br>
+<i>shouldInterceptRequest</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_removed(android.webkit.WebView, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>WebView, String</code>)</strike>&nbsp;in&nbsp;android.webkit.WebViewClient
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, android.webkit.WebResourceRequest)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>WebView, WebResourceRequest</code>)</b>&nbsp;in&nbsp;android.webkit.WebViewClient
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>WebView, String</code>)</b>&nbsp;in&nbsp;android.webkit.WebViewClient
+</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.showWindow_removed()" class="hiddenlink" target="rightframe"><strike>showWindow</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.TransportControls.html#android.media.session.MediaController.TransportControls.skipToQueueItem_added(long)" class="hiddenlink" target="rightframe"><b>skipToQueueItem</b>
+(<code>long</code>)</A></nobr><br>
+<i>speak</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.speak_added(java.lang.CharSequence, int, android.os.Bundle, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, int, Bundle, String</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.speak_changed(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>String, int, HashMap&lt;String, String&gt;</code>)&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<i>spec</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, android.widget.GridLayout.Alignment, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, Alignment, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, int, android.widget.GridLayout.Alignment, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, Alignment, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, int, float)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>int, int, float</code>)</b>&nbsp;in&nbsp;android.widget.GridLayout
+</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.AppTask.html#android.app.ActivityManager.AppTask.startActivity_added(android.content.Context, android.content.Intent, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>startActivity</b>
+(<code>Context, Intent, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.startActivityForProfile_removed(android.content.ComponentName, android.os.UserHandle, android.graphics.Rect, android.os.Bundle)" class="hiddenlink" target="rightframe"><strike>startActivityForProfile</strike>
+(<code>ComponentName, UserHandle, Rect, Bundle</code>)</A></nobr><br>
+<i>startAdvertising</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.BluetoothLeAdvertiser.html#android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising_removed(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertisementData, android.bluetooth.le.AdvertiseCallback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>AdvertiseSettings, AdvertisementData, AdvertiseCallback</code>)</strike>&nbsp;in&nbsp;android.bluetooth.le.BluetoothLeAdvertiser
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.BluetoothLeAdvertiser.html#android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising_removed(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertisementData, android.bluetooth.le.AdvertisementData, android.bluetooth.le.AdvertiseCallback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>AdvertiseSettings, AdvertisementData, AdvertisementData, AdvertiseCallback</code>)</strike>&nbsp;in&nbsp;android.bluetooth.le.BluetoothLeAdvertiser
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.BluetoothLeAdvertiser.html#android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising_added(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AdvertiseSettings, AdvertiseData, AdvertiseCallback</code>)</b>&nbsp;in&nbsp;android.bluetooth.le.BluetoothLeAdvertiser
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.BluetoothLeAdvertiser.html#android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising_added(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>AdvertiseSettings, AdvertiseData, AdvertiseData, AdvertiseCallback</code>)</b>&nbsp;in&nbsp;android.bluetooth.le.BluetoothLeAdvertiser
+</A></nobr><br>
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.startAppDetailsActivity_added(android.content.ComponentName, android.os.UserHandle, android.graphics.Rect, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>startAppDetailsActivity</b>
+(<code>ComponentName, UserHandle, Rect, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.appwidget.AppWidgetHost.html#android.appwidget.AppWidgetHost.startAppWidgetConfigureActivityForResult_added(android.app.Activity, int, int, int, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>startAppWidgetConfigureActivityForResult</b>
+(<code>Activity, int, int, int, Bundle</code>)</A></nobr><br>
+<i>startLeScan</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.startLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>LeScanCallback</code>)&nbsp;in&nbsp;android.bluetooth.BluetoothAdapter
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.startLeScan_changed(java.util.UUID[], android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>UUID[], LeScanCallback</code>)&nbsp;in&nbsp;android.bluetooth.BluetoothAdapter
+</A></nobr><br>
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.startMainActivity_added(android.content.ComponentName, android.os.UserHandle, android.graphics.Rect, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>startMainActivity</b>
+(<code>ComponentName, UserHandle, Rect, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.BluetoothLeScanner.html#android.bluetooth.le.BluetoothLeScanner.startScan_added(android.bluetooth.le.ScanCallback)" class="hiddenlink" target="rightframe"><b>startScan</b>
+(<code>ScanCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.startVoiceActivity_removed(android.content.Intent)" class="hiddenlink" target="rightframe"><strike>startVoiceActivity</strike>
+(<code>Intent</code>)</A></nobr><br>
+<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.startWps_added(android.net.wifi.WpsInfo, android.net.wifi.WifiManager.WpsCallback)" class="hiddenlink" target="rightframe"><b>startWps</b>
+(<code>WpsInfo, WpsCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.stopLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">stopLeScan
+(<code>LeScanCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.stopRepeating_removed()" class="hiddenlink" target="rightframe"><strike>stopRepeating</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.supportsAidPrefixRegistration_added()" class="hiddenlink" target="rightframe"><b>supportsAidPrefixRegistration</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.switchUser_added(android.content.ComponentName, android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>switchUser</b>
+(<code>ComponentName, UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieSyncManager.html#android.webkit.CookieSyncManager.syncFromRamToFlash_changed()" class="hiddenlink" target="rightframe">syncFromRamToFlash
+()</A></nobr><br>
+<i>synthesizeToFile</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.synthesizeToFile_added(java.lang.CharSequence, android.os.Bundle, java.io.File, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>CharSequence, Bundle, File, String</code>)</b>&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.synthesizeToFile_changed(java.lang.String, java.util.HashMap<java.lang.String, java.lang.String>, java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>String, HashMap&lt;String, String&gt;, String</code>)&nbsp;in&nbsp;android.speech.tts.TextToSpeech
+</A></nobr><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>&nbsp;
+<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="#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="java.util.Locale.html#java.util.Locale.toLanguageTag_added()" class="hiddenlink" target="rightframe"><b>toLanguageTag</b>
+()</A></nobr><br>
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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="#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.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.uninstallAllUserCaCerts_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>uninstallAllUserCaCerts</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.uninstallCaCert_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>uninstallCaCert</b>
+(<code>ComponentName, byte[]</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraManager.html#android.hardware.camera2.CameraManager.unregisterAvailabilityCallback_added(android.hardware.camera2.CameraManager.AvailabilityCallback)" class="hiddenlink" target="rightframe"><b>unregisterAvailabilityCallback</b>
+(<code>AvailabilityCallback</code>)</A></nobr><br>
+<i>unregisterCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.unregisterCallback_added(android.content.pm.LauncherApps.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback</code>)</b>&nbsp;in&nbsp;android.content.pm.LauncherApps
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.unregisterCallback_added(android.media.session.MediaController.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>Callback</code>)</b>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.unregisterCallback_added(android.media.tv.TvInputManager.TvInputCallback)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>TvInputCallback</code>)</b>&nbsp;in&nbsp;android.media.tv.TvInputManager
+</A></nobr><br>
+<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.unregisterDefaultNetworkActiveListener_removed(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><strike>unregisterDefaultNetworkActiveListener</strike>
+(<code>OnNetworkActiveListener</code>)</A></nobr><br>
+<i>unregisterMediaButtonEventReceiver</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.app.PendingIntent)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>PendingIntent</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.content.ComponentName)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>ComponentName</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterRemoteControlClient_changed(android.media.RemoteControlClient)" class="hiddenlink" target="rightframe">unregisterRemoteControlClient
+(<code>RemoteControlClient</code>)</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterRemoteController_changed(android.media.RemoteController)" class="hiddenlink" target="rightframe">unregisterRemoteController
+(<code>RemoteController</code>)</A></nobr><br>
+<nobr><A HREF="android.view.inputmethod.InputMethodManager.html#android.view.inputmethod.InputMethodManager.updateCursor_changed(android.view.View, int, int, int, int)" class="hiddenlink" target="rightframe">updateCursor
+(<code>View, int, int, int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.userActivity_removed(long, boolean)" class="hiddenlink" target="rightframe"><strike>userActivity</strike>
+(<code>long, boolean</code>)</A></nobr><br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>&nbsp;
+<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="#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>vibrate</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_added(long, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long, AudioAttributes</code>)</b>&nbsp;in&nbsp;android.os.Vibrator
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_added(long[], int, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type&nbsp;<b>
+(<code>long[], int, AudioAttributes</code>)</b>&nbsp;in&nbsp;android.os.Vibrator
+</A></nobr><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#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">
+<i>wakeUp</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.wakeUp_removed(long)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>long</code>)</strike>&nbsp;in&nbsp;android.os.PowerManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.service.dreams.DreamService.html#android.service.dreams.DreamService.wakeUp_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
+()</b>&nbsp;in&nbsp;android.service.dreams.DreamService
+</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.writeByteBuffer_added(java.io.OutputStream, android.util.Size, java.nio.ByteBuffer, long)" class="hiddenlink" target="rightframe"><b>writeByteBuffer</b>
+(<code>OutputStream, Size, ByteBuffer, long</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.DngCreator.html#android.hardware.camera2.DngCreator.writeInputStream_added(java.io.OutputStream, android.util.Size, java.io.InputStream, long)" class="hiddenlink" target="rightframe"><b>writeInputStream</b>
+(<code>OutputStream, Size, InputStream, long</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.writeSize_added(android.util.Size)" class="hiddenlink" target="rightframe"><b>writeSize</b>
+(<code>Size</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.writeSizeF_added(android.util.SizeF)" class="hiddenlink" target="rightframe"><b>writeSizeF</b>
+(<code>SizeF</code>)</A></nobr><br>
+<A NAME="Z"></A>
+<br><font size="+2">Z</font>&nbsp;
+<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="#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.webkit.WebView.html#android.webkit.WebView.zoomBy_added(float)" class="hiddenlink" target="rightframe"><b>zoomBy</b>
+(<code>float</code>)</A></nobr><br>
+<script src="//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/preview-21/changes/methods_index_changes.html b/docs/html/sdk/api_diff/preview-21/changes/methods_index_changes.html
new file mode 100644
index 0000000..56048f5
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/methods_index_changes.html
@@ -0,0 +1,404 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<A HREF="methods_index_removals.html" xclass="hiddenlink">Removals</A>
+  <br>
+<A HREF="methods_index_additions.html"xclass="hiddenlink">Additions</A>
+  <br>
+<b>Changes</b>
+  </td>
+  </tr>
+</table>
+<div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#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.graphics.drawable.AnimatedStateListDrawable.html#android.graphics.drawable.AnimatedStateListDrawable.addTransition_changed(int, int, T, boolean)" class="hiddenlink" target="rightframe">addTransition
+(<code>int, int, T, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.areDefaultsEnforced_changed()" class="hiddenlink" target="rightframe">areDefaultsEnforced
+()</A></nobr><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<a href="#A"><font size="-2">A</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="#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.hardware.camera2.CameraCaptureSession.html#android.hardware.camera2.CameraCaptureSession.capture_changed(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)" class="hiddenlink" target="rightframe">capture
+(<code>CaptureRequest, CaptureCallback, Handler</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraCaptureSession.html#android.hardware.camera2.CameraCaptureSession.captureBurst_changed(java.util.List<android.hardware.camera2.CaptureRequest>, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)" class="hiddenlink" target="rightframe">captureBurst
+(<code>List&lt;CaptureRequest&gt;, CaptureCallback, Handler</code>)</A></nobr><br>
+<i>clipRegion</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.clipRegion_changed(android.graphics.Region)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Region</code>)&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.clipRegion_changed(android.graphics.Region, android.graphics.Region.Op)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Region, Op</code>)&nbsp;in&nbsp;android.graphics.Canvas
+</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.createCaptureSession_changed(java.util.List<android.view.Surface>, android.hardware.camera2.CameraCaptureSession.StateCallback, android.os.Handler)" class="hiddenlink" target="rightframe">createCaptureSession
+(<code>List&lt;Surface&gt;, StateCallback, Handler</code>)</A></nobr><br>
+<nobr><A HREF="android.view.ViewAnimationUtils.html#android.view.ViewAnimationUtils.createCircularReveal_changed(android.view.View, int, int, float, float)" class="hiddenlink" target="rightframe">createCircularReveal
+(<code>View, int, int, float, float</code>)</A></nobr><br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>&nbsp;
+<a href="#A"><font size="-2">A</font></a> 
+<a href="#C"><font size="-2">C</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="#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.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.enableHardwareAcceleration_changed()" class="hiddenlink" target="rightframe">enableHardwareAcceleration
+()</A></nobr><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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="#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="#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.media.MediaCodecList.html#android.media.MediaCodecList.getCodecCount_changed()" class="hiddenlink" target="rightframe">getCodecCount
+()</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecInfoAt_changed(int)" class="hiddenlink" target="rightframe">getCodecInfoAt
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.getComposingText_changed()" class="hiddenlink" target="rightframe">getComposingText
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getDefaultLanguage_changed()" class="hiddenlink" target="rightframe">getDefaultLanguage
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getFeatures_changed(java.util.Locale)" class="hiddenlink" target="rightframe">getFeatures
+(<code>Locale</code>)</A></nobr><br>
+<i>getFrameNumber</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CaptureFailure.html#android.hardware.camera2.CaptureFailure.getFrameNumber_changed()" class="hiddenlink" target="rightframe">type&nbsp;
+()&nbsp;in&nbsp;android.hardware.camera2.CaptureFailure
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.hardware.camera2.CaptureResult.html#android.hardware.camera2.CaptureResult.getFrameNumber_changed()" class="hiddenlink" target="rightframe">type&nbsp;
+()&nbsp;in&nbsp;android.hardware.camera2.CaptureResult
+</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputBuffers_changed()" class="hiddenlink" target="rightframe">getInputBuffers
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getLanguage_changed()" class="hiddenlink" target="rightframe">getLanguage
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getManufacturerSpecificData_changed()" class="hiddenlink" target="rightframe">getManufacturerSpecificData
+()</A></nobr><br>
+<i>getOutline</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.getOutline_changed(android.graphics.Outline)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Outline</code>)&nbsp;in&nbsp;android.graphics.drawable.Drawable
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.drawable.shapes.Shape.html#android.graphics.drawable.shapes.Shape.getOutline_changed(android.graphics.Outline)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Outline</code>)&nbsp;in&nbsp;android.graphics.drawable.shapes.Shape
+</A></nobr><br>
+<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputBuffers_changed()" class="hiddenlink" target="rightframe">getOutputBuffers
+()</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.RankingMap.html#android.service.notification.NotificationListenerService.RankingMap.getRanking_changed(java.lang.String, android.service.notification.NotificationListenerService.Ranking)" class="hiddenlink" target="rightframe">getRanking
+(<code>String, Ranking</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.PermissionRequest.html#android.webkit.PermissionRequest.getResources_changed()" class="hiddenlink" target="rightframe">getResources
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanResult.html#android.bluetooth.le.ScanResult.getScanRecord_changed()" class="hiddenlink" target="rightframe">getScanRecord
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.getSessionToken_changed()" class="hiddenlink" target="rightframe">getSessionToken
+()</A></nobr><br>
+<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.getStreamType_changed()" class="hiddenlink" target="rightframe">getStreamType
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getText_changed()" class="hiddenlink" target="rightframe">getText
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.PermissionRequest.html#android.webkit.PermissionRequest.grant_changed(java.lang.String[])" class="hiddenlink" target="rightframe">grant
+(<code>String[]</code>)</A></nobr><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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="#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="#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.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isLockTaskPermitted_changed(java.lang.String)" class="hiddenlink" target="rightframe">isLockTaskPermitted
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.inputmethod.InputMethodManager.html#android.view.inputmethod.InputMethodManager.isWatchingCursor_changed(android.view.View)" class="hiddenlink" target="rightframe">isWatchingCursor
+(<code>View</code>)</A></nobr><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>&nbsp;
+<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="#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.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.loadLabel_changed(android.content.Context)" class="hiddenlink" target="rightframe">loadLabel
+(<code>Context</code>)</A></nobr><br>
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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="#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.app.Activity.html#android.app.Activity.onActivityReenter_changed(int, android.content.Intent)" class="hiddenlink" target="rightframe">onActivityReenter
+(<code>int, Intent</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onCreate_changed(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe">onCreate
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputService.html#android.media.tv.TvInputService.onCreateSession_changed(java.lang.String)" class="hiddenlink" target="rightframe">onCreateSession
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.location.SettingInjectorService.html#android.location.SettingInjectorService.onGetSummary_changed()" class="hiddenlink" target="rightframe">onGetSummary
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onMediaButtonEvent_changed(android.content.Intent)" class="hiddenlink" target="rightframe">onMediaButtonEvent
+(<code>Intent</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onPostCreate_changed(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe">onPostCreate
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onRestoreInstanceState_changed(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe">onRestoreInstanceState
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.onSaveInstanceState_changed(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe">onSaveInstanceState
+(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.onScanFailed_changed(int)" class="hiddenlink" target="rightframe">onScanFailed
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.onUpdateCursor_changed(android.graphics.Rect)" class="hiddenlink" target="rightframe">onUpdateCursor
+(<code>Rect</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraManager.html#android.hardware.camera2.CameraManager.openCamera_changed(java.lang.String, android.hardware.camera2.CameraDevice.StateCallback, android.os.Handler)" class="hiddenlink" target="rightframe">openCamera
+(<code>String, StateCallback, Handler</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaDrm.html#android.media.MediaDrm.openSession_changed()" class="hiddenlink" target="rightframe">openSession
+()</A></nobr><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#O"><font size="-2">O</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.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playEarcon_changed(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">playEarcon
+(<code>String, int, HashMap&lt;String, String&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playSilence_changed(long, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">playSilence
+(<code>long, int, HashMap&lt;String, String&gt;</code>)</A></nobr><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#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="#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">
+<i>registerMediaButtonEventReceiver</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.app.PendingIntent)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>PendingIntent</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.content.ComponentName)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>ComponentName</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerRemoteControlClient_changed(android.media.RemoteControlClient)" class="hiddenlink" target="rightframe">registerRemoteControlClient
+(<code>RemoteControlClient</code>)</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerRemoteController_changed(android.media.RemoteController)" class="hiddenlink" target="rightframe">registerRemoteController
+(<code>RemoteController</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeAllCookie_changed()" class="hiddenlink" target="rightframe">removeAllCookie
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeExpiredCookie_changed()" class="hiddenlink" target="rightframe">removeExpiredCookie
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeSessionCookie_changed()" class="hiddenlink" target="rightframe">removeSessionCookie
+()</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.removeStickyBroadcast_changed(android.content.Intent)" class="hiddenlink" target="rightframe">removeStickyBroadcast
+(<code>Intent</code>)</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.removeStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)" class="hiddenlink" target="rightframe">removeStickyBroadcastAsUser
+(<code>Intent, UserHandle</code>)</A></nobr><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#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="#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.sendStickyBroadcast_changed(android.content.Intent)" class="hiddenlink" target="rightframe">sendStickyBroadcast
+(<code>Intent</code>)</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)" class="hiddenlink" target="rightframe">sendStickyBroadcastAsUser
+(<code>Intent, UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyOrderedBroadcast_changed(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">sendStickyOrderedBroadcast
+(<code>Intent, BroadcastReceiver, Handler, int, String, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyOrderedBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">sendStickyOrderedBroadcastAsUser
+(<code>Intent, UserHandle, BroadcastReceiver, Handler, int, String, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.media.MediaRecorder.html#android.media.MediaRecorder.setCamera_changed(android.hardware.Camera)" class="hiddenlink" target="rightframe">setCamera
+(<code>Camera</code>)</A></nobr><br>
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.Builder.html#android.view.inputmethod.CursorAnchorInfo.Builder.setInsertionMarkerLocation_changed(float, float, float, float, int)" class="hiddenlink" target="rightframe">setInsertionMarkerLocation
+(<code>float, float, float, float, int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Notification.MediaStyle.html#android.app.Notification.MediaStyle.setMediaSession_changed(android.media.session.MediaSession.Token)" class="hiddenlink" target="rightframe">setMediaSession
+(<code>Token</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setPlaybackToLocal_changed(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">setPlaybackToLocal
+(<code>AudioAttributes</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setPlaybackToRemote_changed(android.media.VolumeProvider)" class="hiddenlink" target="rightframe">setPlaybackToRemote
+(<code>VolumeProvider</code>)</A></nobr><br>
+<nobr><A HREF="android.transition.ChangeBounds.html#android.transition.ChangeBounds.setReparent_changed(boolean)" class="hiddenlink" target="rightframe">setReparent
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraCaptureSession.html#android.hardware.camera2.CameraCaptureSession.setRepeatingBurst_changed(java.util.List<android.hardware.camera2.CaptureRequest>, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)" class="hiddenlink" target="rightframe">setRepeatingBurst
+(<code>List&lt;CaptureRequest&gt;, CaptureCallback, Handler</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraCaptureSession.html#android.hardware.camera2.CameraCaptureSession.setRepeatingRequest_changed(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)" class="hiddenlink" target="rightframe">setRepeatingRequest
+(<code>CaptureRequest, CaptureCallback, Handler</code>)</A></nobr><br>
+<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.setStreamType_changed(int)" class="hiddenlink" target="rightframe">setStreamType
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setTicker_changed(java.lang.CharSequence, android.widget.RemoteViews)" class="hiddenlink" target="rightframe">setTicker
+(<code>CharSequence, RemoteViews</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTint_changed(int)" class="hiddenlink" target="rightframe">setTint
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestriction_changed(java.lang.String, boolean)" class="hiddenlink" target="rightframe">setUserRestriction
+(<code>String, boolean</code>)</A></nobr><br>
+<i>setUserRestrictions</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestrictions_changed(android.os.Bundle)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Bundle</code>)&nbsp;in&nbsp;android.os.UserManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestrictions_changed(android.os.Bundle, android.os.UserHandle)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>Bundle, UserHandle</code>)&nbsp;in&nbsp;android.os.UserManager
+</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.speak_changed(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">speak
+(<code>String, int, HashMap&lt;String, String&gt;</code>)</A></nobr><br>
+<i>startLeScan</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.startLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>LeScanCallback</code>)&nbsp;in&nbsp;android.bluetooth.BluetoothAdapter
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.startLeScan_changed(java.util.UUID[], android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>UUID[], LeScanCallback</code>)&nbsp;in&nbsp;android.bluetooth.BluetoothAdapter
+</A></nobr><br>
+<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.stopLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">stopLeScan
+(<code>LeScanCallback</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.CookieSyncManager.html#android.webkit.CookieSyncManager.syncFromRamToFlash_changed()" class="hiddenlink" target="rightframe">syncFromRamToFlash
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.synthesizeToFile_changed(java.lang.String, java.util.HashMap<java.lang.String, java.lang.String>, java.lang.String)" class="hiddenlink" target="rightframe">synthesizeToFile
+(<code>String, HashMap&lt;String, String&gt;, String</code>)</A></nobr><br>
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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="#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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>unregisterMediaButtonEventReceiver</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.app.PendingIntent)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>PendingIntent</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.content.ComponentName)" class="hiddenlink" target="rightframe">type&nbsp;
+(<code>ComponentName</code>)&nbsp;in&nbsp;android.media.AudioManager
+</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterRemoteControlClient_changed(android.media.RemoteControlClient)" class="hiddenlink" target="rightframe">unregisterRemoteControlClient
+(<code>RemoteControlClient</code>)</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterRemoteController_changed(android.media.RemoteController)" class="hiddenlink" target="rightframe">unregisterRemoteController
+(<code>RemoteController</code>)</A></nobr><br>
+<nobr><A HREF="android.view.inputmethod.InputMethodManager.html#android.view.inputmethod.InputMethodManager.updateCursor_changed(android.view.View, int, int, int, int)" class="hiddenlink" target="rightframe">updateCursor
+(<code>View, int, int, int, int</code>)</A></nobr><br>
+<script src="//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/preview-21/changes/methods_index_removals.html b/docs/html/sdk/api_diff/preview-21/changes/methods_index_removals.html
new file mode 100644
index 0000000..17db239
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/methods_index_removals.html
@@ -0,0 +1,560 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<b>Removals</b>
+  <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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>&nbsp;
+<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="#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="#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.hardware.camera2.CameraManager.html#android.hardware.camera2.CameraManager.addAvailabilityListener_removed(android.hardware.camera2.CameraManager.AvailabilityListener, android.os.Handler)" class="hiddenlink" target="rightframe"><strike>addAvailabilityListener</strike>
+(<code>AvailabilityListener, Handler</code>)</A></nobr><br>
+<i>addCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.addCallback_removed(android.media.session.MediaController.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Callback</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.addCallback_removed(android.media.session.MediaController.Callback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Callback, Handler</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.addCallback_removed(android.media.session.MediaSession.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Callback</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.addCallback_removed(android.media.session.MediaSession.Callback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Callback, Handler</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.Builder.html#android.view.inputmethod.CursorAnchorInfo.Builder.addCharacterRect_removed(int, float, float, float, float)" class="hiddenlink" target="rightframe"><strike>addCharacterRect</strike>
+(<code>int, float, float, float, float</code>)</A></nobr><br>
+<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_removed(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><strike>addEarcon</strike>
+(<code>String, String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addForwardingIntentFilter_removed(android.content.ComponentName, android.content.IntentFilter, int)" class="hiddenlink" target="rightframe"><strike>addForwardingIntentFilter</strike>
+(<code>ComponentName, IntentFilter, int</code>)</A></nobr><br>
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.addOnAppsChangedListener_removed(android.content.pm.LauncherApps.OnAppsChangedListener)" class="hiddenlink" target="rightframe"><strike>addOnAppsChangedListener</strike>
+(<code>OnAppsChangedListener</code>)</A></nobr><br>
+<i>addTransportControlsCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.addTransportControlsCallback_removed(android.media.session.MediaSession.TransportControlsCallback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>TransportControlsCallback</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.addTransportControlsCallback_removed(android.media.session.MediaSession.TransportControlsCallback, android.os.Handler)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>TransportControlsCallback, Handler</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>&nbsp;
+<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="#H"><font size="-2">H</font></a> 
+<a href="#I"><font size="-2">I</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="#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">
+<i>buildChannelsUriForInput</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildChannelsUriForInput_removed(android.content.ComponentName)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>ComponentName</code>)</strike>&nbsp;in&nbsp;android.media.tv.TvContract
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.tv.TvContract.html#android.media.tv.TvContract.buildChannelsUriForInput_removed(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>ComponentName, boolean</code>)</strike>&nbsp;in&nbsp;android.media.tv.TvContract
+</A></nobr><br>
+<nobr><A HREF="android.app.Notification.MediaStyle.html#android.app.Notification.MediaStyle.buildStyled_removed(android.app.Notification)" class="hiddenlink" target="rightframe"><strike>buildStyled</strike>
+(<code>Notification</code>)</A></nobr><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>&nbsp;
+<a href="#A"><font size="-2">A</font></a> 
+<a href="#B"><font size="-2">B</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="#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="#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.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.capture_removed(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraDevice.CaptureListener, android.os.Handler)" class="hiddenlink" target="rightframe"><strike>capture</strike>
+(<code>CaptureRequest, CaptureListener, Handler</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.captureBurst_removed(java.util.List<android.hardware.camera2.CaptureRequest>, android.hardware.camera2.CameraDevice.CaptureListener, android.os.Handler)" class="hiddenlink" target="rightframe"><strike>captureBurst</strike>
+(<code>List&lt;CaptureRequest&gt;, CaptureListener, Handler</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearForwardingIntentFilters_removed(android.content.ComponentName)" class="hiddenlink" target="rightframe"><strike>clearForwardingIntentFilters</strike>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.configureOutputs_removed(java.util.List<android.view.Surface>)" class="hiddenlink" target="rightframe"><strike>configureOutputs</strike>
+(<code>List&lt;Surface&gt;</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSessionManager.html#android.media.session.MediaSessionManager.createSession_removed(java.lang.String)" class="hiddenlink" target="rightframe"><strike>createSession</strike>
+(<code>String</code>)</A></nobr><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>&nbsp;
+<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="#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="#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="#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.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.flush_removed()" class="hiddenlink" target="rightframe"><strike>flush</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.fromToken_removed(android.media.session.MediaSessionToken)" class="hiddenlink" target="rightframe"><strike>fromToken</strike>
+(<code>MediaSessionToken</code>)</A></nobr><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>&nbsp;
+<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="#H"><font size="-2">H</font></a> 
+<a href="#I"><font size="-2">I</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="#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.view.Window.html#android.view.Window.getAllowExitTransitionOverlap_removed()" class="hiddenlink" target="rightframe"><strike>getAllowExitTransitionOverlap</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputManager.html#android.media.tv.TvInputManager.getAvailability_removed(java.lang.String)" class="hiddenlink" target="rightframe"><strike>getAvailability</strike>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.getBadgedDrawableForUser_removed(android.graphics.drawable.Drawable, android.os.UserHandle)" class="hiddenlink" target="rightframe"><strike>getBadgedDrawableForUser</strike>
+(<code>Drawable, UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getBufferPosition_removed()" class="hiddenlink" target="rightframe"><strike>getBufferPosition</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html#android.view.inputmethod.CursorAnchorInfo.getCharacterRect_removed(int)" class="hiddenlink" target="rightframe"><strike>getCharacterRect</strike>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.PorterDuffColorFilter.html#android.graphics.PorterDuffColorFilter.getColor_removed()" class="hiddenlink" target="rightframe"><strike>getColor</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.LightingColorFilter.html#android.graphics.LightingColorFilter.getColorAdd_removed()" class="hiddenlink" target="rightframe"><strike>getColorAdd</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.ColorMatrixColorFilter.html#android.graphics.ColorMatrixColorFilter.getColorMatrix_removed()" class="hiddenlink" target="rightframe"><strike>getColorMatrix</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.LightingColorFilter.html#android.graphics.LightingColorFilter.getColorMultiply_removed()" class="hiddenlink" target="rightframe"><strike>getColorMultiply</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.getIntentForSettingsActivity_removed()" class="hiddenlink" target="rightframe"><strike>getIntentForSettingsActivity</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvInputInfo.html#android.media.tv.TvInputInfo.getIntentForSetupActivity_removed()" class="hiddenlink" target="rightframe"><strike>getIntentForSetupActivity</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.getLayoutInflater_removed()" class="hiddenlink" target="rightframe"><strike>getLayoutInflater</strike>
+()</A></nobr><br>
+<i>getLocalName</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.html#android.bluetooth.le.ScanFilter.getLocalName_removed()" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+()</strike>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getLocalName_removed()" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+()</strike>&nbsp;in&nbsp;android.bluetooth.le.ScanRecord
+</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getManufacturerId_removed()" class="hiddenlink" target="rightframe"><strike>getManufacturerId</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanFilter.html#android.bluetooth.le.ScanFilter.getMaxRssi_removed()" class="hiddenlink" target="rightframe"><strike>getMaxRssi</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanFilter.html#android.bluetooth.le.ScanFilter.getMinRssi_removed()" class="hiddenlink" target="rightframe"><strike>getMinRssi</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.graphics.PorterDuffColorFilter.html#android.graphics.PorterDuffColorFilter.getMode_removed()" class="hiddenlink" target="rightframe"><strike>getMode</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.html#android.app.job.JobInfo.getNetworkCapabilities_removed()" class="hiddenlink" target="rightframe"><strike>getNetworkCapabilities</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.getPlaybackRate_removed()" class="hiddenlink" target="rightframe"><strike>getPlaybackRate</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanSettings.html#android.bluetooth.le.ScanSettings.getReportDelayNanos_removed()" class="hiddenlink" target="rightframe"><strike>getReportDelayNanos</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getServiceData_removed()" class="hiddenlink" target="rightframe"><strike>getServiceData</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.getServiceDataUuid_removed()" class="hiddenlink" target="rightframe"><strike>getServiceDataUuid</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getTargetViewNames_removed()" class="hiddenlink" target="rightframe"><strike>getTargetViewNames</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getTextColor_removed(android.content.Context, android.content.res.TypedArray, int)" class="hiddenlink" target="rightframe"><strike>getTextColor</strike>
+(<code>Context, TypedArray, int</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getTextColors_removed(android.content.Context, android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>getTextColors</strike>
+(<code>Context, TypedArray</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html#android.bluetooth.le.AdvertiseSettings.getType_removed()" class="hiddenlink" target="rightframe"><strike>getType</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.getViewName_removed()" class="hiddenlink" target="rightframe"><strike>getViewName</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.getVoiceInteractor_removed()" class="hiddenlink" target="rightframe"><strike>getVoiceInteractor</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.getWindow_removed()" class="hiddenlink" target="rightframe"><strike>getWindow</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.goToSleep_removed(long)" class="hiddenlink" target="rightframe"><strike>goToSleep</strike>
+(<code>long</code>)</A></nobr><br>
+<A NAME="H"></A>
+<br><font size="+2">H</font>&nbsp;
+<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="#I"><font size="-2">I</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="#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.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.hideWindow_removed()" class="hiddenlink" target="rightframe"><strike>hideWindow</strike>
+()</A></nobr><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>&nbsp;
+<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="#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="#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.view.View.html#android.view.View.initializeFadingEdge_removed(android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>initializeFadingEdge</strike>
+(<code>TypedArray</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.initializeScrollbars_removed(android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>initializeScrollbars</strike>
+(<code>TypedArray</code>)</A></nobr><br>
+<nobr><A HREF="android.util.Range.html#android.util.Range.inRange_removed(T)" class="hiddenlink" target="rightframe"><strike>inRange</strike>
+(<code>T</code>)</A></nobr><br>
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.isActivityEnabledForProfile_removed(android.content.ComponentName, android.os.UserHandle)" class="hiddenlink" target="rightframe"><strike>isActivityEnabledForProfile</strike>
+(<code>ComponentName, UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isApplicationBlocked_removed(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><strike>isApplicationBlocked</strike>
+(<code>ComponentName, String</code>)</A></nobr><br>
+<nobr><A HREF="android.service.notification.NotificationListenerService.Ranking.html#android.service.notification.NotificationListenerService.Ranking.isInterceptedByDoNotDisturb_removed()" class="hiddenlink" target="rightframe"><strike>isInterceptedByDoNotDisturb</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.isPackageEnabledForProfile_removed(java.lang.String, android.os.UserHandle)" class="hiddenlink" target="rightframe"><strike>isPackageEnabledForProfile</strike>
+(<code>String, UserHandle</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.isVoiceInteraction_removed()" class="hiddenlink" target="rightframe"><strike>isVoiceInteraction</strike>
+()</A></nobr><br>
+<A NAME="O"></A>
+<br><font size="+2">O</font>&nbsp;
+<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="#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="#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.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onAbortVoice_removed(android.service.voice.VoiceInteractionSession.Caller, android.service.voice.VoiceInteractionSession.Request, java.lang.CharSequence, android.os.Bundle)" class="hiddenlink" target="rightframe"><strike>onAbortVoice</strike>
+(<code>Caller, Request, CharSequence, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanCallback.html#android.bluetooth.le.ScanCallback.onAdvertisementUpdate_removed(android.bluetooth.le.ScanResult)" class="hiddenlink" target="rightframe"><strike>onAdvertisementUpdate</strike>
+(<code>ScanResult</code>)</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onBackPressed_removed()" class="hiddenlink" target="rightframe"><strike>onBackPressed</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onCancel_removed(android.service.voice.VoiceInteractionSession.Request)" class="hiddenlink" target="rightframe"><strike>onCancel</strike>
+(<code>Request</code>)</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onCommand_removed(android.service.voice.VoiceInteractionSession.Caller, android.service.voice.VoiceInteractionSession.Request, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><strike>onCommand</strike>
+(<code>Caller, Request, String, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onComputeInsets_removed(android.service.voice.VoiceInteractionSession.Insets)" class="hiddenlink" target="rightframe"><strike>onComputeInsets</strike>
+(<code>Insets</code>)</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onConfirm_removed(android.service.voice.VoiceInteractionSession.Caller, android.service.voice.VoiceInteractionSession.Request, java.lang.CharSequence, android.os.Bundle)" class="hiddenlink" target="rightframe"><strike>onConfirm</strike>
+(<code>Caller, Request, CharSequence, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.Callback.html#android.media.session.MediaSession.Callback.onControlCommand_removed(java.lang.String, android.os.Bundle, android.os.ResultReceiver)" class="hiddenlink" target="rightframe"><strike>onControlCommand</strike>
+(<code>String, Bundle, ResultReceiver</code>)</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onCreateContentView_removed()" class="hiddenlink" target="rightframe"><strike>onCreateContentView</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_removed(java.lang.String)" class="hiddenlink" target="rightframe"><strike>onError</strike>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.onFailure_removed(int)" class="hiddenlink" target="rightframe"><strike>onFailure</strike>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onGetSupportedCommands_removed(android.service.voice.VoiceInteractionSession.Caller, java.lang.String[])" class="hiddenlink" target="rightframe"><strike>onGetSupportedCommands</strike>
+(<code>Caller, String[]</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html#android.bluetooth.le.AdvertiseCallback.onSuccess_removed(android.bluetooth.le.AdvertiseSettings)" class="hiddenlink" target="rightframe"><strike>onSuccess</strike>
+(<code>AdvertiseSettings</code>)</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onTaskFinished_removed(android.content.Intent, int)" class="hiddenlink" target="rightframe"><strike>onTaskFinished</strike>
+(<code>Intent, int</code>)</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.onTaskStarted_removed(android.content.Intent, int)" class="hiddenlink" target="rightframe"><strike>onTaskStarted</strike>
+(<code>Intent, int</code>)</A></nobr><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>&nbsp;
+<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="#O"><font size="-2">O</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="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.bluetooth.le.ScanRecord.html#android.bluetooth.le.ScanRecord.parseFromBytes_removed(byte[])" class="hiddenlink" target="rightframe"><strike>parseFromBytes</strike>
+(<code>byte[]</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.preauthorizePermission_removed(android.net.Uri, long)" class="hiddenlink" target="rightframe"><strike>preauthorizePermission</strike>
+(<code>Uri, long</code>)</A></nobr><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>&nbsp;
+<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="#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="#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.net.ConnectivityManager.html#android.net.ConnectivityManager.registerDefaultNetworkActiveListener_removed(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><strike>registerDefaultNetworkActiveListener</strike>
+(<code>OnNetworkActiveListener</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraManager.html#android.hardware.camera2.CameraManager.removeAvailabilityListener_removed(android.hardware.camera2.CameraManager.AvailabilityListener)" class="hiddenlink" target="rightframe"><strike>removeAvailabilityListener</strike>
+(<code>AvailabilityListener</code>)</A></nobr><br>
+<i>removeCallback</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaController.html#android.media.session.MediaController.removeCallback_removed(android.media.session.MediaController.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Callback</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaController
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.removeCallback_removed(android.media.session.MediaSession.Callback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>Callback</code>)</strike>&nbsp;in&nbsp;android.media.session.MediaSession
+</A></nobr><br>
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.removeOnAppsChangedListener_removed(android.content.pm.LauncherApps.OnAppsChangedListener)" class="hiddenlink" target="rightframe"><strike>removeOnAppsChangedListener</strike>
+(<code>OnAppsChangedListener</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.removeTransportControlsCallback_removed(android.media.session.MediaSession.TransportControlsCallback)" class="hiddenlink" target="rightframe"><strike>removeTransportControlsCallback</strike>
+(<code>TransportControlsCallback</code>)</A></nobr><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>&nbsp;
+<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="#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="#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.media.session.MediaController.html#android.media.session.MediaController.sendControlCommand_removed(java.lang.String, android.os.Bundle, android.os.ResultReceiver)" class="hiddenlink" target="rightframe"><strike>sendControlCommand</strike>
+(<code>String, Bundle, ResultReceiver</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.setActions_removed(long)" class="hiddenlink" target="rightframe"><strike>setActions</strike>
+(<code>long</code>)</A></nobr><br>
+<nobr><A HREF="android.view.Window.html#android.view.Window.setAllowExitTransitionOverlap_removed(boolean)" class="hiddenlink" target="rightframe"><strike>setAllowExitTransitionOverlap</strike>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setApplicationBlocked_removed(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><strike>setApplicationBlocked</strike>
+(<code>ComponentName, String, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setApplicationsBlocked_removed(android.content.ComponentName, android.content.Intent, boolean)" class="hiddenlink" target="rightframe"><strike>setApplicationsBlocked</strike>
+(<code>ComponentName, Intent, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.setBufferPosition_removed(long)" class="hiddenlink" target="rightframe"><strike>setBufferPosition</strike>
+(<code>long</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanSettings.Builder.html#android.bluetooth.le.ScanSettings.Builder.setCallbackType_removed(int)" class="hiddenlink" target="rightframe"><strike>setCallbackType</strike>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.PorterDuffColorFilter.html#android.graphics.PorterDuffColorFilter.setColor_removed(int)" class="hiddenlink" target="rightframe"><strike>setColor</strike>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.LightingColorFilter.html#android.graphics.LightingColorFilter.setColorAdd_removed(int)" class="hiddenlink" target="rightframe"><strike>setColorAdd</strike>
+(<code>int</code>)</A></nobr><br>
+<i>setColorMatrix</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.ColorMatrixColorFilter.html#android.graphics.ColorMatrixColorFilter.setColorMatrix_removed(android.graphics.ColorMatrix)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>ColorMatrix</code>)</strike>&nbsp;in&nbsp;android.graphics.ColorMatrixColorFilter
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.graphics.ColorMatrixColorFilter.html#android.graphics.ColorMatrixColorFilter.setColorMatrix_removed(float[])" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>float[]</code>)</strike>&nbsp;in&nbsp;android.graphics.ColorMatrixColorFilter
+</A></nobr><br>
+<nobr><A HREF="android.graphics.LightingColorFilter.html#android.graphics.LightingColorFilter.setColorMultiply_removed(int)" class="hiddenlink" target="rightframe"><strike>setColorMultiply</strike>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.setCursorAnchorMonitorMode_removed(int)" class="hiddenlink" target="rightframe"><strike>setCursorAnchorMonitorMode</strike>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.setEnterSharedElementListener_removed(android.app.SharedElementListener)" class="hiddenlink" target="rightframe"><strike>setEnterSharedElementListener</strike>
+(<code>SharedElementListener</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.setErrorMessage_removed(java.lang.CharSequence)" class="hiddenlink" target="rightframe"><strike>setErrorMessage</strike>
+(<code>CharSequence</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.setExitSharedElementListener_removed(android.app.SharedElementListener)" class="hiddenlink" target="rightframe"><strike>setExitSharedElementListener</strike>
+(<code>SharedElementListener</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.MediaSession.html#android.media.session.MediaSession.setLaunchPendingIntent_removed(android.app.PendingIntent)" class="hiddenlink" target="rightframe"><strike>setLaunchPendingIntent</strike>
+(<code>PendingIntent</code>)</A></nobr><br>
+<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setLockTaskComponents_removed(android.content.ComponentName[])" class="hiddenlink" target="rightframe"><strike>setLockTaskComponents</strike>
+(<code>ComponentName[]</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setMacAddress_removed(java.lang.String)" class="hiddenlink" target="rightframe"><strike>setMacAddress</strike>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.PorterDuffColorFilter.html#android.graphics.PorterDuffColorFilter.setMode_removed(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><strike>setMode</strike>
+(<code>Mode</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setName_removed(java.lang.String)" class="hiddenlink" target="rightframe"><strike>setName</strike>
+(<code>String</code>)</A></nobr><br>
+<i>setNavigationDescription</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.setNavigationDescription_removed(int)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>int</code>)</strike>&nbsp;in&nbsp;android.widget.Toolbar
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.widget.Toolbar.html#android.widget.Toolbar.setNavigationDescription_removed(java.lang.CharSequence)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>CharSequence</code>)</strike>&nbsp;in&nbsp;android.widget.Toolbar
+</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setOutline_removed(android.graphics.Outline)" class="hiddenlink" target="rightframe"><strike>setOutline</strike>
+(<code>Outline</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.setRepeatingBurst_removed(java.util.List<android.hardware.camera2.CaptureRequest>, android.hardware.camera2.CameraDevice.CaptureListener, android.os.Handler)" class="hiddenlink" target="rightframe"><strike>setRepeatingBurst</strike>
+(<code>List&lt;CaptureRequest&gt;, CaptureListener, Handler</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.setRepeatingRequest_removed(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraDevice.CaptureListener, android.os.Handler)" class="hiddenlink" target="rightframe"><strike>setRepeatingRequest</strike>
+(<code>CaptureRequest, CaptureListener, Handler</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanSettings.Builder.html#android.bluetooth.le.ScanSettings.Builder.setReportDelayNanos_removed(long)" class="hiddenlink" target="rightframe"><strike>setReportDelayNanos</strike>
+(<code>long</code>)</A></nobr><br>
+<nobr><A HREF="android.app.job.JobInfo.Builder.html#android.app.job.JobInfo.Builder.setRequiredNetworkCapabilities_removed(int)" class="hiddenlink" target="rightframe"><strike>setRequiredNetworkCapabilities</strike>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setRssiRange_removed(int, int)" class="hiddenlink" target="rightframe"><strike>setRssiRange</strike>
+(<code>int, int</code>)</A></nobr><br>
+<i>setServiceData</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setServiceData_removed(byte[])" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>byte[]</code>)</strike>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter.Builder
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html#android.bluetooth.le.ScanFilter.Builder.setServiceData_removed(byte[], byte[])" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>byte[], byte[]</code>)</strike>&nbsp;in&nbsp;android.bluetooth.le.ScanFilter.Builder
+</A></nobr><br>
+<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_removed(android.net.Uri, int)" class="hiddenlink" target="rightframe"><strike>setSound</strike>
+(<code>Uri, int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.session.PlaybackState.html#android.media.session.PlaybackState.setState_removed(int, long, float)" class="hiddenlink" target="rightframe"><strike>setState</strike>
+(<code>int, long, float</code>)</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.setTheme_removed(int)" class="hiddenlink" target="rightframe"><strike>setTheme</strike>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.tv.TvView.html#android.media.tv.TvView.setTvInputListener_removed(android.media.tv.TvView.TvInputListener)" class="hiddenlink" target="rightframe"><strike>setTvInputListener</strike>
+(<code>TvInputListener</code>)</A></nobr><br>
+<nobr><A HREF="android.bluetooth.le.AdvertiseSettings.Builder.html#android.bluetooth.le.AdvertiseSettings.Builder.setType_removed(int)" class="hiddenlink" target="rightframe"><strike>setType</strike>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setViewName_removed(java.lang.String)" class="hiddenlink" target="rightframe"><strike>setViewName</strike>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_removed(android.webkit.WebView, java.lang.String)" class="hiddenlink" target="rightframe"><strike>shouldInterceptRequest</strike>
+(<code>WebView, String</code>)</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.showWindow_removed()" class="hiddenlink" target="rightframe"><strike>showWindow</strike>
+()</A></nobr><br>
+<nobr><A HREF="android.content.pm.LauncherApps.html#android.content.pm.LauncherApps.startActivityForProfile_removed(android.content.ComponentName, android.os.UserHandle, android.graphics.Rect, android.os.Bundle)" class="hiddenlink" target="rightframe"><strike>startActivityForProfile</strike>
+(<code>ComponentName, UserHandle, Rect, Bundle</code>)</A></nobr><br>
+<i>startAdvertising</i><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.BluetoothLeAdvertiser.html#android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising_removed(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertisementData, android.bluetooth.le.AdvertiseCallback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>AdvertiseSettings, AdvertisementData, AdvertiseCallback</code>)</strike>&nbsp;in&nbsp;android.bluetooth.le.BluetoothLeAdvertiser
+</A></nobr><br>
+&nbsp;&nbsp;<nobr><A HREF="android.bluetooth.le.BluetoothLeAdvertiser.html#android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising_removed(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertisementData, android.bluetooth.le.AdvertisementData, android.bluetooth.le.AdvertiseCallback)" class="hiddenlink" target="rightframe">type&nbsp;<strike>
+(<code>AdvertiseSettings, AdvertisementData, AdvertisementData, AdvertiseCallback</code>)</strike>&nbsp;in&nbsp;android.bluetooth.le.BluetoothLeAdvertiser
+</A></nobr><br>
+<nobr><A HREF="android.service.voice.VoiceInteractionSession.html#android.service.voice.VoiceInteractionSession.startVoiceActivity_removed(android.content.Intent)" class="hiddenlink" target="rightframe"><strike>startVoiceActivity</strike>
+(<code>Intent</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.camera2.CameraDevice.html#android.hardware.camera2.CameraDevice.stopRepeating_removed()" class="hiddenlink" target="rightframe"><strike>stopRepeating</strike>
+()</A></nobr><br>
+<A NAME="U"></A>
+<br><font size="+2">U</font>&nbsp;
+<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="#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="#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.net.ConnectivityManager.html#android.net.ConnectivityManager.unregisterDefaultNetworkActiveListener_removed(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><strike>unregisterDefaultNetworkActiveListener</strike>
+(<code>OnNetworkActiveListener</code>)</A></nobr><br>
+<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.userActivity_removed(long, boolean)" class="hiddenlink" target="rightframe"><strike>userActivity</strike>
+(<code>long, boolean</code>)</A></nobr><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>&nbsp;
+<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="#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.os.PowerManager.html#android.os.PowerManager.wakeUp_removed(long)" class="hiddenlink" target="rightframe"><strike>wakeUp</strike>
+(<code>long</code>)</A></nobr><br>
+<script src="//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/preview-21/changes/packages_index_additions.html b/docs/html/sdk/api_diff/preview-21/changes/packages_index_additions.html
new file mode 100644
index 0000000..b8ef373
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/packages_index_additions.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<A HREF="packages_index_removals.html" xclass="hiddenlink">Removals</A>
+  <br>
+<b>Additions</b>
+  <br>
+<A HREF="packages_index_changes.html"xclass="hiddenlink">Changes</A>
+  </td>
+  </tr>
+</table>
+<div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<br>
+<div id="indexTableEntries">
+<A NAME="A"></A>
+<A HREF="changes-summary.html#android.app.usage" class="hiddenlink" target="rightframe"><b>android.app.usage</b></A><br>
+<A HREF="changes-summary.html#android.media.browse" class="hiddenlink" target="rightframe"><b>android.media.browse</b></A><br>
+<A HREF="changes-summary.html#android.media.projection" class="hiddenlink" target="rightframe"><b>android.media.projection</b></A><br>
+<A HREF="changes-summary.html#android.service.media" class="hiddenlink" target="rightframe"><b>android.service.media</b></A><br>
+<A HREF="changes-summary.html#android.service.restrictions" class="hiddenlink" target="rightframe"><b>android.service.restrictions</b></A><br>
+<A HREF="changes-summary.html#android.telecom" class="hiddenlink" target="rightframe"><b>android.telecom</b></A><br>
+<script src="//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/preview-21/changes/packages_index_all.html b/docs/html/sdk/api_diff/preview-21/changes/packages_index_all.html
new file mode 100644
index 0000000..6323227
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/packages_index_all.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<A HREF="packages_index_removals.html" xclass="hiddenlink">Removals</A>
+  <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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></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.accessibilityservice.html" class="hiddenlink" target="rightframe">android.accessibilityservice</A><br>
+<A HREF="pkg_android.accounts.html" class="hiddenlink" target="rightframe">android.accounts</A><br>
+<A HREF="pkg_android.app.html" class="hiddenlink" target="rightframe">android.app</A><br>
+<A HREF="pkg_android.app.admin.html" class="hiddenlink" target="rightframe">android.app.admin</A><br>
+<A HREF="pkg_android.app.backup.html" class="hiddenlink" target="rightframe">android.app.backup</A><br>
+<A HREF="pkg_android.app.job.html" class="hiddenlink" target="rightframe">android.app.job</A><br>
+<A HREF="changes-summary.html#android.app.usage" class="hiddenlink" target="rightframe"><b>android.app.usage</b></A><br>
+<A HREF="pkg_android.appwidget.html" class="hiddenlink" target="rightframe">android.appwidget</A><br>
+<A HREF="pkg_android.bluetooth.html" class="hiddenlink" target="rightframe">android.bluetooth</A><br>
+<A HREF="pkg_android.bluetooth.le.html" class="hiddenlink" target="rightframe">android.bluetooth.le</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.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.graphics.drawable.shapes.html" class="hiddenlink" target="rightframe">android.graphics.drawable.shapes</A><br>
+<A HREF="pkg_android.hardware.html" class="hiddenlink" target="rightframe">android.hardware</A><br>
+<A HREF="pkg_android.hardware.camera2.html" class="hiddenlink" target="rightframe">android.hardware.camera2</A><br>
+<A HREF="pkg_android.hardware.camera2.params.html" class="hiddenlink" target="rightframe">android.hardware.camera2.params</A><br>
+<A HREF="pkg_android.hardware.display.html" class="hiddenlink" target="rightframe">android.hardware.display</A><br>
+<A HREF="changes-summary.html#android.hardware.location" class="hiddenlink" target="rightframe"><strike>android.hardware.location</strike></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.media.audiofx.html" class="hiddenlink" target="rightframe">android.media.audiofx</A><br>
+<A HREF="changes-summary.html#android.media.browse" class="hiddenlink" target="rightframe"><b>android.media.browse</b></A><br>
+<A HREF="changes-summary.html#android.media.projection" class="hiddenlink" target="rightframe"><b>android.media.projection</b></A><br>
+<A HREF="pkg_android.media.session.html" class="hiddenlink" target="rightframe">android.media.session</A><br>
+<A HREF="pkg_android.media.tv.html" class="hiddenlink" target="rightframe">android.media.tv</A><br>
+<A HREF="pkg_android.net.html" class="hiddenlink" target="rightframe">android.net</A><br>
+<A HREF="pkg_android.net.wifi.html" class="hiddenlink" target="rightframe">android.net.wifi</A><br>
+<A HREF="pkg_android.nfc.cardemulation.html" class="hiddenlink" target="rightframe">android.nfc.cardemulation</A><br>
+<A HREF="pkg_android.os.html" class="hiddenlink" target="rightframe">android.os</A><br>
+<A HREF="pkg_android.printservice.html" class="hiddenlink" target="rightframe">android.printservice</A><br>
+<A HREF="pkg_android.provider.html" class="hiddenlink" target="rightframe">android.provider</A><br>
+<A HREF="pkg_android.renderscript.html" class="hiddenlink" target="rightframe">android.renderscript</A><br>
+<A HREF="pkg_android.service.dreams.html" class="hiddenlink" target="rightframe">android.service.dreams</A><br>
+<A HREF="changes-summary.html#android.service.media" class="hiddenlink" target="rightframe"><b>android.service.media</b></A><br>
+<A HREF="pkg_android.service.notification.html" class="hiddenlink" target="rightframe">android.service.notification</A><br>
+<A HREF="changes-summary.html#android.service.restrictions" class="hiddenlink" target="rightframe"><b>android.service.restrictions</b></A><br>
+<A HREF="pkg_android.service.voice.html" class="hiddenlink" target="rightframe">android.service.voice</A><br>
+<A HREF="pkg_android.service.wallpaper.html" class="hiddenlink" target="rightframe">android.service.wallpaper</A><br>
+<A HREF="pkg_android.speech.tts.html" class="hiddenlink" target="rightframe">android.speech.tts</A><br>
+<A HREF="pkg_android.system.html" class="hiddenlink" target="rightframe">android.system</A><br>
+<A HREF="changes-summary.html#android.telecom" class="hiddenlink" target="rightframe"><b>android.telecom</b></A><br>
+<A HREF="pkg_android.telephony.html" class="hiddenlink" target="rightframe">android.telephony</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.style.html" class="hiddenlink" target="rightframe">android.text.style</A><br>
+<A HREF="pkg_android.transition.html" class="hiddenlink" target="rightframe">android.transition</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.accessibility.html" class="hiddenlink" target="rightframe">android.view.accessibility</A><br>
+<A HREF="pkg_android.view.inputmethod.html" class="hiddenlink" target="rightframe">android.view.inputmethod</A><br>
+<A HREF="pkg_android.view.textservice.html" class="hiddenlink" target="rightframe">android.view.textservice</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="J"></A>
+<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="//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/preview-21/changes/packages_index_changes.html b/docs/html/sdk/api_diff/preview-21/changes/packages_index_changes.html
new file mode 100644
index 0000000..16f950a
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/packages_index_changes.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<A HREF="packages_index_removals.html" xclass="hiddenlink">Removals</A>
+  <br>
+<A HREF="packages_index_additions.html"xclass="hiddenlink">Additions</A>
+  <br>
+<b>Changes</b>
+  </td>
+  </tr>
+</table>
+<div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></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.accessibilityservice.html" class="hiddenlink" target="rightframe">android.accessibilityservice</A><br>
+<A HREF="pkg_android.accounts.html" class="hiddenlink" target="rightframe">android.accounts</A><br>
+<A HREF="pkg_android.app.html" class="hiddenlink" target="rightframe">android.app</A><br>
+<A HREF="pkg_android.app.admin.html" class="hiddenlink" target="rightframe">android.app.admin</A><br>
+<A HREF="pkg_android.app.backup.html" class="hiddenlink" target="rightframe">android.app.backup</A><br>
+<A HREF="pkg_android.app.job.html" class="hiddenlink" target="rightframe">android.app.job</A><br>
+<A HREF="pkg_android.appwidget.html" class="hiddenlink" target="rightframe">android.appwidget</A><br>
+<A HREF="pkg_android.bluetooth.html" class="hiddenlink" target="rightframe">android.bluetooth</A><br>
+<A HREF="pkg_android.bluetooth.le.html" class="hiddenlink" target="rightframe">android.bluetooth.le</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.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.graphics.drawable.shapes.html" class="hiddenlink" target="rightframe">android.graphics.drawable.shapes</A><br>
+<A HREF="pkg_android.hardware.html" class="hiddenlink" target="rightframe">android.hardware</A><br>
+<A HREF="pkg_android.hardware.camera2.html" class="hiddenlink" target="rightframe">android.hardware.camera2</A><br>
+<A HREF="pkg_android.hardware.camera2.params.html" class="hiddenlink" target="rightframe">android.hardware.camera2.params</A><br>
+<A HREF="pkg_android.hardware.display.html" class="hiddenlink" target="rightframe">android.hardware.display</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.media.audiofx.html" class="hiddenlink" target="rightframe">android.media.audiofx</A><br>
+<A HREF="pkg_android.media.session.html" class="hiddenlink" target="rightframe">android.media.session</A><br>
+<A HREF="pkg_android.media.tv.html" class="hiddenlink" target="rightframe">android.media.tv</A><br>
+<A HREF="pkg_android.net.html" class="hiddenlink" target="rightframe">android.net</A><br>
+<A HREF="pkg_android.net.wifi.html" class="hiddenlink" target="rightframe">android.net.wifi</A><br>
+<A HREF="pkg_android.nfc.cardemulation.html" class="hiddenlink" target="rightframe">android.nfc.cardemulation</A><br>
+<A HREF="pkg_android.os.html" class="hiddenlink" target="rightframe">android.os</A><br>
+<A HREF="pkg_android.printservice.html" class="hiddenlink" target="rightframe">android.printservice</A><br>
+<A HREF="pkg_android.provider.html" class="hiddenlink" target="rightframe">android.provider</A><br>
+<A HREF="pkg_android.renderscript.html" class="hiddenlink" target="rightframe">android.renderscript</A><br>
+<A HREF="pkg_android.service.dreams.html" class="hiddenlink" target="rightframe">android.service.dreams</A><br>
+<A HREF="pkg_android.service.notification.html" class="hiddenlink" target="rightframe">android.service.notification</A><br>
+<A HREF="pkg_android.service.voice.html" class="hiddenlink" target="rightframe">android.service.voice</A><br>
+<A HREF="pkg_android.service.wallpaper.html" class="hiddenlink" target="rightframe">android.service.wallpaper</A><br>
+<A HREF="pkg_android.speech.tts.html" class="hiddenlink" target="rightframe">android.speech.tts</A><br>
+<A HREF="pkg_android.system.html" class="hiddenlink" target="rightframe">android.system</A><br>
+<A HREF="pkg_android.telephony.html" class="hiddenlink" target="rightframe">android.telephony</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.style.html" class="hiddenlink" target="rightframe">android.text.style</A><br>
+<A HREF="pkg_android.transition.html" class="hiddenlink" target="rightframe">android.transition</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.accessibility.html" class="hiddenlink" target="rightframe">android.view.accessibility</A><br>
+<A HREF="pkg_android.view.inputmethod.html" class="hiddenlink" target="rightframe">android.view.inputmethod</A><br>
+<A HREF="pkg_android.view.textservice.html" class="hiddenlink" target="rightframe">android.view.textservice</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="J"></A>
+<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="//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/preview-21/changes/packages_index_removals.html b/docs/html/sdk/api_diff/preview-21/changes/packages_index_removals.html
new file mode 100644
index 0000000..b1f4a8c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/packages_index_removals.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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>
+<b>Removals</b>
+  <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" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
+Listed as: <span style="color:#069"><strong>Added</strong></span>,  <span style="color:#069"><strike>Removed</strike></span>,  <span style="color:#069">Changed</span></font>
+</div>
+<br>
+<div id="indexTableEntries">
+<A NAME="A"></A>
+<A HREF="changes-summary.html#android.hardware.location" class="hiddenlink" target="rightframe"><strike>android.hardware.location</strike></A><br>
+<script src="//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/preview-21/changes/pkg_android.accessibilityservice.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.accessibilityservice.html
new file mode 100644
index 0000000..c21f3e91
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.accessibilityservice.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.accessibilityservice
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/accessibilityservice/package-summary.html" target="_top"><font size="+1"><code>android.accessibilityservice</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="AccessibilityService"></A>
+  <nobr><A HREF="android.accessibilityservice.AccessibilityService.html">AccessibilityService</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.accounts.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.accounts.html
new file mode 100644
index 0000000..9ecbc6a
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.accounts.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.accounts
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/accounts/package-summary.html" target="_top"><font size="+1"><code>android.accounts</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="AccountManager"></A>
+  <nobr><A HREF="android.accounts.AccountManager.html">AccountManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.app.admin.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.app.admin.html
new file mode 100644
index 0000000..b0959e8
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.app.admin.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.admin
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/admin/package-summary.html" target="_top"><font size="+1"><code>android.app.admin</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="DeviceAdminReceiver"></A>
+  <nobr><A HREF="android.app.admin.DeviceAdminReceiver.html">DeviceAdminReceiver</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="DevicePolicyManager"></A>
+  <nobr><A HREF="android.app.admin.DevicePolicyManager.html">DevicePolicyManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.app.backup.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.app.backup.html
new file mode 100644
index 0000000..8cfb154
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.app.backup.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.backup
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/backup/package-summary.html" target="_top"><font size="+1"><code>android.app.backup</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="BackupAgent"></A>
+  <nobr><A HREF="android.app.backup.BackupAgent.html">BackupAgent</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.app.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.app.html
new file mode 100644
index 0000000..70deeff
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.app.html
@@ -0,0 +1,303 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="Removed"></a>
+<TABLE summary="Removed Classes" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="SharedElementListener"></A>
+  SharedElementListener
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="VoiceInteractor"></A>
+  VoiceInteractor
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="VoiceInteractor.AbortVoiceRequest"></A>
+  VoiceInteractor.AbortVoiceRequest
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="VoiceInteractor.CommandRequest"></A>
+  VoiceInteractor.CommandRequest
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="VoiceInteractor.ConfirmationRequest"></A>
+  VoiceInteractor.ConfirmationRequest
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="VoiceInteractor.Request"></A>
+  VoiceInteractor.Request
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="AlarmManager.AlarmClockInfo"></A>
+  <nobr><A HREF="../../../../reference/android/app/AlarmManager.AlarmClockInfo.html" target="_top"><code>AlarmManager.AlarmClockInfo</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="SharedElementCallback"></A>
+  <nobr><A HREF="../../../../reference/android/app/SharedElementCallback.html" target="_top"><code>SharedElementCallback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="ActionBar"></A>
+  <nobr><A HREF="android.app.ActionBar.html">ActionBar</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ActionBar.LayoutParams"></A>
+  <nobr><A HREF="android.app.ActionBar.LayoutParams.html">ActionBar.LayoutParams</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<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>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ActivityManager.AppTask"></A>
+  <nobr><A HREF="android.app.ActivityManager.AppTask.html">ActivityManager.AppTask</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ActivityManager.RecentTaskInfo"></A>
+  <nobr><A HREF="android.app.ActivityManager.RecentTaskInfo.html">ActivityManager.RecentTaskInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ActivityOptions"></A>
+  <nobr><A HREF="android.app.ActivityOptions.html">ActivityOptions</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AlarmManager"></A>
+  <nobr><A HREF="android.app.AlarmManager.html">AlarmManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AppOpsManager"></A>
+  <nobr><A HREF="android.app.AppOpsManager.html">AppOpsManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Fragment"></A>
+  <nobr><A HREF="android.app.Fragment.html">Fragment</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="FragmentTransaction"></A>
+  <nobr><A HREF="android.app.FragmentTransaction.html">FragmentTransaction</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="KeyguardManager"></A>
+  <nobr><A HREF="android.app.KeyguardManager.html">KeyguardManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Notification.Builder"></A>
+  <nobr><A HREF="android.app.Notification.Builder.html">Notification.Builder</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Notification.MediaStyle"></A>
+  <nobr><A HREF="android.app.Notification.MediaStyle.html">Notification.MediaStyle</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="UiModeManager"></A>
+  <nobr><A HREF="android.app.UiModeManager.html">UiModeManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.app.job.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.app.job.html
new file mode 100644
index 0000000..2f09e93
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.app.job.html
@@ -0,0 +1,155 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.job
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/job/package-summary.html" target="_top"><font size="+1"><code>android.app.job</code></font></A>
+</H2>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Interfaces" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Interfaces</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="JobInfo.BackoffPolicy"></A>
+  <I>JobInfo.BackoffPolicy</I>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="JobInfo.NetworkType"></A>
+  <I>JobInfo.NetworkType</I>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="JobInfo"></A>
+  <nobr><A HREF="android.app.job.JobInfo.html">JobInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="JobInfo.Builder"></A>
+  <nobr><A HREF="android.app.job.JobInfo.Builder.html">JobInfo.Builder</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="JobParameters"></A>
+  <nobr><A HREF="android.app.job.JobParameters.html">JobParameters</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.appwidget.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.appwidget.html
new file mode 100644
index 0000000..69f1f88
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.appwidget.html
@@ -0,0 +1,133 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.appwidget
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/appwidget/package-summary.html" target="_top"><font size="+1"><code>android.appwidget</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="AppWidgetHost"></A>
+  <nobr><A HREF="android.appwidget.AppWidgetHost.html">AppWidgetHost</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AppWidgetManager"></A>
+  <nobr><A HREF="android.appwidget.AppWidgetManager.html">AppWidgetManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AppWidgetProviderInfo"></A>
+  <nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html">AppWidgetProviderInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.bluetooth.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.bluetooth.html
new file mode 100644
index 0000000..2aa8401
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.bluetooth.html
@@ -0,0 +1,140 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.bluetooth
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/bluetooth/package-summary.html" target="_top"><font size="+1"><code>android.bluetooth</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="BluetoothAdapter"></A>
+  <nobr><A HREF="android.bluetooth.BluetoothAdapter.html">BluetoothAdapter</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="BluetoothGatt"></A>
+  <nobr><A HREF="android.bluetooth.BluetoothGatt.html">BluetoothGatt</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="BluetoothGattCallback"></A>
+  <nobr><A HREF="android.bluetooth.BluetoothGattCallback.html">BluetoothGattCallback</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="BluetoothGattServerCallback"></A>
+  <nobr><A HREF="android.bluetooth.BluetoothGattServerCallback.html">BluetoothGattServerCallback</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.bluetooth.le.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.bluetooth.le.html
new file mode 100644
index 0000000..c355b05
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.bluetooth.le.html
@@ -0,0 +1,240 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.bluetooth.le
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/bluetooth/le/package-summary.html" target="_top"><font size="+1"><code>android.bluetooth.le</code></font></A>
+</H2>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Classes" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AdvertisementData"></A>
+  AdvertisementData
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AdvertisementData.Builder"></A>
+  AdvertisementData.Builder
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="AdvertiseData"></A>
+  <nobr><A HREF="../../../../reference/android/bluetooth/le/AdvertiseData.html" target="_top"><code>AdvertiseData</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AdvertiseData.Builder"></A>
+  <nobr><A HREF="../../../../reference/android/bluetooth/le/AdvertiseData.Builder.html" target="_top"><code>AdvertiseData.Builder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="AdvertiseCallback"></A>
+  <nobr><A HREF="android.bluetooth.le.AdvertiseCallback.html">AdvertiseCallback</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AdvertiseSettings"></A>
+  <nobr><A HREF="android.bluetooth.le.AdvertiseSettings.html">AdvertiseSettings</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AdvertiseSettings.Builder"></A>
+  <nobr><A HREF="android.bluetooth.le.AdvertiseSettings.Builder.html">AdvertiseSettings.Builder</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="BluetoothLeAdvertiser"></A>
+  <nobr><A HREF="android.bluetooth.le.BluetoothLeAdvertiser.html">BluetoothLeAdvertiser</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="BluetoothLeScanner"></A>
+  <nobr><A HREF="android.bluetooth.le.BluetoothLeScanner.html">BluetoothLeScanner</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ScanCallback"></A>
+  <nobr><A HREF="android.bluetooth.le.ScanCallback.html">ScanCallback</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ScanFilter"></A>
+  <nobr><A HREF="android.bluetooth.le.ScanFilter.html">ScanFilter</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ScanFilter.Builder"></A>
+  <nobr><A HREF="android.bluetooth.le.ScanFilter.Builder.html">ScanFilter.Builder</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ScanRecord"></A>
+  <nobr><A HREF="android.bluetooth.le.ScanRecord.html">ScanRecord</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ScanResult"></A>
+  <nobr><A HREF="android.bluetooth.le.ScanResult.html">ScanResult</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ScanSettings"></A>
+  <nobr><A HREF="android.bluetooth.le.ScanSettings.html">ScanSettings</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ScanSettings.Builder"></A>
+  <nobr><A HREF="android.bluetooth.le.ScanSettings.Builder.html">ScanSettings.Builder</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.content.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.content.html
new file mode 100644
index 0000000..abf0ee1
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.content.html
@@ -0,0 +1,162 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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" 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="RestrictionsManager"></A>
+  <nobr><A HREF="../../../../reference/android/content/RestrictionsManager.html" target="_top"><code>RestrictionsManager</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="ContentResolver"></A>
+  <nobr><A HREF="android.content.ContentResolver.html">ContentResolver</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="RestrictionEntry"></A>
+  <nobr><A HREF="android.content.RestrictionEntry.html">RestrictionEntry</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.content.pm.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.content.pm.html
new file mode 100644
index 0000000..4ec9ac60
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.content.pm.html
@@ -0,0 +1,233 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="Removed"></a>
+<TABLE summary="Removed Interfaces" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Interfaces</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="LauncherApps.OnAppsChangedListener"></A>
+  <I>LauncherApps.OnAppsChangedListener</I>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="FeatureGroupInfo"></A>
+  <nobr><A HREF="../../../../reference/android/content/pm/FeatureGroupInfo.html" target="_top"><code>FeatureGroupInfo</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="LauncherApps.Callback"></A>
+  <nobr><A HREF="../../../../reference/android/content/pm/LauncherApps.Callback.html" target="_top"><code>LauncherApps.Callback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PackageInstaller"></A>
+  <nobr><A HREF="../../../../reference/android/content/pm/PackageInstaller.html" target="_top"><code>PackageInstaller</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PackageInstaller.Session"></A>
+  <nobr><A HREF="../../../../reference/android/content/pm/PackageInstaller.Session.html" target="_top"><code>PackageInstaller.Session</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PackageInstaller.SessionCallback"></A>
+  <nobr><A HREF="../../../../reference/android/content/pm/PackageInstaller.SessionCallback.html" target="_top"><code>PackageInstaller.SessionCallback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PackageInstaller.SessionInfo"></A>
+  <nobr><A HREF="../../../../reference/android/content/pm/PackageInstaller.SessionInfo.html" target="_top"><code>PackageInstaller.SessionInfo</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PackageInstaller.SessionParams"></A>
+  <nobr><A HREF="../../../../reference/android/content/pm/PackageInstaller.SessionParams.html" target="_top"><code>PackageInstaller.SessionParams</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ApplicationInfo"></A>
+  <nobr><A HREF="android.content.pm.ApplicationInfo.html">ApplicationInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="InstrumentationInfo"></A>
+  <nobr><A HREF="android.content.pm.InstrumentationInfo.html">InstrumentationInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="LauncherApps"></A>
+  <nobr><A HREF="android.content.pm.LauncherApps.html">LauncherApps</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PermissionInfo"></A>
+  <nobr><A HREF="android.content.pm.PermissionInfo.html">PermissionInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.content.res.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.content.res.html
new file mode 100644
index 0000000..da6678c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.content.res.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="AssetManager"></A>
+  <nobr><A HREF="android.content.res.AssetManager.html">AssetManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TypedArray"></A>
+  <nobr><A HREF="android.content.res.TypedArray.html">TypedArray</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.graphics.drawable.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.graphics.drawable.html
new file mode 100644
index 0000000..e5487d5
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.graphics.drawable.html
@@ -0,0 +1,155 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="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="AnimatedVectorDrawable"></A>
+  <nobr><A HREF="../../../../reference/android/graphics/drawable/AnimatedVectorDrawable.html" target="_top"><code>AnimatedVectorDrawable</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="VectorDrawable"></A>
+  <nobr><A HREF="../../../../reference/android/graphics/drawable/VectorDrawable.html" target="_top"><code>VectorDrawable</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="AnimatedStateListDrawable"></A>
+  <nobr><A HREF="android.graphics.drawable.AnimatedStateListDrawable.html">AnimatedStateListDrawable</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="RippleDrawable"></A>
+  <nobr><A HREF="android.graphics.drawable.RippleDrawable.html">RippleDrawable</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.graphics.drawable.shapes.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.graphics.drawable.shapes.html
new file mode 100644
index 0000000..3cf6fdb
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.graphics.drawable.shapes.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.shapes
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/shapes/package-summary.html" target="_top"><font size="+1"><code>android.graphics.drawable.shapes</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="Shape"></A>
+  <nobr><A HREF="android.graphics.drawable.shapes.Shape.html">Shape</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.graphics.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.graphics.html
new file mode 100644
index 0000000..64497ba
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.graphics.html
@@ -0,0 +1,175 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="BitmapFactory.Options"></A>
+  <nobr><A HREF="android.graphics.BitmapFactory.Options.html">BitmapFactory.Options</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Canvas"></A>
+  <nobr><A HREF="android.graphics.Canvas.html">Canvas</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ColorMatrixColorFilter"></A>
+  <nobr><A HREF="android.graphics.ColorMatrixColorFilter.html">ColorMatrixColorFilter</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ImageFormat"></A>
+  <nobr><A HREF="android.graphics.ImageFormat.html">ImageFormat</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="LightingColorFilter"></A>
+  <nobr><A HREF="android.graphics.LightingColorFilter.html">LightingColorFilter</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Outline"></A>
+  <nobr><A HREF="android.graphics.Outline.html">Outline</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Paint"></A>
+  <nobr><A HREF="android.graphics.Paint.html">Paint</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Path"></A>
+  <nobr><A HREF="android.graphics.Path.html">Path</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PorterDuffColorFilter"></A>
+  <nobr><A HREF="android.graphics.PorterDuffColorFilter.html">PorterDuffColorFilter</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.hardware.camera2.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.hardware.camera2.html
new file mode 100644
index 0000000..c459a21
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.hardware.camera2.html
@@ -0,0 +1,254 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.camera2
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/camera2/package-summary.html" target="_top"><font size="+1"><code>android.hardware.camera2</code></font></A>
+</H2>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Classes" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CameraCaptureSession.CaptureListener"></A>
+  CameraCaptureSession.<br>CaptureListener
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CameraCaptureSession.StateListener"></A>
+  CameraCaptureSession.<br>StateListener
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CameraDevice.CaptureListener"></A>
+  CameraDevice.CaptureListener
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CameraDevice.StateListener"></A>
+  CameraDevice.StateListener
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CameraManager.AvailabilityListener"></A>
+  CameraManager.AvailabilityListener
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="CameraCaptureSession.CaptureCallback"></A>
+  <nobr><A HREF="../../../../reference/android/hardware/camera2/CameraCaptureSession.CaptureCallback.html" target="_top"><code>CameraCaptureSession.<br>CaptureCallback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CameraCaptureSession.StateCallback"></A>
+  <nobr><A HREF="../../../../reference/android/hardware/camera2/CameraCaptureSession.StateCallback.html" target="_top"><code>CameraCaptureSession.<br>StateCallback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CameraDevice.StateCallback"></A>
+  <nobr><A HREF="../../../../reference/android/hardware/camera2/CameraDevice.StateCallback.html" target="_top"><code>CameraDevice.StateCallback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CameraManager.AvailabilityCallback"></A>
+  <nobr><A HREF="../../../../reference/android/hardware/camera2/CameraManager.AvailabilityCallback.html" target="_top"><code>CameraManager.AvailabilityCallback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="CameraCaptureSession"></A>
+  <nobr><A HREF="android.hardware.camera2.CameraCaptureSession.html">CameraCaptureSession</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CameraCharacteristics"></A>
+  <nobr><A HREF="android.hardware.camera2.CameraCharacteristics.html">CameraCharacteristics</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CameraDevice"></A>
+  <nobr><A HREF="android.hardware.camera2.CameraDevice.html">CameraDevice</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CameraManager"></A>
+  <nobr><A HREF="android.hardware.camera2.CameraManager.html">CameraManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CameraMetadata"></A>
+  <nobr><A HREF="android.hardware.camera2.CameraMetadata.html">CameraMetadata</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CaptureFailure"></A>
+  <nobr><A HREF="android.hardware.camera2.CaptureFailure.html">CaptureFailure</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CaptureRequest"></A>
+  <nobr><A HREF="android.hardware.camera2.CaptureRequest.html">CaptureRequest</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CaptureResult"></A>
+  <nobr><A HREF="android.hardware.camera2.CaptureResult.html">CaptureResult</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="DngCreator"></A>
+  <nobr><A HREF="android.hardware.camera2.DngCreator.html">DngCreator</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.hardware.camera2.params.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.hardware.camera2.params.html
new file mode 100644
index 0000000..9b10309
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.hardware.camera2.params.html
@@ -0,0 +1,134 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.camera2.params
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/camera2/params/package-summary.html" target="_top"><font size="+1"><code>android.hardware.camera2.params</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="BlackLevelPattern"></A>
+  <nobr><A HREF="../../../../reference/android/hardware/camera2/params/BlackLevelPattern.html" target="_top"><code>BlackLevelPattern</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="StreamConfigurationMap"></A>
+  <nobr><A HREF="android.hardware.camera2.params.StreamConfigurationMap.html">StreamConfigurationMap</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.hardware.display.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.hardware.display.html
new file mode 100644
index 0000000..1ada415
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.hardware.display.html
@@ -0,0 +1,141 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.display
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/display/package-summary.html" target="_top"><font size="+1"><code>android.hardware.display</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="VirtualDisplay.Callback"></A>
+  <nobr><A HREF="../../../../reference/android/hardware/display/VirtualDisplay.Callback.html" target="_top"><code>VirtualDisplay.Callback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="DisplayManager"></A>
+  <nobr><A HREF="android.hardware.display.DisplayManager.html">DisplayManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="VirtualDisplay"></A>
+  <nobr><A HREF="android.hardware.display.VirtualDisplay.html">VirtualDisplay</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.hardware.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.hardware.html
new file mode 100644
index 0000000..0c86dd2
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.hardware.html
@@ -0,0 +1,224 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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 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="Camera"></A>
+  <nobr><A HREF="android.hardware.Camera.html">Camera</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Camera.Area"></A>
+  <nobr><A HREF="android.hardware.Camera.Area.html">Camera.Area</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Camera.AutoFocusCallback"></A>
+  <nobr><A HREF="android.hardware.Camera.AutoFocusCallback.html"><I>Camera.AutoFocusCallback</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Camera.AutoFocusMoveCallback"></A>
+  <nobr><A HREF="android.hardware.Camera.AutoFocusMoveCallback.html"><I>Camera.AutoFocusMoveCallback</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Camera.CameraInfo"></A>
+  <nobr><A HREF="android.hardware.Camera.CameraInfo.html">Camera.CameraInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Camera.ErrorCallback"></A>
+  <nobr><A HREF="android.hardware.Camera.ErrorCallback.html"><I>Camera.ErrorCallback</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Camera.Face"></A>
+  <nobr><A HREF="android.hardware.Camera.Face.html">Camera.Face</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Camera.FaceDetectionListener"></A>
+  <nobr><A HREF="android.hardware.Camera.FaceDetectionListener.html"><I>Camera.FaceDetectionListener</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Camera.OnZoomChangeListener"></A>
+  <nobr><A HREF="android.hardware.Camera.OnZoomChangeListener.html"><I>Camera.OnZoomChangeListener</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Camera.PictureCallback"></A>
+  <nobr><A HREF="android.hardware.Camera.PictureCallback.html"><I>Camera.PictureCallback</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Camera.PreviewCallback"></A>
+  <nobr><A HREF="android.hardware.Camera.PreviewCallback.html"><I>Camera.PreviewCallback</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Camera.ShutterCallback"></A>
+  <nobr><A HREF="android.hardware.Camera.ShutterCallback.html"><I>Camera.ShutterCallback</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Camera.Size"></A>
+  <nobr><A HREF="android.hardware.Camera.Size.html">Camera.Size</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Sensor"></A>
+  <nobr><A HREF="android.hardware.Sensor.html">Sensor</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="SensorManager"></A>
+  <nobr><A HREF="android.hardware.SensorManager.html">SensorManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.html
new file mode 100644
index 0000000..82baacf
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.html
@@ -0,0 +1,161 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="R.dimen"></A>
+  <nobr><A HREF="android.R.dimen.html">R.dimen</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="R.id"></A>
+  <nobr><A HREF="android.R.id.html">R.id</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="R.interpolator"></A>
+  <nobr><A HREF="android.R.interpolator.html">R.interpolator</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="R.transition"></A>
+  <nobr><A HREF="android.R.transition.html">R.transition</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.inputmethodservice.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.inputmethodservice.html
new file mode 100644
index 0000000..d4df644
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.inputmethodservice.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="InputMethodService"></A>
+  <nobr><A HREF="android.inputmethodservice.InputMethodService.html">InputMethodService</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.location.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.location.html
new file mode 100644
index 0000000..d7164db
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.location.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="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="SettingInjectorService"></A>
+  <nobr><A HREF="android.location.SettingInjectorService.html">SettingInjectorService</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.media.audiofx.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.media.audiofx.html
new file mode 100644
index 0000000..760ccf4
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.media.audiofx.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.audiofx
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/audiofx/package-summary.html" target="_top"><font size="+1"><code>android.media.audiofx</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="Virtualizer"></A>
+  <nobr><A HREF="android.media.audiofx.Virtualizer.html">Virtualizer</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.media.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.media.html
new file mode 100644
index 0000000..ba6cb50
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.media.html
@@ -0,0 +1,393 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="AudioAttributes"></A>
+  <nobr><A HREF="../../../../reference/android/media/AudioAttributes.html" target="_top"><code>AudioAttributes</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AudioAttributes.Builder"></A>
+  <nobr><A HREF="../../../../reference/android/media/AudioAttributes.Builder.html" target="_top"><code>AudioAttributes.Builder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AudioFormat.Builder"></A>
+  <nobr><A HREF="../../../../reference/android/media/AudioFormat.Builder.html" target="_top"><code>AudioFormat.Builder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaCodec.Callback"></A>
+  <nobr><A HREF="../../../../reference/android/media/MediaCodec.Callback.html" target="_top"><code>MediaCodec.Callback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaCodec.CodecException"></A>
+  <nobr><A HREF="../../../../reference/android/media/MediaCodec.CodecException.html" target="_top"><code>MediaCodec.CodecException</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaCodecInfo.AudioCapabilities"></A>
+  <nobr><A HREF="../../../../reference/android/media/MediaCodecInfo.AudioCapabilities.html" target="_top"><code>MediaCodecInfo.AudioCapabilities</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaCodecInfo.EncoderCapabilities"></A>
+  <nobr><A HREF="../../../../reference/android/media/MediaCodecInfo.EncoderCapabilities.html" target="_top"><code>MediaCodecInfo.EncoderCapabilities</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaCodecInfo.VideoCapabilities"></A>
+  <nobr><A HREF="../../../../reference/android/media/MediaCodecInfo.VideoCapabilities.html" target="_top"><code>MediaCodecInfo.VideoCapabilities</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaDescription"></A>
+  <nobr><A HREF="../../../../reference/android/media/MediaDescription.html" target="_top"><code>MediaDescription</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaDescription.Builder"></A>
+  <nobr><A HREF="../../../../reference/android/media/MediaDescription.Builder.html" target="_top"><code>MediaDescription.Builder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaDrm.MediaDrmStateException"></A>
+  <nobr><A HREF="../../../../reference/android/media/MediaDrm.MediaDrmStateException.html" target="_top"><code>MediaDrm.MediaDrmStateException</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="SoundPool.Builder"></A>
+  <nobr><A HREF="../../../../reference/android/media/SoundPool.Builder.html" target="_top"><code>SoundPool.Builder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="VolumeProvider"></A>
+  <nobr><A HREF="../../../../reference/android/media/VolumeProvider.html" target="_top"><code>VolumeProvider</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AudioTrack"></A>
+  <nobr><A HREF="android.media.AudioTrack.html">AudioTrack</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CamcorderProfile"></A>
+  <nobr><A HREF="android.media.CamcorderProfile.html">CamcorderProfile</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Image"></A>
+  <nobr><A HREF="android.media.Image.html">Image</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaCodec"></A>
+  <nobr><A HREF="android.media.MediaCodec.html">MediaCodec</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaCodec.CryptoException"></A>
+  <nobr><A HREF="android.media.MediaCodec.CryptoException.html">MediaCodec.CryptoException</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaCodecInfo.CodecCapabilities"></A>
+  <nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html">MediaCodecInfo.CodecCapabilities</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaCodecInfo.CodecProfileLevel"></A>
+  <nobr><A HREF="android.media.MediaCodecInfo.CodecProfileLevel.html">MediaCodecInfo.CodecProfileLevel</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaCodecList"></A>
+  <nobr><A HREF="android.media.MediaCodecList.html">MediaCodecList</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaDrm"></A>
+  <nobr><A HREF="android.media.MediaDrm.html">MediaDrm</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaFormat"></A>
+  <nobr><A HREF="android.media.MediaFormat.html">MediaFormat</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaMetadata"></A>
+  <nobr><A HREF="android.media.MediaMetadata.html">MediaMetadata</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaMetadata.Builder"></A>
+  <nobr><A HREF="android.media.MediaMetadata.Builder.html">MediaMetadata.Builder</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaMetadataEditor"></A>
+  <nobr><A HREF="android.media.MediaMetadataEditor.html">MediaMetadataEditor</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaPlayer.TrackInfo"></A>
+  <nobr><A HREF="android.media.MediaPlayer.TrackInfo.html">MediaPlayer.TrackInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaRecorder"></A>
+  <nobr><A HREF="android.media.MediaRecorder.html">MediaRecorder</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaRecorder.AudioEncoder"></A>
+  <nobr><A HREF="android.media.MediaRecorder.AudioEncoder.html">MediaRecorder.AudioEncoder</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaRecorder.OutputFormat"></A>
+  <nobr><A HREF="android.media.MediaRecorder.OutputFormat.html">MediaRecorder.OutputFormat</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaRecorder.VideoEncoder"></A>
+  <nobr><A HREF="android.media.MediaRecorder.VideoEncoder.html">MediaRecorder.VideoEncoder</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="RemoteControlClient"></A>
+  <nobr><A HREF="android.media.RemoteControlClient.html">RemoteControlClient</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="RemoteControlClient.MetadataEditor"></A>
+  <nobr><A HREF="android.media.RemoteControlClient.MetadataEditor.html">RemoteControlClient.MetadataEditor</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="RemoteController"></A>
+  <nobr><A HREF="android.media.RemoteController.html">RemoteController</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Ringtone"></A>
+  <nobr><A HREF="android.media.Ringtone.html">Ringtone</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="SoundPool"></A>
+  <nobr><A HREF="android.media.SoundPool.html">SoundPool</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.media.session.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.media.session.html
new file mode 100644
index 0000000..08f392a
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.media.session.html
@@ -0,0 +1,247 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.session
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/session/package-summary.html" target="_top"><font size="+1"><code>android.media.session</code></font></A>
+</H2>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Classes" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaSession.TransportControlsCallback"></A>
+  MediaSession.TransportControlsCallback
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaSessionToken"></A>
+  MediaSessionToken
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="RemoteVolumeProvider"></A>
+  RemoteVolumeProvider
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="MediaController.PlaybackInfo"></A>
+  <nobr><A HREF="../../../../reference/android/media/session/MediaController.PlaybackInfo.html" target="_top"><code>MediaController.PlaybackInfo</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaSession.QueueItem"></A>
+  <nobr><A HREF="../../../../reference/android/media/session/MediaSession.QueueItem.html" target="_top"><code>MediaSession.QueueItem</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaSession.Token"></A>
+  <nobr><A HREF="../../../../reference/android/media/session/MediaSession.Token.html" target="_top"><code>MediaSession.Token</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaSessionManager.OnActiveSessionsChangedListener"></A>
+  <nobr><A HREF="../../../../reference/android/media/session/MediaSessionManager.OnActiveSessionsChangedListener.html" target="_top"><code><I>MediaSessionManager.OnActiveSessionsChangedListener</I></code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PlaybackState.Builder"></A>
+  <nobr><A HREF="../../../../reference/android/media/session/PlaybackState.Builder.html" target="_top"><code>PlaybackState.Builder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PlaybackState.CustomAction"></A>
+  <nobr><A HREF="../../../../reference/android/media/session/PlaybackState.CustomAction.html" target="_top"><code>PlaybackState.CustomAction</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PlaybackState.CustomAction.Builder"></A>
+  <nobr><A HREF="../../../../reference/android/media/session/PlaybackState.CustomAction.Builder.html" target="_top"><code>PlaybackState.CustomAction.<br>Builder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="MediaController"></A>
+  <nobr><A HREF="android.media.session.MediaController.html">MediaController</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaController.Callback"></A>
+  <nobr><A HREF="android.media.session.MediaController.Callback.html">MediaController.Callback</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaController.TransportControls"></A>
+  <nobr><A HREF="android.media.session.MediaController.TransportControls.html">MediaController.TransportControls</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaSession"></A>
+  <nobr><A HREF="android.media.session.MediaSession.html">MediaSession</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaSession.Callback"></A>
+  <nobr><A HREF="android.media.session.MediaSession.Callback.html">MediaSession.Callback</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaSessionManager"></A>
+  <nobr><A HREF="android.media.session.MediaSessionManager.html">MediaSessionManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PlaybackState"></A>
+  <nobr><A HREF="android.media.session.PlaybackState.html">PlaybackState</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.media.tv.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.media.tv.html
new file mode 100644
index 0000000..9d7d4dc
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.media.tv.html
@@ -0,0 +1,247 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.tv
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/tv/package-summary.html" target="_top"><font size="+1"><code>android.media.tv</code></font></A>
+</H2>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Classes" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TvInputManager.TvInputListener"></A>
+  TvInputManager.TvInputListener
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TvView.TvInputListener"></A>
+  TvView.TvInputListener
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="TvContentRating"></A>
+  <nobr><A HREF="../../../../reference/android/media/tv/TvContentRating.html" target="_top"><code>TvContentRating</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TvInputManager.TvInputCallback"></A>
+  <nobr><A HREF="../../../../reference/android/media/tv/TvInputManager.TvInputCallback.html" target="_top"><code>TvInputManager.TvInputCallback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TvInputService.HardwareSession"></A>
+  <nobr><A HREF="../../../../reference/android/media/tv/TvInputService.HardwareSession.html" target="_top"><code>TvInputService.HardwareSession</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TvTrackInfo"></A>
+  <nobr><A HREF="../../../../reference/android/media/tv/TvTrackInfo.html" target="_top"><code>TvTrackInfo</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TvTrackInfo.Builder"></A>
+  <nobr><A HREF="../../../../reference/android/media/tv/TvTrackInfo.Builder.html" target="_top"><code>TvTrackInfo.Builder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TvView.TvInputCallback"></A>
+  <nobr><A HREF="../../../../reference/android/media/tv/TvView.TvInputCallback.html" target="_top"><code>TvView.TvInputCallback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="TvContract"></A>
+  <nobr><A HREF="android.media.tv.TvContract.html">TvContract</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TvContract.Channels"></A>
+  <nobr><A HREF="android.media.tv.TvContract.Channels.html">TvContract.Channels</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TvContract.Programs"></A>
+  <nobr><A HREF="android.media.tv.TvContract.Programs.html">TvContract.Programs</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TvContract.Programs.Genres"></A>
+  <nobr><A HREF="android.media.tv.TvContract.Programs.Genres.html">TvContract.Programs.Genres</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TvInputInfo"></A>
+  <nobr><A HREF="android.media.tv.TvInputInfo.html">TvInputInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TvInputManager"></A>
+  <nobr><A HREF="android.media.tv.TvInputManager.html">TvInputManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TvInputService"></A>
+  <nobr><A HREF="android.media.tv.TvInputService.html">TvInputService</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TvInputService.Session"></A>
+  <nobr><A HREF="android.media.tv.TvInputService.Session.html">TvInputService.Session</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TvView"></A>
+  <nobr><A HREF="android.media.tv.TvView.html">TvView</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.net.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.net.html
new file mode 100644
index 0000000..3aafef9
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.net.html
@@ -0,0 +1,176 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/net/package-summary.html" target="_top"><font size="+1"><code>android.net</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="PskKeyManager"></A>
+  <nobr><A HREF="../../../../reference/android/net/PskKeyManager.html" target="_top"><code>PskKeyManager</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="ConnectivityManager"></A>
+  <nobr><A HREF="android.net.ConnectivityManager.html">ConnectivityManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="LinkAddress"></A>
+  <nobr><A HREF="android.net.LinkAddress.html">LinkAddress</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Network"></A>
+  <nobr><A HREF="android.net.Network.html">Network</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="NetworkCapabilities"></A>
+  <nobr><A HREF="android.net.NetworkCapabilities.html">NetworkCapabilities</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="NetworkRequest.Builder"></A>
+  <nobr><A HREF="android.net.NetworkRequest.Builder.html">NetworkRequest.Builder</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ProxyInfo"></A>
+  <nobr><A HREF="android.net.ProxyInfo.html">ProxyInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="VpnService.Builder"></A>
+  <nobr><A HREF="android.net.VpnService.Builder.html">VpnService.Builder</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.net.wifi.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.net.wifi.html
new file mode 100644
index 0000000..6bdf2c32
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.net.wifi.html
@@ -0,0 +1,148 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.net.wifi
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/net/wifi/package-summary.html" target="_top"><font size="+1"><code>android.net.wifi</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="WifiManager.WpsCallback"></A>
+  <nobr><A HREF="../../../../reference/android/net/wifi/WifiManager.WpsCallback.html" target="_top"><code>WifiManager.WpsCallback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="WifiConfiguration"></A>
+  <nobr><A HREF="android.net.wifi.WifiConfiguration.html">WifiConfiguration</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="WifiManager"></A>
+  <nobr><A HREF="android.net.wifi.WifiManager.html">WifiManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="WpsInfo"></A>
+  <nobr><A HREF="android.net.wifi.WpsInfo.html">WpsInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.nfc.cardemulation.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.nfc.cardemulation.html
new file mode 100644
index 0000000..2bbb818
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.nfc.cardemulation.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.nfc.cardemulation
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/nfc/cardemulation/package-summary.html" target="_top"><font size="+1"><code>android.nfc.cardemulation</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="CardEmulation"></A>
+  <nobr><A HREF="android.nfc.cardemulation.CardEmulation.html">CardEmulation</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.os.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.os.html
new file mode 100644
index 0000000..52ef4fe
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.os.html
@@ -0,0 +1,175 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="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="Build"></A>
+  <nobr><A HREF="android.os.Build.html">Build</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Bundle"></A>
+  <nobr><A HREF="android.os.Bundle.html">Bundle</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Message"></A>
+  <nobr><A HREF="android.os.Message.html">Message</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Parcel"></A>
+  <nobr><A HREF="android.os.Parcel.html">Parcel</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PowerManager"></A>
+  <nobr><A HREF="android.os.PowerManager.html">PowerManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PowerManager.WakeLock"></A>
+  <nobr><A HREF="android.os.PowerManager.WakeLock.html">PowerManager.WakeLock</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="UserManager"></A>
+  <nobr><A HREF="android.os.UserManager.html">UserManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Vibrator"></A>
+  <nobr><A HREF="android.os.Vibrator.html">Vibrator</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.printservice.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.printservice.html
new file mode 100644
index 0000000..97cf4d6
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.printservice.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.printservice
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/printservice/package-summary.html" target="_top"><font size="+1"><code>android.printservice</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="PrintService"></A>
+  <nobr><A HREF="android.printservice.PrintService.html">PrintService</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.provider.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.provider.html
new file mode 100644
index 0000000..df6ef0f
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.provider.html
@@ -0,0 +1,457 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="Removed"></a>
+<TABLE summary="Removed Classes" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.Preferences"></A>
+  ContactsContract.Preferences
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="ContactsContract.PinnedPositions"></A>
+  <nobr><A HREF="../../../../reference/android/provider/ContactsContract.PinnedPositions.html" target="_top"><code>ContactsContract.PinnedPositions</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.SearchSnippets"></A>
+  <nobr><A HREF="../../../../reference/android/provider/ContactsContract.SearchSnippets.html" target="_top"><code>ContactsContract.SearchSnippets</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="CallLog.Calls"></A>
+  <nobr><A HREF="android.provider.CallLog.Calls.html">CallLog.Calls</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract"></A>
+  <nobr><A HREF="android.provider.ContactsContract.html">ContactsContract</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Callable"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Callable.html">ContactsContract.CommonDataKinds.<br>Callable</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Contactables"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Contactables.html">ContactsContract.CommonDataKinds.<br>Contactables</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Email"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Email.html">ContactsContract.CommonDataKinds.<br>Email</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Event"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html">ContactsContract.CommonDataKinds.<br>Event</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.GroupMembership"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.GroupMembership.html">ContactsContract.CommonDataKinds.<br>GroupMembership</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Identity"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Identity.html">ContactsContract.CommonDataKinds.<br>Identity</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Im"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Im.html">ContactsContract.CommonDataKinds.<br>Im</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Nickname"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Nickname.html">ContactsContract.CommonDataKinds.<br>Nickname</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Note"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Note.html">ContactsContract.CommonDataKinds.<br>Note</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Organization"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Organization.html">ContactsContract.CommonDataKinds.<br>Organization</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Phone"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Phone.html">ContactsContract.CommonDataKinds.<br>Phone</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Photo"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Photo.html">ContactsContract.CommonDataKinds.<br>Photo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Relation"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Relation.html">ContactsContract.CommonDataKinds.<br>Relation</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.SipAddress"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.SipAddress.html">ContactsContract.CommonDataKinds.<br>SipAddress</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.StructuredName"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredName.html">ContactsContract.CommonDataKinds.<br>StructuredName</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.StructuredPostal"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.html">ContactsContract.CommonDataKinds.<br>StructuredPostal</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.CommonDataKinds.Website"></A>
+  <nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Website.html">ContactsContract.CommonDataKinds.<br>Website</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.ContactOptionsColumns"></A>
+  <nobr><A HREF="android.provider.ContactsContract.ContactOptionsColumns.html"><I>ContactsContract.ContactOptionsColumns</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.Contacts"></A>
+  <nobr><A HREF="android.provider.ContactsContract.Contacts.html">ContactsContract.Contacts</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.Contacts.Entity"></A>
+  <nobr><A HREF="android.provider.ContactsContract.Contacts.Entity.html">ContactsContract.Contacts.<br>Entity</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.Contacts.StreamItems"></A>
+  <nobr><A HREF="android.provider.ContactsContract.Contacts.StreamItems.html">ContactsContract.Contacts.<br>StreamItems</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.ContactsColumns"></A>
+  <nobr><A HREF="android.provider.ContactsContract.ContactsColumns.html"><I>ContactsContract.ContactsColumns</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.Data"></A>
+  <nobr><A HREF="android.provider.ContactsContract.Data.html">ContactsContract.Data</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.DataColumns"></A>
+  <nobr><A HREF="android.provider.ContactsContract.DataColumns.html"><I>ContactsContract.DataColumns</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.GroupsColumns"></A>
+  <nobr><A HREF="android.provider.ContactsContract.GroupsColumns.html"><I>ContactsContract.GroupsColumns</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.PhoneLookup"></A>
+  <nobr><A HREF="android.provider.ContactsContract.PhoneLookup.html">ContactsContract.PhoneLookup</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.QuickContact"></A>
+  <nobr><A HREF="android.provider.ContactsContract.QuickContact.html">ContactsContract.QuickContact</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.RawContacts.StreamItems"></A>
+  <nobr><A HREF="android.provider.ContactsContract.RawContacts.StreamItems.html">ContactsContract.RawContacts.<br>StreamItems</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.RawContactsColumns"></A>
+  <nobr><A HREF="android.provider.ContactsContract.RawContactsColumns.html"><I>ContactsContract.RawContactsColumns</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.StreamItemPhotos"></A>
+  <nobr><A HREF="android.provider.ContactsContract.StreamItemPhotos.html">ContactsContract.StreamItemPhotos</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.StreamItemPhotosColumns"></A>
+  <nobr><A HREF="android.provider.ContactsContract.StreamItemPhotosColumns.html"><I>ContactsContract.StreamItemPhotosColumns</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.StreamItems"></A>
+  <nobr><A HREF="android.provider.ContactsContract.StreamItems.html">ContactsContract.StreamItems</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.StreamItems.StreamItemPhotos"></A>
+  <nobr><A HREF="android.provider.ContactsContract.StreamItems.StreamItemPhotos.html">ContactsContract.StreamItems.<br>StreamItemPhotos</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ContactsContract.StreamItemsColumns"></A>
+  <nobr><A HREF="android.provider.ContactsContract.StreamItemsColumns.html"><I>ContactsContract.StreamItemsColumns</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MediaStore.Audio.Radio"></A>
+  <nobr><A HREF="android.provider.MediaStore.Audio.Radio.html">MediaStore.Audio.Radio</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Settings.Secure"></A>
+  <nobr><A HREF="android.provider.Settings.Secure.html">Settings.Secure</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Telephony.BaseMmsColumns"></A>
+  <nobr><A HREF="android.provider.Telephony.BaseMmsColumns.html"><I>Telephony.BaseMmsColumns</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Telephony.TextBasedSmsColumns"></A>
+  <nobr><A HREF="android.provider.Telephony.TextBasedSmsColumns.html"><I>Telephony.TextBasedSmsColumns</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Telephony.ThreadsColumns"></A>
+  <nobr><A HREF="android.provider.Telephony.ThreadsColumns.html"><I>Telephony.ThreadsColumns</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="VoicemailContract.Voicemails"></A>
+  <nobr><A HREF="android.provider.VoicemailContract.Voicemails.html">VoicemailContract.Voicemails</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.renderscript.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.renderscript.html
new file mode 100644
index 0000000..517cef7
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.renderscript.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.renderscript
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/renderscript/package-summary.html" target="_top"><font size="+1"><code>android.renderscript</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="ScriptC"></A>
+  <nobr><A HREF="android.renderscript.ScriptC.html">ScriptC</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.service.dreams.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.service.dreams.html
new file mode 100644
index 0000000..171034e
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.service.dreams.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.service.dreams
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/service/dreams/package-summary.html" target="_top"><font size="+1"><code>android.service.dreams</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="DreamService"></A>
+  <nobr><A HREF="android.service.dreams.DreamService.html">DreamService</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.service.notification.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.service.notification.html
new file mode 100644
index 0000000..10d87c7
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.service.notification.html
@@ -0,0 +1,140 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.service.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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/service/notification/package-summary.html" target="_top"><font size="+1"><code>android.service.notification</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="NotificationListenerService"></A>
+  <nobr><A HREF="android.service.notification.NotificationListenerService.html">NotificationListenerService</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="NotificationListenerService.Ranking"></A>
+  <nobr><A HREF="android.service.notification.NotificationListenerService.Ranking.html">NotificationListenerService.<br>Ranking</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="NotificationListenerService.RankingMap"></A>
+  <nobr><A HREF="android.service.notification.NotificationListenerService.RankingMap.html">NotificationListenerService.<br>RankingMap</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="StatusBarNotification"></A>
+  <nobr><A HREF="android.service.notification.StatusBarNotification.html">StatusBarNotification</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.service.voice.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.service.voice.html
new file mode 100644
index 0000000..9da322c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.service.voice.html
@@ -0,0 +1,184 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.service.voice
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/service/voice/package-summary.html" target="_top"><font size="+1"><code>android.service.voice</code></font></A>
+</H2>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Classes" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="VoiceInteractionSession.Caller"></A>
+  VoiceInteractionSession.<br>Caller
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="VoiceInteractionSession.Insets"></A>
+  VoiceInteractionSession.<br>Insets
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="VoiceInteractionSession.Request"></A>
+  VoiceInteractionSession.<br>Request
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="AlwaysOnHotwordDetector"></A>
+  <nobr><A HREF="../../../../reference/android/service/voice/AlwaysOnHotwordDetector.html" target="_top"><code>AlwaysOnHotwordDetector</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AlwaysOnHotwordDetector.Callback"></A>
+  <nobr><A HREF="../../../../reference/android/service/voice/AlwaysOnHotwordDetector.Callback.html" target="_top"><code>AlwaysOnHotwordDetector.<br>Callback</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AlwaysOnHotwordDetector.EventPayload"></A>
+  <nobr><A HREF="../../../../reference/android/service/voice/AlwaysOnHotwordDetector.EventPayload.html" target="_top"><code>AlwaysOnHotwordDetector.<br>EventPayload</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="VoiceInteractionService"></A>
+  <nobr><A HREF="android.service.voice.VoiceInteractionService.html">VoiceInteractionService</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="VoiceInteractionSession"></A>
+  <nobr><A HREF="android.service.voice.VoiceInteractionSession.html">VoiceInteractionSession</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.service.wallpaper.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.service.wallpaper.html
new file mode 100644
index 0000000..aadbebc
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.service.wallpaper.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.service.wallpaper
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/service/wallpaper/package-summary.html" target="_top"><font size="+1"><code>android.service.wallpaper</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="WallpaperService.Engine"></A>
+  <nobr><A HREF="android.service.wallpaper.WallpaperService.Engine.html">WallpaperService.Engine</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.speech.tts.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.speech.tts.html
new file mode 100644
index 0000000..b2be3c3
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.speech.tts.html
@@ -0,0 +1,169 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.speech.tts
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/speech/tts/package-summary.html" target="_top"><font size="+1"><code>android.speech.tts</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="Voice"></A>
+  <nobr><A HREF="../../../../reference/android/speech/tts/Voice.html" target="_top"><code>Voice</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="SynthesisCallback"></A>
+  <nobr><A HREF="android.speech.tts.SynthesisCallback.html"><I>SynthesisCallback</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="SynthesisRequest"></A>
+  <nobr><A HREF="android.speech.tts.SynthesisRequest.html">SynthesisRequest</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TextToSpeech"></A>
+  <nobr><A HREF="android.speech.tts.TextToSpeech.html">TextToSpeech</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TextToSpeech.Engine"></A>
+  <nobr><A HREF="android.speech.tts.TextToSpeech.Engine.html">TextToSpeech.Engine</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TextToSpeechService"></A>
+  <nobr><A HREF="android.speech.tts.TextToSpeechService.html">TextToSpeechService</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="UtteranceProgressListener"></A>
+  <nobr><A HREF="android.speech.tts.UtteranceProgressListener.html">UtteranceProgressListener</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.system.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.system.html
new file mode 100644
index 0000000..9ee9411
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.system.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/system/package-summary.html" target="_top"><font size="+1"><code>android.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="OsConstants"></A>
+  <nobr><A HREF="android.system.OsConstants.html">OsConstants</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.telephony.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.telephony.html
new file mode 100644
index 0000000..8523633
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.telephony.html
@@ -0,0 +1,141 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="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="IccOpenLogicalChannelResponse"></A>
+  <nobr><A HREF="../../../../reference/android/telephony/IccOpenLogicalChannelResponse.html" target="_top"><code>IccOpenLogicalChannelResponse</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="SmsManager"></A>
+  <nobr><A HREF="android.telephony.SmsManager.html">SmsManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.test.mock.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.test.mock.html
new file mode 100644
index 0000000..a7f9be0
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.test.mock.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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>&nbsp;</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>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.text.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.text.html
new file mode 100644
index 0000000..d85b73c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.text.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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" 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="InputFilter.LengthFilter"></A>
+  <nobr><A HREF="android.text.InputFilter.LengthFilter.html">InputFilter.LengthFilter</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="SpannableStringBuilder"></A>
+  <nobr><A HREF="android.text.SpannableStringBuilder.html">SpannableStringBuilder</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.text.style.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.text.style.html
new file mode 100644
index 0000000..27fbe73
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.text.style.html
@@ -0,0 +1,224 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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 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="TtsSpan"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.html" target="_top"><code>TtsSpan</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.Builder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.Builder.html" target="_top"><code>TtsSpan.Builder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.CardinalBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.CardinalBuilder.html" target="_top"><code>TtsSpan.CardinalBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.DateBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.DateBuilder.html" target="_top"><code>TtsSpan.DateBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.DecimalBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.DecimalBuilder.html" target="_top"><code>TtsSpan.DecimalBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.DigitsBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.DigitsBuilder.html" target="_top"><code>TtsSpan.DigitsBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.ElectronicBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.ElectronicBuilder.html" target="_top"><code>TtsSpan.ElectronicBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.FractionBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.FractionBuilder.html" target="_top"><code>TtsSpan.FractionBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.MeasureBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.MeasureBuilder.html" target="_top"><code>TtsSpan.MeasureBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.MoneyBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.MoneyBuilder.html" target="_top"><code>TtsSpan.MoneyBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.OrdinalBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.OrdinalBuilder.html" target="_top"><code>TtsSpan.OrdinalBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.SemioticClassBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.SemioticClassBuilder.html" target="_top"><code>TtsSpan.SemioticClassBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.TelephoneBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.TelephoneBuilder.html" target="_top"><code>TtsSpan.TelephoneBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.TextBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.TextBuilder.html" target="_top"><code>TtsSpan.TextBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.TimeBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.TimeBuilder.html" target="_top"><code>TtsSpan.TimeBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TtsSpan.VerbatimBuilder"></A>
+  <nobr><A HREF="../../../../reference/android/text/style/TtsSpan.VerbatimBuilder.html" target="_top"><code>TtsSpan.VerbatimBuilder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.transition.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.transition.html
new file mode 100644
index 0000000..917489c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.transition.html
@@ -0,0 +1,233 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.transition
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/transition/package-summary.html" target="_top"><font size="+1"><code>android.transition</code></font></A>
+</H2>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Classes" WIDTH="100%">
+<TR>
+  <TH VALIGN="TOP" COLSPAN=2>Removed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="MoveImage"></A>
+  MoveImage
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="ArcMotion"></A>
+  <nobr><A HREF="../../../../reference/android/transition/ArcMotion.html" target="_top"><code>ArcMotion</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ChangeImageTransform"></A>
+  <nobr><A HREF="../../../../reference/android/transition/ChangeImageTransform.html" target="_top"><code>ChangeImageTransform</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PathMotion"></A>
+  <nobr><A HREF="../../../../reference/android/transition/PathMotion.html" target="_top"><code>PathMotion</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PatternPathMotion"></A>
+  <nobr><A HREF="../../../../reference/android/transition/PatternPathMotion.html" target="_top"><code>PatternPathMotion</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="AutoTransition"></A>
+  <nobr><A HREF="android.transition.AutoTransition.html">AutoTransition</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ChangeBounds"></A>
+  <nobr><A HREF="android.transition.ChangeBounds.html">ChangeBounds</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ChangeClipBounds"></A>
+  <nobr><A HREF="android.transition.ChangeClipBounds.html">ChangeClipBounds</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ChangeTransform"></A>
+  <nobr><A HREF="android.transition.ChangeTransform.html">ChangeTransform</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Explode"></A>
+  <nobr><A HREF="android.transition.Explode.html">Explode</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Fade"></A>
+  <nobr><A HREF="android.transition.Fade.html">Fade</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Slide"></A>
+  <nobr><A HREF="android.transition.Slide.html">Slide</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Transition"></A>
+  <nobr><A HREF="android.transition.Transition.html">Transition</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TransitionSet"></A>
+  <nobr><A HREF="android.transition.TransitionSet.html">TransitionSet</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Visibility"></A>
+  <nobr><A HREF="android.transition.Visibility.html">Visibility</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.util.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.util.html
new file mode 100644
index 0000000..0c4fb16
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.util.html
@@ -0,0 +1,154 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="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="ArrayMap"></A>
+  <nobr><A HREF="android.util.ArrayMap.html">ArrayMap</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="DisplayMetrics"></A>
+  <nobr><A HREF="android.util.DisplayMetrics.html">DisplayMetrics</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Range"></A>
+  <nobr><A HREF="android.util.Range.html">Range</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Rational"></A>
+  <nobr><A HREF="android.util.Rational.html">Rational</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Size"></A>
+  <nobr><A HREF="android.util.Size.html">Size</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="SizeF"></A>
+  <nobr><A HREF="android.util.SizeF.html">SizeF</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.view.accessibility.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.view.accessibility.html
new file mode 100644
index 0000000..e860e8b
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.view.accessibility.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.accessibility
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/accessibility/package-summary.html" target="_top"><font size="+1"><code>android.view.accessibility</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="AccessibilityNodeInfo"></A>
+  <nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html">AccessibilityNodeInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AccessibilityWindowInfo"></A>
+  <nobr><A HREF="android.view.accessibility.AccessibilityWindowInfo.html">AccessibilityWindowInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.view.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.view.html
new file mode 100644
index 0000000..088c5bd
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.view.html
@@ -0,0 +1,204 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="ViewOutlineProvider"></A>
+  <nobr><A HREF="../../../../reference/android/view/ViewOutlineProvider.html" target="_top"><code>ViewOutlineProvider</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="Display"></A>
+  <nobr><A HREF="android.view.Display.html">Display</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="FrameStats"></A>
+  <nobr><A HREF="android.view.FrameStats.html">FrameStats</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ViewAnimationUtils"></A>
+  <nobr><A HREF="android.view.ViewAnimationUtils.html">ViewAnimationUtils</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ViewGroup"></A>
+  <nobr><A HREF="android.view.ViewGroup.html">ViewGroup</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ViewParent"></A>
+  <nobr><A HREF="android.view.ViewParent.html"><I>ViewParent</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Window"></A>
+  <nobr><A HREF="android.view.Window.html">Window</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="WindowInsets"></A>
+  <nobr><A HREF="android.view.WindowInsets.html">WindowInsets</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.view.inputmethod.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.view.inputmethod.html
new file mode 100644
index 0000000..be81287
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.view.inputmethod.html
@@ -0,0 +1,154 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.inputmethod
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/inputmethod/package-summary.html" target="_top"><font size="+1"><code>android.view.inputmethod</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="BaseInputConnection"></A>
+  <nobr><A HREF="android.view.inputmethod.BaseInputConnection.html">BaseInputConnection</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CursorAnchorInfo"></A>
+  <nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.html">CursorAnchorInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CursorAnchorInfo.Builder"></A>
+  <nobr><A HREF="android.view.inputmethod.CursorAnchorInfo.Builder.html">CursorAnchorInfo.Builder</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="InputConnection"></A>
+  <nobr><A HREF="android.view.inputmethod.InputConnection.html"><I>InputConnection</I></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="InputConnectionWrapper"></A>
+  <nobr><A HREF="android.view.inputmethod.InputConnectionWrapper.html">InputConnectionWrapper</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="InputMethodManager"></A>
+  <nobr><A HREF="android.view.inputmethod.InputMethodManager.html">InputMethodManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.view.textservice.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.view.textservice.html
new file mode 100644
index 0000000..b698461
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.view.textservice.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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.textservice
+</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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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/textservice/package-summary.html" target="_top"><font size="+1"><code>android.view.textservice</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="TextInfo"></A>
+  <nobr><A HREF="android.view.textservice.TextInfo.html">TextInfo</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.webkit.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.webkit.html
new file mode 100644
index 0000000..c6e787b
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.webkit.html
@@ -0,0 +1,190 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="WebChromeClient.FileChooserParams"></A>
+  <nobr><A HREF="../../../../reference/android/webkit/WebChromeClient.FileChooserParams.html" target="_top"><code>WebChromeClient.FileChooserParams</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="WebResourceRequest"></A>
+  <nobr><A HREF="../../../../reference/android/webkit/WebResourceRequest.html" target="_top"><code><I>WebResourceRequest</I></code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="CookieManager"></A>
+  <nobr><A HREF="android.webkit.CookieManager.html">CookieManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CookieSyncManager"></A>
+  <nobr><A HREF="android.webkit.CookieSyncManager.html">CookieSyncManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PermissionRequest"></A>
+  <nobr><A HREF="android.webkit.PermissionRequest.html">PermissionRequest</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="WebResourceResponse"></A>
+  <nobr><A HREF="android.webkit.WebResourceResponse.html">WebResourceResponse</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="WebSyncManager"></A>
+  <nobr><A HREF="android.webkit.WebSyncManager.html">WebSyncManager</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</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>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_android.widget.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.widget.html
new file mode 100644
index 0000000..4b9de1c
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_android.widget.html
@@ -0,0 +1,224 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="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="AbsListView"></A>
+  <nobr><A HREF="android.widget.AbsListView.html">AbsListView</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AbsSeekBar"></A>
+  <nobr><A HREF="android.widget.AbsSeekBar.html">AbsSeekBar</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ActionMenuView"></A>
+  <nobr><A HREF="android.widget.ActionMenuView.html">ActionMenuView</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CheckedTextView"></A>
+  <nobr><A HREF="android.widget.CheckedTextView.html">CheckedTextView</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="CompoundButton"></A>
+  <nobr><A HREF="android.widget.CompoundButton.html">CompoundButton</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="DatePicker"></A>
+  <nobr><A HREF="android.widget.DatePicker.html">DatePicker</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="EdgeEffect"></A>
+  <nobr><A HREF="android.widget.EdgeEffect.html">EdgeEffect</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="FrameLayout"></A>
+  <nobr><A HREF="android.widget.FrameLayout.html">FrameLayout</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="GridLayout"></A>
+  <nobr><A HREF="android.widget.GridLayout.html">GridLayout</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ImageView"></A>
+  <nobr><A HREF="android.widget.ImageView.html">ImageView</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="PopupWindow"></A>
+  <nobr><A HREF="android.widget.PopupWindow.html">PopupWindow</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ProgressBar"></A>
+  <nobr><A HREF="android.widget.ProgressBar.html">ProgressBar</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Switch"></A>
+  <nobr><A HREF="android.widget.Switch.html">Switch</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TextView"></A>
+  <nobr><A HREF="android.widget.TextView.html">TextView</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Toolbar"></A>
+  <nobr><A HREF="android.widget.Toolbar.html">Toolbar</A></nobr>
+  </TD>
+  <TD>&nbsp;</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>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_java.util.concurrent.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_java.util.concurrent.html
new file mode 100644
index 0000000..edf3993
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_java.util.concurrent.html
@@ -0,0 +1,211 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="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="ConcurrentLinkedDeque"></A>
+  <nobr><A HREF="../../../../reference/java/util/concurrent/ConcurrentLinkedDeque.html" target="_top"><code>ConcurrentLinkedDeque</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ForkJoinPool"></A>
+  <nobr><A HREF="../../../../reference/java/util/concurrent/ForkJoinPool.html" target="_top"><code>ForkJoinPool</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ForkJoinPool.ForkJoinWorkerThreadFactory"></A>
+  <nobr><A HREF="../../../../reference/java/util/concurrent/ForkJoinPool.ForkJoinWorkerThreadFactory.html" target="_top"><code><I>ForkJoinPool.ForkJoinWorkerThreadFactory</I></code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ForkJoinPool.ManagedBlocker"></A>
+  <nobr><A HREF="../../../../reference/java/util/concurrent/ForkJoinPool.ManagedBlocker.html" target="_top"><code><I>ForkJoinPool.ManagedBlocker</I></code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ForkJoinTask"></A>
+  <nobr><A HREF="../../../../reference/java/util/concurrent/ForkJoinTask.html" target="_top"><code>ForkJoinTask</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ForkJoinWorkerThread"></A>
+  <nobr><A HREF="../../../../reference/java/util/concurrent/ForkJoinWorkerThread.html" target="_top"><code>ForkJoinWorkerThread</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="LinkedTransferQueue"></A>
+  <nobr><A HREF="../../../../reference/java/util/concurrent/LinkedTransferQueue.html" target="_top"><code>LinkedTransferQueue</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Phaser"></A>
+  <nobr><A HREF="../../../../reference/java/util/concurrent/Phaser.html" target="_top"><code>Phaser</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="RecursiveAction"></A>
+  <nobr><A HREF="../../../../reference/java/util/concurrent/RecursiveAction.html" target="_top"><code>RecursiveAction</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="RecursiveTask"></A>
+  <nobr><A HREF="../../../../reference/java/util/concurrent/RecursiveTask.html" target="_top"><code>RecursiveTask</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="ThreadLocalRandom"></A>
+  <nobr><A HREF="../../../../reference/java/util/concurrent/ThreadLocalRandom.html" target="_top"><code>ThreadLocalRandom</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="TransferQueue"></A>
+  <nobr><A HREF="../../../../reference/java/util/concurrent/TransferQueue.html" target="_top"><code><I>TransferQueue</I></code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="ScheduledThreadPoolExecutor"></A>
+  <nobr><A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html">ScheduledThreadPoolExecutor</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_java.util.concurrent.locks.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_java.util.concurrent.locks.html
new file mode 100644
index 0000000..5d9bf27
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_java.util.concurrent.locks.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="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="AbstractQueuedLongSynchronizer"></A>
+  <nobr><A HREF="java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html">AbstractQueuedLongSynchronizer</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="AbstractQueuedSynchronizer"></A>
+  <nobr><A HREF="java.util.concurrent.locks.AbstractQueuedSynchronizer.html">AbstractQueuedSynchronizer</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/changes/pkg_java.util.html b/docs/html/sdk/api_diff/preview-21/changes/pkg_java.util.html
new file mode 100644
index 0000000..e4c04de
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/changes/pkg_java.util.html
@@ -0,0 +1,141 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//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">
+<!-- &nbsp;<a href="#">English</a> | -->
+<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//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">21</td>
+      </tr>
+      <tr>
+        <td class="diffspec">From Level:</td>
+        <td class="diffvalueold">l-preview</td>
+      </tr>
+      <tr>
+        <td class="diffspec">Generated</td>
+        <td class="diffvalue">2014.10.15 14:58</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="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="IllformedLocaleException"></A>
+  <nobr><A HREF="../../../../reference/java/util/IllformedLocaleException.html" target="_top"><code>IllformedLocaleException</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+  <TD VALIGN="TOP" WIDTH="25%">
+  <A NAME="Locale.Builder"></A>
+  <nobr><A HREF="../../../../reference/java/util/Locale.Builder.html" target="_top"><code>Locale.Builder</code></A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+<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="Locale"></A>
+  <nobr><A HREF="java.util.Locale.html">Locale</A></nobr>
+  </TD>
+  <TD>&nbsp;</TD>
+</TR>
+</TABLE>
+&nbsp;
+      </div>	
+      <div id="footer">
+        <div id="copyright">
+        Except as noted, this content is licensed under 
+        <a href="//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="//www.android.com/terms.html">Site Terms of Service</a> -
+        <a href="//www.android.com/privacy.html">Privacy Policy</a> -
+        <a href="//www.android.com/branding.html">Brand Guidelines</a>
+      </p>
+    </div>
+    </div> <!-- end footer -->
+    </div><!-- end doc-content -->
+    </div> <!-- end body-content --> 
+<script src="//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/preview-21/missingSinces.txt b/docs/html/sdk/api_diff/preview-21/missingSinces.txt
new file mode 100644
index 0000000..4061cb8
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/missingSinces.txt
@@ -0,0 +1,1315 @@
+NO DOC BLOCK: android.bluetooth.le.AdvertiseData Class
+NO DOC BLOCK: android.bluetooth.le.AdvertiseData.Builder Class
+NO DOC BLOCK: android.app.AlarmManager.AlarmClockInfo Class
+NO DOC BLOCK: android.service.voice.AlwaysOnHotwordDetector Class
+NO DOC BLOCK: android.service.voice.AlwaysOnHotwordDetector.Callback Class
+NO DOC BLOCK: android.service.voice.AlwaysOnHotwordDetector.EventPayload Class
+NO DOC BLOCK: android.graphics.drawable.AnimatedVectorDrawable Class
+NO DOC BLOCK: android.transition.ArcMotion Class
+NO DOC BLOCK: android.media.AudioAttributes Class
+NO DOC BLOCK: android.media.AudioAttributes.Builder Class
+NO DOC BLOCK: android.media.AudioFormat.Builder Class
+NO DOC BLOCK: android.hardware.camera2.params.BlackLevelPattern Class
+NO DOC BLOCK: android.hardware.camera2.CameraCaptureSession.CaptureCallback Class
+NO DOC BLOCK: android.hardware.camera2.CameraCaptureSession.StateCallback Class
+NO DOC BLOCK: android.hardware.camera2.CameraDevice.StateCallback Class
+NO DOC BLOCK: android.hardware.camera2.CameraManager.AvailabilityCallback Class
+NO DOC BLOCK: android.transition.ChangeImageTransform Class
+NO DOC BLOCK: java.util.concurrent.ConcurrentLinkedDeque Class
+NO DOC BLOCK: android.provider.ContactsContract.PinnedPositions Class
+NO DOC BLOCK: android.provider.ContactsContract.SearchSnippets Class
+NO DOC BLOCK: android.content.pm.FeatureGroupInfo Class
+NO DOC BLOCK: java.util.concurrent.ForkJoinPool Class
+NO DOC BLOCK: java.util.concurrent.ForkJoinPool.ForkJoinWorkerThreadFactory Interface
+NO DOC BLOCK: java.util.concurrent.ForkJoinPool.ManagedBlocker Interface
+NO DOC BLOCK: java.util.concurrent.ForkJoinTask Class
+NO DOC BLOCK: java.util.concurrent.ForkJoinWorkerThread Class
+NO DOC BLOCK: android.telephony.IccOpenLogicalChannelResponse Class
+NO DOC BLOCK: java.util.IllformedLocaleException Class
+NO DOC BLOCK: android.content.pm.LauncherApps.Callback Class
+NO DOC BLOCK: java.util.concurrent.LinkedTransferQueue Class
+NO DOC BLOCK: java.util.Locale.Builder Class
+NO DOC BLOCK: android.media.MediaCodec.Callback Class
+NO DOC BLOCK: android.media.MediaCodec.CodecException Class
+NO DOC BLOCK: android.media.MediaCodecInfo.AudioCapabilities Class
+NO DOC BLOCK: android.media.MediaCodecInfo.EncoderCapabilities Class
+NO DOC BLOCK: android.media.MediaCodecInfo.VideoCapabilities Class
+NO DOC BLOCK: android.media.session.MediaController.PlaybackInfo Class
+NO DOC BLOCK: android.media.MediaDescription Class
+NO DOC BLOCK: android.media.MediaDescription.Builder Class
+NO DOC BLOCK: android.media.MediaDrm.MediaDrmStateException Class
+NO DOC BLOCK: android.media.session.MediaSession.QueueItem Class
+NO DOC BLOCK: android.media.session.MediaSession.Token Class
+NO DOC BLOCK: android.media.session.MediaSessionManager.OnActiveSessionsChangedListener Interface
+NO DOC BLOCK: android.content.pm.PackageInstaller Class
+NO DOC BLOCK: android.content.pm.PackageInstaller.Session Class
+NO DOC BLOCK: android.content.pm.PackageInstaller.SessionCallback Class
+NO DOC BLOCK: android.content.pm.PackageInstaller.SessionInfo Class
+NO DOC BLOCK: android.content.pm.PackageInstaller.SessionParams Class
+NO DOC BLOCK: android.transition.PathMotion Class
+NO DOC BLOCK: android.transition.PatternPathMotion Class
+NO DOC BLOCK: java.util.concurrent.Phaser Class
+NO DOC BLOCK: android.media.session.PlaybackState.Builder Class
+NO DOC BLOCK: android.media.session.PlaybackState.CustomAction Class
+NO DOC BLOCK: android.media.session.PlaybackState.CustomAction.Builder Class
+NO DOC BLOCK: android.net.PskKeyManager Class
+NO DOC BLOCK: java.util.concurrent.RecursiveAction Class
+NO DOC BLOCK: java.util.concurrent.RecursiveTask Class
+NO DOC BLOCK: android.content.RestrictionsManager Class
+NO DOC BLOCK: android.app.SharedElementCallback Class
+NO DOC BLOCK: android.media.SoundPool.Builder Class
+NO DOC BLOCK: java.util.concurrent.ThreadLocalRandom Class
+NO DOC BLOCK: java.util.concurrent.TransferQueue Interface
+NO DOC BLOCK: android.text.style.TtsSpan Class
+NO DOC BLOCK: android.text.style.TtsSpan.Builder Class
+NO DOC BLOCK: android.text.style.TtsSpan.CardinalBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.DateBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.DecimalBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.DigitsBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.ElectronicBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.FractionBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.MeasureBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.MoneyBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.OrdinalBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.SemioticClassBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.TelephoneBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.TextBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.TimeBuilder Class
+NO DOC BLOCK: android.text.style.TtsSpan.VerbatimBuilder Class
+NO DOC BLOCK: android.media.tv.TvContentRating Class
+NO DOC BLOCK: android.media.tv.TvInputManager.TvInputCallback Class
+NO DOC BLOCK: android.media.tv.TvInputService.HardwareSession Class
+NO DOC BLOCK: android.media.tv.TvTrackInfo Class
+NO DOC BLOCK: android.media.tv.TvTrackInfo.Builder Class
+NO DOC BLOCK: android.media.tv.TvView.TvInputCallback Class
+NO DOC BLOCK: android.graphics.drawable.VectorDrawable Class
+NO DOC BLOCK: android.view.ViewOutlineProvider Class
+NO DOC BLOCK: android.hardware.display.VirtualDisplay.Callback Class
+NO DOC BLOCK: android.speech.tts.Voice Class
+NO DOC BLOCK: android.media.VolumeProvider Class
+NO DOC BLOCK: android.webkit.WebChromeClient.FileChooserParams Class
+NO DOC BLOCK: android.webkit.WebResourceRequest Interface
+NO DOC BLOCK: android.net.wifi.WifiManager.WpsCallback Class
+NO DOC BLOCK: android.media.AudioTrack Constructor (android.media.AudioAttributes, android.media.AudioFormat, int, int, int)
+NO DOC BLOCK: android.transition.AutoTransition Constructor (android.content.Context, android.util.AttributeSet)
+NO DOC BLOCK: android.transition.ChangeBounds Constructor (android.content.Context, android.util.AttributeSet)
+NO DOC BLOCK: android.transition.ChangeClipBounds Constructor (android.content.Context, android.util.AttributeSet)
+NO DOC BLOCK: android.transition.ChangeTransform Constructor (android.content.Context, android.util.AttributeSet)
+NO DOC BLOCK: android.transition.Explode Constructor (android.content.Context, android.util.AttributeSet)
+NO DOC BLOCK: android.transition.Fade Constructor (android.content.Context, android.util.AttributeSet)
+NO DOC BLOCK: android.media.MediaCodecList Constructor (int)
+NO DOC BLOCK: android.media.session.MediaController Constructor (android.content.Context, android.media.session.MediaSession.Token)
+NO DOC BLOCK: android.media.session.MediaSession Constructor (android.content.Context, java.lang.String)
+NO DOC BLOCK: android.service.notification.NotificationListenerService.Ranking Constructor ()
+NO DOC BLOCK: android.webkit.PermissionRequest Constructor ()
+NO DOC BLOCK: android.content.RestrictionEntry Constructor (int, java.lang.String)
+NO DOC BLOCK: android.content.RestrictionEntry Constructor (java.lang.String, int)
+NO DOC BLOCK: android.bluetooth.le.ScanResult Constructor (android.bluetooth.BluetoothDevice, android.bluetooth.le.ScanRecord, int, long)
+NO DOC BLOCK: android.renderscript.ScriptC Constructor (android.renderscript.RenderScript, java.lang.String, byte[], byte[])
+NO DOC BLOCK: android.renderscript.ScriptC Constructor (long, android.renderscript.RenderScript)
+NO DOC BLOCK: android.transition.Slide Constructor (android.content.Context, android.util.AttributeSet)
+NO DOC BLOCK: android.speech.tts.SynthesisRequest Constructor (java.lang.CharSequence, android.os.Bundle)
+NO DOC BLOCK: android.view.textservice.TextInfo Constructor (java.lang.CharSequence, int, int, int, int)
+NO DOC BLOCK: android.transition.Transition Constructor (android.content.Context, android.util.AttributeSet)
+NO DOC BLOCK: android.transition.TransitionSet Constructor (android.content.Context, android.util.AttributeSet)
+NO DOC BLOCK: android.transition.Visibility Constructor (android.content.Context, android.util.AttributeSet)
+NO DOC BLOCK: android.webkit.WebResourceResponse Constructor (java.lang.String, java.lang.String, int, java.lang.String, java.util.Map<java.lang.String, java.lang.String>, java.io.InputStream)
+NO DOC BLOCK: android.webkit.CookieManager Method acceptThirdPartyCookies(android.webkit.WebView)
+NO DOC BLOCK: android.net.VpnService.Builder Method addAllowedApplication(java.lang.String)
+NO DOC BLOCK: android.app.ActivityManager Method addAppTask(android.app.Activity, android.content.Intent, android.app.ActivityManager.TaskDescription, android.graphics.Bitmap)
+NO DOC BLOCK: android.graphics.Path Method addArc(float, float, float, float, float, float)
+NO DOC BLOCK: android.view.inputmethod.CursorAnchorInfo.Builder Method addCharacterBounds(int, float, float, float, float, int)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method addCrossProfileIntentFilter(android.content.ComponentName, android.content.IntentFilter, int)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method addCrossProfileWidgetProvider(android.content.ComponentName, java.lang.String)
+NO DOC BLOCK: android.net.ConnectivityManager Method addDefaultNetworkActiveListener(android.net.ConnectivityManager.OnNetworkActiveListener)
+NO DOC BLOCK: android.net.VpnService.Builder Method addDisallowedApplication(java.lang.String)
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method addEarcon(java.lang.String, java.io.File)
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method addEarcon(java.lang.String, java.lang.String)
+NO DOC BLOCK: android.media.session.MediaSessionManager Method addOnActiveSessionsChangedListener(android.media.session.MediaSessionManager.OnActiveSessionsChangedListener, android.content.ComponentName)
+NO DOC BLOCK: android.media.session.MediaSessionManager Method addOnActiveSessionsChangedListener(android.media.session.MediaSessionManager.OnActiveSessionsChangedListener, android.content.ComponentName, android.os.Handler)
+NO DOC BLOCK: android.graphics.Path Method addRoundRect(float, float, float, float, float, float, android.graphics.Path.Direction)
+NO DOC BLOCK: android.graphics.Path Method addRoundRect(float, float, float, float, float[], android.graphics.Path.Direction)
+NO DOC BLOCK: android.app.FragmentTransaction Method addSharedElement(android.view.View, java.lang.String)
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method addSpeech(java.lang.CharSequence, java.io.File)
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method addSpeech(java.lang.CharSequence, java.lang.String, int)
+NO DOC BLOCK: android.media.session.MediaController Method adjustVolume(int, int)
+NO DOC BLOCK: android.net.VpnService.Builder Method allowBypass()
+NO DOC BLOCK: android.net.VpnService.Builder Method allowFamily(int)
+NO DOC BLOCK: android.text.SpannableStringBuilder Method append(java.lang.CharSequence, java.lang.Object, int)
+NO DOC BLOCK: android.graphics.Path Method arcTo(float, float, float, float, float, float, boolean)
+NO DOC BLOCK: android.appwidget.AppWidgetManager Method bindAppWidgetIdIfAllowed(int, android.os.UserHandle, android.content.ComponentName, android.os.Bundle)
+NO DOC BLOCK: android.net.Network Method bindSocket(java.net.Socket)
+NO DOC BLOCK: android.media.tv.TvContract Method buildChannelsUriForInput(java.lang.String)
+NO DOC BLOCK: android.media.tv.TvContract Method buildChannelUriForPassthroughInput(java.lang.String)
+NO DOC BLOCK: android.media.tv.TvContract Method buildInputId(android.content.ComponentName)
+NO DOC BLOCK: android.media.tv.TvContract Method buildProgramsUriForChannel(long)
+NO DOC BLOCK: android.media.tv.TvContract Method buildProgramsUriForChannel(long, long, long)
+NO DOC BLOCK: android.net.wifi.WifiManager Method cancelWps(android.net.wifi.WifiManager.WpsCallback)
+NO DOC BLOCK: android.media.audiofx.Virtualizer Method canVirtualize(int, int)
+NO DOC BLOCK: android.util.Range Method clamp(T)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method clearCrossProfileIntentFilters(android.content.ComponentName)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method clearDeviceOwnerApp(java.lang.String)
+NO DOC BLOCK: android.view.View Method computeSystemWindowInsets(android.view.WindowInsets, android.graphics.Rect)
+NO DOC BLOCK: android.view.WindowInsets Method consumeStableInsets()
+NO DOC BLOCK: android.util.Range Method contains(T)
+NO DOC BLOCK: android.util.Range Method contains(android.util.Range<T>)
+NO DOC BLOCK: android.media.MediaPlayer Method create(android.content.Context, android.net.Uri, android.view.SurfaceHolder, android.media.AudioAttributes, int)
+NO DOC BLOCK: android.media.MediaPlayer Method create(android.content.Context, int, android.media.AudioAttributes, int)
+NO DOC BLOCK: android.service.voice.VoiceInteractionService Method createAlwaysOnHotwordDetector(java.lang.String, java.util.Locale, android.service.voice.AlwaysOnHotwordDetector.Callback)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method createAndInitializeUser(android.content.ComponentName, java.lang.String, java.lang.String, android.content.ComponentName, android.os.Bundle)
+NO DOC BLOCK: android.app.KeyguardManager Method createConfirmDeviceCredentialIntent(java.lang.CharSequence, java.lang.CharSequence)
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecCapabilities Method createFromProfileLevel(java.lang.String, int, int)
+NO DOC BLOCK: android.media.tv.TvInputInfo Method createSettingsIntent()
+NO DOC BLOCK: android.media.tv.TvInputInfo Method createSetupIntent()
+NO DOC BLOCK: android.hardware.display.DisplayManager Method createVirtualDisplay(java.lang.String, int, int, int, android.view.Surface, int, android.hardware.display.VirtualDisplay.Callback, android.os.Handler)
+NO DOC BLOCK: android.view.View Method dispatchNestedPreFling(float, float)
+NO DOC BLOCK: android.telephony.SmsManager Method downloadMultimediaMessage(android.content.Context, java.lang.String, android.net.Uri, android.os.Bundle, android.app.PendingIntent)
+NO DOC BLOCK: android.view.View Method drawableHotspotChanged(float, float)
+NO DOC BLOCK: android.graphics.Canvas Method drawArc(float, float, float, float, float, float, boolean, android.graphics.Paint)
+NO DOC BLOCK: android.graphics.Canvas Method drawOval(float, float, float, float, android.graphics.Paint)
+NO DOC BLOCK: android.webkit.WebView Method enableSlowWholeDocumentDraw()
+NO DOC BLOCK: android.speech.tts.SynthesisCallback Method error(int)
+NO DOC BLOCK: android.util.Range Method extend(T)
+NO DOC BLOCK: android.util.Range Method extend(T, T)
+NO DOC BLOCK: android.util.Range Method extend(android.util.Range<T>)
+NO DOC BLOCK: android.media.MediaCodecList Method findDecoderForFormat(android.media.MediaFormat)
+NO DOC BLOCK: android.media.MediaCodecList Method findEncoderForFormat(android.media.MediaFormat)
+NO DOC BLOCK: android.widget.AbsListView Method fling(int)
+NO DOC BLOCK: android.webkit.CookieManager Method flush()
+NO DOC BLOCK: android.bluetooth.le.BluetoothLeScanner Method flushPendingScanResults(android.bluetooth.le.ScanCallback)
+NO DOC BLOCK: android.media.audiofx.Virtualizer Method forceVirtualizationMode(int)
+NO DOC BLOCK: java.util.Locale Method forLanguageTag(java.lang.String)
+NO DOC BLOCK: android.media.AudioManager Method generateAudioSessionId()
+NO DOC BLOCK: android.service.notification.NotificationListenerService Method getActiveNotifications(java.lang.String[])
+NO DOC BLOCK: android.media.session.PlaybackState Method getActiveQueueItemId()
+NO DOC BLOCK: android.media.session.MediaSessionManager Method getActiveSessions(android.content.ComponentName)
+NO DOC BLOCK: android.net.ConnectivityManager Method getAllNetworks()
+NO DOC BLOCK: android.app.Fragment Method getAllowEnterTransitionOverlap()
+NO DOC BLOCK: android.app.Fragment Method getAllowReturnTransitionOverlap()
+NO DOC BLOCK: android.view.Window Method getAllowReturnTransitionOverlap()
+NO DOC BLOCK: android.graphics.Outline Method getAlpha()
+NO DOC BLOCK: android.app.ActivityManager Method getAppTaskThumbnailSize()
+NO DOC BLOCK: android.view.Display Method getAppVsyncOffsetNanos()
+NO DOC BLOCK: android.media.Ringtone Method getAudioAttributes()
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecCapabilities Method getAudioCapabilities()
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method getAutoTimeRequired()
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method getAvailableLanguages()
+NO DOC BLOCK: android.view.View Method getBackgroundTintList()
+NO DOC BLOCK: android.view.View Method getBackgroundTintMode()
+NO DOC BLOCK: android.media.session.PlaybackState Method getBufferedPosition()
+NO DOC BLOCK: android.widget.CompoundButton Method getButtonTintList()
+NO DOC BLOCK: android.widget.CompoundButton Method getButtonTintMode()
+NO DOC BLOCK: android.bluetooth.le.ScanRecord Method getBytes()
+NO DOC BLOCK: android.telephony.SmsManager Method getCarrierConfigValues()
+NO DOC BLOCK: android.content.res.TypedArray Method getChangingConfigurations()
+NO DOC BLOCK: android.media.AudioFormat Method getChannelMask()
+NO DOC BLOCK: android.view.inputmethod.CursorAnchorInfo Method getCharacterBounds(int)
+NO DOC BLOCK: android.view.inputmethod.CursorAnchorInfo Method getCharacterBoundsFlags(int)
+NO DOC BLOCK: android.view.textservice.TextInfo Method getCharSequence()
+NO DOC BLOCK: android.speech.tts.SynthesisRequest Method getCharSequenceText()
+NO DOC BLOCK: android.widget.CheckedTextView Method getCheckMarkTintList()
+NO DOC BLOCK: android.widget.CheckedTextView Method getCheckMarkTintMode()
+NO DOC BLOCK: android.view.ViewGroup Method getClipToPadding()
+NO DOC BLOCK: android.content.Context Method getCodeCacheDir()
+NO DOC BLOCK: android.content.ContextWrapper Method getCodeCacheDir()
+NO DOC BLOCK: android.test.mock.MockContext Method getCodeCacheDir()
+NO DOC BLOCK: android.media.MediaCodecList Method getCodecInfos()
+NO DOC BLOCK: android.widget.EdgeEffect Method getColor()
+NO DOC BLOCK: android.media.session.MediaSession Method getController()
+NO DOC BLOCK: android.media.Image Method getCropRect()
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method getCrossProfileCallerIdDisabled(android.content.ComponentName)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method getCrossProfileWidgetProviders(android.content.ComponentName)
+NO DOC BLOCK: android.service.notification.NotificationListenerService Method getCurrentInterruptionFilter()
+NO DOC BLOCK: android.service.notification.NotificationListenerService Method getCurrentListenerHints()
+NO DOC BLOCK: android.media.session.PlaybackState Method getCustomActions()
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecCapabilities Method getDefaultFormat()
+NO DOC BLOCK: android.hardware.SensorManager Method getDefaultSensor(int, boolean)
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method getDefaultVoice()
+NO DOC BLOCK: android.media.MediaMetadata Method getDescription()
+NO DOC BLOCK: android.bluetooth.le.ScanFilter Method getDeviceName()
+NO DOC BLOCK: android.bluetooth.le.ScanRecord Method getDeviceName()
+NO DOC BLOCK: java.util.Locale Method getDisplayScript()
+NO DOC BLOCK: java.util.Locale Method getDisplayScript(java.util.Locale)
+NO DOC BLOCK: android.app.ActionBar Method getElevation()
+NO DOC BLOCK: android.widget.PopupWindow Method getElevation()
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecCapabilities Method getEncoderCapabilities()
+NO DOC BLOCK: android.media.AudioFormat Method getEncoding()
+NO DOC BLOCK: android.app.Fragment Method getEnterTransition()
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo Method getError()
+NO DOC BLOCK: android.app.Fragment Method getExitTransition()
+NO DOC BLOCK: java.util.Locale Method getExtension(char)
+NO DOC BLOCK: java.util.Locale Method getExtensionKeys()
+NO DOC BLOCK: android.media.session.MediaController Method getExtras()
+NO DOC BLOCK: android.media.MediaFormat Method getFeatureEnabled(java.lang.String)
+NO DOC BLOCK: android.widget.DatePicker Method getFirstDayOfWeek()
+NO DOC BLOCK: android.media.session.MediaController Method getFlags()
+NO DOC BLOCK: android.graphics.Paint Method getFontFeatureSettings()
+NO DOC BLOCK: android.widget.TextView Method getFontFeatureSettings()
+NO DOC BLOCK: android.widget.FrameLayout Method getForegroundTintList()
+NO DOC BLOCK: android.widget.FrameLayout Method getForegroundTintMode()
+NO DOC BLOCK: android.service.notification.StatusBarNotification Method getGroupKey()
+NO DOC BLOCK: android.hardware.camera2.params.StreamConfigurationMap Method getHighSpeedVideoFpsRanges()
+NO DOC BLOCK: android.hardware.camera2.params.StreamConfigurationMap Method getHighSpeedVideoFpsRangesFor(android.util.Size)
+NO DOC BLOCK: android.hardware.camera2.params.StreamConfigurationMap Method getHighSpeedVideoSizes()
+NO DOC BLOCK: android.hardware.camera2.params.StreamConfigurationMap Method getHighSpeedVideoSizesFor(android.util.Range<java.lang.Integer>)
+NO DOC BLOCK: android.widget.ImageView Method getImageTintList()
+NO DOC BLOCK: android.widget.ImageView Method getImageTintMode()
+NO DOC BLOCK: android.widget.ProgressBar Method getIndeterminateTintList()
+NO DOC BLOCK: android.widget.ProgressBar Method getIndeterminateTintMode()
+NO DOC BLOCK: android.media.MediaCodec Method getInputBuffer(int)
+NO DOC BLOCK: android.media.MediaCodec Method getInputFormat()
+NO DOC BLOCK: android.media.MediaCodec Method getInputImage(int)
+NO DOC BLOCK: android.media.tv.TvInputManager Method getInputState(java.lang.String)
+NO DOC BLOCK: android.view.inputmethod.CursorAnchorInfo Method getInsertionMarkerFlags()
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method getInstalledCaCerts(android.content.ComponentName)
+NO DOC BLOCK: android.appwidget.AppWidgetManager Method getInstalledProvidersForProfile(android.os.UserHandle)
+NO DOC BLOCK: android.content.RestrictionEntry Method getIntValue()
+NO DOC BLOCK: android.media.session.PlaybackState Method getLastPositionUpdateTime()
+NO DOC BLOCK: android.graphics.Paint Method getLetterSpacing()
+NO DOC BLOCK: android.widget.TextView Method getLetterSpacing()
+NO DOC BLOCK: android.bluetooth.le.ScanRecord Method getManufacturerSpecificData(int)
+NO DOC BLOCK: android.text.InputFilter.LengthFilter Method getMax()
+NO DOC BLOCK: android.hardware.Sensor Method getMaxDelay()
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo Method getMaxTextLength()
+NO DOC BLOCK: android.app.Activity Method getMediaController()
+NO DOC BLOCK: android.view.Window Method getMediaController()
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecCapabilities Method getMimeType()
+NO DOC BLOCK: android.transition.Visibility Method getMode()
+NO DOC BLOCK: android.widget.Toolbar Method getNavigationContentDescription()
+NO DOC BLOCK: android.net.ConnectivityManager Method getNetworkInfo(android.net.Network)
+NO DOC BLOCK: android.app.job.JobInfo Method getNetworkType()
+NO DOC BLOCK: android.app.AlarmManager Method getNextAlarmClock()
+NO DOC BLOCK: android.content.Context Method getNoBackupFilesDir()
+NO DOC BLOCK: android.content.ContextWrapper Method getNoBackupFilesDir()
+NO DOC BLOCK: android.test.mock.MockContext Method getNoBackupFilesDir()
+NO DOC BLOCK: android.view.View Method getOutlineProvider()
+NO DOC BLOCK: android.media.MediaCodec Method getOutputBuffer(int)
+NO DOC BLOCK: android.media.MediaCodec Method getOutputFormat(int)
+NO DOC BLOCK: android.media.MediaCodec Method getOutputImage(int)
+NO DOC BLOCK: android.content.pm.PackageManager Method getPackageInstaller()
+NO DOC BLOCK: android.test.mock.MockPackageManager Method getPackageInstaller()
+NO DOC BLOCK: android.media.session.MediaController Method getPackageName()
+NO DOC BLOCK: android.media.tv.TvInputInfo Method getParentId()
+NO DOC BLOCK: android.transition.Transition Method getPathMotion()
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method getPermittedAccessibilityServices(android.content.ComponentName)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method getPermittedInputMethods(android.content.ComponentName)
+NO DOC BLOCK: android.media.session.MediaController Method getPlaybackInfo()
+NO DOC BLOCK: android.media.session.PlaybackState Method getPlaybackSpeed()
+NO DOC BLOCK: android.widget.ActionMenuView Method getPopupTheme()
+NO DOC BLOCK: android.widget.Toolbar Method getPopupTheme()
+NO DOC BLOCK: android.view.Display Method getPresentationDeadlineNanos()
+NO DOC BLOCK: android.accounts.AccountManager Method getPreviousName(android.accounts.Account)
+NO DOC BLOCK: android.appwidget.AppWidgetProviderInfo Method getProfile()
+NO DOC BLOCK: android.widget.ProgressBar Method getProgressBackgroundTintList()
+NO DOC BLOCK: android.widget.ProgressBar Method getProgressBackgroundTintMode()
+NO DOC BLOCK: android.widget.ProgressBar Method getProgressTintList()
+NO DOC BLOCK: android.widget.ProgressBar Method getProgressTintMode()
+NO DOC BLOCK: android.media.session.MediaController Method getQueue()
+NO DOC BLOCK: android.media.session.MediaController Method getQueueTitle()
+NO DOC BLOCK: android.webkit.WebResourceResponse Method getReasonPhrase()
+NO DOC BLOCK: android.app.Fragment Method getReenterTransition()
+NO DOC BLOCK: android.view.Window Method getReenterTransition()
+NO DOC BLOCK: java.util.concurrent.ScheduledThreadPoolExecutor Method getRemoveOnCancelPolicy()
+NO DOC BLOCK: android.transition.ChangeTransform Method getReparent()
+NO DOC BLOCK: android.transition.ChangeTransform Method getReparentWithOverlay()
+NO DOC BLOCK: android.bluetooth.le.ScanSettings Method getReportDelayMillis()
+NO DOC BLOCK: android.hardware.Sensor Method getReportingMode()
+NO DOC BLOCK: android.webkit.WebResourceResponse Method getResponseHeaders()
+NO DOC BLOCK: android.app.Fragment Method getReturnTransition()
+NO DOC BLOCK: android.view.Window Method getReturnTransition()
+NO DOC BLOCK: android.media.AudioFormat Method getSampleRate()
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method getScreenCaptureDisabled(android.content.ComponentName)
+NO DOC BLOCK: java.util.Locale Method getScript()
+NO DOC BLOCK: android.widget.ProgressBar Method getSecondaryProgressTintList()
+NO DOC BLOCK: android.widget.ProgressBar Method getSecondaryProgressTintMode()
+NO DOC BLOCK: android.media.MediaPlayer Method getSelectedTrack(int)
+NO DOC BLOCK: android.media.tv.TvView Method getSelectedTrack(int)
+NO DOC BLOCK: android.bluetooth.le.ScanRecord Method getServiceData(android.os.ParcelUuid)
+NO DOC BLOCK: android.bluetooth.le.ScanRecord Method getServiceData()
+NO DOC BLOCK: android.bluetooth.le.ScanFilter Method getServiceDataUuid()
+NO DOC BLOCK: android.media.session.MediaController Method getSessionActivity()
+NO DOC BLOCK: android.media.session.MediaController Method getSessionToken()
+NO DOC BLOCK: android.app.Fragment Method getSharedElementEnterTransition()
+NO DOC BLOCK: android.view.Window Method getSharedElementReenterTransition()
+NO DOC BLOCK: android.app.Fragment Method getSharedElementReturnTransition()
+NO DOC BLOCK: android.view.Window Method getSharedElementReturnTransition()
+NO DOC BLOCK: android.view.Window Method getSharedElementsUseOverlay()
+NO DOC BLOCK: android.widget.TextView Method getShowSoftInputOnFocus()
+NO DOC BLOCK: android.widget.Switch Method getShowText()
+NO DOC BLOCK: android.os.Bundle Method getSize(java.lang.String)
+NO DOC BLOCK: android.os.Bundle Method getSizeF(java.lang.String)
+NO DOC BLOCK: android.transition.Slide Method getSlideEdge()
+NO DOC BLOCK: android.media.audiofx.Virtualizer Method getSpeakerAngles(int, int, int[])
+NO DOC BLOCK: android.view.WindowInsets Method getStableInsetBottom()
+NO DOC BLOCK: android.view.WindowInsets Method getStableInsetLeft()
+NO DOC BLOCK: android.view.WindowInsets Method getStableInsetRight()
+NO DOC BLOCK: android.view.WindowInsets Method getStableInsetTop()
+NO DOC BLOCK: android.webkit.WebResourceResponse Method getStatusCode()
+NO DOC BLOCK: android.view.Display Method getSupportedRefreshRates()
+NO DOC BLOCK: android.transition.Transition Method getTargetNames()
+NO DOC BLOCK: android.media.MediaMetadata Method getText(java.lang.String)
+NO DOC BLOCK: android.widget.AbsSeekBar Method getThumbTintList()
+NO DOC BLOCK: android.widget.AbsSeekBar Method getThumbTintMode()
+NO DOC BLOCK: android.bluetooth.le.AdvertiseSettings Method getTimeout()
+NO DOC BLOCK: android.view.ViewGroup Method getTouchscreenBlocksFocus()
+NO DOC BLOCK: android.media.tv.TvView Method getTracks(int)
+NO DOC BLOCK: android.transition.TransitionSet Method getTransitionAt(int)
+NO DOC BLOCK: android.view.Window Method getTransitionBackgroundFadeDuration()
+NO DOC BLOCK: android.transition.TransitionSet Method getTransitionCount()
+NO DOC BLOCK: android.view.View Method getTransitionName()
+NO DOC BLOCK: android.media.tv.TvInputManager Method getTvInputInfo(java.lang.String)
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Event Method getTypeLabel(android.content.res.Resources, int, java.lang.CharSequence)
+NO DOC BLOCK: java.util.Locale Method getUnicodeLocaleAttributes()
+NO DOC BLOCK: java.util.Locale Method getUnicodeLocaleKeys()
+NO DOC BLOCK: java.util.Locale Method getUnicodeLocaleType(java.lang.String)
+NO DOC BLOCK: android.content.pm.PackageManager Method getUserBadgedDrawableForDensity(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)
+NO DOC BLOCK: android.test.mock.MockPackageManager Method getUserBadgedDrawableForDensity(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)
+NO DOC BLOCK: android.content.pm.PackageManager Method getUserBadgedIcon(android.graphics.drawable.Drawable, android.os.UserHandle)
+NO DOC BLOCK: android.test.mock.MockPackageManager Method getUserBadgedIcon(android.graphics.drawable.Drawable, android.os.UserHandle)
+NO DOC BLOCK: android.content.pm.PackageManager Method getUserBadgedLabel(java.lang.CharSequence, android.os.UserHandle)
+NO DOC BLOCK: android.test.mock.MockPackageManager Method getUserBadgedLabel(java.lang.CharSequence, android.os.UserHandle)
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecCapabilities Method getVideoCapabilities()
+NO DOC BLOCK: android.media.tv.TvContract.Channels Method getVideoResolution(java.lang.String)
+NO DOC BLOCK: android.media.audiofx.Virtualizer Method getVirtualizationMode()
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method getVoice()
+NO DOC BLOCK: android.speech.tts.SynthesisRequest Method getVoiceName()
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method getVoices()
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method hasCaCertInstalled(android.content.ComponentName, byte[])
+NO DOC BLOCK: android.speech.tts.SynthesisCallback Method hasFinished()
+NO DOC BLOCK: java.util.concurrent.locks.AbstractQueuedLongSynchronizer Method hasQueuedPredecessors()
+NO DOC BLOCK: java.util.concurrent.locks.AbstractQueuedSynchronizer Method hasQueuedPredecessors()
+NO DOC BLOCK: android.view.WindowInsets Method hasStableInsets()
+NO DOC BLOCK: android.speech.tts.SynthesisCallback Method hasStarted()
+NO DOC BLOCK: android.os.UserManager Method hasUserRestriction(java.lang.String)
+NO DOC BLOCK: android.telephony.TelephonyManager Method iccCloseLogicalChannel(int)
+NO DOC BLOCK: android.telephony.TelephonyManager Method iccExchangeSimIO(int, int, int, int, int, java.lang.String)
+NO DOC BLOCK: android.telephony.TelephonyManager Method iccOpenLogicalChannel(java.lang.String)
+NO DOC BLOCK: android.telephony.TelephonyManager Method iccTransmitApduBasicChannel(int, int, int, int, int, java.lang.String)
+NO DOC BLOCK: android.telephony.TelephonyManager Method iccTransmitApduLogicalChannel(int, int, int, int, int, int, java.lang.String)
+NO DOC BLOCK: android.util.ArrayMap Method indexOfKey(java.lang.Object)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method installCaCert(android.content.ComponentName, byte[])
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method installKeyPair(android.content.ComponentName, java.security.PrivateKey, java.security.cert.Certificate, java.lang.String)
+NO DOC BLOCK: android.util.Range Method intersect(T, T)
+NO DOC BLOCK: android.util.Range Method intersect(android.util.Range<T>)
+NO DOC BLOCK: android.view.View Method invalidateOutline()
+NO DOC BLOCK: android.net.wifi.WifiManager Method is5GHzBandSupported()
+NO DOC BLOCK: android.view.accessibility.AccessibilityWindowInfo Method isAccessibilityFocused()
+NO DOC BLOCK: android.service.voice.VoiceInteractionService Method isActiveService(android.content.Context, android.content.ComponentName)
+NO DOC BLOCK: android.content.pm.LauncherApps Method isActivityEnabled(android.content.ComponentName, android.os.UserHandle)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method isApplicationHidden(android.content.ComponentName, java.lang.String)
+NO DOC BLOCK: android.view.MotionEvent Method isButtonPressed(int)
+NO DOC BLOCK: android.bluetooth.le.AdvertiseSettings Method isConnectable()
+NO DOC BLOCK: android.view.WindowInsets Method isConsumed()
+NO DOC BLOCK: android.net.wifi.WifiManager Method isDeviceToApRttSupported()
+NO DOC BLOCK: android.net.wifi.WifiManager Method isEnhancedPowerReportingSupported()
+NO DOC BLOCK: android.provider.ContactsContract.Contacts Method isEnterpriseContactId(long)
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecCapabilities Method isFeatureRequired(java.lang.String)
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecCapabilities Method isFormatSupported(android.media.MediaFormat)
+NO DOC BLOCK: android.app.ActivityManager Method isInLockTaskMode()
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method isMasterVolumeMuted(android.content.ComponentName)
+NO DOC BLOCK: android.bluetooth.BluetoothAdapter Method isMultipleAdvertisementSupported()
+NO DOC BLOCK: android.bluetooth.BluetoothAdapter Method isOffloadedFilteringSupported()
+NO DOC BLOCK: android.bluetooth.BluetoothAdapter Method isOffloadedScanBatchingSupported()
+NO DOC BLOCK: android.app.job.JobParameters Method isOverrideDeadlineExpired()
+NO DOC BLOCK: android.net.wifi.WifiManager Method isP2pSupported()
+NO DOC BLOCK: android.content.pm.LauncherApps Method isPackageEnabled(java.lang.String, android.os.UserHandle)
+NO DOC BLOCK: android.media.tv.TvInputManager Method isParentalControlsEnabled()
+NO DOC BLOCK: android.media.tv.TvInputInfo Method isPassthroughInput()
+NO DOC BLOCK: android.app.job.JobInfo Method isPersisted()
+NO DOC BLOCK: android.net.wifi.WifiManager Method isPreferredNetworkOffloadSupported()
+NO DOC BLOCK: android.media.tv.TvInputManager Method isRatingBlocked(android.media.tv.TvContentRating)
+NO DOC BLOCK: android.telephony.TelephonyManager Method isSmsCapable()
+NO DOC BLOCK: android.net.wifi.WifiManager Method isTdlsSupported()
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method isUninstallBlocked(android.content.ComponentName, java.lang.String)
+NO DOC BLOCK: android.media.AudioManager Method isVolumeFixed()
+NO DOC BLOCK: android.os.PowerManager Method isWakeLockLevelSupported(int)
+NO DOC BLOCK: android.hardware.Sensor Method isWakeUpSensor()
+NO DOC BLOCK: android.appwidget.AppWidgetProviderInfo Method loadIcon(android.content.Context, int)
+NO DOC BLOCK: android.media.tv.TvInputInfo Method loadIcon(android.content.Context)
+NO DOC BLOCK: android.appwidget.AppWidgetProviderInfo Method loadLabel(android.content.pm.PackageManager)
+NO DOC BLOCK: android.appwidget.AppWidgetProviderInfo Method loadPreviewImage(android.content.Context, int)
+NO DOC BLOCK: android.app.ActivityOptions Method makeTaskLaunchBehind()
+NO DOC BLOCK: android.service.notification.NotificationListenerService.Ranking Method matchesInterruptionFilter()
+NO DOC BLOCK: android.app.ActivityManager.AppTask Method moveToFront()
+NO DOC BLOCK: android.media.tv.TvInputService.Session Method notifyChannelRetuned(android.net.Uri)
+NO DOC BLOCK: android.media.tv.TvInputService.Session Method notifyContentAllowed()
+NO DOC BLOCK: android.media.tv.TvInputService.Session Method notifyContentBlocked(android.media.tv.TvContentRating)
+NO DOC BLOCK: android.media.tv.TvInputService.Session Method notifyTracksChanged(java.util.List<android.media.tv.TvTrackInfo>)
+NO DOC BLOCK: android.media.tv.TvInputService.Session Method notifyTrackSelected(int, java.lang.String)
+NO DOC BLOCK: android.media.tv.TvInputService.Session Method notifyVideoAvailable()
+NO DOC BLOCK: android.media.tv.TvInputService.Session Method notifyVideoUnavailable(int)
+NO DOC BLOCK: android.service.wallpaper.WallpaperService.Engine Method onApplyWindowInsets(android.view.WindowInsets)
+NO DOC BLOCK: android.media.session.MediaController.Callback Method onAudioInfoChanged(android.media.session.MediaController.PlaybackInfo)
+NO DOC BLOCK: android.bluetooth.le.ScanCallback Method onBatchScanResults(java.util.List<android.bluetooth.le.ScanResult>)
+NO DOC BLOCK: android.media.session.MediaSession.Callback Method onCommand(java.lang.String, android.os.Bundle, android.os.ResultReceiver)
+NO DOC BLOCK: android.media.session.MediaSession.Callback Method onCustomAction(java.lang.String, android.os.Bundle)
+NO DOC BLOCK: android.app.Activity Method onEnterAnimationComplete()
+NO DOC BLOCK: android.speech.tts.UtteranceProgressListener Method onError(java.lang.String, int)
+NO DOC BLOCK: android.speech.tts.UtteranceProgressListener Method onError(java.lang.String)
+NO DOC BLOCK: android.media.session.MediaController.Callback Method onExtrasChanged(android.os.Bundle)
+NO DOC BLOCK: android.media.session.MediaSession.Callback Method onFastForward()
+NO DOC BLOCK: android.speech.tts.TextToSpeechService Method onGetDefaultVoiceNameFor(java.lang.String, java.lang.String, java.lang.String)
+NO DOC BLOCK: android.speech.tts.TextToSpeechService Method onGetVoices()
+NO DOC BLOCK: android.service.notification.NotificationListenerService Method onInterruptionFilterChanged(int)
+NO DOC BLOCK: android.speech.tts.TextToSpeechService Method onIsValidVoiceName(java.lang.String)
+NO DOC BLOCK: android.service.notification.NotificationListenerService Method onListenerHintsChanged(int)
+NO DOC BLOCK: android.speech.tts.TextToSpeechService Method onLoadVoice(java.lang.String)
+NO DOC BLOCK: android.app.admin.DeviceAdminReceiver Method onLockTaskModeEntering(android.content.Context, android.content.Intent, java.lang.String)
+NO DOC BLOCK: android.app.admin.DeviceAdminReceiver Method onLockTaskModeExiting(android.content.Context, android.content.Intent)
+NO DOC BLOCK: android.bluetooth.BluetoothGattCallback Method onMtuChanged(android.bluetooth.BluetoothGatt, int, int)
+NO DOC BLOCK: android.view.ViewGroup Method onNestedPreFling(android.view.View, float, float)
+NO DOC BLOCK: android.view.ViewParent Method onNestedPreFling(android.view.View, float, float)
+NO DOC BLOCK: android.bluetooth.BluetoothGattServerCallback Method onNotificationSent(android.bluetooth.BluetoothDevice, int)
+NO DOC BLOCK: android.media.session.MediaSession.Callback Method onPause()
+NO DOC BLOCK: android.media.session.MediaSession.Callback Method onPlay()
+NO DOC BLOCK: android.media.session.MediaSession.Callback Method onPlayFromMediaId(java.lang.String, android.os.Bundle)
+NO DOC BLOCK: android.media.session.MediaSession.Callback Method onPlayFromSearch(java.lang.String, android.os.Bundle)
+NO DOC BLOCK: android.media.session.MediaController.Callback Method onQueueChanged(java.util.List<android.media.session.MediaSession.QueueItem>)
+NO DOC BLOCK: android.media.session.MediaController.Callback Method onQueueTitleChanged(java.lang.CharSequence)
+NO DOC BLOCK: android.service.voice.VoiceInteractionService Method onReady()
+NO DOC BLOCK: android.app.backup.BackupAgent Method onRestoreFinished()
+NO DOC BLOCK: android.media.session.MediaSession.Callback Method onRewind()
+NO DOC BLOCK: android.bluetooth.le.ScanCallback Method onScanResult(int, android.bluetooth.le.ScanResult)
+NO DOC BLOCK: android.media.session.MediaSession.Callback Method onSeekTo(long)
+NO DOC BLOCK: android.media.tv.TvInputService.Session Method onSelectTrack(int, java.lang.String)
+NO DOC BLOCK: android.media.session.MediaController.Callback Method onSessionDestroyed()
+NO DOC BLOCK: android.media.tv.TvInputService.Session Method onSetCaptionEnabled(boolean)
+NO DOC BLOCK: android.media.session.MediaSession.Callback Method onSetRating(android.media.Rating)
+NO DOC BLOCK: android.webkit.WebChromeClient Method onShowFileChooser(android.webkit.WebView, android.webkit.ValueCallback<android.net.Uri[]>, android.webkit.WebChromeClient.FileChooserParams)
+NO DOC BLOCK: android.service.voice.VoiceInteractionService Method onShutdown()
+NO DOC BLOCK: android.media.session.MediaSession.Callback Method onSkipToNext()
+NO DOC BLOCK: android.media.session.MediaSession.Callback Method onSkipToPrevious()
+NO DOC BLOCK: android.media.session.MediaSession.Callback Method onSkipToQueueItem(long)
+NO DOC BLOCK: android.bluetooth.le.AdvertiseCallback Method onStartFailure(int)
+NO DOC BLOCK: android.bluetooth.le.AdvertiseCallback Method onStartSuccess(android.bluetooth.le.AdvertiseSettings)
+NO DOC BLOCK: android.media.session.MediaSession.Callback Method onStop()
+NO DOC BLOCK: android.media.tv.TvInputService.Session Method onSurfaceChanged(int, int, int)
+NO DOC BLOCK: android.media.tv.TvInputService.Session Method onUnblockContent(android.media.tv.TvContentRating)
+NO DOC BLOCK: android.app.Activity Method onVisibleBehindCanceled()
+NO DOC BLOCK: android.service.dreams.DreamService Method onWakeUp()
+NO DOC BLOCK: android.net.Network Method openConnection(java.net.URL)
+NO DOC BLOCK: android.util.Rational Method parseRational(java.lang.String)
+NO DOC BLOCK: android.util.Size Method parseSize(java.lang.String)
+NO DOC BLOCK: android.util.SizeF Method parseSizeF(java.lang.String)
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method playEarcon(java.lang.String, int, android.os.Bundle, java.lang.String)
+NO DOC BLOCK: android.media.session.MediaController.TransportControls Method playFromMediaId(java.lang.String, android.os.Bundle)
+NO DOC BLOCK: android.media.session.MediaController.TransportControls Method playFromSearch(java.lang.String, android.os.Bundle)
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method playSilentUtterance(long, int, java.lang.String)
+NO DOC BLOCK: android.os.Bundle Method putSize(java.lang.String, android.util.Size)
+NO DOC BLOCK: android.os.Bundle Method putSizeF(java.lang.String, android.util.SizeF)
+NO DOC BLOCK: android.media.MediaMetadata.Builder Method putText(java.lang.String, java.lang.CharSequence)
+NO DOC BLOCK: android.os.Parcel Method readSize()
+NO DOC BLOCK: android.os.Parcel Method readSizeF()
+NO DOC BLOCK: android.hardware.camera2.CameraManager Method registerAvailabilityCallback(android.hardware.camera2.CameraManager.AvailabilityCallback, android.os.Handler)
+NO DOC BLOCK: android.content.pm.LauncherApps Method registerCallback(android.content.pm.LauncherApps.Callback)
+NO DOC BLOCK: android.content.pm.LauncherApps Method registerCallback(android.content.pm.LauncherApps.Callback, android.os.Handler)
+NO DOC BLOCK: android.media.session.MediaController Method registerCallback(android.media.session.MediaController.Callback)
+NO DOC BLOCK: android.media.session.MediaController Method registerCallback(android.media.session.MediaController.Callback, android.os.Handler)
+NO DOC BLOCK: android.media.tv.TvInputManager Method registerCallback(android.media.tv.TvInputManager.TvInputCallback, android.os.Handler)
+NO DOC BLOCK: android.os.PowerManager.WakeLock Method release(int)
+NO DOC BLOCK: android.app.Activity Method releaseInstance()
+NO DOC BLOCK: android.webkit.CookieManager Method removeAllCookies(android.webkit.ValueCallback<java.lang.Boolean>)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method removeCrossProfileWidgetProvider(android.content.ComponentName, java.lang.String)
+NO DOC BLOCK: android.net.ConnectivityManager Method removeDefaultNetworkActiveListener(android.net.ConnectivityManager.OnNetworkActiveListener)
+NO DOC BLOCK: android.media.session.MediaSessionManager Method removeOnActiveSessionsChangedListener(android.media.session.MediaSessionManager.OnActiveSessionsChangedListener)
+NO DOC BLOCK: android.webkit.CookieManager Method removeSessionCookies(android.webkit.ValueCallback<java.lang.Boolean>)
+NO DOC BLOCK: android.accounts.AccountManager Method renameAccount(android.accounts.Account, java.lang.String, android.accounts.AccountManagerCallback<android.accounts.Account>, android.os.Handler)
+NO DOC BLOCK: android.view.WindowInsets Method replaceSystemWindowInsets(android.graphics.Rect)
+NO DOC BLOCK: android.bluetooth.BluetoothGatt Method requestConnectionPriority(int)
+NO DOC BLOCK: android.view.inputmethod.BaseInputConnection Method requestCursorUpdates(int)
+NO DOC BLOCK: android.view.inputmethod.InputConnection Method requestCursorUpdates(int)
+NO DOC BLOCK: android.view.inputmethod.InputConnectionWrapper Method requestCursorUpdates(int)
+NO DOC BLOCK: android.service.notification.NotificationListenerService Method requestInterruptionFilter(int)
+NO DOC BLOCK: android.service.notification.NotificationListenerService Method requestListenerHints(int)
+NO DOC BLOCK: android.bluetooth.BluetoothGatt Method requestMtu(int)
+NO DOC BLOCK: android.view.View Method requestUnbufferedDispatch(android.view.MotionEvent)
+NO DOC BLOCK: android.app.Activity Method requestVisibleBehind(boolean)
+NO DOC BLOCK: android.media.MediaCodec Method reset()
+NO DOC BLOCK: android.hardware.display.VirtualDisplay Method resize(int, int, int)
+NO DOC BLOCK: android.media.tv.TvView Method selectTrack(int, java.lang.String)
+NO DOC BLOCK: android.media.session.MediaController Method sendCommand(java.lang.String, android.os.Bundle, android.os.ResultReceiver)
+NO DOC BLOCK: android.media.session.MediaController.TransportControls Method sendCustomAction(android.media.session.PlaybackState.CustomAction, android.os.Bundle)
+NO DOC BLOCK: android.media.session.MediaController.TransportControls Method sendCustomAction(java.lang.String, android.os.Bundle)
+NO DOC BLOCK: android.telephony.TelephonyManager Method sendEnvelopeWithStatus(java.lang.String)
+NO DOC BLOCK: android.telephony.SmsManager Method sendMultimediaMessage(android.content.Context, android.net.Uri, java.lang.String, android.os.Bundle, android.app.PendingIntent)
+NO DOC BLOCK: android.webkit.CookieManager Method setAcceptThirdPartyCookies(android.webkit.WebView, boolean)
+NO DOC BLOCK: android.app.AlarmManager Method setAlarmClock(android.app.AlarmManager.AlarmClockInfo, android.app.PendingIntent)
+NO DOC BLOCK: android.app.Fragment Method setAllowEnterTransitionOverlap(boolean)
+NO DOC BLOCK: android.app.Fragment Method setAllowReturnTransitionOverlap(boolean)
+NO DOC BLOCK: android.view.Window Method setAllowReturnTransitionOverlap(boolean)
+NO DOC BLOCK: android.graphics.Outline Method setAlpha(float)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setApplicationHidden(android.content.ComponentName, java.lang.String, boolean)
+NO DOC BLOCK: android.media.MediaPlayer Method setAudioAttributes(android.media.AudioAttributes)
+NO DOC BLOCK: android.media.Ringtone Method setAudioAttributes(android.media.AudioAttributes)
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method setAudioAttributes(android.media.AudioAttributes)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setAutoTimeRequired(android.content.ComponentName, boolean)
+NO DOC BLOCK: android.view.View Method setBackgroundTintList(android.content.res.ColorStateList)
+NO DOC BLOCK: android.view.View Method setBackgroundTintMode(android.graphics.PorterDuff.Mode)
+NO DOC BLOCK: android.net.VpnService.Builder Method setBlocking(boolean)
+NO DOC BLOCK: android.widget.CompoundButton Method setButtonTintList(android.content.res.ColorStateList)
+NO DOC BLOCK: android.widget.CompoundButton Method setButtonTintMode(android.graphics.PorterDuff.Mode)
+NO DOC BLOCK: android.media.MediaCodec Method setCallback(android.media.MediaCodec.Callback)
+NO DOC BLOCK: android.media.session.MediaSession Method setCallback(android.media.session.MediaSession.Callback)
+NO DOC BLOCK: android.media.session.MediaSession Method setCallback(android.media.session.MediaSession.Callback, android.os.Handler)
+NO DOC BLOCK: android.media.tv.TvView Method setCallback(android.media.tv.TvView.TvInputCallback)
+NO DOC BLOCK: android.media.tv.TvView Method setCaptionEnabled(boolean)
+NO DOC BLOCK: android.widget.CheckedTextView Method setCheckMarkTintList(android.content.res.ColorStateList)
+NO DOC BLOCK: android.widget.CheckedTextView Method setCheckMarkTintMode(android.graphics.PorterDuff.Mode)
+NO DOC BLOCK: android.widget.EdgeEffect Method setColor(int)
+NO DOC BLOCK: android.bluetooth.le.AdvertiseSettings.Builder Method setConnectable(boolean)
+NO DOC BLOCK: android.webkit.CookieManager Method setCookie(java.lang.String, java.lang.String, android.webkit.ValueCallback<java.lang.Boolean>)
+NO DOC BLOCK: android.media.Image Method setCropRect(android.graphics.Rect)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setCrossProfileCallerIdDisabled(android.content.ComponentName, boolean)
+NO DOC BLOCK: android.hardware.camera2.DngCreator Method setDescription(java.lang.String)
+NO DOC BLOCK: android.bluetooth.le.ScanFilter.Builder Method setDeviceAddress(java.lang.String)
+NO DOC BLOCK: android.bluetooth.le.ScanFilter.Builder Method setDeviceName(java.lang.String)
+NO DOC BLOCK: android.app.ActionBar Method setElevation(float)
+NO DOC BLOCK: android.widget.PopupWindow Method setElevation(float)
+NO DOC BLOCK: android.app.Activity Method setEnterSharedElementCallback(android.app.SharedElementCallback)
+NO DOC BLOCK: android.app.Fragment Method setEnterSharedElementCallback(android.app.SharedElementCallback)
+NO DOC BLOCK: android.app.Fragment Method setEnterTransition(android.transition.Transition)
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo Method setError(java.lang.CharSequence)
+NO DOC BLOCK: android.app.ActivityManager.AppTask Method setExcludeFromRecents(boolean)
+NO DOC BLOCK: android.app.Activity Method setExitSharedElementCallback(android.app.SharedElementCallback)
+NO DOC BLOCK: android.app.Fragment Method setExitSharedElementCallback(android.app.SharedElementCallback)
+NO DOC BLOCK: android.app.Fragment Method setExitTransition(android.transition.Transition)
+NO DOC BLOCK: android.media.session.MediaSession Method setExtras(android.os.Bundle)
+NO DOC BLOCK: android.media.MediaFormat Method setFeatureEnabled(java.lang.String, boolean)
+NO DOC BLOCK: android.widget.DatePicker Method setFirstDayOfWeek(int)
+NO DOC BLOCK: android.graphics.Paint Method setFontFeatureSettings(java.lang.String)
+NO DOC BLOCK: android.widget.TextView Method setFontFeatureSettings(java.lang.String)
+NO DOC BLOCK: android.widget.FrameLayout Method setForegroundTintList(android.content.res.ColorStateList)
+NO DOC BLOCK: android.widget.FrameLayout Method setForegroundTintMode(android.graphics.PorterDuff.Mode)
+NO DOC BLOCK: android.widget.ImageView Method setImageTintList(android.content.res.ColorStateList)
+NO DOC BLOCK: android.widget.ImageView Method setImageTintMode(android.graphics.PorterDuff.Mode)
+NO DOC BLOCK: android.widget.ProgressBar Method setIndeterminateTintList(android.content.res.ColorStateList)
+NO DOC BLOCK: android.widget.ProgressBar Method setIndeterminateTintMode(android.graphics.PorterDuff.Mode)
+NO DOC BLOCK: android.content.RestrictionEntry Method setIntValue(int)
+NO DOC BLOCK: android.graphics.Paint Method setLetterSpacing(float)
+NO DOC BLOCK: android.widget.TextView Method setLetterSpacing(float)
+NO DOC BLOCK: android.hardware.camera2.DngCreator Method setLocation(android.location.Location)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setLockTaskPackages(android.content.ComponentName, java.lang.String[])
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setMasterVolumeMuted(android.content.ComponentName, boolean)
+NO DOC BLOCK: android.view.accessibility.AccessibilityNodeInfo Method setMaxTextLength(int)
+NO DOC BLOCK: android.media.session.MediaSession Method setMediaButtonReceiver(android.app.PendingIntent)
+NO DOC BLOCK: android.app.Activity Method setMediaController(android.media.session.MediaController)
+NO DOC BLOCK: android.view.Window Method setMediaController(android.media.session.MediaController)
+NO DOC BLOCK: android.transition.Visibility Method setMode(int)
+NO DOC BLOCK: android.net.NetworkRequest.Builder Method setNetworkSpecifier(java.lang.String)
+NO DOC BLOCK: android.hardware.camera2.DngCreator Method setOrientation(int)
+NO DOC BLOCK: android.view.View Method setOutlineProvider(android.view.ViewOutlineProvider)
+NO DOC BLOCK: android.transition.Transition Method setPathMotion(android.transition.PathMotion)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setPermittedAccessibilityServices(android.content.ComponentName, java.util.List<java.lang.String>)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setPermittedInputMethods(android.content.ComponentName, java.util.List<java.lang.String>)
+NO DOC BLOCK: android.app.job.JobInfo.Builder Method setPersisted(boolean)
+NO DOC BLOCK: android.widget.ActionMenuView Method setPopupTheme(int)
+NO DOC BLOCK: android.widget.Toolbar Method setPopupTheme(int)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setProfileName(android.content.ComponentName, java.lang.String)
+NO DOC BLOCK: android.widget.ProgressBar Method setProgressBackgroundTintList(android.content.res.ColorStateList)
+NO DOC BLOCK: android.widget.ProgressBar Method setProgressBackgroundTintMode(android.graphics.PorterDuff.Mode)
+NO DOC BLOCK: android.widget.ProgressBar Method setProgressTintList(android.content.res.ColorStateList)
+NO DOC BLOCK: android.widget.ProgressBar Method setProgressTintMode(android.graphics.PorterDuff.Mode)
+NO DOC BLOCK: android.media.session.MediaSession Method setQueue(java.util.List<android.media.session.MediaSession.QueueItem>)
+NO DOC BLOCK: android.media.session.MediaSession Method setQueueTitle(java.lang.CharSequence)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setRecommendedGlobalProxy(android.content.ComponentName, android.net.ProxyInfo)
+NO DOC BLOCK: android.app.Fragment Method setReenterTransition(android.transition.Transition)
+NO DOC BLOCK: android.view.Window Method setReenterTransition(android.transition.Transition)
+NO DOC BLOCK: java.util.concurrent.ScheduledThreadPoolExecutor Method setRemoveOnCancelPolicy(boolean)
+NO DOC BLOCK: android.transition.ChangeTransform Method setReparent(boolean)
+NO DOC BLOCK: android.transition.ChangeTransform Method setReparentWithOverlay(boolean)
+NO DOC BLOCK: android.bluetooth.le.ScanSettings.Builder Method setReportDelay(long)
+NO DOC BLOCK: android.app.job.JobInfo.Builder Method setRequiredNetworkType(int)
+NO DOC BLOCK: android.webkit.WebResourceResponse Method setResponseHeaders(java.util.Map<java.lang.String, java.lang.String>)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setRestrictionsProvider(android.content.ComponentName, android.content.ComponentName)
+NO DOC BLOCK: android.app.Fragment Method setReturnTransition(android.transition.Transition)
+NO DOC BLOCK: android.view.Window Method setReturnTransition(android.transition.Transition)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setScreenCaptureDisabled(android.content.ComponentName, boolean)
+NO DOC BLOCK: android.widget.ProgressBar Method setSecondaryProgressTintList(android.content.res.ColorStateList)
+NO DOC BLOCK: android.widget.ProgressBar Method setSecondaryProgressTintMode(android.graphics.PorterDuff.Mode)
+NO DOC BLOCK: android.bluetooth.le.ScanFilter.Builder Method setServiceData(android.os.ParcelUuid, byte[])
+NO DOC BLOCK: android.bluetooth.le.ScanFilter.Builder Method setServiceData(android.os.ParcelUuid, byte[], byte[])
+NO DOC BLOCK: android.media.session.MediaSession Method setSessionActivity(android.app.PendingIntent)
+NO DOC BLOCK: android.app.Fragment Method setSharedElementEnterTransition(android.transition.Transition)
+NO DOC BLOCK: android.view.Window Method setSharedElementReenterTransition(android.transition.Transition)
+NO DOC BLOCK: android.app.Fragment Method setSharedElementReturnTransition(android.transition.Transition)
+NO DOC BLOCK: android.view.Window Method setSharedElementReturnTransition(android.transition.Transition)
+NO DOC BLOCK: android.view.Window Method setSharedElementsUseOverlay(boolean)
+NO DOC BLOCK: android.widget.TextView Method setShowSoftInputOnFocus(boolean)
+NO DOC BLOCK: android.widget.Switch Method setShowText(boolean)
+NO DOC BLOCK: android.app.Notification.Builder Method setSound(android.net.Uri, android.media.AudioAttributes)
+NO DOC BLOCK: android.app.Notification.Builder Method setSound(android.net.Uri, int)
+NO DOC BLOCK: android.webkit.WebResourceResponse Method setStatusCodeAndReasonPhrase(int, java.lang.String)
+NO DOC BLOCK: android.widget.Toolbar Method setSubtitleTextColor(int)
+NO DOC BLOCK: android.hardware.camera2.DngCreator Method setThumbnail(android.graphics.Bitmap)
+NO DOC BLOCK: android.hardware.camera2.DngCreator Method setThumbnail(android.media.Image)
+NO DOC BLOCK: android.widget.AbsSeekBar Method setThumbTintList(android.content.res.ColorStateList)
+NO DOC BLOCK: android.widget.AbsSeekBar Method setThumbTintMode(android.graphics.PorterDuff.Mode)
+NO DOC BLOCK: android.bluetooth.le.AdvertiseSettings.Builder Method setTimeout(int)
+NO DOC BLOCK: android.graphics.drawable.Drawable Method setTintList(android.content.res.ColorStateList)
+NO DOC BLOCK: android.graphics.drawable.Drawable Method setTintMode(android.graphics.PorterDuff.Mode)
+NO DOC BLOCK: android.widget.Toolbar Method setTitleTextColor(int)
+NO DOC BLOCK: android.view.ViewGroup Method setTouchscreenBlocksFocus(boolean)
+NO DOC BLOCK: android.view.Window Method setTransitionBackgroundFadeDuration(long)
+NO DOC BLOCK: android.view.View Method setTransitionName(java.lang.String)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method setUninstallBlocked(android.content.ComponentName, java.lang.String, boolean)
+NO DOC BLOCK: android.widget.VideoView Method setVideoURI(android.net.Uri, java.util.Map<java.lang.String, java.lang.String>)
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method setVoice(android.speech.tts.Voice)
+NO DOC BLOCK: android.media.session.MediaController Method setVolumeTo(int, int)
+NO DOC BLOCK: android.webkit.WebViewClient Method shouldInterceptRequest(android.webkit.WebView, android.webkit.WebResourceRequest)
+NO DOC BLOCK: android.webkit.WebViewClient Method shouldInterceptRequest(android.webkit.WebView, java.lang.String)
+NO DOC BLOCK: android.media.session.MediaController.TransportControls Method skipToQueueItem(long)
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method speak(java.lang.CharSequence, int, android.os.Bundle, java.lang.String)
+NO DOC BLOCK: android.widget.GridLayout Method spec(int, android.widget.GridLayout.Alignment, float)
+NO DOC BLOCK: android.widget.GridLayout Method spec(int, float)
+NO DOC BLOCK: android.widget.GridLayout Method spec(int, int, android.widget.GridLayout.Alignment, float)
+NO DOC BLOCK: android.widget.GridLayout Method spec(int, int, float)
+NO DOC BLOCK: android.app.ActivityManager.AppTask Method startActivity(android.content.Context, android.content.Intent, android.os.Bundle)
+NO DOC BLOCK: android.bluetooth.le.BluetoothLeAdvertiser Method startAdvertising(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseCallback)
+NO DOC BLOCK: android.bluetooth.le.BluetoothLeAdvertiser Method startAdvertising(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseCallback)
+NO DOC BLOCK: android.content.pm.LauncherApps Method startAppDetailsActivity(android.content.ComponentName, android.os.UserHandle, android.graphics.Rect, android.os.Bundle)
+NO DOC BLOCK: android.appwidget.AppWidgetHost Method startAppWidgetConfigureActivityForResult(android.app.Activity, int, int, int, android.os.Bundle)
+NO DOC BLOCK: android.content.pm.LauncherApps Method startMainActivity(android.content.ComponentName, android.os.UserHandle, android.graphics.Rect, android.os.Bundle)
+NO DOC BLOCK: android.bluetooth.le.BluetoothLeScanner Method startScan(android.bluetooth.le.ScanCallback)
+NO DOC BLOCK: android.net.wifi.WifiManager Method startWps(android.net.wifi.WpsInfo, android.net.wifi.WifiManager.WpsCallback)
+NO DOC BLOCK: android.nfc.cardemulation.CardEmulation Method supportsAidPrefixRegistration()
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method switchUser(android.content.ComponentName, android.os.UserHandle)
+NO DOC BLOCK: android.speech.tts.TextToSpeech Method synthesizeToFile(java.lang.CharSequence, android.os.Bundle, java.io.File, java.lang.String)
+NO DOC BLOCK: java.util.Locale Method toLanguageTag()
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method uninstallAllUserCaCerts(android.content.ComponentName)
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Method uninstallCaCert(android.content.ComponentName, byte[])
+NO DOC BLOCK: android.hardware.camera2.CameraManager Method unregisterAvailabilityCallback(android.hardware.camera2.CameraManager.AvailabilityCallback)
+NO DOC BLOCK: android.content.pm.LauncherApps Method unregisterCallback(android.content.pm.LauncherApps.Callback)
+NO DOC BLOCK: android.media.session.MediaController Method unregisterCallback(android.media.session.MediaController.Callback)
+NO DOC BLOCK: android.media.tv.TvInputManager Method unregisterCallback(android.media.tv.TvInputManager.TvInputCallback)
+NO DOC BLOCK: android.os.Vibrator Method vibrate(long, android.media.AudioAttributes)
+NO DOC BLOCK: android.os.Vibrator Method vibrate(long[], int, android.media.AudioAttributes)
+NO DOC BLOCK: android.service.dreams.DreamService Method wakeUp()
+NO DOC BLOCK: android.hardware.camera2.DngCreator Method writeByteBuffer(java.io.OutputStream, android.util.Size, java.nio.ByteBuffer, long)
+NO DOC BLOCK: android.hardware.camera2.DngCreator Method writeInputStream(java.io.OutputStream, android.util.Size, java.io.InputStream, long)
+NO DOC BLOCK: android.os.Parcel Method writeSize(android.util.Size)
+NO DOC BLOCK: android.os.Parcel Method writeSizeF(android.util.SizeF)
+NO DOC BLOCK: android.webkit.WebView Method zoomBy(float)
+NO DOC BLOCK: android.provider.ContactsContract.RawContactsColumns Field ACCOUNT_TYPE_AND_DATA_SET
+NO DOC BLOCK: android.media.tv.TvInputManager Field ACTION_BLOCKED_RATINGS_CHANGED
+NO DOC BLOCK: android.provider.Settings Field ACTION_CAST_SETTINGS
+NO DOC BLOCK: android.media.AudioManager Field ACTION_HDMI_AUDIO_PLUG
+NO DOC BLOCK: android.media.AudioManager Field ACTION_HEADSET_PLUG
+NO DOC BLOCK: android.provider.Settings Field ACTION_HOME_SETTINGS
+NO DOC BLOCK: android.app.admin.DeviceAdminReceiver Field ACTION_LOCK_TASK_ENTERING
+NO DOC BLOCK: android.app.admin.DeviceAdminReceiver Field ACTION_LOCK_TASK_EXITING
+NO DOC BLOCK: android.app.AlarmManager Field ACTION_NEXT_ALARM_CLOCK_CHANGED
+NO DOC BLOCK: android.media.tv.TvInputManager Field ACTION_PARENTAL_CONTROLS_ENABLED_CHANGED
+NO DOC BLOCK: android.media.session.PlaybackState Field ACTION_PLAY_FROM_MEDIA_ID
+NO DOC BLOCK: android.media.session.PlaybackState Field ACTION_PLAY_FROM_SEARCH
+NO DOC BLOCK: android.media.tv.TvInputManager Field ACTION_QUERY_CONTENT_RATING_SYSTEMS
+NO DOC BLOCK: android.provider.ContactsContract.QuickContact Field ACTION_QUICK_CONTACT
+NO DOC BLOCK: android.provider.Settings Field ACTION_SHOW_REGULATORY_INFO
+NO DOC BLOCK: android.media.session.PlaybackState Field ACTION_SKIP_TO_QUEUE_ITEM
+NO DOC BLOCK: android.provider.Settings Field ACTION_USAGE_ACCESS_SETTINGS
+NO DOC BLOCK: android.provider.Settings Field ACTION_VOICE_INPUT_SETTINGS
+NO DOC BLOCK: android.R.attr Field actionBarPopupTheme
+NO DOC BLOCK: android.R.attr Field actionModeFindDrawable
+NO DOC BLOCK: android.R.attr Field actionModeShareDrawable
+NO DOC BLOCK: android.R.attr Field actionModeWebSearchDrawable
+NO DOC BLOCK: android.bluetooth.le.AdvertiseCallback Field ADVERTISE_FAILED_DATA_TOO_LARGE
+NO DOC BLOCK: android.bluetooth.le.AdvertiseCallback Field ADVERTISE_FAILED_FEATURE_UNSUPPORTED
+NO DOC BLOCK: android.bluetooth.le.AdvertiseCallback Field ADVERTISE_FAILED_INTERNAL_ERROR
+NO DOC BLOCK: android.app.ActivityManager.RecentTaskInfo Field affiliatedTaskId
+NO DOC BLOCK: android.media.MediaCodecList Field ALL_CODECS
+NO DOC BLOCK: android.R.attr Field ambientShadowAlpha
+NO DOC BLOCK: android.R.attr Field amPmBackgroundColor
+NO DOC BLOCK: android.R.attr Field amPmTextColor
+NO DOC BLOCK: android.content.Context Field APPWIDGET_SERVICE
+NO DOC BLOCK: android.provider.Telephony.ThreadsColumns Field ARCHIVED
+NO DOC BLOCK: android.app.Notification Field AUDIO_ATTRIBUTES_DEFAULT
+NO DOC BLOCK: android.media.AudioManager Field AUDIO_SESSION_ID_GENERATE
+NO DOC BLOCK: android.app.Notification Field audioAttributes
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecProfileLevel Field AVCLevel52
+NO DOC BLOCK: android.R.attr Field backgroundTint
+NO DOC BLOCK: android.R.attr Field backgroundTintMode
+NO DOC BLOCK: android.app.job.JobInfo Field BACKOFF_POLICY_EXPONENTIAL
+NO DOC BLOCK: android.app.job.JobInfo Field BACKOFF_POLICY_LINEAR
+NO DOC BLOCK: android.Manifest.permission Field BIND_DREAM_SERVICE
+NO DOC BLOCK: android.net.wifi.WpsInfo Field BSSID
+NO DOC BLOCK: android.media.MediaCodec Field BUFFER_FLAG_KEY_FRAME
+NO DOC BLOCK: android.R.attr Field buttonBarNegativeButtonStyle
+NO DOC BLOCK: android.R.attr Field buttonBarNeutralButtonStyle
+NO DOC BLOCK: android.R.attr Field buttonBarPositiveButtonStyle
+NO DOC BLOCK: android.R.attr Field buttonTint
+NO DOC BLOCK: android.R.attr Field buttonTintMode
+NO DOC BLOCK: android.R.attr Field calendarTextColor
+NO DOC BLOCK: android.bluetooth.le.ScanSettings Field CALLBACK_TYPE_ALL_MATCHES
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_OUT_SIDE_LEFT
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_OUT_SIDE_RIGHT
+NO DOC BLOCK: android.R.attr Field checkMarkTint
+NO DOC BLOCK: android.R.attr Field checkMarkTintMode
+NO DOC BLOCK: android.R.attr Field closeIcon
+NO DOC BLOCK: android.hardware.camera2.CaptureRequest Field COLOR_CORRECTION_ABERRATION_MODE
+NO DOC BLOCK: android.hardware.camera2.CaptureResult Field COLOR_CORRECTION_ABERRATION_MODE
+NO DOC BLOCK: android.hardware.camera2.CameraMetadata Field COLOR_CORRECTION_ABERRATION_MODE_FAST
+NO DOC BLOCK: android.hardware.camera2.CameraMetadata Field COLOR_CORRECTION_ABERRATION_MODE_HIGH_QUALITY
+NO DOC BLOCK: android.hardware.camera2.CameraMetadata Field COLOR_CORRECTION_ABERRATION_MODE_OFF
+NO DOC BLOCK: android.hardware.camera2.CameraCharacteristics Field COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecCapabilities Field COLOR_FormatYUV420Flexible
+NO DOC BLOCK: android.R.attr Field colorEdgeEffect
+NO DOC BLOCK: android.media.tv.TvContract.Programs Field COLUMN_CONTENT_RATING
+NO DOC BLOCK: android.media.tv.TvContract.Programs Field COLUMN_EPISODE_NUMBER
+NO DOC BLOCK: android.media.tv.TvContract.Programs Field COLUMN_EPISODE_TITLE
+NO DOC BLOCK: android.media.tv.TvContract.Channels Field COLUMN_INPUT_ID
+NO DOC BLOCK: android.media.tv.TvContract.Channels Field COLUMN_NETWORK_AFFILIATION
+NO DOC BLOCK: android.media.tv.TvContract.Programs Field COLUMN_SEASON_NUMBER
+NO DOC BLOCK: android.media.tv.TvContract.Channels Field COLUMN_VIDEO_FORMAT
+NO DOC BLOCK: android.media.tv.TvContract.Programs Field COLUMN_VIDEO_HEIGHT
+NO DOC BLOCK: android.media.tv.TvContract.Programs Field COLUMN_VIDEO_WIDTH
+NO DOC BLOCK: android.R.attr Field commitIcon
+NO DOC BLOCK: android.bluetooth.BluetoothGatt Field CONNECTION_PRIORITY_BALANCED
+NO DOC BLOCK: android.bluetooth.BluetoothGatt Field CONNECTION_PRIORITY_HIGH
+NO DOC BLOCK: android.bluetooth.BluetoothGatt Field CONNECTION_PRIORITY_LOW_POWER
+NO DOC BLOCK: android.provider.ContactsContract.Contacts Field CONTENT_FREQUENT_URI
+NO DOC BLOCK: android.R.attr Field contentAgeHint
+NO DOC BLOCK: android.hardware.camera2.CameraMetadata Field CONTROL_SCENE_MODE_HIGH_SPEED_VIDEO
+NO DOC BLOCK: android.R.attr Field country
+NO DOC BLOCK: android.media.tv.TvInputInfo Field CREATOR
+NO DOC BLOCK: android.net.LinkAddress Field CREATOR
+NO DOC BLOCK: android.net.ProxyInfo Field CREATOR
+NO DOC BLOCK: android.provider.Telephony.BaseMmsColumns Field CREATOR
+NO DOC BLOCK: android.provider.Telephony.TextBasedSmsColumns Field CREATOR
+NO DOC BLOCK: android.view.inputmethod.InputConnection Field CURSOR_UPDATE_IMMEDIATE
+NO DOC BLOCK: android.view.inputmethod.InputConnection Field CURSOR_UPDATE_MONITOR
+NO DOC BLOCK: android.provider.CallLog.Calls Field DATA_USAGE
+NO DOC BLOCK: android.R.attr Field datePickerDialogTheme
+NO DOC BLOCK: android.R.attr Field datePickerMode
+NO DOC BLOCK: android.R.attr Field dayOfWeekBackground
+NO DOC BLOCK: android.R.attr Field dayOfWeekTextAppearance
+NO DOC BLOCK: android.app.job.JobInfo Field DEFAULT_INITIAL_BACKOFF_MILLIS
+NO DOC BLOCK: android.provider.ContactsContract Field DEFERRED_SNIPPETING
+NO DOC BLOCK: android.provider.ContactsContract Field DEFERRED_SNIPPETING_QUERY
+NO DOC BLOCK: android.util.DisplayMetrics Field DENSITY_560
+NO DOC BLOCK: android.os.UserManager Field DISALLOW_APPS_CONTROL
+NO DOC BLOCK: android.os.UserManager Field DISALLOW_CREATE_WINDOWS
+NO DOC BLOCK: android.os.UserManager Field DISALLOW_CROSS_PROFILE_COPY_PASTE
+NO DOC BLOCK: android.os.UserManager Field DISALLOW_OUTGOING_CALLS
+NO DOC BLOCK: android.os.UserManager Field DISALLOW_SMS
+NO DOC BLOCK: android.app.UiModeManager Field ENABLE_CAR_MODE_ALLOW_SLEEP
+NO DOC BLOCK: android.media.AudioFormat Field ENCODING_AC3
+NO DOC BLOCK: android.media.AudioFormat Field ENCODING_E_AC3
+NO DOC BLOCK: android.provider.ContactsContract.PhoneLookup Field ENTERPRISE_CONTENT_FILTER_URI
+NO DOC BLOCK: android.media.AudioManager Field ERROR
+NO DOC BLOCK: android.media.AudioManager Field ERROR_DEAD_OBJECT
+NO DOC BLOCK: android.media.MediaCodec.CryptoException Field ERROR_INSUFFICIENT_OUTPUT_PROTECTION
+NO DOC BLOCK: android.speech.tts.TextToSpeech Field ERROR_INVALID_REQUEST
+NO DOC BLOCK: android.speech.tts.TextToSpeech Field ERROR_NETWORK
+NO DOC BLOCK: android.speech.tts.TextToSpeech Field ERROR_NETWORK_TIMEOUT
+NO DOC BLOCK: android.speech.tts.TextToSpeech Field ERROR_NOT_INSTALLED_YET
+NO DOC BLOCK: android.speech.tts.TextToSpeech Field ERROR_OUTPUT
+NO DOC BLOCK: android.speech.tts.TextToSpeech Field ERROR_SERVICE
+NO DOC BLOCK: android.speech.tts.TextToSpeech Field ERROR_SYNTHESIS
+NO DOC BLOCK: android.R.attr Field excludeName
+NO DOC BLOCK: android.R.transition Field explode
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Callable Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Contactables Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Email Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Event Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.GroupMembership Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Identity Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Im Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Nickname Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Note Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Organization Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Phone Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Photo Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Relation Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.SipAddress Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.StructuredName Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.StructuredPostal Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Website Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.Contacts Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.Data Field EXTRA_ADDRESS_BOOK_INDEX
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Callable Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Contactables Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Email Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Event Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.GroupMembership Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Identity Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Im Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Nickname Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Note Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Organization Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Phone Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Photo Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Relation Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.SipAddress Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.StructuredName Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.StructuredPostal Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Website Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.Contacts Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.Data Field EXTRA_ADDRESS_BOOK_INDEX_COUNTS
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Callable Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Contactables Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Email Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Event Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.GroupMembership Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Identity Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Im Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Nickname Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Note Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Organization Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Phone Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Photo Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Relation Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.SipAddress Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.StructuredName Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.StructuredPostal Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Website Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.Contacts Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.provider.ContactsContract.Data Field EXTRA_ADDRESS_BOOK_INDEX_TITLES
+NO DOC BLOCK: android.appwidget.AppWidgetManager Field EXTRA_APPWIDGET_PROVIDER_PROFILE
+NO DOC BLOCK: android.content.Intent Field EXTRA_ASSIST_INPUT_HINT_KEYBOARD
+NO DOC BLOCK: android.media.AudioManager Field EXTRA_AUDIO_PLUG_STATE
+NO DOC BLOCK: android.app.Notification Field EXTRA_BIG_TEXT
+NO DOC BLOCK: android.provider.CallLog.Calls Field EXTRA_CALL_TYPE_FILTER
+NO DOC BLOCK: android.app.Notification Field EXTRA_COMPACT_ACTIONS
+NO DOC BLOCK: android.media.AudioManager Field EXTRA_ENCODINGS
+NO DOC BLOCK: android.provider.ContactsContract.QuickContact Field EXTRA_EXCLUDE_MIMES
+NO DOC BLOCK: android.media.tv.TvInputInfo Field EXTRA_INPUT_ID
+NO DOC BLOCK: android.app.admin.DeviceAdminReceiver Field EXTRA_LOCK_TASK_PACKAGE
+NO DOC BLOCK: android.media.AudioManager Field EXTRA_MAX_CHANNEL_COUNT
+NO DOC BLOCK: android.telephony.SmsManager Field EXTRA_MMS_DATA
+NO DOC BLOCK: android.printservice.PrintService Field EXTRA_PRINTER_INFO
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_EMAIL_ADDRESS
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_LOCAL_TIME
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_LOCALE
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_TIME_ZONE
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_WIFI_HIDDEN
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_WIFI_PAC_URL
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_WIFI_PASSWORD
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_WIFI_PROXY_BYPASS
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_WIFI_PROXY_HOST
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_WIFI_PROXY_PORT
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_WIFI_SECURITY_TYPE
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field EXTRA_PROVISIONING_WIFI_SSID
+NO DOC BLOCK: android.content.Intent Field EXTRA_REPLACEMENT_EXTRAS
+NO DOC BLOCK: android.content.ContentResolver Field EXTRA_SIZE
+NO DOC BLOCK: android.R.transition Field fade
+NO DOC BLOCK: android.view.Window Field FEATURE_ACTIVITY_TRANSITIONS
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_AUDIO_OUTPUT
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_CAMERA_CAPABILITY_RAW
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_CAMERA_LEVEL_FULL
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_CONNECTION_SERVICE
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_GAMEPAD
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_LIVE_TV
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_MANAGED_USERS
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_OPENGLES_EXTENSION_PACK
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_SECURELY_REMOVES_USERS
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecCapabilities Field FEATURE_SecurePlayback
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_SENSOR_AMBIENT_TEMPERATURE
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_SENSOR_HEART_RATE_ECG
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_SENSOR_RELATIVE_HUMIDITY
+NO DOC BLOCK: android.media.MediaCodecInfo.CodecCapabilities Field FEATURE_TunneledPlayback
+NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_VERIFIED_BOOT
+NO DOC BLOCK: android.content.pm.PackageInfo Field featureGroups
+NO DOC BLOCK: android.provider.CallLog.Calls Field FEATURES
+NO DOC BLOCK: android.provider.CallLog.Calls Field FEATURES_VIDEO
+NO DOC BLOCK: android.R.attr Field fillAlpha
+NO DOC BLOCK: android.R.attr Field fillColor
+NO DOC BLOCK: android.content.Intent Field FLAG_ACTIVITY_RETAIN_IN_RECENTS
+NO DOC BLOCK: android.content.pm.ApplicationInfo Field FLAG_FULL_BACKUP_ONLY
+NO DOC BLOCK: android.view.inputmethod.CursorAnchorInfo Field FLAG_HAS_INVISIBLE_REGION
+NO DOC BLOCK: android.view.inputmethod.CursorAnchorInfo Field FLAG_HAS_VISIBLE_REGION
+NO DOC BLOCK: android.view.inputmethod.CursorAnchorInfo Field FLAG_IS_RTL
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field FLAG_MANAGED_CAN_ACCESS_PARENT
+NO DOC BLOCK: android.content.pm.ApplicationInfo Field FLAG_MULTIARCH
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field FLAG_PARENT_CAN_ACCESS_MANAGED
+NO DOC BLOCK: android.content.pm.ActivityInfo Field FLAG_RELINQUISH_TASK_IDENTITY
+NO DOC BLOCK: android.content.pm.ActivityInfo Field FLAG_RESUME_WHILE_PAUSING
+NO DOC BLOCK: android.R.attr Field fontFeatureSettings
+NO DOC BLOCK: android.R.attr Field foregroundTint
+NO DOC BLOCK: android.R.attr Field foregroundTintMode
+NO DOC BLOCK: android.net.wifi.WifiConfiguration Field FQDN
+NO DOC BLOCK: android.R.attr Field fragmentAllowEnterTransitionOverlap
+NO DOC BLOCK: android.R.attr Field fragmentAllowReturnTransitionOverlap
+NO DOC BLOCK: android.R.attr Field fragmentEnterTransition
+NO DOC BLOCK: android.R.attr Field fragmentExitTransition
+NO DOC BLOCK: android.R.attr Field fragmentReenterTransition
+NO DOC BLOCK: android.R.attr Field fragmentReturnTransition
+NO DOC BLOCK: android.R.attr Field fragmentSharedElementEnterTransition
+NO DOC BLOCK: android.R.attr Field fragmentSharedElementReturnTransition
+NO DOC BLOCK: android.R.attr Field fullBackupOnly
+NO DOC BLOCK: android.bluetooth.BluetoothGatt Field GATT_CONNECTION_CONGESTED
+NO DOC BLOCK: android.accessibilityservice.AccessibilityService Field GLOBAL_ACTION_POWER_DIALOG
+NO DOC BLOCK: android.R.attr Field goIcon
+NO DOC BLOCK: android.R.attr Field headerAmPmTextAppearance
+NO DOC BLOCK: android.R.attr Field headerDayOfMonthTextAppearance
+NO DOC BLOCK: android.R.attr Field headerMonthTextAppearance
+NO DOC BLOCK: android.R.attr Field headerTimeTextAppearance
+NO DOC BLOCK: android.R.attr Field headerYearTextAppearance
+NO DOC BLOCK: android.app.Notification Field headsUpContentView
+NO DOC BLOCK: android.service.notification.NotificationListenerService Field HINT_HOST_DISABLE_EFFECTS
+NO DOC BLOCK: android.app.ActivityManager.RunningAppProcessInfo Field IMPORTANCE_GONE
+NO DOC BLOCK: android.R.attr Field indeterminateTint
+NO DOC BLOCK: android.R.attr Field indeterminateTintMode
+NO DOC BLOCK: android.hardware.camera2.CameraMetadata Field INFO_SUPPORTED_HARDWARE_LEVEL_LEGACY
+NO DOC BLOCK: android.media.tv.TvInputManager Field INPUT_STATE_CONNECTED
+NO DOC BLOCK: android.media.tv.TvInputManager Field INPUT_STATE_CONNECTED_STANDBY
+NO DOC BLOCK: android.media.tv.TvInputManager Field INPUT_STATE_DISCONNECTED
+NO DOC BLOCK: android.R.attr Field inset
+NO DOC BLOCK: android.content.pm.PackageInfo Field INSTALL_LOCATION_AUTO
+NO DOC BLOCK: android.content.pm.PackageInfo Field INSTALL_LOCATION_INTERNAL_ONLY
+NO DOC BLOCK: android.content.pm.PackageInfo Field INSTALL_LOCATION_PREFER_EXTERNAL
+NO DOC BLOCK: android.content.pm.PackageInfo Field installLocation
+NO DOC BLOCK: android.service.notification.NotificationListenerService Field INTERRUPTION_FILTER_ALL
+NO DOC BLOCK: android.service.notification.NotificationListenerService Field INTERRUPTION_FILTER_NONE
+NO DOC BLOCK: android.service.notification.NotificationListenerService Field INTERRUPTION_FILTER_PRIORITY
+NO DOC BLOCK: android.media.MediaFormat Field KEY_AAC_DRC_ATTENUATION_FACTOR
+NO DOC BLOCK: android.media.MediaFormat Field KEY_AAC_DRC_BOOST_FACTOR
+NO DOC BLOCK: android.media.MediaFormat Field KEY_AAC_DRC_HEAVY_COMPRESSION
+NO DOC BLOCK: android.media.MediaFormat Field KEY_AAC_DRC_TARGET_REFERENCE_LEVEL
+NO DOC BLOCK: android.media.MediaFormat Field KEY_AAC_ENCODED_TARGET_LEVEL
+NO DOC BLOCK: android.media.MediaFormat Field KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT
+NO DOC BLOCK: android.media.MediaFormat Field KEY_AAC_SBR_MODE
+NO DOC BLOCK: android.media.MediaFormat Field KEY_AUDIO_SESSION_ID
+NO DOC BLOCK: android.media.MediaFormat Field KEY_BITRATE_MODE
+NO DOC BLOCK: android.media.MediaFormat Field KEY_CAPTURE_RATE
+NO DOC BLOCK: android.media.MediaFormat Field KEY_COMPLEXITY
+NO DOC BLOCK: android.speech.tts.TextToSpeech.Engine Field KEY_FEATURE_NETWORK_RETRIES_COUNT
+NO DOC BLOCK: android.speech.tts.TextToSpeech.Engine Field KEY_FEATURE_NETWORK_TIMEOUT_MS
+NO DOC BLOCK: android.speech.tts.TextToSpeech.Engine Field KEY_FEATURE_NOT_INSTALLED
+NO DOC BLOCK: android.speech.tts.TextToSpeech.Engine Field KEY_PARAM_SESSION_ID
+NO DOC BLOCK: android.media.MediaFormat Field KEY_PROFILE
+NO DOC BLOCK: android.media.MediaFormat Field KEY_TEMPORAL_LAYERING
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_HELP
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_ANTENNA_CABLE
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_AUDIO_DESCRIPTION
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_CONTENTS_MENU
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_INPUT_COMPONENT_1
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_INPUT_COMPONENT_2
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_INPUT_COMPOSITE_1
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_INPUT_COMPOSITE_2
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_INPUT_HDMI_1
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_INPUT_HDMI_2
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_INPUT_HDMI_3
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_INPUT_HDMI_4
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_INPUT_VGA_1
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_MEDIA_CONTEXT_MENU
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_NETWORK
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_NUMBER_ENTRY
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_RADIO_SERVICE
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_SATELLITE
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_SATELLITE_BS
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_SATELLITE_CS
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_SATELLITE_SERVICE
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_TELETEXT
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_TERRESTRIAL_ANALOG
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_TERRESTRIAL_DIGITAL
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_TIMER_PROGRAMMING
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_TV_ZOOM_MODE
+NO DOC BLOCK: android.view.KeyEvent Field KEYCODE_VOICE_ASSIST
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field KEYGUARD_DISABLE_FINGERPRINT
+NO DOC BLOCK: android.R.attr Field launchTaskBehindSourceAnimation
+NO DOC BLOCK: android.R.attr Field launchTaskBehindTargetAnimation
+NO DOC BLOCK: android.R.attr Field layout_columnWeight
+NO DOC BLOCK: android.R.attr Field layout_rowWeight
+NO DOC BLOCK: android.R.attr Field letterSpacing
+NO DOC BLOCK: android.os.Build.VERSION_CODES Field LOLLIPOP
+NO DOC BLOCK: android.transition.Transition Field MATCH_NAME
+NO DOC BLOCK: android.app.job.JobInfo Field MAX_BACKOFF_DELAY_MILLIS
+NO DOC BLOCK: android.hardware.camera2.DngCreator Field MAX_THUMBNAIL_DIMENSION
+NO DOC BLOCK: android.R.attr Field maximumAngle
+NO DOC BLOCK: android.content.Context Field MEDIA_PROJECTION_SERVICE
+NO DOC BLOCK: android.media.MediaPlayer.TrackInfo Field MEDIA_TRACK_TYPE_SUBTITLE
+NO DOC BLOCK: android.provider.Telephony.BaseMmsColumns Field MESSAGE_BOX_FAILED
+NO DOC BLOCK: android.media.tv.TvInputManager Field META_DATA_CONTENT_RATING_SYSTEMS
+NO DOC BLOCK: android.media.MediaMetadata Field METADATA_KEY_DISPLAY_DESCRIPTION
+NO DOC BLOCK: android.media.MediaMetadata Field METADATA_KEY_DISPLAY_ICON
+NO DOC BLOCK: android.media.MediaMetadata Field METADATA_KEY_DISPLAY_ICON_URI
+NO DOC BLOCK: android.media.MediaMetadata Field METADATA_KEY_DISPLAY_SUBTITLE
+NO DOC BLOCK: android.media.MediaMetadata Field METADATA_KEY_DISPLAY_TITLE
+NO DOC BLOCK: android.media.MediaMetadata Field METADATA_KEY_MEDIA_ID
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field MIME_TYPE_PROVISIONING_NFC
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_AAC
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_AC3
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_AMR_NB
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_AMR_WB
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_FLAC
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_G711_ALAW
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_G711_MLAW
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_MPEG
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_MSGSM
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_OPUS
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_QCELP
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_RAW
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_AUDIO_VORBIS
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_TEXT_CEA_608
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_TEXT_VTT
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_VIDEO_AVC
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_VIDEO_H263
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_VIDEO_HEVC
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_VIDEO_MPEG2
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_VIDEO_MPEG4
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_VIDEO_RAW
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_VIDEO_VP8
+NO DOC BLOCK: android.media.MediaFormat Field MIMETYPE_VIDEO_VP9
+NO DOC BLOCK: android.R.attr Field minimumHorizontalAngle
+NO DOC BLOCK: android.R.attr Field minimumVerticalAngle
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_ALIAS_ENABLED
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_ALIAS_MAX_CHARS
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_ALIAS_MIN_CHARS
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_ALLOW_ATTACH_AUDIO
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_APPEND_TRANSACTION_ID
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_EMAIL_GATEWAY_NUMBER
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_GROUP_MMS_ENABLED
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_HTTP_PARAMS
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_HTTP_SOCKET_TIMEOUT
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_MAX_IMAGE_HEIGHT
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_MAX_IMAGE_WIDTH
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_MAX_MESSAGE_SIZE
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_MMS_ENABLED
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_MMS_READ_REPORT_ENABLED
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_MULTIPART_SMS_ENABLED
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_NAI_SUFFIX
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_RECIPIENT_LIMIT
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_SUBJECT_MAX_LENGTH
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_UA_PROF_TAG_NAME
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_UA_PROF_URL
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_CONFIG_USER_AGENT
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_ERROR_CONFIGURATION_ERROR
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_ERROR_HTTP_FAILURE
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_ERROR_INVALID_APN
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_ERROR_IO_ERROR
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_ERROR_RETRY
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_ERROR_UNABLE_CONNECT_MMS
+NO DOC BLOCK: android.telephony.SmsManager Field MMS_ERROR_UNSPECIFIED
+NO DOC BLOCK: android.app.AppOpsManager Field MODE_DEFAULT
+NO DOC BLOCK: android.transition.Visibility Field MODE_IN
+NO DOC BLOCK: android.transition.Visibility Field MODE_OUT
+NO DOC BLOCK: android.R.transition Field move
+NO DOC BLOCK: android.R.attr Field multiArch
+NO DOC BLOCK: android.provider.ContactsContract.ContactsColumns Field NAME_RAW_CONTACT_ID
+NO DOC BLOCK: android.view.Window Field NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME
+NO DOC BLOCK: android.R.id Field navigationBarBackground
+NO DOC BLOCK: android.R.attr Field navigationContentDescription
+NO DOC BLOCK: android.R.attr Field navigationIcon
+NO DOC BLOCK: android.net.NetworkCapabilities Field NET_CAPABILITY_NOT_VPN
+NO DOC BLOCK: android.net.NetworkCapabilities Field NET_CAPABILITY_TRUSTED
+NO DOC BLOCK: android.app.job.JobInfo Field NETWORK_TYPE_ANY
+NO DOC BLOCK: android.app.job.JobInfo Field NETWORK_TYPE_NONE
+NO DOC BLOCK: android.app.job.JobInfo Field NETWORK_TYPE_UNMETERED
+NO DOC BLOCK: android.R.attr Field numbersBackgroundColor
+NO DOC BLOCK: android.R.attr Field numbersSelectorColor
+NO DOC BLOCK: android.R.attr Field numbersTextColor
+NO DOC BLOCK: android.app.AppOpsManager Field OPSTR_GET_USAGE_STATS
+NO DOC BLOCK: android.R.attr Field outlineProvider
+NO DOC BLOCK: android.R.attr Field overlapAnchor
+NO DOC BLOCK: android.app.admin.DevicePolicyManager Field PASSWORD_QUALITY_NUMERIC_COMPLEX
+NO DOC BLOCK: android.R.attr Field patternPathData
+NO DOC BLOCK: android.content.pm.ActivityInfo Field PERSIST_ACROSS_REBOOTS
+NO DOC BLOCK: android.content.pm.ActivityInfo Field PERSIST_NEVER
+NO DOC BLOCK: android.content.pm.ActivityInfo Field PERSIST_ROOT_ONLY
+NO DOC BLOCK: android.R.attr Field persistableMode
+NO DOC BLOCK: android.content.pm.ActivityInfo Field persistableMode
+NO DOC BLOCK: android.provider.CallLog.Calls Field PHONE_ACCOUNT_COMPONENT_NAME
+NO DOC BLOCK: android.provider.CallLog.Calls Field PHONE_ACCOUNT_ID
+NO DOC BLOCK: android.provider.ContactsContract.ContactOptionsColumns Field PINNED
+NO DOC BLOCK: android.R.attr Field popupElevation
+NO DOC BLOCK: android.R.attr Field popupTheme
+NO DOC BLOCK: android.system.OsConstants Field PR_GET_DUMPABLE
+NO DOC BLOCK: android.system.OsConstants Field PR_SET_DUMPABLE
+NO DOC BLOCK: android.view.WindowManager.LayoutParams Field preferredRefreshRate
+NO DOC BLOCK: java.util.Locale Field PRIVATE_USE_EXTENSION
+NO DOC BLOCK: android.R.attr Field progressBackgroundTint
+NO DOC BLOCK: android.R.attr Field progressBackgroundTintMode
+NO DOC BLOCK: android.R.attr Field progressTint
+NO DOC BLOCK: android.R.attr Field progressTintMode
+NO DOC BLOCK: android.R.attr Field propertyXName
+NO DOC BLOCK: android.R.attr Field propertyYName
+NO DOC BLOCK: android.content.pm.PermissionInfo Field PROTECTION_FLAG_APPOP
+NO DOC BLOCK: android.os.PowerManager Field PROXIMITY_SCREEN_OFF_WAKE_LOCK
+NO DOC BLOCK: android.media.CamcorderProfile Field QUALITY_2160P
+NO DOC BLOCK: android.media.CamcorderProfile Field QUALITY_HIGH_SPEED_1080P
+NO DOC BLOCK: android.media.CamcorderProfile Field QUALITY_HIGH_SPEED_2160P
+NO DOC BLOCK: android.media.CamcorderProfile Field QUALITY_HIGH_SPEED_480P
+NO DOC BLOCK: android.media.CamcorderProfile Field QUALITY_HIGH_SPEED_720P
+NO DOC BLOCK: android.media.CamcorderProfile Field QUALITY_HIGH_SPEED_HIGH
+NO DOC BLOCK: android.media.CamcorderProfile Field QUALITY_HIGH_SPEED_LOW
+NO DOC BLOCK: android.media.CamcorderProfile Field QUALITY_TIME_LAPSE_2160P
+NO DOC BLOCK: android.R.attr Field queryBackground
+NO DOC BLOCK: android.graphics.ImageFormat Field RAW10
+NO DOC BLOCK: android.Manifest.permission Field READ_VOICEMAIL
+NO DOC BLOCK: android.R.attr Field recognitionService
+NO DOC BLOCK: android.media.MediaCodecList Field REGULAR_CODECS
+NO DOC BLOCK: android.os.PowerManager Field RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY
+NO DOC BLOCK: android.R.attr Field relinquishTaskIdentity
+NO DOC BLOCK: android.R.attr Field reparent
+NO DOC BLOCK: android.R.attr Field reparentWithOverlay
+NO DOC BLOCK: android.hardware.Sensor Field REPORTING_MODE_CONTINUOUS
+NO DOC BLOCK: android.hardware.Sensor Field REPORTING_MODE_ON_CHANGE
+NO DOC BLOCK: android.hardware.Sensor Field REPORTING_MODE_ONE_SHOT
+NO DOC BLOCK: android.hardware.Sensor Field REPORTING_MODE_SPECIAL_TRIGGER
+NO DOC BLOCK: android.hardware.camera2.CameraMetadata Field REQUEST_AVAILABLE_CAPABILITIES_BACKWARD_COMPATIBLE
+NO DOC BLOCK: android.hardware.camera2.CameraMetadata Field REQUEST_AVAILABLE_CAPABILITIES_RAW
+NO DOC BLOCK: android.provider.ContactsContract.DataColumns Field RES_PACKAGE
+NO DOC BLOCK: android.provider.ContactsContract.GroupsColumns Field RES_PACKAGE
+NO DOC BLOCK: android.webkit.PermissionRequest Field RESOURCE_PROTECTED_MEDIA_ID
+NO DOC BLOCK: android.content.Context Field RESTRICTIONS_SERVICE
+NO DOC BLOCK: android.R.attr Field restrictionType
+NO DOC BLOCK: android.R.attr Field resumeWhilePausing
+NO DOC BLOCK: android.bluetooth.le.ScanCallback Field SCAN_FAILED_FEATURE_UNSUPPORTED
+NO DOC BLOCK: android.bluetooth.le.ScanCallback Field SCAN_FAILED_INTERNAL_ERROR
+NO DOC BLOCK: android.R.attr Field searchIcon
+NO DOC BLOCK: android.R.attr Field searchViewStyle
+NO DOC BLOCK: android.R.attr Field secondaryProgressTint
+NO DOC BLOCK: android.R.attr Field secondaryProgressTintMode
+NO DOC BLOCK: android.os.Message Field sendingUid
+NO DOC BLOCK: android.hardware.camera2.CameraCharacteristics Field SENSOR_INFO_TIMESTAMP_SOURCE
+NO DOC BLOCK: android.hardware.camera2.CameraMetadata Field SENSOR_INFO_TIMESTAMP_SOURCE_REALTIME
+NO DOC BLOCK: android.hardware.camera2.CameraMetadata Field SENSOR_INFO_TIMESTAMP_SOURCE_UNKNOWN
+NO DOC BLOCK: android.hardware.camera2.CaptureResult Field SENSOR_NOISE_PROFILE
+NO DOC BLOCK: android.hardware.camera2.CaptureResult Field SENSOR_ROLLING_SHUTTER_SKEW
+NO DOC BLOCK: android.hardware.SensorManager Field SENSOR_STATUS_NO_CONTACT
+NO DOC BLOCK: android.R.attr Field showText
+NO DOC BLOCK: android.provider.Settings.Secure Field SKIP_FIRST_USE_HINTS
+NO DOC BLOCK: android.R.transition Field slide_bottom
+NO DOC BLOCK: android.R.transition Field slide_left
+NO DOC BLOCK: android.R.transition Field slide_right
+NO DOC BLOCK: android.R.transition Field slide_top
+NO DOC BLOCK: android.content.pm.PackageInfo Field splitNames
+NO DOC BLOCK: android.content.pm.ApplicationInfo Field splitPublicSourceDirs
+NO DOC BLOCK: android.content.pm.InstrumentationInfo Field splitPublicSourceDirs
+NO DOC BLOCK: android.content.pm.ApplicationInfo Field splitSourceDirs
+NO DOC BLOCK: android.content.pm.InstrumentationInfo Field splitSourceDirs
+NO DOC BLOCK: android.R.attr Field spotShadowAlpha
+NO DOC BLOCK: android.media.session.PlaybackState Field STATE_CONNECTING
+NO DOC BLOCK: android.view.Display Field STATE_DOZE
+NO DOC BLOCK: android.view.Display Field STATE_DOZE_SUSPEND
+NO DOC BLOCK: android.media.session.PlaybackState Field STATE_SKIPPING_TO_QUEUE_ITEM
+NO DOC BLOCK: android.view.Window Field STATUS_BAR_BACKGROUND_TRANSITION_NAME
+NO DOC BLOCK: android.R.id Field statusBarBackground
+NO DOC BLOCK: android.speech.tts.TextToSpeech Field STOPPED
+NO DOC BLOCK: android.R.attr Field strokeAlpha
+NO DOC BLOCK: android.R.attr Field strokeColor
+NO DOC BLOCK: android.R.attr Field strokeMiterLimit
+NO DOC BLOCK: android.R.attr Field submitBackground
+NO DOC BLOCK: android.R.attr Field suggestionRowLayout
+NO DOC BLOCK: android.os.Build Field SUPPORTED_32_BIT_ABIS
+NO DOC BLOCK: android.os.Build Field SUPPORTED_64_BIT_ABIS
+NO DOC BLOCK: android.os.Build Field SUPPORTED_ABIS
+NO DOC BLOCK: android.R.attr Field targetName
+NO DOC BLOCK: android.app.ActivityManager.RecentTaskInfo Field taskDescription
+NO DOC BLOCK: android.content.Context Field TELECOM_SERVICE
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Notification
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Notification_Emphasis
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Notification_Info
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Notification_Line2
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Notification_Time
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Notification_Title
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_Toolbar_Subtitle
+NO DOC BLOCK: android.R.style Field TextAppearance_Material_Widget_Toolbar_Title
+NO DOC BLOCK: android.R.style Field Theme_Material_Dialog_Alert
+NO DOC BLOCK: android.R.style Field Theme_Material_Dialog_Presentation
+NO DOC BLOCK: android.R.style Field Theme_Material_Light_Dialog_Alert
+NO DOC BLOCK: android.R.style Field Theme_Material_Light_Dialog_Presentation
+NO DOC BLOCK: android.R.attr Field thumbTint
+NO DOC BLOCK: android.R.attr Field thumbTintMode
+NO DOC BLOCK: android.R.attr Field tileModeX
+NO DOC BLOCK: android.R.attr Field tileModeY
+NO DOC BLOCK: android.R.attr Field timePickerDialogTheme
+NO DOC BLOCK: android.R.attr Field timePickerMode
+NO DOC BLOCK: android.R.attr Field timePickerStyle
+NO DOC BLOCK: android.provider.ContactsContract.GroupsColumns Field TITLE_RES
+NO DOC BLOCK: android.R.attr Field toolbarStyle
+NO DOC BLOCK: android.R.attr Field touchscreenBlocksFocus
+NO DOC BLOCK: android.provider.CallLog.Calls Field TRANSCRIPTION
+NO DOC BLOCK: android.provider.VoicemailContract.Voicemails Field TRANSCRIPTION
+NO DOC BLOCK: android.R.attr Field transitionName
+NO DOC BLOCK: android.R.attr Field transitionVisibilityMode
+NO DOC BLOCK: android.R.attr Field translateX
+NO DOC BLOCK: android.R.attr Field translateY
+NO DOC BLOCK: android.net.NetworkCapabilities Field TRANSPORT_VPN
+NO DOC BLOCK: android.media.tv.TvInputInfo Field TYPE_COMPONENT
+NO DOC BLOCK: android.media.tv.TvInputInfo Field TYPE_COMPOSITE
+NO DOC BLOCK: android.media.tv.TvInputInfo Field TYPE_DISPLAY_PORT
+NO DOC BLOCK: android.media.tv.TvInputInfo Field TYPE_DVI
+NO DOC BLOCK: android.content.RestrictionEntry Field TYPE_INTEGER
+NO DOC BLOCK: android.media.tv.TvContract.Channels Field TYPE_NTSC
+NO DOC BLOCK: android.media.tv.TvInputInfo Field TYPE_OTHER
+NO DOC BLOCK: android.media.tv.TvContract.Channels Field TYPE_PAL
+NO DOC BLOCK: android.media.tv.TvInputInfo Field TYPE_SCART
+NO DOC BLOCK: android.media.tv.TvContract.Channels Field TYPE_SECAM
+NO DOC BLOCK: android.content.RestrictionEntry Field TYPE_STRING
+NO DOC BLOCK: android.media.tv.TvInputInfo Field TYPE_SVIDEO
+NO DOC BLOCK: android.media.tv.TvInputInfo Field TYPE_VGA
+NO DOC BLOCK: android.net.ConnectivityManager Field TYPE_VPN
+NO DOC BLOCK: java.util.Locale Field UNICODE_LOCALE_EXTENSION
+NO DOC BLOCK: android.media.tv.TvContract.Channels Field VIDEO_FORMAT_1080I
+NO DOC BLOCK: android.media.tv.TvContract.Channels Field VIDEO_FORMAT_1080P
+NO DOC BLOCK: android.media.tv.TvContract.Channels Field VIDEO_FORMAT_2160P
+NO DOC BLOCK: android.media.tv.TvContract.Channels Field VIDEO_FORMAT_240P
+NO DOC BLOCK: android.media.tv.TvContract.Channels Field VIDEO_FORMAT_360P
+NO DOC BLOCK: android.media.tv.TvContract.Channels Field VIDEO_FORMAT_4320P
+NO DOC BLOCK: android.media.tv.TvContract.Channels Field VIDEO_FORMAT_480I
+NO DOC BLOCK: android.media.tv.TvContract.Channels Field VIDEO_FORMAT_480P
+NO DOC BLOCK: android.media.tv.TvContract.Channels Field VIDEO_FORMAT_576I
+NO DOC BLOCK: android.media.tv.TvContract.Channels Field VIDEO_FORMAT_576P
+NO DOC BLOCK: android.media.tv.TvContract.Channels Field VIDEO_FORMAT_720P
+NO DOC BLOCK: android.media.tv.TvContract.Channels Field VIDEO_RESOLUTION_ED
+NO DOC BLOCK: android.media.tv.TvContract.Channels Field VIDEO_RESOLUTION_FHD
+NO DOC BLOCK: android.media.tv.TvContract.Channels Field VIDEO_RESOLUTION_HD
+NO DOC BLOCK: android.media.tv.TvContract.Channels Field VIDEO_RESOLUTION_SD
+NO DOC BLOCK: android.media.tv.TvContract.Channels Field VIDEO_RESOLUTION_UHD
+NO DOC BLOCK: android.media.tv.TvInputManager Field VIDEO_UNAVAILABLE_REASON_BUFFERING
+NO DOC BLOCK: android.media.tv.TvInputManager Field VIDEO_UNAVAILABLE_REASON_TUNING
+NO DOC BLOCK: android.media.tv.TvInputManager Field VIDEO_UNAVAILABLE_REASON_UNKNOWN
+NO DOC BLOCK: android.media.tv.TvInputManager Field VIDEO_UNAVAILABLE_REASON_WEAK_SIGNAL
+NO DOC BLOCK: android.hardware.display.DisplayManager Field VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR
+NO DOC BLOCK: android.media.audiofx.Virtualizer Field VIRTUALIZATION_MODE_AUTO
+NO DOC BLOCK: android.media.audiofx.Virtualizer Field VIRTUALIZATION_MODE_BINAURAL
+NO DOC BLOCK: android.media.audiofx.Virtualizer Field VIRTUALIZATION_MODE_OFF
+NO DOC BLOCK: android.media.audiofx.Virtualizer Field VIRTUALIZATION_MODE_TRANSAURAL
+NO DOC BLOCK: android.R.attr Field voiceIcon
+NO DOC BLOCK: android.media.MediaRecorder.AudioEncoder Field VORBIS
+NO DOC BLOCK: android.media.MediaRecorder.VideoEncoder Field VP8
+NO DOC BLOCK: android.media.MediaRecorder.OutputFormat Field WEBM
+NO DOC BLOCK: android.appwidget.AppWidgetProviderInfo Field WIDGET_CATEGORY_SEARCHBOX
+NO DOC BLOCK: android.R.style Field Widget_Material_Button_Borderless_Colored
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_Button_Borderless_Colored
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_DatePicker
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_SearchView
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_Spinner_Underlined
+NO DOC BLOCK: android.R.style Field Widget_Material_Light_TimePicker
+NO DOC BLOCK: android.R.style Field Widget_Material_SearchView
+NO DOC BLOCK: android.R.style Field Widget_Material_Spinner_Underlined
+NO DOC BLOCK: android.R.style Field Widget_Material_TimePicker
+NO DOC BLOCK: android.R.attr Field windowActivityTransitions
+NO DOC BLOCK: android.R.attr Field windowAllowReturnTransitionOverlap
+NO DOC BLOCK: android.R.attr Field windowClipToOutline
+NO DOC BLOCK: android.R.attr Field windowElevation
+NO DOC BLOCK: android.R.attr Field windowReenterTransition
+NO DOC BLOCK: android.R.attr Field windowReturnTransition
+NO DOC BLOCK: android.R.attr Field windowSharedElementReenterTransition
+NO DOC BLOCK: android.R.attr Field windowSharedElementReturnTransition
+NO DOC BLOCK: android.R.attr Field windowSharedElementsUseOverlay
+NO DOC BLOCK: android.R.attr Field windowTransitionBackgroundFadeDuration
+NO DOC BLOCK: android.net.wifi.WifiManager Field WPS_AUTH_FAILURE
+NO DOC BLOCK: android.net.wifi.WifiManager Field WPS_OVERLAP_ERROR
+NO DOC BLOCK: android.net.wifi.WifiManager Field WPS_TIMED_OUT
+NO DOC BLOCK: android.net.wifi.WifiManager Field WPS_TKIP_ONLY_PROHIBITED
+NO DOC BLOCK: android.net.wifi.WifiManager Field WPS_WEP_PROHIBITED
+NO DOC BLOCK: android.Manifest.permission Field WRITE_VOICEMAIL
+NO DOC BLOCK: android.R.attr Field yearListItemTextAppearance
+NO DOC BLOCK: android.R.attr Field yearListSelectorColor
diff --git a/docs/html/sdk/api_diff/preview-21/stylesheet-jdiff.css b/docs/html/sdk/api_diff/preview-21/stylesheet-jdiff.css
new file mode 100644
index 0000000..edafaa3
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/stylesheet-jdiff.css
@@ -0,0 +1,44 @@
+
+/* (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;}
+.indexBox {
+  border: 1px solid red;
+  margin:1em 0 0 0;}
+.letterIndexHead {
+  font-size: 1.5em;font-weight:9;
+  margin:0 0 0em 0;
+  border: 1px solid red;}
diff --git a/docs/html/sdk/api_diff/preview-21/user_comments_for_l-preview_to_21.xml b/docs/html/sdk/api_diff/preview-21/user_comments_for_l-preview_to_21.xml
new file mode 100644
index 0000000..93f5831d
--- /dev/null
+++ b/docs/html/sdk/api_diff/preview-21/user_comments_for_l-preview_to_21.xml
@@ -0,0 +1,14713 @@
+<?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="l-preview_to_21"
+  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.BIND_DREAM_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.Manifest.permission.GET_TASKS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.Manifest.permission.READ_SOCIAL_STREAM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.Manifest.permission.READ_VOICEMAIL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.Manifest.permission.WRITE_SOCIAL_STREAM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.Manifest.permission.WRITE_VOICEMAIL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.actionBarPopupTheme"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.actionBarTheme"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.actionModeFindDrawable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.actionModeShareDrawable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.actionModeWebSearchDrawable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.actionOverflowMenuStyle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.amPmBackgroundColor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.amPmTextColor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.ambientShadowAlpha"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.autoRemoveFromRecents"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.backgroundTint"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.backgroundTintMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.buttonBarNegativeButtonStyle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.buttonBarNeutralButtonStyle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.buttonBarPositiveButtonStyle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.buttonTint"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.buttonTintMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.calendarTextColor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.checkMarkTint"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.checkMarkTintMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.clipToPath"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.closeIcon"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.colorAccent"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.colorButtonNormal"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.colorControlActivated"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.colorControlHighlight"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.colorControlNormal"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.colorEdgeEffect"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.colorPrimary"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.colorPrimaryDark"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.commitIcon"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.contentAgeHint"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.contentInsetEnd"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.contentInsetLeft"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.contentInsetRight"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.contentInsetStart"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.controlX1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.controlX2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.controlY1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.controlY2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.country"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.datePickerDialogTheme"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.datePickerMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.dayOfWeekBackground"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.dayOfWeekTextAppearance"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.documentLaunchMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.elegantTextHeight"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.elevation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.excludeClass"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.excludeId"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.excludeName"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.excludeViewName"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fastScrollStyle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fill"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fillAlpha"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fillColor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fillOpacity"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fontFeatureSettings"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.foregroundTint"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.foregroundTintMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fragmentAllowEnterTransitionOverlap"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fragmentAllowReturnTransitionOverlap"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fragmentEnterTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fragmentExitTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fragmentReenterTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fragmentReturnTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fragmentSharedElementEnterTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fragmentSharedElementReturnTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fromId"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.fullBackupOnly"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.goIcon"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.headerAmPmTextAppearance"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.headerDayOfMonthTextAppearance"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.headerMonthTextAppearance"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.headerTimeTextAppearance"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.headerYearTextAppearance"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.hideOnContentScroll"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.indeterminateTint"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.indeterminateTintMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.inset"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad10"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad11"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad12"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad13"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad14"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad15"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad16"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad17"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad18"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad19"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad20"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad21"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad22"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad23"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad24"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad25"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad3"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad4"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad5"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad6"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad7"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad8"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.l_resource_pad9"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.launchTaskBehindSourceAnimation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.launchTaskBehindTargetAnimation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.layout_columnWeight"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.layout_rowWeight"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.letterSpacing"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.matchOrder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.maxRecents"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.maximumAngle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.minimumHorizontalAngle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.minimumVerticalAngle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.multiArch"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.navigationBarColor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.navigationContentDescription"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.navigationIcon"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.nestedScrollingEnabled"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.numbersBackgroundColor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.numbersSelectorColor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.numbersTextColor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.outlineProvider"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.overlapAnchor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.paddingMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.pathData"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.patternPathData"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.persistable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.persistableMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.popupElevation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.popupTheme"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.progressBackgroundTint"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.progressBackgroundTintMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.progressTint"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.progressTintMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.propertyXName"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.propertyYName"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.queryBackground"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.recognitionService"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.relinquishTaskIdentity"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.reparent"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.reparentWithOverlay"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.requiredForProfile"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.restrictionType"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.resumeWhilePausing"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.reversible"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.searchIcon"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.searchViewStyle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.secondaryProgressTint"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.secondaryProgressTintMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.selectableItemBackgroundBorderless"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.sessionService"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.showText"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.slideEdge"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.splitTrack"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.spotShadowAlpha"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.stackViewStyle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.stateListAnimator"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.statusBarColor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.stroke"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.strokeAlpha"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.strokeColor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.strokeLineCap"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.strokeLineJoin"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.strokeMiterLimit"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.strokeOpacity"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.strokeWidth"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.submitBackground"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.subtitleTextAppearance"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.suggestionRowLayout"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.switchStyle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.targetName"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.targetViewName"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.textAppearanceListItemSecondary"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.thumbTint"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.thumbTintMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.tileModeX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.tileModeY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.timePickerDialogTheme"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.timePickerMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.timePickerStyle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.tintMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.titleTextAppearance"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.toId"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.toolbarStyle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.touchscreenBlocksFocus"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.transitionGroup"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.transitionName"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.transitionVisibilityMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.translateX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.translateY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.translationZ"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.trimPathEnd"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.trimPathOffset"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.trimPathStart"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.tvInputType"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.viewName"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.viewportHeight"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.viewportWidth"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.voiceIcon"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowActivityTransitions"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowAllowEnterTransitionOverlap"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowAllowExitTransitionOverlap"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowAllowReturnTransitionOverlap"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowClipToOutline"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowContentTransitionManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowContentTransitions"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowDrawsSystemBarBackgrounds"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowElevation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowEnterTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowExitTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowReenterTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowReturnTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowSharedElementEnterTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowSharedElementExitTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowSharedElementReenterTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowSharedElementReturnTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowSharedElementsUseOverlay"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.windowTransitionBackgroundFadeDuration"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.yearListItemTextAppearance"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.attr.yearListSelectorColor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.dimen"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.dimen.l_resource_pad1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.dimen.l_resource_pad10"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.dimen.l_resource_pad2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.dimen.l_resource_pad3"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.dimen.l_resource_pad4"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.dimen.l_resource_pad5"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.dimen.l_resource_pad6"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.dimen.l_resource_pad7"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.dimen.l_resource_pad8"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.dimen.l_resource_pad9"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.l_resource_pad1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.l_resource_pad10"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.l_resource_pad11"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.l_resource_pad12"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.l_resource_pad13"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.l_resource_pad14"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.l_resource_pad15"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.l_resource_pad16"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.l_resource_pad17"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.l_resource_pad18"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.l_resource_pad19"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.l_resource_pad2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.l_resource_pad3"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.l_resource_pad4"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.l_resource_pad5"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.l_resource_pad6"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.l_resource_pad7"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.l_resource_pad8"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.l_resource_pad9"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.mask"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.navigationBarBackground"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.id.statusBarBackground"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.interpolator"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.interpolator.fast_out_linear_in"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.interpolator.fast_out_slow_in"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.interpolator.l_resource_pad1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.interpolator.l_resource_pad2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.interpolator.l_resource_pad3"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.interpolator.l_resource_pad4"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.interpolator.linear_out_slow_in"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Body1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Body2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Button"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Caption"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_DialogWindowTitle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Display1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Display2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Display3"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Display4"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Headline"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Large"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Large_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Medium"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Medium_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Menu"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Notification"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Notification_Emphasis"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Notification_Info"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Notification_Line2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Notification_Time"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Notification_Title"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_SearchResult_Subtitle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_SearchResult_Title"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Small"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Small_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Subhead"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Title"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_ActionBar_Menu"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_ActionBar_Subtitle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_ActionBar_Title"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_ActionBar_Title_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_ActionMode_Subtitle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_ActionMode_Title"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_ActionMode_Title_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_Button"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_DropDownHint"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_DropDownItem"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_EditText"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_IconMenu_Item"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_PopupMenu"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_PopupMenu_Large"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_PopupMenu_Small"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_TabWidget"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_TextView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_TextView_PopupMenu"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_TextView_SpinnerItem"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_Toolbar_Subtitle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_Widget_Toolbar_Title"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.TextAppearance_Material_WindowTitle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.ThemeOverlay"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.ThemeOverlay_Material"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.ThemeOverlay_Material_ActionBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.ThemeOverlay_Material_Dark"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.ThemeOverlay_Material_Dark_ActionBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.ThemeOverlay_Material_Light"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_DeviceDefault_Settings"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Dialog"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_DialogWhenLarge"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_DialogWhenLarge_NoActionBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Dialog_Alert"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Dialog_MinWidth"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Dialog_NoActionBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Dialog_NoActionBar_MinWidth"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Dialog_Presentation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_InputMethod"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_DarkActionBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_Dialog"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_DialogWhenLarge"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_DialogWhenLarge_NoActionBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_Dialog_Alert"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_Dialog_MinWidth"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_Dialog_NoActionBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_Dialog_NoActionBar_MinWidth"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_Dialog_Presentation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_NoActionBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_NoActionBar_Fullscreen"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_NoActionBar_Overscan"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_NoActionBar_TranslucentDecor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_Panel"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Light_Voice"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_NoActionBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_NoActionBar_Fullscreen"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_NoActionBar_Overscan"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_NoActionBar_TranslucentDecor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Panel"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Settings"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Voice"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Wallpaper"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Theme_Material_Wallpaper_NoTitleBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_DeviceDefault_FastScroll"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_DeviceDefault_Light_FastScroll"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_DeviceDefault_Light_StackView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_DeviceDefault_StackView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_FastScroll"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Holo_FastScroll"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Holo_Light_Button_Borderless"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Holo_Light_FastScroll"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Holo_Light_StackView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Holo_StackView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ActionBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ActionBar_Solid"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ActionBar_TabBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ActionBar_TabText"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ActionBar_TabView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ActionButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ActionButton_CloseMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ActionButton_Overflow"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ActionMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_AutoCompleteTextView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Button"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ButtonBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ButtonBar_AlertDialog"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Button_Borderless"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Button_Borderless_Colored"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Button_Borderless_Small"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Button_Inset"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Button_Small"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Button_Toggle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_CalendarView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_CheckedTextView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_CompoundButton_CheckBox"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_CompoundButton_RadioButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_CompoundButton_Star"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_DatePicker"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_DropDownItem"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_DropDownItem_Spinner"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_EditText"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ExpandableListView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_FastScroll"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_GridView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_HorizontalScrollView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ImageButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ActionBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ActionBar_Solid"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ActionBar_TabBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ActionBar_TabText"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ActionBar_TabView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ActionButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ActionButton_CloseMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ActionButton_Overflow"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ActionMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_AutoCompleteTextView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_Button"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ButtonBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ButtonBar_AlertDialog"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_Button_Borderless"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_Button_Borderless_Colored"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_Button_Borderless_Small"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_Button_Inset"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_Button_Small"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_Button_Toggle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_CalendarView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_CheckedTextView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_CompoundButton_CheckBox"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_CompoundButton_RadioButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_CompoundButton_Star"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_DatePicker"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_DropDownItem"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_DropDownItem_Spinner"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_EditText"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ExpandableListView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_FastScroll"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_GridView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_HorizontalScrollView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ImageButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ListPopupWindow"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ListView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ListView_DropDown"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_MediaRouteButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_PopupMenu"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_PopupMenu_Overflow"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_PopupWindow"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ProgressBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ProgressBar_Horizontal"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ProgressBar_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ProgressBar_Large"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ProgressBar_Large_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ProgressBar_Small"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ProgressBar_Small_Inverse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ProgressBar_Small_Title"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_RatingBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_RatingBar_Indicator"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_RatingBar_Small"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_ScrollView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_SearchView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_SeekBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_SegmentedButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_Spinner"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_Spinner_Underlined"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_StackView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_Tab"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_TabWidget"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_TextView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_TextView_SpinnerItem"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Light_TimePicker"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ListPopupWindow"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ListView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ListView_DropDown"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_MediaRouteButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_PopupMenu"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_PopupMenu_Overflow"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_PopupWindow"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ProgressBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ProgressBar_Horizontal"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ProgressBar_Large"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ProgressBar_Small"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ProgressBar_Small_Title"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_RatingBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_RatingBar_Indicator"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_RatingBar_Small"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_ScrollView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_SearchView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_SeekBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_SegmentedButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Spinner"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Spinner_Underlined"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_StackView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Tab"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_TabWidget"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_TextView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_TextView_SpinnerItem"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_TimePicker"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Toolbar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_Toolbar_Button_Navigation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_WebTextView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Material_WebView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_StackView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Toolbar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.Widget_Toolbar_Button_Navigation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad10"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad11"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad12"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad13"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad14"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad15"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad16"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad17"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad18"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad19"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad20"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad21"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad22"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad23"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad24"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad25"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad26"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad27"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad28"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad3"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad4"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad5"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad6"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad7"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad8"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.style.l_resource_pad9"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.transition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.transition.explode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.transition.fade"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.transition.move"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.transition.slide_bottom"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.transition.slide_left"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.transition.slide_right"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.R.transition.slide_top"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.accessibilityservice"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.accessibilityservice.AccessibilityService"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.accessibilityservice.AccessibilityService.GLOBAL_ACTION_POWER_DIALOG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.accounts"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.accounts.AccountManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.accounts.AccountManager.getPreviousName_added(android.accounts.Account)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.accounts.AccountManager.renameAccount_added(android.accounts.Account, java.lang.String, android.accounts.AccountManagerCallback&lt;android.accounts.Account&gt;, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.LayoutParams"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.LayoutParams.ctor_removed(android.view.ViewGroup.MarginLayoutParams)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.getElevation_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActionBar.setElevation_added(float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.getMediaController_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.getVoiceInteractor_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.isVoiceInteraction_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.onActivityReenter_changed(int, android.content.Intent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.onCreate_changed(android.os.Bundle, android.os.PersistableBundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.onEnterAnimationComplete_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.onPostCreate_changed(android.os.Bundle, android.os.PersistableBundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.onRestoreInstanceState_changed(android.os.Bundle, android.os.PersistableBundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.onSaveInstanceState_changed(android.os.Bundle, android.os.PersistableBundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.onVisibleBehindCanceled_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.releaseInstance_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.requestVisibleBehind_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.setEnterSharedElementCallback_added(android.app.SharedElementCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.setEnterSharedElementListener_removed(android.app.SharedElementListener)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.setExitSharedElementCallback_added(android.app.SharedElementCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.setExitSharedElementListener_removed(android.app.SharedElementListener)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Activity.setMediaController_added(android.media.session.MediaController)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.AppTask"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.AppTask.moveToFront_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.AppTask.setExcludeFromRecents_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.AppTask.startActivity_added(android.content.Context, android.content.Intent, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.RecentTaskInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.RecentTaskInfo.affiliatedTaskId"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.RecentTaskInfo.taskDescription"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.RunningAppProcessInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.RunningAppProcessInfo.IMPORTANCE_GONE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.addAppTask_added(android.app.Activity, android.content.Intent, android.app.ActivityManager.TaskDescription, android.graphics.Bitmap)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.getAppTaskThumbnailSize_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityManager.isInLockTaskMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityOptions"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.ActivityOptions.makeTaskLaunchBehind_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.AlarmManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.AlarmManager.ACTION_NEXT_ALARM_CLOCK_CHANGED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.AlarmManager.AlarmClockInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.AlarmManager.getNextAlarmClock_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.AlarmManager.setAlarmClock_added(android.app.AlarmManager.AlarmClockInfo, android.app.PendingIntent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.AppOpsManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.AppOpsManager.MODE_DEFAULT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.AppOpsManager.OPSTR_GET_USAGE_STATS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.getAllowEnterTransitionOverlap_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.getAllowReturnTransitionOverlap_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.getEnterTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.getExitTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.getReenterTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.getReturnTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.getSharedElementEnterTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.getSharedElementReturnTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.setAllowEnterTransitionOverlap_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.setAllowReturnTransitionOverlap_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.setEnterSharedElementCallback_added(android.app.SharedElementCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.setEnterTransition_added(android.transition.Transition)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.setExitSharedElementCallback_added(android.app.SharedElementCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.setExitTransition_added(android.transition.Transition)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.setReenterTransition_added(android.transition.Transition)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.setReturnTransition_added(android.transition.Transition)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.setSharedElementEnterTransition_added(android.transition.Transition)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Fragment.setSharedElementReturnTransition_added(android.transition.Transition)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.FragmentTransaction"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.FragmentTransaction.addSharedElement_added(android.view.View, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.KeyguardManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.KeyguardManager.createConfirmDeviceCredentialIntent_added(java.lang.CharSequence, java.lang.CharSequence)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.AUDIO_ATTRIBUTES_DEFAULT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.Builder.setSound_added(android.net.Uri, android.media.AudioAttributes)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.Builder.setSound_added(android.net.Uri, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.Builder.setSound_removed(android.net.Uri, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.Builder.setTicker_changed(java.lang.CharSequence, android.widget.RemoteViews)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.EXTRA_BIG_TEXT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.EXTRA_COMPACT_ACTIONS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.MediaStyle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.MediaStyle.buildStyled_removed(android.app.Notification)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.MediaStyle.setMediaSession_changed(android.media.session.MediaSession.Token)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.STREAM_DEFAULT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.audioAttributes"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.audioStreamType"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.headsUpContentView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.Notification.tickerView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.SharedElementCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.SharedElementListener"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.UiModeManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.UiModeManager.ENABLE_CAR_MODE_ALLOW_SLEEP"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.VoiceInteractor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.VoiceInteractor.AbortVoiceRequest"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.VoiceInteractor.CommandRequest"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.VoiceInteractor.ConfirmationRequest"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.VoiceInteractor.Request"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DeviceAdminReceiver"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DeviceAdminReceiver.ACTION_LOCK_TASK_ENTERING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DeviceAdminReceiver.ACTION_LOCK_TASK_EXITING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DeviceAdminReceiver.ACTION_PROFILE_PROVISIONING_COMPLETE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DeviceAdminReceiver.EXTRA_LOCK_TASK_PACKAGE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DeviceAdminReceiver.onLockTaskModeEntering_added(android.content.Context, android.content.Intent, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DeviceAdminReceiver.onLockTaskModeExiting_added(android.content.Context, android.content.Intent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.ACTION_PROVISION_MANAGED_PROFILE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEFAULT_MANAGED_PROFILE_NAME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_EMAIL_ADDRESS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_LOCALE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_LOCAL_TIME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_TIME_ZONE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_HIDDEN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PAC_URL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PASSWORD"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_BYPASS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_HOST"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_PROXY_PORT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_SECURITY_TYPE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.EXTRA_PROVISIONING_WIFI_SSID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.FLAG_MANAGED_CAN_ACCESS_PARENT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.FLAG_PARENT_CAN_ACCESS_MANAGED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.FLAG_TO_MANAGED_PROFILE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.FLAG_TO_PRIMARY_USER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.KEYGUARD_DISABLE_FINGERPRINT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.MIME_TYPE_PROVISIONING_NFC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.PASSWORD_QUALITY_NUMERIC_COMPLEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.addCrossProfileIntentFilter_added(android.content.ComponentName, android.content.IntentFilter, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.addCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.addForwardingIntentFilter_removed(android.content.ComponentName, android.content.IntentFilter, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.clearCrossProfileIntentFilters_added(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.clearDeviceOwnerApp_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.clearForwardingIntentFilters_removed(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.createAndInitializeUser_added(android.content.ComponentName, java.lang.String, java.lang.String, android.content.ComponentName, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.getAutoTimeRequired_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.getCrossProfileCallerIdDisabled_added(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.getCrossProfileWidgetProviders_added(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.getInstalledCaCerts_added(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.getPermittedAccessibilityServices_added(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.getPermittedInputMethods_added(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.getScreenCaptureDisabled_added(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.hasCaCertInstalled_added(android.content.ComponentName, byte[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.installCaCert_added(android.content.ComponentName, byte[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.installKeyPair_added(android.content.ComponentName, java.security.PrivateKey, java.security.cert.Certificate, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.isApplicationBlocked_removed(android.content.ComponentName, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.isApplicationHidden_added(android.content.ComponentName, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.isLockTaskPermitted_changed(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.isMasterVolumeMuted_added(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.isUninstallBlocked_added(android.content.ComponentName, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.removeCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setApplicationBlocked_removed(android.content.ComponentName, java.lang.String, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setApplicationHidden_added(android.content.ComponentName, java.lang.String, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setApplicationsBlocked_removed(android.content.ComponentName, android.content.Intent, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setAutoTimeRequired_added(android.content.ComponentName, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setCrossProfileCallerIdDisabled_added(android.content.ComponentName, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setLockTaskComponents_removed(android.content.ComponentName[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setLockTaskPackages_added(android.content.ComponentName, java.lang.String[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setMasterVolumeMuted_added(android.content.ComponentName, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setPermittedAccessibilityServices_added(android.content.ComponentName, java.util.List&lt;java.lang.String&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setPermittedInputMethods_added(android.content.ComponentName, java.util.List&lt;java.lang.String&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setProfileName_added(android.content.ComponentName, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setRecommendedGlobalProxy_added(android.content.ComponentName, android.net.ProxyInfo)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setRestrictionsProvider_added(android.content.ComponentName, android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setScreenCaptureDisabled_added(android.content.ComponentName, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.setUninstallBlocked_added(android.content.ComponentName, java.lang.String, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.switchUser_added(android.content.ComponentName, android.os.UserHandle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.uninstallAllUserCaCerts_added(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.admin.DevicePolicyManager.uninstallCaCert_added(android.content.ComponentName, byte[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.backup"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.backup.BackupAgent"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.backup.BackupAgent.onRestoreFinished_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.job"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.job.JobInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.job.JobInfo.BACKOFF_POLICY_EXPONENTIAL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.job.JobInfo.BACKOFF_POLICY_LINEAR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.job.JobInfo.BackoffPolicy"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.job.JobInfo.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.job.JobInfo.Builder.setPersisted_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.job.JobInfo.Builder.setRequiredNetworkCapabilities_removed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.job.JobInfo.Builder.setRequiredNetworkType_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.job.JobInfo.DEFAULT_INITIAL_BACKOFF_MILLIS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.job.JobInfo.MAX_BACKOFF_DELAY_MILLIS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.job.JobInfo.NETWORK_TYPE_ANY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.job.JobInfo.NETWORK_TYPE_NONE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.job.JobInfo.NETWORK_TYPE_UNMETERED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.job.JobInfo.NetworkType"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.job.JobInfo.getNetworkCapabilities_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.job.JobInfo.getNetworkType_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.job.JobInfo.isPersisted_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.job.JobParameters"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.job.JobParameters.isOverrideDeadlineExpired_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.app.usage"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetHost"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetHost.startAppWidgetConfigureActivityForResult_added(android.app.Activity, int, int, int, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetManager.bindAppWidgetIdIfAllowed_added(int, android.os.UserHandle, android.content.ComponentName, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetManager.getInstalledProvidersForProfile_added(android.os.UserHandle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetProviderInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetProviderInfo.WIDGET_CATEGORY_RECENTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetProviderInfo.getProfile_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetProviderInfo.label"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetProviderInfo.loadIcon_added(android.content.Context, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetProviderInfo.loadLabel_added(android.content.pm.PackageManager)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.appwidget.AppWidgetProviderInfo.loadPreviewImage_added(android.content.Context, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothAdapter"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothAdapter.isMultipleAdvertisementSupported_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothAdapter.isOffloadedFilteringSupported_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothAdapter.isOffloadedScanBatchingSupported_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothAdapter.startLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothAdapter.startLeScan_changed(java.util.UUID[], android.bluetooth.BluetoothAdapter.LeScanCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothAdapter.stopLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothGatt"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_BALANCED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_HIGH"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothGatt.CONNECTION_PRIORITY_LOW_POWER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothGatt.GATT_CONNECTION_CONGESTED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothGatt.requestConnectionPriority_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothGatt.requestMtu_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothGattCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothGattCallback.onMtuChanged_added(android.bluetooth.BluetoothGatt, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothGattServerCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.BluetoothGattServerCallback.onNotificationSent_added(android.bluetooth.BluetoothDevice, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertiseCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_CONTROLLER_FAILURE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_DATA_TOO_LARGE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_FEATURE_UNSUPPORTED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_INTERNAL_ERROR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_NOT_STARTED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertiseCallback.ADVERTISE_FAILED_SERVICE_UNKNOWN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertiseCallback.onFailure_removed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertiseCallback.onStartFailure_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertiseCallback.onStartSuccess_added(android.bluetooth.le.AdvertiseSettings)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertiseCallback.onSuccess_removed(android.bluetooth.le.AdvertiseSettings)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertiseData"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertiseData.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertiseSettings"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertiseSettings.ADVERTISE_TYPE_CONNECTABLE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertiseSettings.ADVERTISE_TYPE_NON_CONNECTABLE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertiseSettings.ADVERTISE_TYPE_SCANNABLE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertiseSettings.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertiseSettings.Builder.setConnectable_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertiseSettings.Builder.setTimeout_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertiseSettings.Builder.setType_removed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertiseSettings.getTimeout_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertiseSettings.getType_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertiseSettings.isConnectable_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertisementData"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.AdvertisementData.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.BluetoothLeAdvertiser"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising_added(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising_added(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising_removed(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertisementData, android.bluetooth.le.AdvertiseCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising_removed(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertisementData, android.bluetooth.le.AdvertisementData, android.bluetooth.le.AdvertiseCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.BluetoothLeScanner"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.BluetoothLeScanner.flushPendingScanResults_added(android.bluetooth.le.ScanCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.BluetoothLeScanner.startScan_added(android.bluetooth.le.ScanCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanCallback.SCAN_FAILED_CONTROLLER_FAILURE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanCallback.SCAN_FAILED_FEATURE_UNSUPPORTED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanCallback.SCAN_FAILED_GATT_SERVICE_FAILURE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanCallback.SCAN_FAILED_INTERNAL_ERROR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanCallback.onAdvertisementUpdate_removed(android.bluetooth.le.ScanResult)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanCallback.onBatchScanResults_added(java.util.List&lt;android.bluetooth.le.ScanResult&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanCallback.onScanFailed_changed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanCallback.onScanResult_added(int, android.bluetooth.le.ScanResult)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanFilter"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanFilter.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanFilter.Builder.setDeviceAddress_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanFilter.Builder.setDeviceName_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanFilter.Builder.setMacAddress_removed(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanFilter.Builder.setName_removed(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanFilter.Builder.setRssiRange_removed(int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanFilter.Builder.setServiceData_added(android.os.ParcelUuid, byte[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanFilter.Builder.setServiceData_added(android.os.ParcelUuid, byte[], byte[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanFilter.Builder.setServiceData_removed(byte[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanFilter.Builder.setServiceData_removed(byte[], byte[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanFilter.getDeviceName_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanFilter.getLocalName_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanFilter.getMaxRssi_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanFilter.getMinRssi_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanFilter.getServiceDataUuid_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanRecord"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanRecord.getBytes_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanRecord.getDeviceName_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanRecord.getLocalName_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanRecord.getManufacturerId_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanRecord.getManufacturerSpecificData_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanRecord.getManufacturerSpecificData_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanRecord.getServiceDataUuid_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanRecord.getServiceData_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanRecord.getServiceData_added(android.os.ParcelUuid)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanRecord.getServiceData_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanRecord.parseFromBytes_removed(byte[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanResult"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanResult.ctor_added(android.bluetooth.BluetoothDevice, android.bluetooth.le.ScanRecord, int, long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanResult.getScanRecord_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanSettings"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanSettings.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanSettings.Builder.setCallbackType_removed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanSettings.Builder.setReportDelayNanos_removed(long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanSettings.Builder.setReportDelay_added(long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanSettings.CALLBACK_TYPE_ALL_MATCHES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanSettings.CALLBACK_TYPE_ON_UPDATE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanSettings.SCAN_RESULT_TYPE_FULL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanSettings.getReportDelayMillis_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.bluetooth.le.ScanSettings.getReportDelayNanos_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.ContentResolver"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.ContentResolver.EXTRA_SIZE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.APPWIDGET_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.MEDIA_PROJECTION_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.RESTRICTIONS_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.TELECOM_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.getCodeCacheDir_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.getNoBackupFilesDir_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.removeStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.removeStickyBroadcast_changed(android.content.Intent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.sendStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.sendStickyBroadcast_changed(android.content.Intent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.sendStickyOrderedBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Context.sendStickyOrderedBroadcast_changed(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"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.ContextWrapper.getCodeCacheDir_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.ContextWrapper.getNoBackupFilesDir_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Intent"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Intent.CATEGORY_VOICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Intent.EXTRA_REPLACEMENT_EXTRAS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Intent.EXTRA_USER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Intent.FLAG_ACTIVITY_AUTO_REMOVE_FROM_RECENTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.RestrictionEntry"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.RestrictionEntry.TYPE_INTEGER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.RestrictionEntry.TYPE_STRING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.RestrictionEntry.ctor_added(int, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.RestrictionEntry.ctor_added(java.lang.String, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.RestrictionEntry.getIntValue_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.RestrictionEntry.setIntValue_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.RestrictionsManager"/>
+  <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_PERSISTABLE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ActivityInfo.FLAG_RESUME_WHILE_PAUSING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ActivityInfo.PERSIST_ACROSS_REBOOTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ActivityInfo.PERSIST_NEVER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ActivityInfo.PERSIST_ROOT_ONLY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ActivityInfo.persistableMode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ApplicationInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ApplicationInfo.FLAG_FULL_BACKUP_ONLY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ApplicationInfo.FLAG_MULTIARCH"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ApplicationInfo.splitPublicSourceDirs"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.ApplicationInfo.splitSourceDirs"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.FeatureGroupInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.InstrumentationInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.InstrumentationInfo.splitPublicSourceDirs"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.InstrumentationInfo.splitSourceDirs"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.LauncherApps"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.LauncherApps.Callback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.LauncherApps.OnAppsChangedListener"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.LauncherApps.addOnAppsChangedListener_removed(android.content.pm.LauncherApps.OnAppsChangedListener)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.LauncherApps.isActivityEnabledForProfile_removed(android.content.ComponentName, android.os.UserHandle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.LauncherApps.isActivityEnabled_added(android.content.ComponentName, android.os.UserHandle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.LauncherApps.isPackageEnabledForProfile_removed(java.lang.String, android.os.UserHandle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.LauncherApps.isPackageEnabled_added(java.lang.String, android.os.UserHandle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.LauncherApps.registerCallback_added(android.content.pm.LauncherApps.Callback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.LauncherApps.registerCallback_added(android.content.pm.LauncherApps.Callback, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.LauncherApps.removeOnAppsChangedListener_removed(android.content.pm.LauncherApps.OnAppsChangedListener)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.LauncherApps.startActivityForProfile_removed(android.content.ComponentName, android.os.UserHandle, android.graphics.Rect, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.LauncherApps.startAppDetailsActivity_added(android.content.ComponentName, android.os.UserHandle, android.graphics.Rect, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.LauncherApps.startMainActivity_added(android.content.ComponentName, android.os.UserHandle, android.graphics.Rect, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.LauncherApps.unregisterCallback_added(android.content.pm.LauncherApps.Callback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageInfo.INSTALL_LOCATION_AUTO"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageInfo.INSTALL_LOCATION_PREFER_EXTERNAL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageInfo.featureGroups"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageInfo.installLocation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageInfo.splitNames"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageInstaller"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageInstaller.Session"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageInstaller.SessionCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageInstaller.SessionInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageInstaller.SessionParams"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_AUDIO_OUTPUT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_CAMERA_CAPABILITY_RAW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_CAMERA_LEVEL_FULL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_CONNECTION_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_GAMEPAD"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_LIVE_TV"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_MANAGED_PROFILES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_MANAGED_USERS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_OPENGLES_EXTENSION_PACK"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_SECURELY_REMOVES_USERS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_SENSOR_AMBIENT_TEMPERATURE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_SENSOR_HEART_RATE_ECG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_SENSOR_RELATIVE_HUMIDITY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.FEATURE_VERIFIED_BOOT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.getPackageInstaller_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PermissionInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.pm.PermissionInfo.PROTECTION_FLAG_APPOP"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.res"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.res.AssetManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.res.TypedArray"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.content.res.TypedArray.getChangingConfigurations_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.BitmapFactory.Options"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.BitmapFactory.Options.inInputShareable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.BitmapFactory.Options.inPurgeable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Canvas"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Canvas.clipRegion_changed(android.graphics.Region)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Canvas.clipRegion_changed(android.graphics.Region, android.graphics.Region.Op)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Canvas.drawArc_added(float, float, float, float, float, float, boolean, android.graphics.Paint)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Canvas.drawOval_added(float, float, float, float, android.graphics.Paint)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.ColorMatrixColorFilter"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.ColorMatrixColorFilter.getColorMatrix_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.ColorMatrixColorFilter.setColorMatrix_removed(android.graphics.ColorMatrix)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.ColorMatrixColorFilter.setColorMatrix_removed(float[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.ImageFormat"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.ImageFormat.RAW10"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.LightingColorFilter"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.LightingColorFilter.getColorAdd_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.LightingColorFilter.getColorMultiply_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.LightingColorFilter.setColorAdd_removed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.LightingColorFilter.setColorMultiply_removed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Outline"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Outline.getAlpha_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Outline.setAlpha_added(float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Paint"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Paint.getFontFeatureSettings_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Paint.getLetterSpacing_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Paint.setFontFeatureSettings_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Paint.setLetterSpacing_added(float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Path"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Path.addArc_added(float, float, float, float, float, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Path.addRoundRect_added(float, float, float, float, float, float, android.graphics.Path.Direction)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Path.addRoundRect_added(float, float, float, float, float[], android.graphics.Path.Direction)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.Path.arcTo_added(float, float, float, float, float, float, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.PorterDuffColorFilter"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.PorterDuffColorFilter.getColor_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.PorterDuffColorFilter.getMode_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.PorterDuffColorFilter.setColor_removed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.PorterDuffColorFilter.setMode_removed(android.graphics.PorterDuff.Mode)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.AnimatedStateListDrawable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.AnimatedStateListDrawable.addTransition_changed(int, int, T, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.AnimatedVectorDrawable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.Drawable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.Drawable.getOutline_changed(android.graphics.Outline)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.Drawable.setTintList_added(android.content.res.ColorStateList)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.Drawable.setTintMode_added(android.graphics.PorterDuff.Mode)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.Drawable.setTint_changed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.RippleDrawable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.RippleDrawable.ctor_changed(android.content.res.ColorStateList, android.graphics.drawable.Drawable, android.graphics.drawable.Drawable)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.VectorDrawable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.shapes"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.shapes.Shape"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.graphics.drawable.shapes.Shape.getOutline_changed(android.graphics.Outline)"/>
+  <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.Area"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Camera.AutoFocusCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Camera.AutoFocusMoveCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Camera.CameraInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Camera.ErrorCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Camera.Face"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Camera.FaceDetectionListener"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Camera.OnZoomChangeListener"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Camera.Parameters"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Camera.PictureCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Camera.PreviewCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Camera.ShutterCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Camera.Size"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Sensor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Sensor.REPORTING_MODE_CONTINUOUS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Sensor.REPORTING_MODE_ONE_SHOT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Sensor.REPORTING_MODE_ON_CHANGE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Sensor.REPORTING_MODE_SPECIAL_TRIGGER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Sensor.getMaxDelay_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Sensor.getReportingMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.Sensor.isWakeUpSensor_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.SensorManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.SensorManager.SENSOR_STATUS_NO_CONTACT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.SensorManager.getDefaultSensor_added(int, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraCaptureSession"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraCaptureSession.CaptureCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraCaptureSession.CaptureListener"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraCaptureSession.StateCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraCaptureSession.StateListener"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraCaptureSession.captureBurst_changed(java.util.List&lt;android.hardware.camera2.CaptureRequest&gt;, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraCaptureSession.capture_changed(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraCaptureSession.setRepeatingBurst_changed(java.util.List&lt;android.hardware.camera2.CaptureRequest&gt;, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraCaptureSession.setRepeatingRequest_changed(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraCaptureSession.CaptureCallback, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraCharacteristics"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraCharacteristics.COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraCharacteristics.SENSOR_INFO_TIMESTAMP_SOURCE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraDevice"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraDevice.CaptureListener"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraDevice.StateCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraDevice.StateListener"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraDevice.captureBurst_removed(java.util.List&lt;android.hardware.camera2.CaptureRequest&gt;, android.hardware.camera2.CameraDevice.CaptureListener, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraDevice.capture_removed(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraDevice.CaptureListener, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraDevice.configureOutputs_removed(java.util.List&lt;android.view.Surface&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraDevice.createCaptureSession_changed(java.util.List&lt;android.view.Surface&gt;, android.hardware.camera2.CameraCaptureSession.StateCallback, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraDevice.flush_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraDevice.setRepeatingBurst_removed(java.util.List&lt;android.hardware.camera2.CaptureRequest&gt;, android.hardware.camera2.CameraDevice.CaptureListener, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraDevice.setRepeatingRequest_removed(android.hardware.camera2.CaptureRequest, android.hardware.camera2.CameraDevice.CaptureListener, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraDevice.stopRepeating_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraManager.AvailabilityCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraManager.AvailabilityListener"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraManager.addAvailabilityListener_removed(android.hardware.camera2.CameraManager.AvailabilityListener, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraManager.openCamera_changed(java.lang.String, android.hardware.camera2.CameraDevice.StateCallback, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraManager.registerAvailabilityCallback_added(android.hardware.camera2.CameraManager.AvailabilityCallback, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraManager.removeAvailabilityListener_removed(android.hardware.camera2.CameraManager.AvailabilityListener)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraManager.unregisterAvailabilityCallback_added(android.hardware.camera2.CameraManager.AvailabilityCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraMetadata"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraMetadata.COLOR_CORRECTION_ABERRATION_MODE_FAST"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraMetadata.COLOR_CORRECTION_ABERRATION_MODE_HIGH_QUALITY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraMetadata.COLOR_CORRECTION_ABERRATION_MODE_OFF"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraMetadata.CONTROL_SCENE_MODE_HIGH_SPEED_VIDEO"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraMetadata.INFO_SUPPORTED_HARDWARE_LEVEL_LEGACY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_BACKWARD_COMPATIBLE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_DNG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_MANUAL_POST_PROCESSING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_MANUAL_SENSOR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_RAW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraMetadata.SENSOR_INFO_TIMESTAMP_SOURCE_REALTIME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CameraMetadata.SENSOR_INFO_TIMESTAMP_SOURCE_UNKNOWN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CaptureFailure"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CaptureFailure.getFrameNumber_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CaptureRequest"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CaptureRequest.COLOR_CORRECTION_ABERRATION_MODE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CaptureResult"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CaptureResult.COLOR_CORRECTION_ABERRATION_MODE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CaptureResult.REQUEST_FRAME_COUNT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CaptureResult.SENSOR_NOISE_PROFILE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CaptureResult.SENSOR_ROLLING_SHUTTER_SKEW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.CaptureResult.getFrameNumber_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.DngCreator"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.DngCreator.MAX_THUMBNAIL_DIMENSION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.DngCreator.setDescription_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.DngCreator.setLocation_added(android.location.Location)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.DngCreator.setOrientation_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.DngCreator.setThumbnail_added(android.graphics.Bitmap)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.DngCreator.setThumbnail_added(android.media.Image)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.DngCreator.writeByteBuffer_added(java.io.OutputStream, android.util.Size, java.nio.ByteBuffer, long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.DngCreator.writeInputStream_added(java.io.OutputStream, android.util.Size, java.io.InputStream, long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.params"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.params.BlackLevelPattern"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.params.StreamConfigurationMap"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.params.StreamConfigurationMap.getHighSpeedVideoFpsRangesFor_added(android.util.Size)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.params.StreamConfigurationMap.getHighSpeedVideoFpsRanges_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.params.StreamConfigurationMap.getHighSpeedVideoSizesFor_added(android.util.Range&lt;java.lang.Integer&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.camera2.params.StreamConfigurationMap.getHighSpeedVideoSizes_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.display"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.display.DisplayManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.display.DisplayManager.createVirtualDisplay_added(java.lang.String, int, int, int, android.view.Surface, int, android.hardware.display.VirtualDisplay.Callback, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.display.VirtualDisplay"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.display.VirtualDisplay.Callback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.display.VirtualDisplay.resize_added(int, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.hardware.location"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.inputmethodservice"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.inputmethodservice.InputMethodService"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.inputmethodservice.InputMethodService.CURSOR_ANCHOR_MONITOR_MODE_CURSOR_RECT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.inputmethodservice.InputMethodService.CURSOR_ANCHOR_MONITOR_MODE_NONE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.inputmethodservice.InputMethodService.enableHardwareAcceleration_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.inputmethodservice.InputMethodService.onUpdateCursor_changed(android.graphics.Rect)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.inputmethodservice.InputMethodService.setCursorAnchorMonitorMode_removed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.location"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.location.SettingInjectorService"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.location.SettingInjectorService.onGetSummary_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioAttributes"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioAttributes.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioFormat"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioFormat.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioFormat.CHANNEL_OUT_SIDE_LEFT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioFormat.CHANNEL_OUT_SIDE_RIGHT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioFormat.ENCODING_AC3"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioFormat.ENCODING_E_AC3"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioFormat.ctor_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioFormat.getChannelMask_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioFormat.getEncoding_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioFormat.getSampleRate_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.ACTION_HDMI_AUDIO_PLUG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.ACTION_HEADSET_PLUG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.AUDIO_SESSION_ID_GENERATE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.ERROR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.ERROR_DEAD_OBJECT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.EXTRA_AUDIO_PLUG_STATE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.EXTRA_ENCODINGS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.EXTRA_MAX_CHANNEL_COUNT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.generateAudioSessionId_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.isVolumeFixed_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.app.PendingIntent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.registerRemoteControlClient_changed(android.media.RemoteControlClient)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.registerRemoteController_changed(android.media.RemoteController)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.app.PendingIntent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.unregisterRemoteControlClient_changed(android.media.RemoteControlClient)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioManager.unregisterRemoteController_changed(android.media.RemoteController)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioTrack"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.AudioTrack.ctor_added(android.media.AudioAttributes, android.media.AudioFormat, int, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.CamcorderProfile"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.CamcorderProfile.QUALITY_2160P"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.CamcorderProfile.QUALITY_HIGH_SPEED_1080P"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.CamcorderProfile.QUALITY_HIGH_SPEED_2160P"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.CamcorderProfile.QUALITY_HIGH_SPEED_480P"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.CamcorderProfile.QUALITY_HIGH_SPEED_720P"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.CamcorderProfile.QUALITY_HIGH_SPEED_HIGH"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.CamcorderProfile.QUALITY_HIGH_SPEED_LOW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.CamcorderProfile.QUALITY_TIME_LAPSE_2160P"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.Image"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.Image.getCropRect_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.Image.setCropRect_added(android.graphics.Rect)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.BUFFER_FLAG_KEY_FRAME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.BUFFER_FLAG_SYNC_FRAME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.Callback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.CodecException"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.CryptoException"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.CryptoException.ERROR_INSUFFICIENT_OUTPUT_PROTECTION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.INFO_OUTPUT_BUFFERS_CHANGED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.getInputBuffer_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.getInputBuffers_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.getInputFormat_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.getInputImage_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.getOutputBuffer_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.getOutputBuffers_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.getOutputFormat_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.getOutputImage_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.reset_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodec.setCallback_added(android.media.MediaCodec.Callback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.AudioCapabilities"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecCapabilities"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecCapabilities.COLOR_FormatYUV420Flexible"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecCapabilities.FEATURE_SecurePlayback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecCapabilities.FEATURE_TunneledPlayback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecCapabilities.createFromProfileLevel_added(java.lang.String, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecCapabilities.getAudioCapabilities_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecCapabilities.getDefaultFormat_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecCapabilities.getEncoderCapabilities_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecCapabilities.getMimeType_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecCapabilities.getVideoCapabilities_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecCapabilities.isFeatureRequired_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecCapabilities.isFormatSupported_added(android.media.MediaFormat)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.CodecProfileLevel.AVCLevel52"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.EncoderCapabilities"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecInfo.VideoCapabilities"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecList"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecList.ALL_CODECS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecList.REGULAR_CODECS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecList.ctor_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecList.findDecoderForFormat_added(android.media.MediaFormat)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecList.findEncoderForFormat_added(android.media.MediaFormat)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecList.getCodecCount_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecList.getCodecInfoAt_changed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaCodecList.getCodecInfos_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaDescription"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaDescription.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaDrm"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaDrm.MediaDrmStateException"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaDrm.openSession_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_AAC_DRC_ATTENUATION_FACTOR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_AAC_DRC_BOOST_FACTOR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_AAC_DRC_HEAVY_COMPRESSION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_AAC_DRC_TARGET_REFERENCE_LEVEL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_AAC_ENCODED_TARGET_LEVEL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_AAC_MAX_OUTPUT_CHANNEL_COUNT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_AAC_SBR_MODE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_AUDIO_SESSION_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_BITRATE_MODE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_CAPTURE_RATE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_COMPLEXITY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_PROFILE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.KEY_TEMPORAL_LAYERING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_AAC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_AC3"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_AMR_NB"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_AMR_WB"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_FLAC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_G711_ALAW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_G711_MLAW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_MPEG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_MSGSM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_OPUS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_QCELP"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_RAW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_AUDIO_VORBIS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_TEXT_CEA_608"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_TEXT_VTT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_VIDEO_AVC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_VIDEO_H263"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_VIDEO_HEVC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_VIDEO_MPEG2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_VIDEO_MPEG4"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_VIDEO_RAW"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_VIDEO_VP8"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.MIMETYPE_VIDEO_VP9"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.getFeatureEnabled_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaFormat.setFeatureEnabled_added(java.lang.String, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaMetadata"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaMetadata.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaMetadata.Builder.putText_added(java.lang.String, java.lang.CharSequence)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaMetadata.METADATA_KEY_DISPLAY_DESCRIPTION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaMetadata.METADATA_KEY_DISPLAY_ICON"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaMetadata.METADATA_KEY_DISPLAY_ICON_URI"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaMetadata.METADATA_KEY_DISPLAY_SUBTITLE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaMetadata.METADATA_KEY_DISPLAY_TITLE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaMetadata.METADATA_KEY_MEDIA_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaMetadata.getDescription_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaMetadata.getText_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaMetadataEditor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaPlayer"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaPlayer.TrackInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaPlayer.TrackInfo.MEDIA_TRACK_TYPE_SUBTITLE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaPlayer.create_added(android.content.Context, android.net.Uri, android.view.SurfaceHolder, android.media.AudioAttributes, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaPlayer.create_added(android.content.Context, int, android.media.AudioAttributes, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaPlayer.getSelectedTrack_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaPlayer.setAudioAttributes_added(android.media.AudioAttributes)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaRecorder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaRecorder.AudioEncoder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaRecorder.AudioEncoder.VORBIS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaRecorder.OutputFormat"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaRecorder.OutputFormat.WEBM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaRecorder.VideoEncoder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaRecorder.VideoEncoder.VP8"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.MediaRecorder.setCamera_changed(android.hardware.Camera)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.RemoteControlClient"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.RemoteControlClient.MetadataEditor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.RemoteController"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.Ringtone"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.Ringtone.getAudioAttributes_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.Ringtone.getStreamType_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.Ringtone.setAudioAttributes_added(android.media.AudioAttributes)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.Ringtone.setStreamType_changed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.SoundPool"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.SoundPool.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.SoundPool.ctor_changed(int, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.VolumeProvider"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.audiofx"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.audiofx.Virtualizer"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_AUTO"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_BINAURAL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_OFF"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.audiofx.Virtualizer.VIRTUALIZATION_MODE_TRANSAURAL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.audiofx.Virtualizer.canVirtualize_added(int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.audiofx.Virtualizer.forceVirtualizationMode_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.audiofx.Virtualizer.getSpeakerAngles_added(int, int, int[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.audiofx.Virtualizer.getVirtualizationMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.browse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.projection"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.Callback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.Callback.onAudioInfoChanged_added(android.media.session.MediaController.PlaybackInfo)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.Callback.onExtrasChanged_added(android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.Callback.onQueueChanged_added(java.util.List&lt;android.media.session.MediaSession.QueueItem&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.Callback.onQueueTitleChanged_added(java.lang.CharSequence)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.Callback.onSessionDestroyed_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.PlaybackInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.TransportControls"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.TransportControls.playFromMediaId_added(java.lang.String, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.TransportControls.playFromSearch_added(java.lang.String, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.TransportControls.sendCustomAction_added(android.media.session.PlaybackState.CustomAction, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.TransportControls.sendCustomAction_added(java.lang.String, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.TransportControls.skipToQueueItem_added(long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.addCallback_removed(android.media.session.MediaController.Callback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.addCallback_removed(android.media.session.MediaController.Callback, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.adjustVolume_added(int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.ctor_added(android.content.Context, android.media.session.MediaSession.Token)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.fromToken_removed(android.media.session.MediaSessionToken)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.getExtras_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.getFlags_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.getPackageName_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.getPlaybackInfo_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.getQueueTitle_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.getQueue_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.getSessionActivity_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.getSessionToken_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.registerCallback_added(android.media.session.MediaController.Callback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.registerCallback_added(android.media.session.MediaController.Callback, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.removeCallback_removed(android.media.session.MediaController.Callback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.sendCommand_added(java.lang.String, android.os.Bundle, android.os.ResultReceiver)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.sendControlCommand_removed(java.lang.String, android.os.Bundle, android.os.ResultReceiver)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.setVolumeTo_added(int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaController.unregisterCallback_added(android.media.session.MediaController.Callback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.Callback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.Callback.onCommand_added(java.lang.String, android.os.Bundle, android.os.ResultReceiver)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.Callback.onControlCommand_removed(java.lang.String, android.os.Bundle, android.os.ResultReceiver)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.Callback.onCustomAction_added(java.lang.String, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.Callback.onFastForward_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.Callback.onMediaButtonEvent_changed(android.content.Intent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.Callback.onPause_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.Callback.onPlayFromMediaId_added(java.lang.String, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.Callback.onPlayFromSearch_added(java.lang.String, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.Callback.onPlay_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.Callback.onRewind_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.Callback.onSeekTo_added(long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.Callback.onSetRating_added(android.media.Rating)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.Callback.onSkipToNext_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.Callback.onSkipToPrevious_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.Callback.onSkipToQueueItem_added(long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.Callback.onStop_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.QueueItem"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.Token"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.TransportControlsCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.addCallback_removed(android.media.session.MediaSession.Callback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.addCallback_removed(android.media.session.MediaSession.Callback, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.addTransportControlsCallback_removed(android.media.session.MediaSession.TransportControlsCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.addTransportControlsCallback_removed(android.media.session.MediaSession.TransportControlsCallback, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.ctor_added(android.content.Context, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.getController_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.getSessionToken_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.removeCallback_removed(android.media.session.MediaSession.Callback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.removeTransportControlsCallback_removed(android.media.session.MediaSession.TransportControlsCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.setCallback_added(android.media.session.MediaSession.Callback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.setCallback_added(android.media.session.MediaSession.Callback, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.setExtras_added(android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.setLaunchPendingIntent_removed(android.app.PendingIntent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.setMediaButtonReceiver_added(android.app.PendingIntent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.setPlaybackToLocal_changed(android.media.AudioAttributes)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.setPlaybackToRemote_changed(android.media.VolumeProvider)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.setQueueTitle_added(java.lang.CharSequence)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.setQueue_added(java.util.List&lt;android.media.session.MediaSession.QueueItem&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSession.setSessionActivity_added(android.app.PendingIntent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSessionManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSessionManager.OnActiveSessionsChangedListener"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSessionManager.addOnActiveSessionsChangedListener_added(android.media.session.MediaSessionManager.OnActiveSessionsChangedListener, android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSessionManager.addOnActiveSessionsChangedListener_added(android.media.session.MediaSessionManager.OnActiveSessionsChangedListener, android.content.ComponentName, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSessionManager.createSession_removed(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSessionManager.getActiveSessions_added(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSessionManager.removeOnActiveSessionsChangedListener_added(android.media.session.MediaSessionManager.OnActiveSessionsChangedListener)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.MediaSessionToken"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.PlaybackState"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.PlaybackState.ACTION_PLAY_FROM_MEDIA_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.PlaybackState.ACTION_PLAY_FROM_SEARCH"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.PlaybackState.ACTION_SKIP_TO_QUEUE_ITEM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.PlaybackState.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.PlaybackState.CustomAction"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.PlaybackState.CustomAction.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.PlaybackState.STATE_CONNECTING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.PlaybackState.STATE_SKIPPING_TO_QUEUE_ITEM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.PlaybackState.ctor_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.PlaybackState.ctor_removed(android.media.session.PlaybackState)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.PlaybackState.getActiveQueueItemId_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.PlaybackState.getBufferPosition_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.PlaybackState.getBufferedPosition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.PlaybackState.getCustomActions_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.PlaybackState.getLastPositionUpdateTime_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.PlaybackState.getPlaybackRate_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.PlaybackState.getPlaybackSpeed_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.PlaybackState.setActions_removed(long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.PlaybackState.setBufferPosition_removed(long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.PlaybackState.setErrorMessage_removed(java.lang.CharSequence)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.PlaybackState.setState_removed(int, long, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.session.RemoteVolumeProvider"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContentRating"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.COLUMN_BROWSABLE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.COLUMN_INPUT_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.COLUMN_NETWORK_AFFILIATION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.COLUMN_SERVICE_NAME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.COLUMN_VIDEO_FORMAT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.SERVICE_TYPE_AUDIO"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.SERVICE_TYPE_AUDIO_VIDEO"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.SERVICE_TYPE_OTHER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_1SEG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_ATSC_C"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_ATSC_M_H"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_ATSC_T"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_CMMB"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_DTMB"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_DVB_C"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_DVB_C2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_DVB_H"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_DVB_S"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_DVB_S2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_DVB_SH"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_DVB_T"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_DVB_T2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_ISDB_C"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_ISDB_S"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_ISDB_T"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_ISDB_TB"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_NTSC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_OTHER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_PAL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_PASSTHROUGH"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_SECAM"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_S_DMB"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.TYPE_T_DMB"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.VIDEO_FORMAT_1080I"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.VIDEO_FORMAT_1080P"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.VIDEO_FORMAT_2160P"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.VIDEO_FORMAT_240P"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.VIDEO_FORMAT_360P"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.VIDEO_FORMAT_4320P"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.VIDEO_FORMAT_480I"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.VIDEO_FORMAT_480P"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.VIDEO_FORMAT_576I"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.VIDEO_FORMAT_576P"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.VIDEO_FORMAT_720P"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_ED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_FHD"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_HD"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_SD"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.VIDEO_RESOLUTION_UHD"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Channels.getVideoResolution_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Programs"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Programs.COLUMN_CONTENT_RATING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Programs.COLUMN_EPISODE_NUMBER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Programs.COLUMN_EPISODE_TITLE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Programs.COLUMN_SEASON_NUMBER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Programs.COLUMN_VIDEO_HEIGHT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Programs.COLUMN_VIDEO_WIDTH"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Programs.Genres"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Programs.Genres.ANIMAL_WILDLIFE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Programs.Genres.COMEDY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Programs.Genres.DRAMA"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Programs.Genres.EDUCATION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Programs.Genres.FAMILY_KIDS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Programs.Genres.GAMING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Programs.Genres.MOVIES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Programs.Genres.NEWS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Programs.Genres.SHOPPING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Programs.Genres.SPORTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.Programs.Genres.TRAVEL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.buildChannelUriForPassthroughInput_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.buildChannelsUriForInput_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.buildChannelsUriForInput_removed(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.buildChannelsUriForInput_removed(android.content.ComponentName, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.buildInputId_added(android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.buildProgramsUriForChannel_added(long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvContract.buildProgramsUriForChannel_added(long, long, long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputInfo.CREATOR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputInfo.EXTRA_INPUT_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputInfo.EXTRA_SERVICE_NAME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputInfo.TYPE_COMPONENT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputInfo.TYPE_COMPOSITE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputInfo.TYPE_DISPLAY_PORT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputInfo.TYPE_DVI"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputInfo.TYPE_HDMI"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputInfo.TYPE_OTHER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputInfo.TYPE_PASSTHROUGH"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputInfo.TYPE_SCART"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputInfo.TYPE_SVIDEO"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputInfo.TYPE_TUNER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputInfo.TYPE_VGA"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputInfo.TYPE_VIRTUAL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputInfo.createSettingsIntent_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputInfo.createSetupIntent_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputInfo.getIntentForSettingsActivity_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputInfo.getIntentForSetupActivity_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputInfo.getParentId_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputInfo.isPassthroughInput_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputInfo.loadIcon_added(android.content.Context)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputInfo.loadLabel_changed(android.content.Context)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputManager.ACTION_BLOCKED_RATINGS_CHANGED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputManager.ACTION_PARENTAL_CONTROLS_ENABLED_CHANGED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputManager.ACTION_QUERY_CONTENT_RATING_SYSTEMS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputManager.INPUT_STATE_CONNECTED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputManager.INPUT_STATE_CONNECTED_STANDBY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputManager.INPUT_STATE_DISCONNECTED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputManager.META_DATA_CONTENT_RATING_SYSTEMS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputManager.TvInputCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputManager.TvInputListener"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputManager.VIDEO_UNAVAILABLE_REASON_BUFFERING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputManager.VIDEO_UNAVAILABLE_REASON_TUNING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputManager.VIDEO_UNAVAILABLE_REASON_UNKNOWN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputManager.VIDEO_UNAVAILABLE_REASON_WEAK_SIGNAL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputManager.getAvailability_removed(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputManager.getInputState_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputManager.getTvInputInfo_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputManager.isParentalControlsEnabled_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputManager.isRatingBlocked_added(android.media.tv.TvContentRating)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputManager.registerCallback_added(android.media.tv.TvInputManager.TvInputCallback, android.os.Handler)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputManager.unregisterCallback_added(android.media.tv.TvInputManager.TvInputCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputService"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputService.HardwareSession"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputService.Session"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputService.Session.ctor_changed(android.content.Context)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputService.Session.notifyChannelRetuned_added(android.net.Uri)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputService.Session.notifyContentAllowed_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputService.Session.notifyContentBlocked_added(android.media.tv.TvContentRating)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputService.Session.notifyTrackSelected_added(int, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputService.Session.notifyTracksChanged_added(java.util.List&lt;android.media.tv.TvTrackInfo&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputService.Session.notifyVideoAvailable_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputService.Session.notifyVideoUnavailable_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputService.Session.onSelectTrack_added(int, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputService.Session.onSetCaptionEnabled_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputService.Session.onSurfaceChanged_added(int, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputService.Session.onUnblockContent_added(android.media.tv.TvContentRating)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvInputService.onCreateSession_changed(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvTrackInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvTrackInfo.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvView.ERROR_BUSY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvView.ERROR_TV_INPUT_DISCONNECTED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvView.TvInputCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvView.TvInputListener"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvView.getSelectedTrack_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvView.getTracks_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvView.selectTrack_added(int, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvView.setCallback_added(android.media.tv.TvView.TvInputCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvView.setCaptionEnabled_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.media.tv.TvView.setTvInputListener_removed(android.media.tv.TvView.TvInputListener)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.TYPE_VPN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.addDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.getAllNetworks_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.getNetworkInfo_added(android.net.Network)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.registerDefaultNetworkActiveListener_removed(android.net.ConnectivityManager.OnNetworkActiveListener)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.removeDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ConnectivityManager.unregisterDefaultNetworkActiveListener_removed(android.net.ConnectivityManager.OnNetworkActiveListener)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.LinkAddress"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.LinkAddress.CREATOR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.Network"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.Network.bindSocket_added(java.net.Socket)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.Network.openConnection_added(java.net.URL)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.NetworkCapabilities"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.NetworkCapabilities.NET_CAPABILITY_NOT_VPN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.NetworkCapabilities.NET_CAPABILITY_TRUSTED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.NetworkCapabilities.TRANSPORT_VPN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.NetworkRequest.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.NetworkRequest.Builder.setNetworkSpecifier_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ProxyInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.ProxyInfo.CREATOR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.PskKeyManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.VpnService.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.VpnService.Builder.addAllowedApplication_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.VpnService.Builder.addDisallowedApplication_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.VpnService.Builder.allowBypass_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.VpnService.Builder.allowFamily_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.VpnService.Builder.setBlocking_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiConfiguration"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiConfiguration.FQDN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.WPS_AUTH_FAILURE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.WPS_OVERLAP_ERROR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.WPS_TIMED_OUT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.WPS_TKIP_ONLY_PROHIBITED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.WPS_WEP_PROHIBITED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.WpsCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.cancelWps_added(android.net.wifi.WifiManager.WpsCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.is5GHzBandSupported_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.isDeviceToApRttSupported_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.isEnhancedPowerReportingSupported_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.isP2pSupported_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.isPreferredNetworkOffloadSupported_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.isTdlsSupported_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WifiManager.startWps_added(android.net.wifi.WpsInfo, android.net.wifi.WifiManager.WpsCallback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WpsInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.net.wifi.WpsInfo.BSSID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.nfc.cardemulation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.nfc.cardemulation.CardEmulation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.nfc.cardemulation.CardEmulation.supportsAidPrefixRegistration_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Build"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Build.CPU_ABI"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Build.CPU_ABI2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Build.SUPPORTED_32_BIT_ABIS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Build.SUPPORTED_64_BIT_ABIS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Build.SUPPORTED_ABIS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Build.VERSION_CODES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Build.VERSION_CODES.L"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Build.VERSION_CODES.LOLLIPOP"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Bundle"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Bundle.getSizeF_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Bundle.getSize_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Bundle.putSizeF_added(java.lang.String, android.util.SizeF)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Bundle.putSize_added(java.lang.String, android.util.Size)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Message"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Message.sendingUid"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Parcel"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Parcel.readSizeF_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Parcel.readSize_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Parcel.writeSizeF_added(android.util.SizeF)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Parcel.writeSize_added(android.util.Size)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.PowerManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.PowerManager.PROXIMITY_SCREEN_OFF_WAKE_LOCK"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.PowerManager.REBOOT_RECOVERY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.PowerManager.RELEASE_FLAG_WAIT_FOR_NO_PROXIMITY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.PowerManager.WakeLock"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.PowerManager.WakeLock.release_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.PowerManager.goToSleep_removed(long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.PowerManager.isWakeLockLevelSupported_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.PowerManager.userActivity_removed(long, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.PowerManager.wakeUp_removed(long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.DISALLOW_APPS_CONTROL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.DISALLOW_CONFIG_APPS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.DISALLOW_CREATE_WINDOWS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.DISALLOW_CROSS_PROFILE_COPY_PASTE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.DISALLOW_OUTGOING_CALLS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.DISALLOW_SMS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.DISALLOW_TELEPHONY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.getBadgedDrawableForUser_removed(android.graphics.drawable.Drawable, android.os.UserHandle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.hasUserRestriction_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.setUserRestriction_changed(java.lang.String, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.setUserRestrictions_changed(android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.UserManager.setUserRestrictions_changed(android.os.Bundle, android.os.UserHandle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Vibrator"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Vibrator.vibrate_added(long, android.media.AudioAttributes)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.os.Vibrator.vibrate_added(long[], int, android.media.AudioAttributes)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.printservice"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.printservice.PrintService"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.printservice.PrintService.EXTRA_PRINTER_INFO"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls.DATA_USAGE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls.EXTRA_CALL_TYPE_FILTER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls.FEATURES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls.FEATURES_VIDEO"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls.PHONE_ACCOUNT_COMPONENT_NAME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls.PHONE_ACCOUNT_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.CallLog.Calls.TRANSCRIPTION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Callable"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Callable.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Callable.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Callable.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Contactables"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Contactables.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Email"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Email.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Event"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Event.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Event.getTypeLabel_added(android.content.res.Resources, int, java.lang.CharSequence)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.GroupMembership"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.GroupMembership.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Identity"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Identity.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Im"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Im.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Nickname"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Nickname.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Note"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Note.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Organization"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Organization.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Phone"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Phone.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Photo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Photo.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Relation"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.SipAddress"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.SipAddress.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.StructuredName"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.StructuredName.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.StructuredPostal"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.StructuredPostal.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Website"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.CommonDataKinds.Website.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.ContactOptionsColumns"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.ContactOptionsColumns.PINNED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Contacts"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Contacts.CONTENT_FREQUENT_URI"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Contacts.Entity"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Contacts.StreamItems"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Contacts.StreamItems.CONTENT_DIRECTORY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Contacts.isEnterpriseContactId_added(long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.ContactsColumns"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.ContactsColumns.NAME_RAW_CONTACT_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.DEFERRED_SNIPPETING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.DEFERRED_SNIPPETING_QUERY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Data"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Data.EXTRA_ADDRESS_BOOK_INDEX_TITLES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.DataColumns"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.DataColumns.RES_PACKAGE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.GroupsColumns"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.GroupsColumns.RES_PACKAGE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.GroupsColumns.TITLE_RES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.PhoneLookup"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.PhoneLookup.ENTERPRISE_CONTENT_FILTER_URI"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.PinnedPositions"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.Preferences"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.QuickContact"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.QuickContact.ACTION_QUICK_CONTACT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.QuickContact.EXTRA_EXCLUDE_MIMES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.RawContacts.StreamItems"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.RawContacts.StreamItems.CONTENT_DIRECTORY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.RawContactsColumns"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.RawContactsColumns.ACCOUNT_TYPE_AND_DATA_SET"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.SearchSnippets"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemPhotos"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemPhotos.PHOTO"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemPhotosColumns"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemPhotosColumns.PHOTO_FILE_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemPhotosColumns.PHOTO_URI"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemPhotosColumns.SORT_INDEX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemPhotosColumns.STREAM_ITEM_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemPhotosColumns.SYNC1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemPhotosColumns.SYNC2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemPhotosColumns.SYNC3"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemPhotosColumns.SYNC4"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItems"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItems.CONTENT_ITEM_TYPE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItems.CONTENT_LIMIT_URI"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItems.CONTENT_PHOTO_URI"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItems.CONTENT_TYPE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItems.CONTENT_URI"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItems.MAX_ITEMS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItems.StreamItemPhotos"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_DIRECTORY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_ITEM_TYPE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItems.StreamItemPhotos.CONTENT_TYPE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.ACCOUNT_NAME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.ACCOUNT_TYPE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.COMMENTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.CONTACT_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.CONTACT_LOOKUP_KEY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.DATA_SET"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.RAW_CONTACT_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.RAW_CONTACT_SOURCE_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.RES_ICON"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.RES_LABEL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.RES_PACKAGE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.SYNC1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.SYNC2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.SYNC3"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.SYNC4"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.TEXT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.ContactsContract.StreamItemsColumns.TIMESTAMP"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.MediaStore.Audio.Radio"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.MediaStore.Audio.Radio.ctor_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Settings"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Settings.ACTION_CAST_SETTINGS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Settings.ACTION_HOME_SETTINGS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Settings.ACTION_SHOW_REGULATORY_INFO"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Settings.ACTION_USAGE_ACCESS_SETTINGS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Settings.ACTION_VOICE_INPUT_SETTINGS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Settings.Secure"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Settings.Secure.SKIP_FIRST_USE_HINTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Settings.System"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Settings.System.NEXT_ALARM_FORMATTED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Telephony.BaseMmsColumns"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Telephony.BaseMmsColumns.CREATOR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Telephony.BaseMmsColumns.MESSAGE_BOX_FAILED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Telephony.TextBasedSmsColumns"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Telephony.TextBasedSmsColumns.CREATOR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Telephony.ThreadsColumns"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.Telephony.ThreadsColumns.ARCHIVED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.VoicemailContract.Voicemails"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.provider.VoicemailContract.Voicemails.TRANSCRIPTION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptC"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptC.ctor_added(android.renderscript.RenderScript, java.lang.String, byte[], byte[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.renderscript.ScriptC.ctor_added(long, android.renderscript.RenderScript)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.dreams"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.dreams.DreamService"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.dreams.DreamService.onWakeUp_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.dreams.DreamService.wakeUp_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.media"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.HINT_HOST_DISABLE_EFFECTS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_ALL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_NONE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.INTERRUPTION_FILTER_PRIORITY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.Ranking"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.Ranking.ctor_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.Ranking.isInterceptedByDoNotDisturb_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.Ranking.matchesInterruptionFilter_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.RankingMap"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.RankingMap.getRanking_changed(java.lang.String, android.service.notification.NotificationListenerService.Ranking)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.getActiveNotifications_added(java.lang.String[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.getCurrentInterruptionFilter_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.getCurrentListenerHints_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.onInterruptionFilterChanged_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.onListenerHintsChanged_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.requestInterruptionFilter_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.NotificationListenerService.requestListenerHints_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.StatusBarNotification"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.notification.StatusBarNotification.getGroupKey_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.restrictions"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.AlwaysOnHotwordDetector"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.AlwaysOnHotwordDetector.Callback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.AlwaysOnHotwordDetector.EventPayload"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionService"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionService.createAlwaysOnHotwordDetector_added(java.lang.String, java.util.Locale, android.service.voice.AlwaysOnHotwordDetector.Callback)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionService.isActiveService_added(android.content.Context, android.content.ComponentName)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionService.onReady_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionService.onShutdown_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionSession"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionSession.Caller"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionSession.Insets"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionSession.Request"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionSession.getLayoutInflater_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionSession.getWindow_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionSession.hideWindow_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionSession.onAbortVoice_removed(android.service.voice.VoiceInteractionSession.Caller, android.service.voice.VoiceInteractionSession.Request, java.lang.CharSequence, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionSession.onBackPressed_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionSession.onCancel_removed(android.service.voice.VoiceInteractionSession.Request)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionSession.onCommand_removed(android.service.voice.VoiceInteractionSession.Caller, android.service.voice.VoiceInteractionSession.Request, java.lang.String, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionSession.onComputeInsets_removed(android.service.voice.VoiceInteractionSession.Insets)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionSession.onConfirm_removed(android.service.voice.VoiceInteractionSession.Caller, android.service.voice.VoiceInteractionSession.Request, java.lang.CharSequence, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionSession.onCreateContentView_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionSession.onGetSupportedCommands_removed(android.service.voice.VoiceInteractionSession.Caller, java.lang.String[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionSession.onTaskFinished_removed(android.content.Intent, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionSession.onTaskStarted_removed(android.content.Intent, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionSession.setTheme_removed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionSession.showWindow_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.voice.VoiceInteractionSession.startVoiceActivity_removed(android.content.Intent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.wallpaper"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.wallpaper.WallpaperService.Engine"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.service.wallpaper.WallpaperService.Engine.onApplyWindowInsets_added(android.view.WindowInsets)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.SynthesisCallback"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.SynthesisCallback.error_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.SynthesisCallback.hasFinished_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.SynthesisCallback.hasStarted_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.SynthesisRequest"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.SynthesisRequest.ctor_added(java.lang.CharSequence, android.os.Bundle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.SynthesisRequest.getCharSequenceText_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.SynthesisRequest.getText_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.SynthesisRequest.getVoiceName_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.ERROR_INVALID_REQUEST"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.ERROR_NETWORK"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.ERROR_NETWORK_TIMEOUT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.ERROR_NOT_INSTALLED_YET"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.ERROR_OUTPUT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.ERROR_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.ERROR_SYNTHESIS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.Engine"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_EMBEDDED_SYNTHESIS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_RETRIES_COUNT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_SYNTHESIS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NETWORK_TIMEOUT_MS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.Engine.KEY_FEATURE_NOT_INSTALLED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.Engine.KEY_PARAM_SESSION_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.STOPPED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.io.File)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.addEarcon_removed(java.lang.String, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.io.File)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.lang.String, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.areDefaultsEnforced_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.getAvailableLanguages_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.getDefaultLanguage_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.getDefaultVoice_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.getFeatures_changed(java.util.Locale)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.getLanguage_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.getVoice_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.getVoices_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.playEarcon_added(java.lang.String, int, android.os.Bundle, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.playEarcon_changed(java.lang.String, int, java.util.HashMap&lt;java.lang.String, java.lang.String&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.playSilence_changed(long, int, java.util.HashMap&lt;java.lang.String, java.lang.String&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.playSilentUtterance_added(long, int, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.setAudioAttributes_added(android.media.AudioAttributes)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.setVoice_added(android.speech.tts.Voice)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.speak_added(java.lang.CharSequence, int, android.os.Bundle, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.speak_changed(java.lang.String, int, java.util.HashMap&lt;java.lang.String, java.lang.String&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.synthesizeToFile_added(java.lang.CharSequence, android.os.Bundle, java.io.File, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeech.synthesizeToFile_changed(java.lang.String, java.util.HashMap&lt;java.lang.String, java.lang.String&gt;, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeechService"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeechService.onGetDefaultVoiceNameFor_added(java.lang.String, java.lang.String, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeechService.onGetVoices_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeechService.onIsValidVoiceName_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.TextToSpeechService.onLoadVoice_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.UtteranceProgressListener"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.UtteranceProgressListener.onError_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.UtteranceProgressListener.onError_added(java.lang.String, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.UtteranceProgressListener.onError_removed(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.speech.tts.Voice"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.system"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.system.OsConstants"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.system.OsConstants.PR_GET_DUMPABLE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.system.OsConstants.PR_SET_DUMPABLE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telecom"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.IccOpenLogicalChannelResponse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.EXTRA_MMS_DATA"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_ALIAS_ENABLED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_ALIAS_MAX_CHARS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_ALIAS_MIN_CHARS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_ALLOW_ATTACH_AUDIO"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_APPEND_TRANSACTION_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_EMAIL_GATEWAY_NUMBER"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_GROUP_MMS_ENABLED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_HTTP_PARAMS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_HTTP_SOCKET_TIMEOUT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_MAX_IMAGE_HEIGHT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_MAX_IMAGE_WIDTH"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_MAX_MESSAGE_SIZE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_MESSAGE_TEXT_MAX_SIZE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_MMS_DELIVERY_REPORT_ENABLED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_MMS_ENABLED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_MMS_READ_REPORT_ENABLED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_MULTIPART_SMS_ENABLED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_NAI_SUFFIX"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_NOTIFY_WAP_MMSC_ENABLED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_RECIPIENT_LIMIT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_SEND_MULTIPART_SMS_AS_SEPARATE_MESSAGES"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_SMS_DELIVERY_REPORT_ENABLED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_SMS_TO_MMS_TEXT_LENGTH_THRESHOLD"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_SMS_TO_MMS_TEXT_THRESHOLD"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_SUBJECT_MAX_LENGTH"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_SUPPORT_MMS_CONTENT_DISPOSITION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_UA_PROF_TAG_NAME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_UA_PROF_URL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_CONFIG_USER_AGENT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_ERROR_CONFIGURATION_ERROR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_ERROR_HTTP_FAILURE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_ERROR_INVALID_APN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_ERROR_IO_ERROR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_ERROR_RETRY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_ERROR_UNABLE_CONNECT_MMS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.MMS_ERROR_UNSPECIFIED"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.downloadMultimediaMessage_added(android.content.Context, java.lang.String, android.net.Uri, android.os.Bundle, android.app.PendingIntent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.getCarrierConfigValues_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.SmsManager.sendMultimediaMessage_added(android.content.Context, android.net.Uri, java.lang.String, android.os.Bundle, android.app.PendingIntent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.TelephonyManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.TelephonyManager.iccCloseLogicalChannel_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.TelephonyManager.iccExchangeSimIO_added(int, int, int, int, int, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.TelephonyManager.iccOpenLogicalChannel_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.TelephonyManager.iccTransmitApduBasicChannel_added(int, int, int, int, int, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.TelephonyManager.iccTransmitApduLogicalChannel_added(int, int, int, int, int, int, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.TelephonyManager.isSmsCapable_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.telephony.TelephonyManager.sendEnvelopeWithStatus_added(java.lang.String)"/>
+  <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.getCodeCacheDir_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.test.mock.MockContext.getNoBackupFilesDir_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.test.mock.MockPackageManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.test.mock.MockPackageManager.getPackageInstaller_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.test.mock.MockPackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.test.mock.MockPackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.test.mock.MockPackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.InputFilter.LengthFilter"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.InputFilter.LengthFilter.getMax_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.SpannableStringBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.SpannableStringBuilder.append_added(java.lang.CharSequence, java.lang.Object, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.CardinalBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.DateBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.DecimalBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.DigitsBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.ElectronicBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.FractionBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.MeasureBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.MoneyBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.OrdinalBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.SemioticClassBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.TelephoneBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.TextBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.TimeBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.text.style.TtsSpan.VerbatimBuilder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.ArcMotion"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.AutoTransition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.AutoTransition.ctor_added(android.content.Context, android.util.AttributeSet)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.ChangeBounds"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.ChangeBounds.ctor_added(android.content.Context, android.util.AttributeSet)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.ChangeBounds.setReparent_changed(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.ChangeClipBounds"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.ChangeClipBounds.ctor_added(android.content.Context, android.util.AttributeSet)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.ChangeImageTransform"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.ChangeTransform"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.ChangeTransform.ctor_added(android.content.Context, android.util.AttributeSet)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.ChangeTransform.getReparentWithOverlay_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.ChangeTransform.getReparent_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.ChangeTransform.setReparentWithOverlay_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.ChangeTransform.setReparent_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Explode"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Explode.ctor_added(android.content.Context, android.util.AttributeSet)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Fade"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Fade.ctor_added(android.content.Context, android.util.AttributeSet)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.MoveImage"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.PathMotion"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.PatternPathMotion"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Slide"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Slide.ctor_added(android.content.Context, android.util.AttributeSet)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Slide.getSlideEdge_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.MATCH_NAME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.MATCH_VIEW_NAME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.ctor_added(android.content.Context, android.util.AttributeSet)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.getPathMotion_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.getTargetNames_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.getTargetViewNames_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Transition.setPathMotion_added(android.transition.PathMotion)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.TransitionSet"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.TransitionSet.ctor_added(android.content.Context, android.util.AttributeSet)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.TransitionSet.getTransitionAt_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.TransitionSet.getTransitionCount_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Visibility"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Visibility.MODE_IN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Visibility.MODE_OUT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Visibility.ctor_added(android.content.Context, android.util.AttributeSet)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Visibility.getMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.transition.Visibility.setMode_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.ArrayMap"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.ArrayMap.indexOfKey_added(java.lang.Object)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.DisplayMetrics"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.DisplayMetrics.DENSITY_560"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.Range"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.Range.clamp_added(T)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.Range.contains_added(T)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.Range.contains_added(android.util.Range&lt;T&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.Range.extend_added(T)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.Range.extend_added(T, T)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.Range.extend_added(android.util.Range&lt;T&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.Range.inRange_removed(T)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.Range.intersect_added(T, T)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.Range.intersect_added(android.util.Range&lt;T&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.Rational"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.Rational.parseRational_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.Size"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.Size.parseSize_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.SizeF"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.util.SizeF.parseSizeF_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Display"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Display.STATE_DOZE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Display.STATE_DOZE_SUSPEND"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Display.STATE_DOZING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Display.getAppVsyncOffsetNanos_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Display.getPresentationDeadlineNanos_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Display.getSupportedRefreshRates_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.FrameStats"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.FrameStats.mFramesPresentedTimeNano"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.FrameStats.mRefreshPeriodNano"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_HELP"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_ANTENNA_CABLE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_CONTENTS_MENU"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_INPUT_COMPONENT_1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_INPUT_COMPONENT_2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_INPUT_COMPOSITE_1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_INPUT_COMPOSITE_2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_2"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_3"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_INPUT_HDMI_4"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_INPUT_VGA_1"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_MEDIA_CONTEXT_MENU"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_NETWORK"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_NUMBER_ENTRY"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_RADIO_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_SATELLITE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_SATELLITE_BS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_SATELLITE_CS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_SATELLITE_SERVICE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_TELETEXT"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_TERRESTRIAL_ANALOG"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_TERRESTRIAL_DIGITAL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_TIMER_PROGRAMMING"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_TV_ZOOM_MODE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.KeyEvent.KEYCODE_VOICE_ASSIST"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.MotionEvent"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.MotionEvent.isButtonPressed_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.computeSystemWindowInsets_added(android.view.WindowInsets, android.graphics.Rect)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.dispatchNestedPreFling_added(float, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.drawableHotspotChanged_added(float, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.getBackgroundTintList_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.getBackgroundTintMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.getOutlineProvider_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.getTransitionName_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.getViewName_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.initializeFadingEdge_removed(android.content.res.TypedArray)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.initializeScrollbars_removed(android.content.res.TypedArray)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.invalidateOutline_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.requestUnbufferedDispatch_added(android.view.MotionEvent)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.setBackgroundTintList_added(android.content.res.ColorStateList)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.setBackgroundTintMode_added(android.graphics.PorterDuff.Mode)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.setOutlineProvider_added(android.view.ViewOutlineProvider)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.setOutline_removed(android.graphics.Outline)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.setTransitionName_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.View.setViewName_removed(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewAnimationUtils"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewAnimationUtils.createCircularReveal_changed(android.view.View, int, int, float, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewGroup"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewGroup.getClipToPadding_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewGroup.getTouchscreenBlocksFocus_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewGroup.onNestedPreFling_added(android.view.View, float, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewGroup.setTouchscreenBlocksFocus_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewOutlineProvider"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewParent"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.ViewParent.onNestedPreFling_added(android.view.View, float, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.FEATURE_ACTIVITY_TRANSITIONS"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.STATUS_BAR_BACKGROUND_TRANSITION_NAME"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getAllowExitTransitionOverlap_removed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getAllowReturnTransitionOverlap_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getMediaController_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getReenterTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getReturnTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getSharedElementReenterTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getSharedElementReturnTransition_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getSharedElementsUseOverlay_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.getTransitionBackgroundFadeDuration_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setAllowExitTransitionOverlap_removed(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setAllowReturnTransitionOverlap_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setMediaController_added(android.media.session.MediaController)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setReenterTransition_added(android.transition.Transition)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setReturnTransition_added(android.transition.Transition)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setSharedElementReenterTransition_added(android.transition.Transition)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setSharedElementReturnTransition_added(android.transition.Transition)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setSharedElementsUseOverlay_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.Window.setTransitionBackgroundFadeDuration_added(long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowInsets"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowInsets.consumeStableInsets_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowInsets.getStableInsetBottom_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowInsets.getStableInsetLeft_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowInsets.getStableInsetRight_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowInsets.getStableInsetTop_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowInsets.hasStableInsets_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowInsets.isConsumed_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowInsets.replaceSystemWindowInsets_added(android.graphics.Rect)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowManager.LayoutParams"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowManager.LayoutParams.TYPE_KEYGUARD"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.WindowManager.LayoutParams.preferredRefreshRate"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.getError_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.getMaxTextLength_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.setError_added(java.lang.CharSequence)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityNodeInfo.setMaxTextLength_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityWindowInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.accessibility.AccessibilityWindowInfo.isAccessibilityFocused_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.BaseInputConnection"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.BaseInputConnection.requestCursorUpdates_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.CursorAnchorInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.CursorAnchorInfo.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.CursorAnchorInfo.Builder.addCharacterBounds_added(int, float, float, float, float, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.CursorAnchorInfo.Builder.addCharacterRect_removed(int, float, float, float, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.CursorAnchorInfo.Builder.setInsertionMarkerLocation_changed(float, float, float, float, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.CursorAnchorInfo.FLAG_HAS_INVISIBLE_REGION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.CursorAnchorInfo.FLAG_HAS_VISIBLE_REGION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.CursorAnchorInfo.FLAG_IS_RTL"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.CursorAnchorInfo.getCharacterBoundsFlags_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.CursorAnchorInfo.getCharacterBounds_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.CursorAnchorInfo.getCharacterRect_removed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.CursorAnchorInfo.getComposingText_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.CursorAnchorInfo.getInsertionMarkerFlags_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.InputConnection"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.InputConnection.CURSOR_UPDATE_IMMEDIATE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.InputConnection.CURSOR_UPDATE_MONITOR"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.InputConnection.requestCursorUpdates_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.InputConnectionWrapper"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.InputConnectionWrapper.requestCursorUpdates_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.InputMethodManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.InputMethodManager.isWatchingCursor_changed(android.view.View)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.inputmethod.InputMethodManager.updateCursor_changed(android.view.View, int, int, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.textservice"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.textservice.TextInfo"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.textservice.TextInfo.ctor_added(java.lang.CharSequence, int, int, int, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.view.textservice.TextInfo.getCharSequence_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieManager.acceptThirdPartyCookies_added(android.webkit.WebView)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieManager.flush_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieManager.removeAllCookie_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieManager.removeAllCookies_added(android.webkit.ValueCallback&lt;java.lang.Boolean&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieManager.removeExpiredCookie_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieManager.removeSessionCookie_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieManager.removeSessionCookies_added(android.webkit.ValueCallback&lt;java.lang.Boolean&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieManager.setAcceptThirdPartyCookies_added(android.webkit.WebView, boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieManager.setCookie_added(java.lang.String, java.lang.String, android.webkit.ValueCallback&lt;java.lang.Boolean&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieSyncManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.CookieSyncManager.syncFromRamToFlash_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.PermissionRequest"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.PermissionRequest.RESOURCE_AUDIO_CAPTURE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.PermissionRequest.RESOURCE_PROTECTED_MEDIA_ID"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.PermissionRequest.RESOURCE_VIDEO_CAPTURE"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.PermissionRequest.ctor_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.PermissionRequest.getResources_changed()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.PermissionRequest.grant_changed(java.lang.String[])"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebChromeClient"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebChromeClient.FileChooserParams"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebChromeClient.onShowFileChooser_added(android.webkit.WebView, android.webkit.ValueCallback&lt;android.net.Uri[]&gt;, android.webkit.WebChromeClient.FileChooserParams)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebResourceRequest"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebResourceResponse"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebResourceResponse.ctor_added(java.lang.String, java.lang.String, int, java.lang.String, java.util.Map&lt;java.lang.String, java.lang.String&gt;, java.io.InputStream)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebResourceResponse.getReasonPhrase_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebResourceResponse.getResponseHeaders_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebResourceResponse.getStatusCode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebResourceResponse.setResponseHeaders_added(java.util.Map&lt;java.lang.String, java.lang.String&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebResourceResponse.setStatusCodeAndReasonPhrase_added(int, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebSyncManager"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebView.enableSlowWholeDocumentDraw_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebView.preauthorizePermission_removed(android.net.Uri, long)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebView.zoomBy_added(float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebViewClient"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, android.webkit.WebResourceRequest)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.webkit.WebViewClient.shouldInterceptRequest_removed(android.webkit.WebView, java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsListView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsListView.fling_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsSeekBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsSeekBar.getThumbTintList_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsSeekBar.getThumbTintMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsSeekBar.setThumbTintList_added(android.content.res.ColorStateList)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.AbsSeekBar.setThumbTintMode_added(android.graphics.PorterDuff.Mode)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ActionMenuView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ActionMenuView.getPopupTheme_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ActionMenuView.setPopupTheme_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CheckedTextView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CheckedTextView.getCheckMarkTintList_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CheckedTextView.getCheckMarkTintMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CheckedTextView.setCheckMarkTintList_added(android.content.res.ColorStateList)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CheckedTextView.setCheckMarkTintMode_added(android.graphics.PorterDuff.Mode)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CompoundButton"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CompoundButton.getButtonTintList_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CompoundButton.getButtonTintMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CompoundButton.setButtonTintList_added(android.content.res.ColorStateList)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.CompoundButton.setButtonTintMode_added(android.graphics.PorterDuff.Mode)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.DatePicker"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.DatePicker.getFirstDayOfWeek_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.DatePicker.setFirstDayOfWeek_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.EdgeEffect"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.EdgeEffect.getColor_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.EdgeEffect.setColor_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.FrameLayout"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.FrameLayout.getForegroundTintList_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.FrameLayout.getForegroundTintMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.FrameLayout.setForegroundTintList_added(android.content.res.ColorStateList)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.FrameLayout.setForegroundTintMode_added(android.graphics.PorterDuff.Mode)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.GridLayout"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.GridLayout.spec_added(int, android.widget.GridLayout.Alignment, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.GridLayout.spec_added(int, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.GridLayout.spec_added(int, int, android.widget.GridLayout.Alignment, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.GridLayout.spec_added(int, int, float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ImageView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ImageView.getImageTintList_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ImageView.getImageTintMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ImageView.setImageTintList_added(android.content.res.ColorStateList)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ImageView.setImageTintMode_added(android.graphics.PorterDuff.Mode)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.PopupWindow"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.PopupWindow.getElevation_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.PopupWindow.setElevation_added(float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.getIndeterminateTintList_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.getIndeterminateTintMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.getProgressBackgroundTintList_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.getProgressBackgroundTintMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.getProgressTintList_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.getProgressTintMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.getSecondaryProgressTintList_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.getSecondaryProgressTintMode_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.setIndeterminateTintList_added(android.content.res.ColorStateList)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.setIndeterminateTintMode_added(android.graphics.PorterDuff.Mode)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.setProgressBackgroundTintList_added(android.content.res.ColorStateList)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.setProgressBackgroundTintMode_added(android.graphics.PorterDuff.Mode)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.setProgressTintList_added(android.content.res.ColorStateList)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.setProgressTintMode_added(android.graphics.PorterDuff.Mode)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.setSecondaryProgressTintList_added(android.content.res.ColorStateList)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.ProgressBar.setSecondaryProgressTintMode_added(android.graphics.PorterDuff.Mode)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Switch"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Switch.getShowText_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Switch.setShowText_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TextView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TextView.getFontFeatureSettings_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TextView.getLetterSpacing_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TextView.getShowSoftInputOnFocus_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TextView.getTextColor_removed(android.content.Context, android.content.res.TypedArray, int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TextView.getTextColors_removed(android.content.Context, android.content.res.TypedArray)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TextView.setFontFeatureSettings_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TextView.setLetterSpacing_added(float)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.TextView.setShowSoftInputOnFocus_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Toolbar"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Toolbar.getNavigationContentDescription_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Toolbar.getPopupTheme_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Toolbar.setNavigationDescription_removed(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Toolbar.setNavigationDescription_removed(java.lang.CharSequence)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Toolbar.setPopupTheme_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Toolbar.setSubtitleTextColor_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.Toolbar.setTitleTextColor_added(int)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.VideoView"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="android.widget.VideoView.setVideoURI_added(android.net.Uri, java.util.Map&lt;java.lang.String, java.lang.String&gt;)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.IllformedLocaleException"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.Builder"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.PRIVATE_USE_EXTENSION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.UNICODE_LOCALE_EXTENSION"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.forLanguageTag_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.getDisplayScript_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.getDisplayScript_added(java.util.Locale)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.getExtensionKeys_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.getExtension_added(char)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.getScript_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.getUnicodeLocaleAttributes_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.getUnicodeLocaleKeys_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.getUnicodeLocaleType_added(java.lang.String)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.Locale.toLanguageTag_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.ConcurrentLinkedDeque"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.ForkJoinPool"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.ForkJoinPool.ForkJoinWorkerThreadFactory"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.ForkJoinPool.ManagedBlocker"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.ForkJoinTask"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.ForkJoinWorkerThread"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.LinkedTransferQueue"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.Phaser"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.RecursiveAction"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.RecursiveTask"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.ScheduledThreadPoolExecutor"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.ScheduledThreadPoolExecutor.getRemoveOnCancelPolicy_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.ScheduledThreadPoolExecutor.setRemoveOnCancelPolicy_added(boolean)"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.ThreadLocalRandom"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.TransferQueue"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.locks"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.locks.AbstractQueuedLongSynchronizer"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.locks.AbstractQueuedLongSynchronizer.hasQueuedPredecessors_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.locks.AbstractQueuedSynchronizer"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+<comment>
+  <identifier id="java.util.concurrent.locks.AbstractQueuedSynchronizer.hasQueuedPredecessors_added()"/>
+  <text>
+    InsertCommentsHere
+  </text>
+</comment>
+
+</comments>
diff --git a/docs/html/sdk/installing/studio.jd b/docs/html/sdk/installing/studio.jd
index 776e312..233213e 100644
--- a/docs/html/sdk/installing/studio.jd
+++ b/docs/html/sdk/installing/studio.jd
@@ -697,7 +697,7 @@
           window.location = "/sdk/installing/index.html?pkg=studio";
         }, 1000);
       });
-      _gaq.push(['_trackEvent', 'SDK', 'Android Studio', $("#downloadForRealz").html()]);
+      ga('send', 'event', 'SDK', 'Android Studio', $("#downloadForRealz").html());
       return true;
     } else {
       $("label#agreeLabel,#bitpicker input").parent().stop().animate({color: "#258AAF"}, 200,
diff --git a/docs/html/training/wearables/apps/layouts.jd b/docs/html/training/wearables/apps/layouts.jd
index e9eacd3..e62d3e5 100644
--- a/docs/html/training/wearables/apps/layouts.jd
+++ b/docs/html/training/wearables/apps/layouts.jd
@@ -82,7 +82,7 @@
   users view your notification.
   </li>
   <li>Issue the notification using the
-  {@link android.app.NotificationManager#notify notify()} method.
+  <a href="{@docRoot}reference/android/app/NotificationManager.html#notify(int, android.app.Notification)"><code>notify()</code></a> method.
   <p class="note"><b>Note:</b> When the notification is peeking on the homescreen, the system
   displays it with a standard template that it generates from the notification's semantic data. This template works well on all watchfaces. When users swipe the notification up, they'll then see the
   custom activity for the notification.</p>
diff --git a/media/java/android/media/AudioManager.java b/media/java/android/media/AudioManager.java
index 559c247..69c1142 100644
--- a/media/java/android/media/AudioManager.java
+++ b/media/java/android/media/AudioManager.java
@@ -982,12 +982,21 @@
      * @see #isVolumeFixed()
      */
     public void setRingerMode(int ringerMode) {
+        setRingerMode(ringerMode, true /*checkZen*/);
+    }
+
+    /**
+     * @see #setRingerMode(int)
+     * @param checkZen  Update zen mode if necessary to compensate.
+     * @hide
+     */
+    public void setRingerMode(int ringerMode, boolean checkZen) {
         if (!isValidRingerMode(ringerMode)) {
             return;
         }
         IAudioService service = getService();
         try {
-            service.setRingerMode(ringerMode);
+            service.setRingerMode(ringerMode, checkZen);
         } catch (RemoteException e) {
             Log.e(TAG, "Dead object in setRingerMode", e);
         }
diff --git a/media/java/android/media/AudioService.java b/media/java/android/media/AudioService.java
index 5aee2e8..b0bf4a1 100644
--- a/media/java/android/media/AudioService.java
+++ b/media/java/android/media/AudioService.java
@@ -66,6 +66,7 @@
 import android.os.UserHandle;
 import android.os.Vibrator;
 import android.provider.Settings;
+import android.provider.Settings.Global;
 import android.provider.Settings.System;
 import android.telecom.TelecomManager;
 import android.text.TextUtils;
@@ -1175,7 +1176,7 @@
             } else {
                 newRingerMode = AudioManager.RINGER_MODE_NORMAL;
             }
-            setRingerMode(newRingerMode);
+            setRingerMode(newRingerMode, false /*checkZen*/);
         }
     }
 
@@ -1738,7 +1739,7 @@
     }
 
     /** @see AudioManager#setRingerMode(int) */
-    public void setRingerMode(int ringerMode) {
+    public void setRingerMode(int ringerMode, boolean checkZen) {
         if (mUseFixedVolume || isPlatformTelevision()) {
             return;
         }
@@ -1746,6 +1747,9 @@
         if ((ringerMode == AudioManager.RINGER_MODE_VIBRATE) && !mHasVibrator) {
             ringerMode = AudioManager.RINGER_MODE_SILENT;
         }
+        if (checkZen) {
+            checkZen(ringerMode);
+        }
         if (ringerMode != getRingerMode()) {
             setRingerModeInt(ringerMode, true);
             // Send sticky broadcast
@@ -1753,6 +1757,19 @@
         }
     }
 
+    private void checkZen(int ringerMode) {
+        // leave zen when callers set ringer-mode = normal or vibrate
+        final int zen = Global.getInt(mContentResolver, Global.ZEN_MODE, Global.ZEN_MODE_OFF);
+        if (ringerMode != AudioManager.RINGER_MODE_SILENT && zen != Global.ZEN_MODE_OFF) {
+            final long ident = Binder.clearCallingIdentity();
+            try {
+                Global.putInt(mContentResolver, Global.ZEN_MODE, Global.ZEN_MODE_OFF);
+            } finally {
+                Binder.restoreCallingIdentity(ident);
+            }
+        }
+    }
+
     private void setRingerModeInt(int ringerMode, boolean persist) {
         synchronized(mSettingsLock) {
             mRingerMode = ringerMode;
@@ -2993,7 +3010,7 @@
             break;
         }
 
-        setRingerMode(ringerMode);
+        setRingerMode(ringerMode, false /*checkZen*/);
 
         mPrevVolDirection = direction;
 
diff --git a/media/java/android/media/IAudioService.aidl b/media/java/android/media/IAudioService.aidl
index 1c41432..39b074e 100644
--- a/media/java/android/media/IAudioService.aidl
+++ b/media/java/android/media/IAudioService.aidl
@@ -76,7 +76,7 @@
 
     void setMicrophoneMute(boolean on, String callingPackage);
 
-    void setRingerMode(int ringerMode);
+    void setRingerMode(int ringerMode, boolean checkZen);
 
     int getRingerMode();
 
diff --git a/media/java/android/mtp/MtpDatabase.java b/media/java/android/mtp/MtpDatabase.java
index 1921f47..13cdc69 100755
--- a/media/java/android/mtp/MtpDatabase.java
+++ b/media/java/android/mtp/MtpDatabase.java
@@ -306,8 +306,10 @@
         try {
             File f = new File(path);
             String canonical = f.getCanonicalPath();
-            if (canonical.startsWith(mMediaStoragePath)) {
-                return true;
+            for (String root: mStorageMap.keySet()) {
+                if (canonical.startsWith(root)) {
+                    return true;
+                }
             }
         } catch (IOException e) {
             // ignore
diff --git a/packages/WAPPushManager/src/com/android/smspush/WapPushManager.java b/packages/WAPPushManager/src/com/android/smspush/WapPushManager.java
index 96e0377..e970367 100644
--- a/packages/WAPPushManager/src/com/android/smspush/WapPushManager.java
+++ b/packages/WAPPushManager/src/com/android/smspush/WapPushManager.java
@@ -117,14 +117,18 @@
          */
         protected queryData queryLastApp(SQLiteDatabase db,
                 String app_id, String content_type) {
-            String sql = "select install_order, package_name, class_name, "
-                    + " app_type, need_signature, further_processing"
-                    + " from " + APPID_TABLE_NAME
-                    + " where x_wap_application=\'" + app_id + "\'"
-                    + " and content_type=\'" + content_type + "\'"
-                    + " order by install_order desc";
-            if (DEBUG_SQL) Log.v(LOG_TAG, "sql: " + sql);
-            Cursor cur = db.rawQuery(sql, null);
+            if (LOCAL_LOGV) Log.v(LOG_TAG, "queryLastApp app_id: " + app_id
+                    + " content_type: " +  content_type);
+
+            Cursor cur = db.query(APPID_TABLE_NAME,
+                    new String[] {"install_order", "package_name", "class_name",
+                    "app_type", "need_signature", "further_processing"},
+                    "x_wap_application=? and content_type=?",
+                    new String[] {app_id, content_type},
+                    null /* groupBy */,
+                    null /* having */,
+                    "install_order desc" /* orderBy */);
+
             queryData ret = null;
 
             if (cur.moveToNext()) {
@@ -392,10 +396,20 @@
         SQLiteDatabase db = dbh.getReadableDatabase();
         WapPushManDBHelper.queryData lastapp = dbh.queryLastApp(db, x_app_id, content_type);
 
+        if (LOCAL_LOGV) Log.v(LOG_TAG, "verifyData app id: " + x_app_id + " content type: " +
+                content_type + " lastapp: " + lastapp);
+
         db.close();
 
         if (lastapp == null) return false;
 
+        if (LOCAL_LOGV) Log.v(LOG_TAG, "verifyData lastapp.packageName: " + lastapp.packageName +
+                " lastapp.className: " + lastapp.className +
+                " lastapp.appType: " + lastapp.appType +
+                " lastapp.needSignature: " + lastapp.needSignature +
+                " lastapp.furtherProcessing: " + lastapp.furtherProcessing);
+
+
         if (lastapp.packageName.equals(package_name)
                 && lastapp.className.equals(class_name)
                 && lastapp.appType == app_type
diff --git a/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/WapPushTest.java b/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/WapPushTest.java
index 305ee37..f7afc57 100644
--- a/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/WapPushTest.java
+++ b/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/WapPushTest.java
@@ -552,6 +552,25 @@
     }
 
     /**
+     * Add sqlite injection test
+     */
+    public void testAddPackage0() {
+        String inject = "' union select 0,'com.android.settings','com.android.settings.Settings',0,0,0--";
+
+        // insert new data
+        IWapPushManager iwapman = getInterface();
+        try {
+            assertFalse(iwapman.addPackage(
+                    inject,
+                    Integer.toString(mContentTypeValue),
+                    mPackageName, mClassName,
+                    WapPushManagerParams.APP_TYPE_SERVICE, true, true));
+        } catch (RemoteException e) {
+            assertTrue(false);
+        }
+    }
+
+    /**
      * Add duprecated package test.
      */
     public void testAddPackage2() {
@@ -1477,7 +1496,7 @@
         System.arraycopy(mWspHeader, 0, array,
                 mGsmHeader.length + mUserDataHeader.length, mWspHeader.length);
         System.arraycopy(mMessageBody, 0, array,
-                mGsmHeader.length + mUserDataHeader.length + mWspHeader.length, 
+                mGsmHeader.length + mUserDataHeader.length + mWspHeader.length,
                 mMessageBody.length);
         return array;
 
diff --git a/services/core/java/com/android/server/am/ActivityStackSupervisor.java b/services/core/java/com/android/server/am/ActivityStackSupervisor.java
index bbfb62a..03dd3c0 100644
--- a/services/core/java/com/android/server/am/ActivityStackSupervisor.java
+++ b/services/core/java/com/android/server/am/ActivityStackSupervisor.java
@@ -2058,7 +2058,12 @@
             }
             targetStack = sourceTask.stack;
             targetStack.moveToFront();
-            mWindowManager.moveTaskToTop(targetStack.topTask().taskId);
+            final TaskRecord topTask = targetStack.topTask();
+            if (topTask != sourceTask) {
+                targetStack.moveTaskToFrontLocked(sourceTask, r, options);
+            } else {
+                mWindowManager.moveTaskToTop(topTask.taskId);
+            }
             if (!addingToTask && (launchFlags&Intent.FLAG_ACTIVITY_CLEAR_TOP) != 0) {
                 // In this case, we are adding the activity to an existing
                 // task, but the caller has asked to clear that task if the
@@ -3097,10 +3102,9 @@
         for (int displayNdx = 0; displayNdx < mActivityDisplays.size(); ++displayNdx) {
             ActivityDisplay activityDisplay = mActivityDisplays.valueAt(displayNdx);
             pw.print("Display #"); pw.print(activityDisplay.mDisplayId);
-                    pw.println(" (activities from bottom to top):");
+                    pw.println(" (activities from top to bottom):");
             ArrayList<ActivityStack> stacks = activityDisplay.mStacks;
-            final int numStacks = stacks.size();
-            for (int stackNdx = 0; stackNdx < numStacks; ++stackNdx) {
+            for (int stackNdx = stacks.size() - 1; stackNdx >= 0; --stackNdx) {
                 final ActivityStack stack = stacks.get(stackNdx);
                 StringBuilder stackHeader = new StringBuilder(128);
                 stackHeader.append("  Stack #");
diff --git a/services/core/java/com/android/server/media/MediaSessionRecord.java b/services/core/java/com/android/server/media/MediaSessionRecord.java
index ebce3ad..921b68b 100644
--- a/services/core/java/com/android/server/media/MediaSessionRecord.java
+++ b/services/core/java/com/android/server/media/MediaSessionRecord.java
@@ -731,7 +731,9 @@
                 // This is to guarantee that the underlying bundle is unparceled
                 // before we set it to prevent concurrent reads from throwing an
                 // exception
-                temp.size();
+                if (temp != null) {
+                    temp.size();
+                }
                 mMetadata = temp;
             }
             mHandler.post(MessageHandler.MSG_UPDATE_METADATA);
diff --git a/services/core/java/com/android/server/notification/ZenModeHelper.java b/services/core/java/com/android/server/notification/ZenModeHelper.java
index 5bc1ff9..992b6aa 100644
--- a/services/core/java/com/android/server/notification/ZenModeHelper.java
+++ b/services/core/java/com/android/server/notification/ZenModeHelper.java
@@ -260,7 +260,7 @@
                 }
             }
             if (forcedRingerMode != -1) {
-                mAudioManager.setRingerMode(forcedRingerMode);
+                mAudioManager.setRingerMode(forcedRingerMode, false /*checkZen*/);
                 ZenLog.traceSetRingerMode(forcedRingerMode);
             }
         }
diff --git a/services/core/java/com/android/server/pm/PackageInstallerService.java b/services/core/java/com/android/server/pm/PackageInstallerService.java
index 9db3fba..2150e9a 100644
--- a/services/core/java/com/android/server/pm/PackageInstallerService.java
+++ b/services/core/java/com/android/server/pm/PackageInstallerService.java
@@ -45,6 +45,7 @@
 import android.content.pm.PackageInstaller.SessionInfo;
 import android.content.pm.PackageInstaller.SessionParams;
 import android.content.pm.PackageManager;
+import android.content.pm.ParceledListSlice;
 import android.graphics.Bitmap;
 import android.graphics.Bitmap.CompressFormat;
 import android.graphics.BitmapFactory;
@@ -714,7 +715,7 @@
     }
 
     @Override
-    public List<SessionInfo> getAllSessions(int userId) {
+    public ParceledListSlice<SessionInfo> getAllSessions(int userId) {
         mPm.enforceCrossUserPermission(Binder.getCallingUid(), userId, true, false, "getAllSessions");
 
         final List<SessionInfo> result = new ArrayList<>();
@@ -726,11 +727,11 @@
                 }
             }
         }
-        return result;
+        return new ParceledListSlice<>(result);
     }
 
     @Override
-    public List<SessionInfo> getMySessions(String installerPackageName, int userId) {
+    public ParceledListSlice<SessionInfo> getMySessions(String installerPackageName, int userId) {
         mPm.enforceCrossUserPermission(Binder.getCallingUid(), userId, true, false, "getMySessions");
         mAppOps.checkPackage(Binder.getCallingUid(), installerPackageName);
 
@@ -744,7 +745,7 @@
                 }
             }
         }
-        return result;
+        return new ParceledListSlice<>(result);
     }
 
     @Override
diff --git a/services/devicepolicy/java/com/android/server/devicepolicy/DevicePolicyManagerService.java b/services/devicepolicy/java/com/android/server/devicepolicy/DevicePolicyManagerService.java
index a5a622c..af4ae44 100644
--- a/services/devicepolicy/java/com/android/server/devicepolicy/DevicePolicyManagerService.java
+++ b/services/devicepolicy/java/com/android/server/devicepolicy/DevicePolicyManagerService.java
@@ -2924,9 +2924,6 @@
             return;
         }
         enforceCrossUserPermission(userHandle);
-        if ((flags & DevicePolicyManager.WIPE_EXTERNAL_STORAGE) != 0) {
-            enforceNotManagedProfile(userHandle, "wipe external storage");
-        }
         synchronized (this) {
             // This API can only be called by an active device admin,
             // so try to retrieve it to check that the caller is one.
@@ -3526,7 +3523,6 @@
             return;
         }
         enforceCrossUserPermission(userHandle);
-        enforceNotManagedProfile(userHandle, "enable/disable cameras");
         synchronized (this) {
             if (who == null) {
                 throw new NullPointerException("ComponentName is null");